blob: d4d1f9b0dbbaa5848b632ab405949009880e37c7 [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
Greg Thelen2a7106f2011-01-13 15:47:37 -080033/* Stats that can be updated by kernel. */
34enum mem_cgroup_page_stat_item {
35 MEMCG_NR_FILE_MAPPED, /* # of pages charged as file rss */
36};
37
Johannes Weiner56600482012-01-12 17:17:59 -080038struct mem_cgroup_reclaim_cookie {
39 struct zone *zone;
40 int priority;
41 unsigned int generation;
42};
43
Michal Hockode577802013-09-12 15:13:26 -070044enum mem_cgroup_filter_t {
45 VISIT, /* visit current node */
46 SKIP, /* skip the current node and continue traversal */
47 SKIP_TREE, /* skip the whole subtree and continue traversal */
48};
49
50/*
51 * mem_cgroup_filter_t predicate might instruct mem_cgroup_iter_cond how to
52 * iterate through the hierarchy tree. Each tree element is checked by the
53 * predicate before it is returned by the iterator. If a filter returns
54 * SKIP or SKIP_TREE then the iterator code continues traversal (with the
55 * next node down the hierarchy or the next node that doesn't belong under the
56 * memcg's subtree).
57 */
58typedef enum mem_cgroup_filter_t
59(*mem_cgroup_iter_filter)(struct mem_cgroup *memcg, struct mem_cgroup *root);
60
Andrew Mortonc255a452012-07-31 16:43:02 -070061#ifdef CONFIG_MEMCG
KAMEZAWA Hiroyuki2c26fdd2009-01-07 18:08:10 -080062/*
63 * All "charge" functions with gfp_mask should use GFP_KERNEL or
64 * (gfp_mask & GFP_RECLAIM_MASK). In current implementatin, memcg doesn't
65 * alloc memory but reclaims memory from all available zones. So, "where I want
66 * memory from" bits of gfp_mask has no meaning. So any bits of that field is
67 * available but adding a rule is better. charge functions' gfp_mask should
68 * be set to GFP_KERNEL or gfp_mask & GFP_RECLAIM_MASK for avoiding ambiguous
69 * codes.
70 * (Of course, if memcg does memory allocation in future, GFP_KERNEL is sane.)
71 */
Pavel Emelianov78fb7462008-02-07 00:13:51 -080072
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080073extern int mem_cgroup_newpage_charge(struct page *page, struct mm_struct *mm,
Balbir Singhe1a1cd52008-02-07 00:14:02 -080074 gfp_t gfp_mask);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080075/* for swap handling */
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -080076extern int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
Johannes Weiner72835c82012-01-12 17:18:32 -080077 struct page *page, gfp_t mask, struct mem_cgroup **memcgp);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080078extern void mem_cgroup_commit_charge_swapin(struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -080079 struct mem_cgroup *memcg);
80extern void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -080081
Hugh Dickins82895462008-03-04 14:29:08 -080082extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
83 gfp_t gfp_mask);
Johannes Weiner925b7672012-01-12 17:18:15 -080084
85struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070086struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080087
88/* For coalescing uncharge for reducing memcg' overhead*/
89extern void mem_cgroup_uncharge_start(void);
90extern void mem_cgroup_uncharge_end(void);
91
Balbir Singh3c541e12008-02-07 00:14:41 -080092extern void mem_cgroup_uncharge_page(struct page *page);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -070093extern void mem_cgroup_uncharge_cache_page(struct page *page);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -070094
Johannes Weinerc3ac9a82012-05-29 15:06:25 -070095bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
96 struct mem_cgroup *memcg);
David Rientjesffbdccf2013-07-03 15:01:23 -070097bool task_in_mem_cgroup(struct task_struct *task,
98 const struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080099
Wu Fengguange42d9d52009-12-16 12:19:59 +0100100extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -0700101extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700102extern struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm);
Balbir Singhcf475ad2008-04-29 01:00:16 -0700103
Glauber Costae1aab162011-12-11 21:47:03 +0000104extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -0400105extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +0000106
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800107static inline
Johannes Weiner587af302012-10-08 16:34:12 -0700108bool mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800109{
Johannes Weiner587af302012-10-08 16:34:12 -0700110 struct mem_cgroup *task_memcg;
111 bool match;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700112
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800113 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700114 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
115 match = __mem_cgroup_same_or_subtree(memcg, task_memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800116 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700117 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800118}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800119
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700120extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Wu Fengguangd3242362009-12-16 12:19:59 +0100121
Johannes Weiner0030f532012-07-31 16:45:25 -0700122extern void
123mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
124 struct mem_cgroup **memcgp);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700125extern void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -0800126 struct page *oldpage, struct page *newpage, bool migration_ok);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800127
Michal Hockode577802013-09-12 15:13:26 -0700128struct mem_cgroup *mem_cgroup_iter_cond(struct mem_cgroup *root,
129 struct mem_cgroup *prev,
130 struct mem_cgroup_reclaim_cookie *reclaim,
131 mem_cgroup_iter_filter cond);
132
133static inline struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
134 struct mem_cgroup *prev,
135 struct mem_cgroup_reclaim_cookie *reclaim)
136{
137 return mem_cgroup_iter_cond(root, prev, reclaim, NULL);
138}
139
Johannes Weiner56600482012-01-12 17:17:59 -0800140void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
141
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800142/*
143 * For memory reclaim.
144 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700145int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700146int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700147unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700148void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700149extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
150 struct task_struct *p);
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -0800151extern void mem_cgroup_replace_page_cache(struct page *oldpage,
152 struct page *newpage);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800153
Andrew Mortonc255a452012-07-31 16:43:02 -0700154#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800155extern int do_swap_account;
156#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800157
158static inline bool mem_cgroup_disabled(void)
159{
160 if (mem_cgroup_subsys.disabled)
161 return true;
162 return false;
163}
164
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700165void __mem_cgroup_begin_update_page_stat(struct page *page, bool *locked,
166 unsigned long *flags);
167
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700168extern atomic_t memcg_moving;
169
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700170static inline void mem_cgroup_begin_update_page_stat(struct page *page,
171 bool *locked, unsigned long *flags)
172{
173 if (mem_cgroup_disabled())
174 return;
175 rcu_read_lock();
176 *locked = false;
KAMEZAWA Hiroyuki4331f7d2012-03-21 16:34:26 -0700177 if (atomic_read(&memcg_moving))
178 __mem_cgroup_begin_update_page_stat(page, locked, flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700179}
180
181void __mem_cgroup_end_update_page_stat(struct page *page,
182 unsigned long *flags);
183static inline void mem_cgroup_end_update_page_stat(struct page *page,
184 bool *locked, unsigned long *flags)
185{
186 if (mem_cgroup_disabled())
187 return;
188 if (*locked)
189 __mem_cgroup_end_update_page_stat(page, flags);
190 rcu_read_unlock();
191}
192
Greg Thelen2a7106f2011-01-13 15:47:37 -0800193void mem_cgroup_update_page_stat(struct page *page,
194 enum mem_cgroup_page_stat_item idx,
195 int val);
196
197static inline void mem_cgroup_inc_page_stat(struct page *page,
198 enum mem_cgroup_page_stat_item idx)
199{
200 mem_cgroup_update_page_stat(page, idx, 1);
201}
202
203static inline void mem_cgroup_dec_page_stat(struct page *page,
204 enum mem_cgroup_page_stat_item idx)
205{
206 mem_cgroup_update_page_stat(page, idx, -1);
207}
208
Michal Hockode577802013-09-12 15:13:26 -0700209enum mem_cgroup_filter_t
210mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -0700211 struct mem_cgroup *root);
David Rientjesa63d83f2010-08-09 17:19:46 -0700212
David Rientjes68ae5642012-12-12 13:51:57 -0800213void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
214static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
215 enum vm_event_item idx)
216{
217 if (mem_cgroup_disabled())
218 return;
219 __mem_cgroup_count_vm_event(mm, idx);
220}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800221#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800222void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800223#endif
224
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700225#ifdef CONFIG_DEBUG_VM
226bool mem_cgroup_bad_page_check(struct page *page);
227void mem_cgroup_print_bad_page(struct page *page);
228#endif
Andrew Mortonc255a452012-07-31 16:43:02 -0700229#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800230struct mem_cgroup;
231
232static inline int mem_cgroup_newpage_charge(struct page *page,
Hugh Dickins82895462008-03-04 14:29:08 -0800233 struct mm_struct *mm, gfp_t gfp_mask)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800234{
235 return 0;
236}
237
Hugh Dickins82895462008-03-04 14:29:08 -0800238static inline int mem_cgroup_cache_charge(struct page *page,
239 struct mm_struct *mm, gfp_t gfp_mask)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800240{
Hugh Dickins82895462008-03-04 14:29:08 -0800241 return 0;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800242}
243
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800244static inline int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
Johannes Weiner72835c82012-01-12 17:18:32 -0800245 struct page *page, gfp_t gfp_mask, struct mem_cgroup **memcgp)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800246{
247 return 0;
248}
249
250static inline void mem_cgroup_commit_charge_swapin(struct page *page,
Johannes Weiner72835c82012-01-12 17:18:32 -0800251 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800252{
253}
254
Johannes Weiner72835c82012-01-12 17:18:32 -0800255static inline void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800256{
257}
258
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800259static inline void mem_cgroup_uncharge_start(void)
260{
261}
262
263static inline void mem_cgroup_uncharge_end(void)
264{
265}
266
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800267static inline void mem_cgroup_uncharge_page(struct page *page)
268{
269}
270
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700271static inline void mem_cgroup_uncharge_cache_page(struct page *page)
272{
273}
274
Johannes Weiner925b7672012-01-12 17:18:15 -0800275static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
276 struct mem_cgroup *memcg)
277{
278 return &zone->lruvec;
279}
280
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700281static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
282 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700283{
Johannes Weiner925b7672012-01-12 17:18:15 -0800284 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800285}
286
Wu Fengguange42d9d52009-12-16 12:19:59 +0100287static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
288{
289 return NULL;
290}
291
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700292static inline struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
293{
294 return NULL;
295}
296
Johannes Weiner587af302012-10-08 16:34:12 -0700297static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700298 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800299{
Johannes Weiner587af302012-10-08 16:34:12 -0700300 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800301}
302
David Rientjesffbdccf2013-07-03 15:01:23 -0700303static inline bool task_in_mem_cgroup(struct task_struct *task,
304 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800305{
David Rientjesffbdccf2013-07-03 15:01:23 -0700306 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800307}
308
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700309static inline struct cgroup_subsys_state
310 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100311{
312 return NULL;
313}
314
Johannes Weiner0030f532012-07-31 16:45:25 -0700315static inline void
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -0700316mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
Johannes Weiner0030f532012-07-31 16:45:25 -0700317 struct mem_cgroup **memcgp)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800318{
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800319}
320
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700321static inline void mem_cgroup_end_migration(struct mem_cgroup *memcg,
Daisuke Nishimura50de1dd2011-01-13 15:47:43 -0800322 struct page *oldpage, struct page *newpage, bool migration_ok)
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800323{
324}
Michal Hockode577802013-09-12 15:13:26 -0700325static inline struct mem_cgroup *
326mem_cgroup_iter_cond(struct mem_cgroup *root,
327 struct mem_cgroup *prev,
328 struct mem_cgroup_reclaim_cookie *reclaim,
329 mem_cgroup_iter_filter cond)
330{
331 /* first call must return non-NULL, second return NULL */
332 return (struct mem_cgroup *)(unsigned long)!prev;
333}
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800334
Johannes Weiner56600482012-01-12 17:17:59 -0800335static inline struct mem_cgroup *
336mem_cgroup_iter(struct mem_cgroup *root,
337 struct mem_cgroup *prev,
338 struct mem_cgroup_reclaim_cookie *reclaim)
339{
340 return NULL;
341}
342
343static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
344 struct mem_cgroup *prev)
345{
346}
347
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800348static inline bool mem_cgroup_disabled(void)
349{
350 return true;
351}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800352
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800353static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700354mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800355{
356 return 1;
357}
358
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800359static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700360mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800361{
362 return 0;
363}
364
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700365static inline void
366mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
367 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800368{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800369}
370
Balbir Singhe2224322009-04-02 16:57:39 -0700371static inline void
372mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
373{
374}
375
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700376static inline void mem_cgroup_begin_update_page_stat(struct page *page,
377 bool *locked, unsigned long *flags)
378{
379}
380
381static inline void mem_cgroup_end_update_page_stat(struct page *page,
382 bool *locked, unsigned long *flags)
383{
384}
385
Greg Thelen2a7106f2011-01-13 15:47:37 -0800386static inline void mem_cgroup_inc_page_stat(struct page *page,
387 enum mem_cgroup_page_stat_item idx)
388{
389}
390
391static inline void mem_cgroup_dec_page_stat(struct page *page,
392 enum mem_cgroup_page_stat_item idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700393{
394}
395
Balbir Singh4e416952009-09-23 15:56:39 -0700396static inline
Michal Hockode577802013-09-12 15:13:26 -0700397enum mem_cgroup_filter_t
398mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg,
Michal Hockoa5b7c872013-09-12 15:13:25 -0700399 struct mem_cgroup *root)
Balbir Singh4e416952009-09-23 15:56:39 -0700400{
Michal Hockode577802013-09-12 15:13:26 -0700401 return VISIT;
Balbir Singh4e416952009-09-23 15:56:39 -0700402}
403
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800404static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800405{
406}
407
Ying Han456f9982011-05-26 16:25:38 -0700408static inline
409void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
410{
411}
KAMEZAWA Hiroyukiab936cb2012-01-12 17:17:44 -0800412static inline void mem_cgroup_replace_page_cache(struct page *oldpage,
413 struct page *newpage)
414{
415}
Andrew Mortonc255a452012-07-31 16:43:02 -0700416#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800417
Andrew Mortonc255a452012-07-31 16:43:02 -0700418#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -0700419static inline bool
420mem_cgroup_bad_page_check(struct page *page)
421{
422 return false;
423}
424
425static inline void
426mem_cgroup_print_bad_page(struct page *page)
427{
428}
429#endif
430
Glauber Costae1aab162011-12-11 21:47:03 +0000431enum {
432 UNDER_LIMIT,
433 SOFT_LIMIT,
434 OVER_LIMIT,
435};
436
437struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700438#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000439void sock_update_memcg(struct sock *sk);
440void sock_release_memcg(struct sock *sk);
441#else
442static inline void sock_update_memcg(struct sock *sk)
443{
444}
445static inline void sock_release_memcg(struct sock *sk)
446{
447}
David Rientjescd590852012-10-10 15:54:08 -0700448#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800449
450#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800451extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800452
453extern int memcg_limited_groups_array_size;
Glauber Costaebe945c2012-12-18 14:23:10 -0800454
455/*
456 * Helper macro to loop through all memcg-specific caches. Callers must still
457 * check if the cache is valid (it is either valid or NULL).
458 * the slab_mutex must be held when looping through those caches
459 */
Glauber Costa749c5412012-12-18 14:23:01 -0800460#define for_each_memcg_cache_index(_idx) \
Glauber Costa91c777d2013-02-04 14:28:49 -0800461 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800462
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800463static inline bool memcg_kmem_enabled(void)
464{
Glauber Costaa8964b92012-12-18 14:22:09 -0800465 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800466}
467
468/*
469 * In general, we'll do everything in our power to not incur in any overhead
470 * for non-memcg users for the kmem functions. Not even a function call, if we
471 * can avoid it.
472 *
473 * Therefore, we'll inline all those functions so that in the best case, we'll
474 * see that kmemcg is off for everybody and proceed quickly. If it is on,
475 * we'll still do most of the flag checking inline. We check a lot of
476 * conditions, but because they are pretty simple, they are expected to be
477 * fast.
478 */
479bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
480 int order);
481void __memcg_kmem_commit_charge(struct page *page,
482 struct mem_cgroup *memcg, int order);
483void __memcg_kmem_uncharge_pages(struct page *page, int order);
484
Glauber Costa2633d7a2012-12-18 14:22:34 -0800485int memcg_cache_id(struct mem_cgroup *memcg);
Glauber Costa943a4512012-12-18 14:23:03 -0800486int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
487 struct kmem_cache *root_cache);
Glauber Costa2633d7a2012-12-18 14:22:34 -0800488void memcg_release_cache(struct kmem_cache *cachep);
489void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep);
490
Glauber Costa55007d82012-12-18 14:22:38 -0800491int memcg_update_cache_size(struct kmem_cache *s, int num_groups);
492void memcg_update_array_size(int num_groups);
Glauber Costad7f25f82012-12-18 14:22:40 -0800493
494struct kmem_cache *
495__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
496
Glauber Costa1f458cb2012-12-18 14:22:50 -0800497void mem_cgroup_destroy_cache(struct kmem_cache *cachep);
Glauber Costa7cf27982012-12-18 14:22:55 -0800498void kmem_cache_destroy_memcg_children(struct kmem_cache *s);
Glauber Costa1f458cb2012-12-18 14:22:50 -0800499
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800500/**
501 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
502 * @gfp: the gfp allocation flags.
503 * @memcg: a pointer to the memcg this was charged against.
504 * @order: allocation order.
505 *
506 * returns true if the memcg where the current task belongs can hold this
507 * allocation.
508 *
509 * We return true automatically if this allocation is not to be accounted to
510 * any memcg.
511 */
512static inline bool
513memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
514{
515 if (!memcg_kmem_enabled())
516 return true;
517
518 /*
519 * __GFP_NOFAIL allocations will move on even if charging is not
520 * possible. Therefore we don't even try, and have this allocation
521 * unaccounted. We could in theory charge it with
522 * res_counter_charge_nofail, but we hope those allocations are rare,
523 * and won't be worth the trouble.
524 */
525 if (!(gfp & __GFP_KMEMCG) || (gfp & __GFP_NOFAIL))
526 return true;
527 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
528 return true;
529
530 /* If the test is dying, just let it go. */
531 if (unlikely(fatal_signal_pending(current)))
532 return true;
533
534 return __memcg_kmem_newpage_charge(gfp, memcg, order);
535}
536
537/**
538 * memcg_kmem_uncharge_pages: uncharge pages from memcg
539 * @page: pointer to struct page being freed
540 * @order: allocation order.
541 *
542 * there is no need to specify memcg here, since it is embedded in page_cgroup
543 */
544static inline void
545memcg_kmem_uncharge_pages(struct page *page, int order)
546{
547 if (memcg_kmem_enabled())
548 __memcg_kmem_uncharge_pages(page, order);
549}
550
551/**
552 * memcg_kmem_commit_charge: embeds correct memcg in a page
553 * @page: pointer to struct page recently allocated
554 * @memcg: the memcg structure we charged against
555 * @order: allocation order.
556 *
557 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
558 * failure of the allocation. if @page is NULL, this function will revert the
559 * charges. Otherwise, it will commit the memcg given by @memcg to the
560 * corresponding page_cgroup.
561 */
562static inline void
563memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
564{
565 if (memcg_kmem_enabled() && memcg)
566 __memcg_kmem_commit_charge(page, memcg, order);
567}
568
Glauber Costad7f25f82012-12-18 14:22:40 -0800569/**
570 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
571 * @cachep: the original global kmem cache
572 * @gfp: allocation flags.
573 *
574 * This function assumes that the task allocating, which determines the memcg
575 * in the page allocator, belongs to the same cgroup throughout the whole
576 * process. Misacounting can happen if the task calls memcg_kmem_get_cache()
577 * while belonging to a cgroup, and later on changes. This is considered
578 * acceptable, and should only happen upon task migration.
579 *
580 * Before the cache is created by the memcg core, there is also a possible
581 * imbalance: the task belongs to a memcg, but the cache being allocated from
582 * is the global cache, since the child cache is not yet guaranteed to be
583 * ready. This case is also fine, since in this case the GFP_KMEMCG will not be
584 * passed and the page allocator will not attempt any cgroup accounting.
585 */
586static __always_inline struct kmem_cache *
587memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
588{
589 if (!memcg_kmem_enabled())
590 return cachep;
591 if (gfp & __GFP_NOFAIL)
592 return cachep;
593 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
594 return cachep;
595 if (unlikely(fatal_signal_pending(current)))
596 return cachep;
597
598 return __memcg_kmem_get_cache(cachep, gfp);
599}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800600#else
Glauber Costa749c5412012-12-18 14:23:01 -0800601#define for_each_memcg_cache_index(_idx) \
602 for (; NULL; )
603
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800604static inline bool memcg_kmem_enabled(void)
605{
606 return false;
607}
608
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800609static inline bool
610memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
611{
612 return true;
613}
614
615static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
616{
617}
618
619static inline void
620memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
621{
622}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800623
624static inline int memcg_cache_id(struct mem_cgroup *memcg)
625{
626 return -1;
627}
628
Glauber Costa943a4512012-12-18 14:23:03 -0800629static inline int
630memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
631 struct kmem_cache *root_cache)
Glauber Costa2633d7a2012-12-18 14:22:34 -0800632{
633 return 0;
634}
635
636static inline void memcg_release_cache(struct kmem_cache *cachep)
637{
638}
639
640static inline void memcg_cache_list_add(struct mem_cgroup *memcg,
641 struct kmem_cache *s)
642{
643}
Glauber Costad7f25f82012-12-18 14:22:40 -0800644
645static inline struct kmem_cache *
646memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
647{
648 return cachep;
649}
Glauber Costa7cf27982012-12-18 14:22:55 -0800650
651static inline void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
652{
653}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800654#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800655#endif /* _LINUX_MEMCONTROL_H */
656