blob: d4575a1d6e99186068280bb2606647d4be9d2ffa [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 Weiner2314b422014-12-10 15:44:33 -080071bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
72 struct mem_cgroup *root);
73bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080074
Wu Fengguange42d9d52009-12-16 12:19:59 +010075extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070076extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
77
Glauber Costae1aab162011-12-11 21:47:03 +000078extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -040079extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +000080
Johannes Weiner2314b422014-12-10 15:44:33 -080081static inline bool mm_match_cgroup(struct mm_struct *mm,
82 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080083{
Johannes Weiner587af302012-10-08 16:34:12 -070084 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -080085 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070086
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080087 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -070088 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -080089 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -080090 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080091 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070092 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -080093}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080094
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -070095extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +010096
Andrew Morton694fbc02013-09-24 15:27:37 -070097struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
98 struct mem_cgroup *,
99 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -0800100void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
101
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800102/*
103 * For memory reclaim.
104 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700105int mem_cgroup_inactive_anon_is_low(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 Weinerd7365e72014-10-29 14:50:48 -0700142struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, bool *locked,
143 unsigned long *flags);
144void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool locked,
145 unsigned long flags);
146void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
147 enum mem_cgroup_stat_index idx, int val);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700148
Johannes Weinerd7365e72014-10-29 14:50:48 -0700149static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700150 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800151{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700152 mem_cgroup_update_page_stat(memcg, idx, 1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800153}
154
Johannes Weinerd7365e72014-10-29 14:50:48 -0700155static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700156 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800157{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700158 mem_cgroup_update_page_stat(memcg, idx, -1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800159}
160
Andrew Morton0608f432013-09-24 15:27:41 -0700161unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
162 gfp_t gfp_mask,
163 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700164
David Rientjes68ae5642012-12-12 13:51:57 -0800165void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
166static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
167 enum vm_event_item idx)
168{
169 if (mem_cgroup_disabled())
170 return;
171 __mem_cgroup_count_vm_event(mm, idx);
172}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800173#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800174void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800175#endif
176
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700177#ifdef CONFIG_DEBUG_VM
178bool mem_cgroup_bad_page_check(struct page *page);
179void mem_cgroup_print_bad_page(struct page *page);
180#endif
Andrew Mortonc255a452012-07-31 16:43:02 -0700181#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800182struct mem_cgroup;
183
Johannes Weiner00501b52014-08-08 14:19:20 -0700184static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
185 gfp_t gfp_mask,
186 struct mem_cgroup **memcgp)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800187{
Johannes Weiner00501b52014-08-08 14:19:20 -0700188 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800189 return 0;
190}
191
Johannes Weiner00501b52014-08-08 14:19:20 -0700192static inline void mem_cgroup_commit_charge(struct page *page,
193 struct mem_cgroup *memcg,
194 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800195{
196}
197
Johannes Weiner00501b52014-08-08 14:19:20 -0700198static inline void mem_cgroup_cancel_charge(struct page *page,
199 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800200{
201}
202
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700203static inline void mem_cgroup_uncharge(struct page *page)
204{
205}
206
Johannes Weiner747db952014-08-08 14:19:24 -0700207static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800208{
209}
210
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700211static inline void mem_cgroup_migrate(struct page *oldpage,
212 struct page *newpage,
213 bool lrucare)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700214{
215}
216
Johannes Weiner925b7672012-01-12 17:18:15 -0800217static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
218 struct mem_cgroup *memcg)
219{
220 return &zone->lruvec;
221}
222
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700223static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
224 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700225{
Johannes Weiner925b7672012-01-12 17:18:15 -0800226 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800227}
228
Wu Fengguange42d9d52009-12-16 12:19:59 +0100229static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
230{
231 return NULL;
232}
233
Johannes Weiner587af302012-10-08 16:34:12 -0700234static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700235 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800236{
Johannes Weiner587af302012-10-08 16:34:12 -0700237 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800238}
239
David Rientjesffbdccf2013-07-03 15:01:23 -0700240static inline bool task_in_mem_cgroup(struct task_struct *task,
241 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800242{
David Rientjesffbdccf2013-07-03 15:01:23 -0700243 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800244}
245
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700246static inline struct cgroup_subsys_state
247 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100248{
249 return NULL;
250}
251
Johannes Weiner56600482012-01-12 17:17:59 -0800252static inline struct mem_cgroup *
253mem_cgroup_iter(struct mem_cgroup *root,
254 struct mem_cgroup *prev,
255 struct mem_cgroup_reclaim_cookie *reclaim)
256{
257 return NULL;
258}
259
260static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
261 struct mem_cgroup *prev)
262{
263}
264
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800265static inline bool mem_cgroup_disabled(void)
266{
267 return true;
268}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800269
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800270static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700271mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800272{
273 return 1;
274}
275
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800276static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700277mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800278{
279 return 0;
280}
281
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700282static inline void
283mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
284 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800285{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800286}
287
Balbir Singhe2224322009-04-02 16:57:39 -0700288static inline void
289mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
290{
291}
292
Johannes Weinerd7365e72014-10-29 14:50:48 -0700293static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page,
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700294 bool *locked, unsigned long *flags)
295{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700296 return NULL;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700297}
298
Johannes Weinerd7365e72014-10-29 14:50:48 -0700299static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg,
300 bool locked, unsigned long flags)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700301{
302}
303
Johannes Weiner49426422013-10-16 13:46:59 -0700304static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700305{
306}
307
Johannes Weiner49426422013-10-16 13:46:59 -0700308static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700309{
310}
311
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700312static inline bool task_in_memcg_oom(struct task_struct *p)
313{
314 return false;
315}
316
Johannes Weiner49426422013-10-16 13:46:59 -0700317static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700318{
319 return false;
320}
321
Johannes Weinerd7365e72014-10-29 14:50:48 -0700322static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700323 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800324{
325}
326
Johannes Weinerd7365e72014-10-29 14:50:48 -0700327static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700328 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700329{
330}
331
Balbir Singh4e416952009-09-23 15:56:39 -0700332static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700333unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
334 gfp_t gfp_mask,
335 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700336{
Andrew Morton0608f432013-09-24 15:27:41 -0700337 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700338}
339
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800340static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800341{
342}
343
Ying Han456f9982011-05-26 16:25:38 -0700344static inline
345void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
346{
347}
Andrew Mortonc255a452012-07-31 16:43:02 -0700348#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800349
Andrew Mortonc255a452012-07-31 16:43:02 -0700350#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700351static inline bool
352mem_cgroup_bad_page_check(struct page *page)
353{
354 return false;
355}
356
357static inline void
358mem_cgroup_print_bad_page(struct page *page)
359{
360}
361#endif
362
Glauber Costae1aab162011-12-11 21:47:03 +0000363enum {
364 UNDER_LIMIT,
365 SOFT_LIMIT,
366 OVER_LIMIT,
367};
368
369struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700370#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000371void sock_update_memcg(struct sock *sk);
372void sock_release_memcg(struct sock *sk);
373#else
374static inline void sock_update_memcg(struct sock *sk)
375{
376}
377static inline void sock_release_memcg(struct sock *sk)
378{
379}
David Rientjescd590852012-10-10 15:54:08 -0700380#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800381
382#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800383extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800384
385extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800386
387/*
388 * Helper macro to loop through all memcg-specific caches. Callers must still
389 * check if the cache is valid (it is either valid or NULL).
390 * the slab_mutex must be held when looping through those caches
391 */
Glauber Costa749c5412012-12-18 14:23:01 -0800392#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800393 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800394
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800395static inline bool memcg_kmem_enabled(void)
396{
Glauber Costaa8964b92012-12-18 14:22:09 -0800397 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800398}
399
400/*
401 * In general, we'll do everything in our power to not incur in any overhead
402 * for non-memcg users for the kmem functions. Not even a function call, if we
403 * can avoid it.
404 *
405 * Therefore, we'll inline all those functions so that in the best case, we'll
406 * see that kmemcg is off for everybody and proceed quickly. If it is on,
407 * we'll still do most of the flag checking inline. We check a lot of
408 * conditions, but because they are pretty simple, they are expected to be
409 * fast.
410 */
411bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
412 int order);
413void __memcg_kmem_commit_charge(struct page *page,
414 struct mem_cgroup *memcg, int order);
415void __memcg_kmem_uncharge_pages(struct page *page, int order);
416
Glauber Costa2633d7a2012-12-18 14:22:34 -0800417int memcg_cache_id(struct mem_cgroup *memcg);
Vladimir Davydov5722d092014-04-07 15:39:24 -0700418
Glauber Costa55007d82012-12-18 14:22:38 -0800419void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800420
421struct kmem_cache *
422__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
423
Vladimir Davydovc67a8a62014-06-04 16:07:39 -0700424int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order);
425void __memcg_uncharge_slab(struct kmem_cache *cachep, int order);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700426
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700427int __memcg_cleanup_cache_params(struct kmem_cache *s);
Glauber Costa1f458cb2012-12-18 14:22:50 -0800428
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800429/**
430 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
431 * @gfp: the gfp allocation flags.
432 * @memcg: a pointer to the memcg this was charged against.
433 * @order: allocation order.
434 *
435 * returns true if the memcg where the current task belongs can hold this
436 * allocation.
437 *
438 * We return true automatically if this allocation is not to be accounted to
439 * any memcg.
440 */
441static inline bool
442memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
443{
444 if (!memcg_kmem_enabled())
445 return true;
446
447 /*
448 * __GFP_NOFAIL allocations will move on even if charging is not
449 * possible. Therefore we don't even try, and have this allocation
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800450 * unaccounted. We could in theory charge it forcibly, but we hope
451 * those allocations are rare, and won't be worth the trouble.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800452 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700453 if (gfp & __GFP_NOFAIL)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800454 return true;
455 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
456 return true;
457
458 /* If the test is dying, just let it go. */
459 if (unlikely(fatal_signal_pending(current)))
460 return true;
461
462 return __memcg_kmem_newpage_charge(gfp, memcg, order);
463}
464
465/**
466 * memcg_kmem_uncharge_pages: uncharge pages from memcg
467 * @page: pointer to struct page being freed
468 * @order: allocation order.
469 *
470 * there is no need to specify memcg here, since it is embedded in page_cgroup
471 */
472static inline void
473memcg_kmem_uncharge_pages(struct page *page, int order)
474{
475 if (memcg_kmem_enabled())
476 __memcg_kmem_uncharge_pages(page, order);
477}
478
479/**
480 * memcg_kmem_commit_charge: embeds correct memcg in a page
481 * @page: pointer to struct page recently allocated
482 * @memcg: the memcg structure we charged against
483 * @order: allocation order.
484 *
485 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
486 * failure of the allocation. if @page is NULL, this function will revert the
487 * charges. Otherwise, it will commit the memcg given by @memcg to the
488 * corresponding page_cgroup.
489 */
490static inline void
491memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
492{
493 if (memcg_kmem_enabled() && memcg)
494 __memcg_kmem_commit_charge(page, memcg, order);
495}
496
Glauber Costad7f25f82012-12-18 14:22:40 -0800497/**
498 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
499 * @cachep: the original global kmem cache
500 * @gfp: allocation flags.
501 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700502 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800503 */
504static __always_inline struct kmem_cache *
505memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
506{
507 if (!memcg_kmem_enabled())
508 return cachep;
509 if (gfp & __GFP_NOFAIL)
510 return cachep;
511 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
512 return cachep;
513 if (unlikely(fatal_signal_pending(current)))
514 return cachep;
515
516 return __memcg_kmem_get_cache(cachep, gfp);
517}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800518#else
Glauber Costa749c5412012-12-18 14:23:01 -0800519#define for_each_memcg_cache_index(_idx) \
520 for (; NULL; )
521
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800522static inline bool memcg_kmem_enabled(void)
523{
524 return false;
525}
526
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800527static inline bool
528memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
529{
530 return true;
531}
532
533static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
534{
535}
536
537static inline void
538memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
539{
540}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800541
542static inline int memcg_cache_id(struct mem_cgroup *memcg)
543{
544 return -1;
545}
546
Glauber Costad7f25f82012-12-18 14:22:40 -0800547static inline struct kmem_cache *
548memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
549{
550 return cachep;
551}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800552#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800553#endif /* _LINUX_MEMCONTROL_H */
554