blob: 353537a5981a6781bf8657eec476f3d735f6bedf [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;
Balbir Singh8697d332008-02-07 00:13:59 -080028struct page;
29struct mm_struct;
Glauber Costa2633d7a2012-12-18 14:22:34 -080030struct kmem_cache;
Pavel Emelianov78fb7462008-02-07 00:13:51 -080031
Sha Zhengju68b48762013-09-12 15:13:50 -070032/*
33 * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
34 * These two lists should keep in accord with each other.
35 */
36enum mem_cgroup_stat_index {
37 /*
38 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
39 */
40 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
41 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
42 MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
43 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Sha Zhengju3ea67d02013-09-12 15:13:53 -070044 MEM_CGROUP_STAT_WRITEBACK, /* # of pages under writeback */
Sha Zhengju68b48762013-09-12 15:13:50 -070045 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
46 MEM_CGROUP_STAT_NSTATS,
Greg Thelen2a7106f2011-01-13 15:47:37 -080047};
48
Johannes Weiner56600482012-01-12 17:17:59 -080049struct mem_cgroup_reclaim_cookie {
50 struct zone *zone;
51 int priority;
52 unsigned int generation;
53};
54
Andrew Mortonc255a452012-07-31 16:43:02 -070055#ifdef CONFIG_MEMCG
Johannes Weiner00501b52014-08-08 14:19:20 -070056int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
57 gfp_t gfp_mask, struct mem_cgroup **memcgp);
58void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
59 bool lrucare);
60void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg);
Johannes Weiner0a31bc92014-08-08 14:19:22 -070061void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -070062void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -070063
64void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
65 bool lrucare);
66
Johannes Weiner925b7672012-01-12 17:18:15 -080067struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070068struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080069
Johannes Weiner2314b422014-12-10 15:44:33 -080070bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
71 struct mem_cgroup *root);
72bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080073
Wu Fengguange42d9d52009-12-16 12:19:59 +010074extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070075extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
76
Glauber Costae1aab162011-12-11 21:47:03 +000077extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -040078extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +000079
Johannes Weiner2314b422014-12-10 15:44:33 -080080static inline bool mm_match_cgroup(struct mm_struct *mm,
81 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080082{
Johannes Weiner587af302012-10-08 16:34:12 -070083 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -080084 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070085
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080086 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -070087 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -080088 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -080089 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080090 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070091 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080092}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080093
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -070094extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +010095
Andrew Morton694fbc02013-09-24 15:27:37 -070096struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
97 struct mem_cgroup *,
98 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -080099void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
100
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800101/*
102 * For memory reclaim.
103 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700104int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Vladimir Davydov90cbc252015-02-11 15:25:55 -0800105bool mem_cgroup_lruvec_online(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700106int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700107unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700108void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700109extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
110 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800111
Johannes Weiner49426422013-10-16 13:46:59 -0700112static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700113{
Johannes Weiner49426422013-10-16 13:46:59 -0700114 WARN_ON(current->memcg_oom.may_oom);
115 current->memcg_oom.may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700116}
117
Johannes Weiner49426422013-10-16 13:46:59 -0700118static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700119{
Johannes Weiner49426422013-10-16 13:46:59 -0700120 WARN_ON(!current->memcg_oom.may_oom);
121 current->memcg_oom.may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700122}
123
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700124static inline bool task_in_memcg_oom(struct task_struct *p)
125{
Johannes Weiner49426422013-10-16 13:46:59 -0700126 return p->memcg_oom.memcg;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700127}
128
Johannes Weiner49426422013-10-16 13:46:59 -0700129bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700130
Andrew Mortonc255a452012-07-31 16:43:02 -0700131#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800132extern int do_swap_account;
133#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800134
135static inline bool mem_cgroup_disabled(void)
136{
Tejun Heo073219e2014-02-08 10:36:58 -0500137 if (memory_cgrp_subsys.disabled)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800138 return true;
139 return false;
140}
141
Johannes Weiner6de22612015-02-11 15:25:01 -0800142struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page);
Johannes Weinerd7365e72014-10-29 14:50:48 -0700143void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
144 enum mem_cgroup_stat_index idx, int val);
Johannes Weiner6de22612015-02-11 15:25:01 -0800145void mem_cgroup_end_page_stat(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700146
Johannes Weinerd7365e72014-10-29 14:50:48 -0700147static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700148 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800149{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700150 mem_cgroup_update_page_stat(memcg, idx, 1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800151}
152
Johannes Weinerd7365e72014-10-29 14:50:48 -0700153static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700154 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800155{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700156 mem_cgroup_update_page_stat(memcg, idx, -1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800157}
158
Andrew Morton0608f432013-09-24 15:27:41 -0700159unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
160 gfp_t gfp_mask,
161 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700162
David Rientjes68ae5642012-12-12 13:51:57 -0800163void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
164static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
165 enum vm_event_item idx)
166{
167 if (mem_cgroup_disabled())
168 return;
169 __mem_cgroup_count_vm_event(mm, idx);
170}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800171#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800172void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800173#endif
174
Andrew Mortonc255a452012-07-31 16:43:02 -0700175#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800176struct mem_cgroup;
177
Johannes Weiner00501b52014-08-08 14:19:20 -0700178static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
179 gfp_t gfp_mask,
180 struct mem_cgroup **memcgp)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800181{
Johannes Weiner00501b52014-08-08 14:19:20 -0700182 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800183 return 0;
184}
185
Johannes Weiner00501b52014-08-08 14:19:20 -0700186static inline void mem_cgroup_commit_charge(struct page *page,
187 struct mem_cgroup *memcg,
188 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800189{
190}
191
Johannes Weiner00501b52014-08-08 14:19:20 -0700192static inline void mem_cgroup_cancel_charge(struct page *page,
193 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800194{
195}
196
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700197static inline void mem_cgroup_uncharge(struct page *page)
198{
199}
200
Johannes Weiner747db952014-08-08 14:19:24 -0700201static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800202{
203}
204
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700205static inline void mem_cgroup_migrate(struct page *oldpage,
206 struct page *newpage,
207 bool lrucare)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700208{
209}
210
Johannes Weiner925b7672012-01-12 17:18:15 -0800211static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
212 struct mem_cgroup *memcg)
213{
214 return &zone->lruvec;
215}
216
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700217static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
218 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700219{
Johannes Weiner925b7672012-01-12 17:18:15 -0800220 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800221}
222
Wu Fengguange42d9d52009-12-16 12:19:59 +0100223static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
224{
225 return NULL;
226}
227
Johannes Weiner587af302012-10-08 16:34:12 -0700228static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700229 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800230{
Johannes Weiner587af302012-10-08 16:34:12 -0700231 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800232}
233
David Rientjesffbdccf2013-07-03 15:01:23 -0700234static inline bool task_in_mem_cgroup(struct task_struct *task,
235 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800236{
David Rientjesffbdccf2013-07-03 15:01:23 -0700237 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800238}
239
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700240static inline struct cgroup_subsys_state
241 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100242{
243 return NULL;
244}
245
Johannes Weiner56600482012-01-12 17:17:59 -0800246static inline struct mem_cgroup *
247mem_cgroup_iter(struct mem_cgroup *root,
248 struct mem_cgroup *prev,
249 struct mem_cgroup_reclaim_cookie *reclaim)
250{
251 return NULL;
252}
253
254static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
255 struct mem_cgroup *prev)
256{
257}
258
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800259static inline bool mem_cgroup_disabled(void)
260{
261 return true;
262}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800263
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800264static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700265mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800266{
267 return 1;
268}
269
Vladimir Davydov90cbc252015-02-11 15:25:55 -0800270static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec)
271{
272 return true;
273}
274
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800275static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700276mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800277{
278 return 0;
279}
280
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700281static inline void
282mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
283 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800284{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800285}
286
Balbir Singhe2224322009-04-02 16:57:39 -0700287static inline void
288mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
289{
290}
291
Johannes Weiner6de22612015-02-11 15:25:01 -0800292static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700293{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700294 return NULL;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700295}
296
Johannes Weiner6de22612015-02-11 15:25:01 -0800297static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700298{
299}
300
Johannes Weiner49426422013-10-16 13:46:59 -0700301static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700302{
303}
304
Johannes Weiner49426422013-10-16 13:46:59 -0700305static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700306{
307}
308
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700309static inline bool task_in_memcg_oom(struct task_struct *p)
310{
311 return false;
312}
313
Johannes Weiner49426422013-10-16 13:46:59 -0700314static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700315{
316 return false;
317}
318
Johannes Weinerd7365e72014-10-29 14:50:48 -0700319static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700320 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800321{
322}
323
Johannes Weinerd7365e72014-10-29 14:50:48 -0700324static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700325 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700326{
327}
328
Balbir Singh4e416952009-09-23 15:56:39 -0700329static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700330unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
331 gfp_t gfp_mask,
332 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700333{
Andrew Morton0608f432013-09-24 15:27:41 -0700334 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700335}
336
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800337static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800338{
339}
340
Ying Han456f9982011-05-26 16:25:38 -0700341static inline
342void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
343{
344}
Andrew Mortonc255a452012-07-31 16:43:02 -0700345#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800346
Glauber Costae1aab162011-12-11 21:47:03 +0000347enum {
348 UNDER_LIMIT,
349 SOFT_LIMIT,
350 OVER_LIMIT,
351};
352
353struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700354#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000355void sock_update_memcg(struct sock *sk);
356void sock_release_memcg(struct sock *sk);
357#else
358static inline void sock_update_memcg(struct sock *sk)
359{
360}
361static inline void sock_release_memcg(struct sock *sk)
362{
363}
David Rientjescd590852012-10-10 15:54:08 -0700364#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800365
366#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800367extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800368
369extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800370
371/*
372 * Helper macro to loop through all memcg-specific caches. Callers must still
373 * check if the cache is valid (it is either valid or NULL).
374 * the slab_mutex must be held when looping through those caches
375 */
Glauber Costa749c5412012-12-18 14:23:01 -0800376#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800377 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800378
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800379static inline bool memcg_kmem_enabled(void)
380{
Glauber Costaa8964b92012-12-18 14:22:09 -0800381 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800382}
383
384/*
385 * In general, we'll do everything in our power to not incur in any overhead
386 * for non-memcg users for the kmem functions. Not even a function call, if we
387 * can avoid it.
388 *
389 * Therefore, we'll inline all those functions so that in the best case, we'll
390 * see that kmemcg is off for everybody and proceed quickly. If it is on,
391 * we'll still do most of the flag checking inline. We check a lot of
392 * conditions, but because they are pretty simple, they are expected to be
393 * fast.
394 */
395bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
396 int order);
397void __memcg_kmem_commit_charge(struct page *page,
398 struct mem_cgroup *memcg, int order);
399void __memcg_kmem_uncharge_pages(struct page *page, int order);
400
Glauber Costa2633d7a2012-12-18 14:22:34 -0800401int memcg_cache_id(struct mem_cgroup *memcg);
Vladimir Davydov5722d092014-04-07 15:39:24 -0700402
Glauber Costa55007d82012-12-18 14:22:38 -0800403void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800404
Vladimir Davydov8135be52014-12-12 16:56:38 -0800405struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep);
406void __memcg_kmem_put_cache(struct kmem_cache *cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -0800407
Vladimir Davydovdbf22eb2015-02-10 14:11:41 -0800408int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp,
409 unsigned long nr_pages);
410void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700411
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800412/**
413 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
414 * @gfp: the gfp allocation flags.
415 * @memcg: a pointer to the memcg this was charged against.
416 * @order: allocation order.
417 *
418 * returns true if the memcg where the current task belongs can hold this
419 * allocation.
420 *
421 * We return true automatically if this allocation is not to be accounted to
422 * any memcg.
423 */
424static inline bool
425memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
426{
427 if (!memcg_kmem_enabled())
428 return true;
429
430 /*
431 * __GFP_NOFAIL allocations will move on even if charging is not
432 * possible. Therefore we don't even try, and have this allocation
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800433 * unaccounted. We could in theory charge it forcibly, but we hope
434 * those allocations are rare, and won't be worth the trouble.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800435 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700436 if (gfp & __GFP_NOFAIL)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800437 return true;
438 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
439 return true;
440
441 /* If the test is dying, just let it go. */
442 if (unlikely(fatal_signal_pending(current)))
443 return true;
444
445 return __memcg_kmem_newpage_charge(gfp, memcg, order);
446}
447
448/**
449 * memcg_kmem_uncharge_pages: uncharge pages from memcg
450 * @page: pointer to struct page being freed
451 * @order: allocation order.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800452 */
453static inline void
454memcg_kmem_uncharge_pages(struct page *page, int order)
455{
456 if (memcg_kmem_enabled())
457 __memcg_kmem_uncharge_pages(page, order);
458}
459
460/**
461 * memcg_kmem_commit_charge: embeds correct memcg in a page
462 * @page: pointer to struct page recently allocated
463 * @memcg: the memcg structure we charged against
464 * @order: allocation order.
465 *
466 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
467 * failure of the allocation. if @page is NULL, this function will revert the
Johannes Weiner1306a852014-12-10 15:44:52 -0800468 * charges. Otherwise, it will commit @page to @memcg.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800469 */
470static inline void
471memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
472{
473 if (memcg_kmem_enabled() && memcg)
474 __memcg_kmem_commit_charge(page, memcg, order);
475}
476
Glauber Costad7f25f82012-12-18 14:22:40 -0800477/**
478 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
479 * @cachep: the original global kmem cache
480 * @gfp: allocation flags.
481 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700482 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800483 */
484static __always_inline struct kmem_cache *
485memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
486{
487 if (!memcg_kmem_enabled())
488 return cachep;
489 if (gfp & __GFP_NOFAIL)
490 return cachep;
491 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
492 return cachep;
493 if (unlikely(fatal_signal_pending(current)))
494 return cachep;
495
Zhang Zhen056b7cc2014-12-12 16:55:38 -0800496 return __memcg_kmem_get_cache(cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -0800497}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800498
499static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
500{
501 if (memcg_kmem_enabled())
502 __memcg_kmem_put_cache(cachep);
503}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800504#else
Glauber Costa749c5412012-12-18 14:23:01 -0800505#define for_each_memcg_cache_index(_idx) \
506 for (; NULL; )
507
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800508static inline bool memcg_kmem_enabled(void)
509{
510 return false;
511}
512
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800513static inline bool
514memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
515{
516 return true;
517}
518
519static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
520{
521}
522
523static inline void
524memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
525{
526}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800527
528static inline int memcg_cache_id(struct mem_cgroup *memcg)
529{
530 return -1;
531}
532
Glauber Costad7f25f82012-12-18 14:22:40 -0800533static inline struct kmem_cache *
534memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
535{
536 return cachep;
537}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800538
539static inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
540{
541}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800542#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800543#endif /* _LINUX_MEMCONTROL_H */
544