blob: e32ab948f5893c31693486444d9a05d6ffce1316 [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 Weiner0a31bc92014-08-08 14:19:22 -070062void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -070063void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -070064
65void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
66 bool lrucare);
67
Johannes Weiner925b7672012-01-12 17:18:15 -080068struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070069struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080070
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070071bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
72 struct mem_cgroup *memcg);
David Rientjesffbdccf2013-07-03 15:01:23 -070073bool task_in_mem_cgroup(struct task_struct *task,
74 const struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080075
Wu Fengguange42d9d52009-12-16 12:19:59 +010076extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070077extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
78
Glauber Costae1aab162011-12-11 21:47:03 +000079extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -040080extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +000081
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080082static inline
Johannes Weiner587af302012-10-08 16:34:12 -070083bool mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080084{
Johannes Weiner587af302012-10-08 16:34:12 -070085 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -080086 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070087
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080088 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -070089 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -080090 if (task_memcg)
91 match = __mem_cgroup_same_or_subtree(memcg, task_memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080092 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070093 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080094}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080095
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -070096extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +010097
Andrew Morton694fbc02013-09-24 15:27:37 -070098struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
99 struct mem_cgroup *,
100 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -0800101void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
102
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800103/*
104 * For memory reclaim.
105 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700106int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700107int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700108unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700109void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700110extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
111 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800112
Johannes Weiner49426422013-10-16 13:46:59 -0700113static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700114{
Johannes Weiner49426422013-10-16 13:46:59 -0700115 WARN_ON(current->memcg_oom.may_oom);
116 current->memcg_oom.may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700117}
118
Johannes Weiner49426422013-10-16 13:46:59 -0700119static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700120{
Johannes Weiner49426422013-10-16 13:46:59 -0700121 WARN_ON(!current->memcg_oom.may_oom);
122 current->memcg_oom.may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700123}
124
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700125static inline bool task_in_memcg_oom(struct task_struct *p)
126{
Johannes Weiner49426422013-10-16 13:46:59 -0700127 return p->memcg_oom.memcg;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700128}
129
Johannes Weiner49426422013-10-16 13:46:59 -0700130bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700131
Andrew Mortonc255a452012-07-31 16:43:02 -0700132#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800133extern int do_swap_account;
134#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800135
136static inline bool mem_cgroup_disabled(void)
137{
Tejun Heo073219e2014-02-08 10:36:58 -0500138 if (memory_cgrp_subsys.disabled)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800139 return true;
140 return false;
141}
142
Johannes Weinerd7365e72014-10-29 14:50:48 -0700143struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, bool *locked,
144 unsigned long *flags);
145void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool locked,
146 unsigned long flags);
147void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
148 enum mem_cgroup_stat_index idx, int val);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700149
Johannes Weinerd7365e72014-10-29 14:50:48 -0700150static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700151 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800152{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700153 mem_cgroup_update_page_stat(memcg, idx, 1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800154}
155
Johannes Weinerd7365e72014-10-29 14:50:48 -0700156static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700157 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800158{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700159 mem_cgroup_update_page_stat(memcg, idx, -1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800160}
161
Andrew Morton0608f432013-09-24 15:27:41 -0700162unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
163 gfp_t gfp_mask,
164 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700165
David Rientjes68ae5642012-12-12 13:51:57 -0800166void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
167static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
168 enum vm_event_item idx)
169{
170 if (mem_cgroup_disabled())
171 return;
172 __mem_cgroup_count_vm_event(mm, idx);
173}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800174#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800175void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800176#endif
177
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700178#ifdef CONFIG_DEBUG_VM
179bool mem_cgroup_bad_page_check(struct page *page);
180void mem_cgroup_print_bad_page(struct page *page);
181#endif
Andrew Mortonc255a452012-07-31 16:43:02 -0700182#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800183struct mem_cgroup;
184
Johannes Weiner00501b52014-08-08 14:19:20 -0700185static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
186 gfp_t gfp_mask,
187 struct mem_cgroup **memcgp)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800188{
Johannes Weiner00501b52014-08-08 14:19:20 -0700189 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800190 return 0;
191}
192
Johannes Weiner00501b52014-08-08 14:19:20 -0700193static inline void mem_cgroup_commit_charge(struct page *page,
194 struct mem_cgroup *memcg,
195 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800196{
197}
198
Johannes Weiner00501b52014-08-08 14:19:20 -0700199static inline void mem_cgroup_cancel_charge(struct page *page,
200 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800201{
202}
203
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700204static inline void mem_cgroup_uncharge(struct page *page)
205{
206}
207
Johannes Weiner747db952014-08-08 14:19:24 -0700208static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800209{
210}
211
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700212static inline void mem_cgroup_migrate(struct page *oldpage,
213 struct page *newpage,
214 bool lrucare)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700215{
216}
217
Johannes Weiner925b7672012-01-12 17:18:15 -0800218static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
219 struct mem_cgroup *memcg)
220{
221 return &zone->lruvec;
222}
223
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700224static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
225 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700226{
Johannes Weiner925b7672012-01-12 17:18:15 -0800227 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800228}
229
Wu Fengguange42d9d52009-12-16 12:19:59 +0100230static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
231{
232 return NULL;
233}
234
Johannes Weiner587af302012-10-08 16:34:12 -0700235static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700236 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800237{
Johannes Weiner587af302012-10-08 16:34:12 -0700238 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800239}
240
David Rientjesffbdccf2013-07-03 15:01:23 -0700241static inline bool task_in_mem_cgroup(struct task_struct *task,
242 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800243{
David Rientjesffbdccf2013-07-03 15:01:23 -0700244 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800245}
246
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700247static inline struct cgroup_subsys_state
248 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100249{
250 return NULL;
251}
252
Johannes Weiner56600482012-01-12 17:17:59 -0800253static inline struct mem_cgroup *
254mem_cgroup_iter(struct mem_cgroup *root,
255 struct mem_cgroup *prev,
256 struct mem_cgroup_reclaim_cookie *reclaim)
257{
258 return NULL;
259}
260
261static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
262 struct mem_cgroup *prev)
263{
264}
265
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800266static inline bool mem_cgroup_disabled(void)
267{
268 return true;
269}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800270
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800271static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700272mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800273{
274 return 1;
275}
276
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800277static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700278mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800279{
280 return 0;
281}
282
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700283static inline void
284mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
285 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800286{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800287}
288
Balbir Singhe2224322009-04-02 16:57:39 -0700289static inline void
290mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
291{
292}
293
Johannes Weinerd7365e72014-10-29 14:50:48 -0700294static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page,
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700295 bool *locked, unsigned long *flags)
296{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700297 return NULL;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700298}
299
Johannes Weinerd7365e72014-10-29 14:50:48 -0700300static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg,
301 bool locked, unsigned long flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700302{
303}
304
Johannes Weiner49426422013-10-16 13:46:59 -0700305static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700306{
307}
308
Johannes Weiner49426422013-10-16 13:46:59 -0700309static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700310{
311}
312
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700313static inline bool task_in_memcg_oom(struct task_struct *p)
314{
315 return false;
316}
317
Johannes Weiner49426422013-10-16 13:46:59 -0700318static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700319{
320 return false;
321}
322
Johannes Weinerd7365e72014-10-29 14:50:48 -0700323static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700324 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800325{
326}
327
Johannes Weinerd7365e72014-10-29 14:50:48 -0700328static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700329 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700330{
331}
332
Balbir Singh4e416952009-09-23 15:56:39 -0700333static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700334unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
335 gfp_t gfp_mask,
336 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700337{
Andrew Morton0608f432013-09-24 15:27:41 -0700338 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700339}
340
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800341static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800342{
343}
344
Ying Han456f9982011-05-26 16:25:38 -0700345static inline
346void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
347{
348}
Andrew Mortonc255a452012-07-31 16:43:02 -0700349#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800350
Andrew Mortonc255a452012-07-31 16:43:02 -0700351#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700352static inline bool
353mem_cgroup_bad_page_check(struct page *page)
354{
355 return false;
356}
357
358static inline void
359mem_cgroup_print_bad_page(struct page *page)
360{
361}
362#endif
363
Glauber Costae1aab162011-12-11 21:47:03 +0000364enum {
365 UNDER_LIMIT,
366 SOFT_LIMIT,
367 OVER_LIMIT,
368};
369
370struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700371#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000372void sock_update_memcg(struct sock *sk);
373void sock_release_memcg(struct sock *sk);
374#else
375static inline void sock_update_memcg(struct sock *sk)
376{
377}
378static inline void sock_release_memcg(struct sock *sk)
379{
380}
David Rientjescd590852012-10-10 15:54:08 -0700381#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800382
383#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800384extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800385
386extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800387
388/*
389 * Helper macro to loop through all memcg-specific caches. Callers must still
390 * check if the cache is valid (it is either valid or NULL).
391 * the slab_mutex must be held when looping through those caches
392 */
Glauber Costa749c5412012-12-18 14:23:01 -0800393#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800394 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800395
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800396static inline bool memcg_kmem_enabled(void)
397{
Glauber Costaa8964b92012-12-18 14:22:09 -0800398 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800399}
400
401/*
402 * In general, we'll do everything in our power to not incur in any overhead
403 * for non-memcg users for the kmem functions. Not even a function call, if we
404 * can avoid it.
405 *
406 * Therefore, we'll inline all those functions so that in the best case, we'll
407 * see that kmemcg is off for everybody and proceed quickly. If it is on,
408 * we'll still do most of the flag checking inline. We check a lot of
409 * conditions, but because they are pretty simple, they are expected to be
410 * fast.
411 */
412bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
413 int order);
414void __memcg_kmem_commit_charge(struct page *page,
415 struct mem_cgroup *memcg, int order);
416void __memcg_kmem_uncharge_pages(struct page *page, int order);
417
Glauber Costa2633d7a2012-12-18 14:22:34 -0800418int memcg_cache_id(struct mem_cgroup *memcg);
Vladimir Davydov5722d092014-04-07 15:39:24 -0700419
Glauber Costa55007d82012-12-18 14:22:38 -0800420void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800421
422struct kmem_cache *
423__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
424
Vladimir Davydovc67a8a62014-06-04 16:07:39 -0700425int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order);
426void __memcg_uncharge_slab(struct kmem_cache *cachep, int order);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700427
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700428int __memcg_cleanup_cache_params(struct kmem_cache *s);
Glauber Costa1f458cb2012-12-18 14:22:50 -0800429
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800430/**
431 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
432 * @gfp: the gfp allocation flags.
433 * @memcg: a pointer to the memcg this was charged against.
434 * @order: allocation order.
435 *
436 * returns true if the memcg where the current task belongs can hold this
437 * allocation.
438 *
439 * We return true automatically if this allocation is not to be accounted to
440 * any memcg.
441 */
442static inline bool
443memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
444{
445 if (!memcg_kmem_enabled())
446 return true;
447
448 /*
449 * __GFP_NOFAIL allocations will move on even if charging is not
450 * possible. Therefore we don't even try, and have this allocation
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800451 * unaccounted. We could in theory charge it forcibly, but we hope
452 * those allocations are rare, and won't be worth the trouble.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800453 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700454 if (gfp & __GFP_NOFAIL)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800455 return true;
456 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
457 return true;
458
459 /* If the test is dying, just let it go. */
460 if (unlikely(fatal_signal_pending(current)))
461 return true;
462
463 return __memcg_kmem_newpage_charge(gfp, memcg, order);
464}
465
466/**
467 * memcg_kmem_uncharge_pages: uncharge pages from memcg
468 * @page: pointer to struct page being freed
469 * @order: allocation order.
470 *
471 * there is no need to specify memcg here, since it is embedded in page_cgroup
472 */
473static inline void
474memcg_kmem_uncharge_pages(struct page *page, int order)
475{
476 if (memcg_kmem_enabled())
477 __memcg_kmem_uncharge_pages(page, order);
478}
479
480/**
481 * memcg_kmem_commit_charge: embeds correct memcg in a page
482 * @page: pointer to struct page recently allocated
483 * @memcg: the memcg structure we charged against
484 * @order: allocation order.
485 *
486 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
487 * failure of the allocation. if @page is NULL, this function will revert the
488 * charges. Otherwise, it will commit the memcg given by @memcg to the
489 * corresponding page_cgroup.
490 */
491static inline void
492memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
493{
494 if (memcg_kmem_enabled() && memcg)
495 __memcg_kmem_commit_charge(page, memcg, order);
496}
497
Glauber Costad7f25f82012-12-18 14:22:40 -0800498/**
499 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
500 * @cachep: the original global kmem cache
501 * @gfp: allocation flags.
502 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700503 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800504 */
505static __always_inline struct kmem_cache *
506memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
507{
508 if (!memcg_kmem_enabled())
509 return cachep;
510 if (gfp & __GFP_NOFAIL)
511 return cachep;
512 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
513 return cachep;
514 if (unlikely(fatal_signal_pending(current)))
515 return cachep;
516
517 return __memcg_kmem_get_cache(cachep, gfp);
518}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800519#else
Glauber Costa749c5412012-12-18 14:23:01 -0800520#define for_each_memcg_cache_index(_idx) \
521 for (; NULL; )
522
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800523static inline bool memcg_kmem_enabled(void)
524{
525 return false;
526}
527
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800528static inline bool
529memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
530{
531 return true;
532}
533
534static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
535{
536}
537
538static inline void
539memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
540{
541}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800542
543static inline int memcg_cache_id(struct mem_cgroup *memcg)
544{
545 return -1;
546}
547
Glauber Costad7f25f82012-12-18 14:22:40 -0800548static inline struct kmem_cache *
549memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
550{
551 return cachep;
552}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800553#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800554#endif /* _LINUX_MEMCONTROL_H */
555