blob: 806b8fa15c5f3402e60c1b21e58422dbf21148a9 [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
Johannes Weiner00501b52014-08-08 14:19:20 -070057int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
58 gfp_t gfp_mask, struct mem_cgroup **memcgp);
59void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
60 bool lrucare);
61void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg);
Johannes Weiner925b7672012-01-12 17:18:15 -080062
Johannes Weiner0a31bc92014-08-08 14:19:22 -070063void mem_cgroup_uncharge(struct page *page);
64
65/* Batched uncharging */
66void mem_cgroup_uncharge_start(void);
67void mem_cgroup_uncharge_end(void);
68
69void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
70 bool lrucare);
71
Johannes Weiner925b7672012-01-12 17:18:15 -080072struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070073struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080074
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070075bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
76 struct mem_cgroup *memcg);
David Rientjesffbdccf2013-07-03 15:01:23 -070077bool task_in_mem_cgroup(struct task_struct *task,
78 const struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080079
Wu Fengguange42d9d52009-12-16 12:19:59 +010080extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070081extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
82
Glauber Costae1aab162011-12-11 21:47:03 +000083extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -040084extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +000085
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080086static inline
Johannes Weiner587af302012-10-08 16:34:12 -070087bool mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080088{
Johannes Weiner587af302012-10-08 16:34:12 -070089 struct mem_cgroup *task_memcg;
90 bool match;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070091
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080092 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -070093 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
94 match = __mem_cgroup_same_or_subtree(memcg, task_memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080095 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070096 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080097}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080098
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -070099extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +0100100
Andrew Morton694fbc02013-09-24 15:27:37 -0700101struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
102 struct mem_cgroup *,
103 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -0800104void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
105
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800106/*
107 * For memory reclaim.
108 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700109int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700110int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700111unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700112void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700113extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
114 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800115
Johannes Weiner49426422013-10-16 13:46:59 -0700116static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700117{
Johannes Weiner49426422013-10-16 13:46:59 -0700118 WARN_ON(current->memcg_oom.may_oom);
119 current->memcg_oom.may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700120}
121
Johannes Weiner49426422013-10-16 13:46:59 -0700122static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700123{
Johannes Weiner49426422013-10-16 13:46:59 -0700124 WARN_ON(!current->memcg_oom.may_oom);
125 current->memcg_oom.may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700126}
127
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700128static inline bool task_in_memcg_oom(struct task_struct *p)
129{
Johannes Weiner49426422013-10-16 13:46:59 -0700130 return p->memcg_oom.memcg;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700131}
132
Johannes Weiner49426422013-10-16 13:46:59 -0700133bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700134
Andrew Mortonc255a452012-07-31 16:43:02 -0700135#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800136extern int do_swap_account;
137#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800138
139static inline bool mem_cgroup_disabled(void)
140{
Tejun Heo073219e2014-02-08 10:36:58 -0500141 if (memory_cgrp_subsys.disabled)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800142 return true;
143 return false;
144}
145
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700146void __mem_cgroup_begin_update_page_stat(struct page *page, bool *locked,
147 unsigned long *flags);
148
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700149extern atomic_t memcg_moving;
150
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700151static inline void mem_cgroup_begin_update_page_stat(struct page *page,
152 bool *locked, unsigned long *flags)
153{
154 if (mem_cgroup_disabled())
155 return;
156 rcu_read_lock();
157 *locked = false;
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700158 if (atomic_read(&memcg_moving))
159 __mem_cgroup_begin_update_page_stat(page, locked, flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700160}
161
162void __mem_cgroup_end_update_page_stat(struct page *page,
163 unsigned long *flags);
164static inline void mem_cgroup_end_update_page_stat(struct page *page,
165 bool *locked, unsigned long *flags)
166{
167 if (mem_cgroup_disabled())
168 return;
169 if (*locked)
170 __mem_cgroup_end_update_page_stat(page, flags);
171 rcu_read_unlock();
172}
173
Greg Thelen2a7106f2011-01-13 15:47:37 -0800174void mem_cgroup_update_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700175 enum mem_cgroup_stat_index idx,
Greg Thelen2a7106f2011-01-13 15:47:37 -0800176 int val);
177
178static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700179 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800180{
181 mem_cgroup_update_page_stat(page, idx, 1);
182}
183
184static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700185 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800186{
187 mem_cgroup_update_page_stat(page, idx, -1);
188}
189
Andrew Morton0608f432013-09-24 15:27:41 -0700190unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
191 gfp_t gfp_mask,
192 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700193
David Rientjes68ae5642012-12-12 13:51:57 -0800194void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
195static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
196 enum vm_event_item idx)
197{
198 if (mem_cgroup_disabled())
199 return;
200 __mem_cgroup_count_vm_event(mm, idx);
201}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800202#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800203void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800204#endif
205
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700206#ifdef CONFIG_DEBUG_VM
207bool mem_cgroup_bad_page_check(struct page *page);
208void mem_cgroup_print_bad_page(struct page *page);
209#endif
Andrew Mortonc255a452012-07-31 16:43:02 -0700210#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800211struct mem_cgroup;
212
Johannes Weiner00501b52014-08-08 14:19:20 -0700213static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
214 gfp_t gfp_mask,
215 struct mem_cgroup **memcgp)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800216{
Johannes Weiner00501b52014-08-08 14:19:20 -0700217 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800218 return 0;
219}
220
Johannes Weiner00501b52014-08-08 14:19:20 -0700221static inline void mem_cgroup_commit_charge(struct page *page,
222 struct mem_cgroup *memcg,
223 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800224{
225}
226
Johannes Weiner00501b52014-08-08 14:19:20 -0700227static inline void mem_cgroup_cancel_charge(struct page *page,
228 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800229{
230}
231
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700232static inline void mem_cgroup_uncharge(struct page *page)
233{
234}
235
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800236static inline void mem_cgroup_uncharge_start(void)
237{
238}
239
240static inline void mem_cgroup_uncharge_end(void)
241{
242}
243
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700244static inline void mem_cgroup_migrate(struct page *oldpage,
245 struct page *newpage,
246 bool lrucare)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700247{
248}
249
Johannes Weiner925b7672012-01-12 17:18:15 -0800250static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
251 struct mem_cgroup *memcg)
252{
253 return &zone->lruvec;
254}
255
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700256static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
257 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700258{
Johannes Weiner925b7672012-01-12 17:18:15 -0800259 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800260}
261
Wu Fengguange42d9d52009-12-16 12:19:59 +0100262static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
263{
264 return NULL;
265}
266
Johannes Weiner587af302012-10-08 16:34:12 -0700267static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700268 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800269{
Johannes Weiner587af302012-10-08 16:34:12 -0700270 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800271}
272
David Rientjesffbdccf2013-07-03 15:01:23 -0700273static inline bool task_in_mem_cgroup(struct task_struct *task,
274 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800275{
David Rientjesffbdccf2013-07-03 15:01:23 -0700276 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800277}
278
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700279static inline struct cgroup_subsys_state
280 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100281{
282 return NULL;
283}
284
Johannes Weiner56600482012-01-12 17:17:59 -0800285static inline struct mem_cgroup *
286mem_cgroup_iter(struct mem_cgroup *root,
287 struct mem_cgroup *prev,
288 struct mem_cgroup_reclaim_cookie *reclaim)
289{
290 return NULL;
291}
292
293static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
294 struct mem_cgroup *prev)
295{
296}
297
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800298static inline bool mem_cgroup_disabled(void)
299{
300 return true;
301}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800302
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800303static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700304mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800305{
306 return 1;
307}
308
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800309static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700310mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800311{
312 return 0;
313}
314
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700315static inline void
316mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
317 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800318{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800319}
320
Balbir Singhe2224322009-04-02 16:57:39 -0700321static inline void
322mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
323{
324}
325
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700326static inline void mem_cgroup_begin_update_page_stat(struct page *page,
327 bool *locked, unsigned long *flags)
328{
329}
330
331static inline void mem_cgroup_end_update_page_stat(struct page *page,
332 bool *locked, unsigned long *flags)
333{
334}
335
Johannes Weiner49426422013-10-16 13:46:59 -0700336static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700337{
338}
339
Johannes Weiner49426422013-10-16 13:46:59 -0700340static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700341{
342}
343
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700344static inline bool task_in_memcg_oom(struct task_struct *p)
345{
346 return false;
347}
348
Johannes Weiner49426422013-10-16 13:46:59 -0700349static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700350{
351 return false;
352}
353
Greg Thelen2a7106f2011-01-13 15:47:37 -0800354static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700355 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800356{
357}
358
359static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700360 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700361{
362}
363
Balbir Singh4e416952009-09-23 15:56:39 -0700364static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700365unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
366 gfp_t gfp_mask,
367 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700368{
Andrew Morton0608f432013-09-24 15:27:41 -0700369 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700370}
371
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800372static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800373{
374}
375
Ying Han456f9982011-05-26 16:25:38 -0700376static inline
377void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
378{
379}
Andrew Mortonc255a452012-07-31 16:43:02 -0700380#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800381
Andrew Mortonc255a452012-07-31 16:43:02 -0700382#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700383static inline bool
384mem_cgroup_bad_page_check(struct page *page)
385{
386 return false;
387}
388
389static inline void
390mem_cgroup_print_bad_page(struct page *page)
391{
392}
393#endif
394
Glauber Costae1aab162011-12-11 21:47:03 +0000395enum {
396 UNDER_LIMIT,
397 SOFT_LIMIT,
398 OVER_LIMIT,
399};
400
401struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700402#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000403void sock_update_memcg(struct sock *sk);
404void sock_release_memcg(struct sock *sk);
405#else
406static inline void sock_update_memcg(struct sock *sk)
407{
408}
409static inline void sock_release_memcg(struct sock *sk)
410{
411}
David Rientjescd590852012-10-10 15:54:08 -0700412#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800413
414#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800415extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800416
417extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800418
419/*
420 * Helper macro to loop through all memcg-specific caches. Callers must still
421 * check if the cache is valid (it is either valid or NULL).
422 * the slab_mutex must be held when looping through those caches
423 */
Glauber Costa749c5412012-12-18 14:23:01 -0800424#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800425 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800426
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800427static inline bool memcg_kmem_enabled(void)
428{
Glauber Costaa8964b92012-12-18 14:22:09 -0800429 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800430}
431
432/*
433 * In general, we'll do everything in our power to not incur in any overhead
434 * for non-memcg users for the kmem functions. Not even a function call, if we
435 * can avoid it.
436 *
437 * Therefore, we'll inline all those functions so that in the best case, we'll
438 * see that kmemcg is off for everybody and proceed quickly. If it is on,
439 * we'll still do most of the flag checking inline. We check a lot of
440 * conditions, but because they are pretty simple, they are expected to be
441 * fast.
442 */
443bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
444 int order);
445void __memcg_kmem_commit_charge(struct page *page,
446 struct mem_cgroup *memcg, int order);
447void __memcg_kmem_uncharge_pages(struct page *page, int order);
448
Glauber Costa2633d7a2012-12-18 14:22:34 -0800449int memcg_cache_id(struct mem_cgroup *memcg);
Vladimir Davydov5722d092014-04-07 15:39:24 -0700450
Vladimir Davydov363a0442014-01-23 15:52:56 -0800451int memcg_alloc_cache_params(struct mem_cgroup *memcg, struct kmem_cache *s,
452 struct kmem_cache *root_cache);
453void memcg_free_cache_params(struct kmem_cache *s);
Glauber Costa2633d7a2012-12-18 14:22:34 -0800454
Glauber Costa55007d82012-12-18 14:22:38 -0800455int memcg_update_cache_size(struct kmem_cache *s, int num_groups);
456void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800457
458struct kmem_cache *
459__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
460
Vladimir Davydovc67a8a62014-06-04 16:07:39 -0700461int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order);
462void __memcg_uncharge_slab(struct kmem_cache *cachep, int order);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700463
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700464int __memcg_cleanup_cache_params(struct kmem_cache *s);
Glauber Costa1f458cb2012-12-18 14:22:50 -0800465
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800466/**
467 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
468 * @gfp: the gfp allocation flags.
469 * @memcg: a pointer to the memcg this was charged against.
470 * @order: allocation order.
471 *
472 * returns true if the memcg where the current task belongs can hold this
473 * allocation.
474 *
475 * We return true automatically if this allocation is not to be accounted to
476 * any memcg.
477 */
478static inline bool
479memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
480{
481 if (!memcg_kmem_enabled())
482 return true;
483
484 /*
485 * __GFP_NOFAIL allocations will move on even if charging is not
486 * possible. Therefore we don't even try, and have this allocation
487 * unaccounted. We could in theory charge it with
488 * res_counter_charge_nofail, but we hope those allocations are rare,
489 * and won't be worth the trouble.
490 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700491 if (gfp & __GFP_NOFAIL)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800492 return true;
493 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
494 return true;
495
496 /* If the test is dying, just let it go. */
497 if (unlikely(fatal_signal_pending(current)))
498 return true;
499
500 return __memcg_kmem_newpage_charge(gfp, memcg, order);
501}
502
503/**
504 * memcg_kmem_uncharge_pages: uncharge pages from memcg
505 * @page: pointer to struct page being freed
506 * @order: allocation order.
507 *
508 * there is no need to specify memcg here, since it is embedded in page_cgroup
509 */
510static inline void
511memcg_kmem_uncharge_pages(struct page *page, int order)
512{
513 if (memcg_kmem_enabled())
514 __memcg_kmem_uncharge_pages(page, order);
515}
516
517/**
518 * memcg_kmem_commit_charge: embeds correct memcg in a page
519 * @page: pointer to struct page recently allocated
520 * @memcg: the memcg structure we charged against
521 * @order: allocation order.
522 *
523 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
524 * failure of the allocation. if @page is NULL, this function will revert the
525 * charges. Otherwise, it will commit the memcg given by @memcg to the
526 * corresponding page_cgroup.
527 */
528static inline void
529memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
530{
531 if (memcg_kmem_enabled() && memcg)
532 __memcg_kmem_commit_charge(page, memcg, order);
533}
534
Glauber Costad7f25f82012-12-18 14:22:40 -0800535/**
536 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
537 * @cachep: the original global kmem cache
538 * @gfp: allocation flags.
539 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700540 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800541 */
542static __always_inline struct kmem_cache *
543memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
544{
545 if (!memcg_kmem_enabled())
546 return cachep;
547 if (gfp & __GFP_NOFAIL)
548 return cachep;
549 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
550 return cachep;
551 if (unlikely(fatal_signal_pending(current)))
552 return cachep;
553
554 return __memcg_kmem_get_cache(cachep, gfp);
555}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800556#else
Glauber Costa749c5412012-12-18 14:23:01 -0800557#define for_each_memcg_cache_index(_idx) \
558 for (; NULL; )
559
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800560static inline bool memcg_kmem_enabled(void)
561{
562 return false;
563}
564
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800565static inline bool
566memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
567{
568 return true;
569}
570
571static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
572{
573}
574
575static inline void
576memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
577{
578}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800579
580static inline int memcg_cache_id(struct mem_cgroup *memcg)
581{
582 return -1;
583}
584
Vladimir Davydov363a0442014-01-23 15:52:56 -0800585static inline int memcg_alloc_cache_params(struct mem_cgroup *memcg,
586 struct kmem_cache *s, struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -0800587{
588 return 0;
589}
590
Vladimir Davydov363a0442014-01-23 15:52:56 -0800591static inline void memcg_free_cache_params(struct kmem_cache *s)
592{
593}
594
Glauber Costad7f25f82012-12-18 14:22:40 -0800595static inline struct kmem_cache *
596memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
597{
598 return cachep;
599}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800600#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800601#endif /* _LINUX_MEMCONTROL_H */
602