blob: 662a953ea8ad200fbbbe26388d7878a86ce14ba8 [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 */
Greg Thelenc4843a72015-05-22 17:13:16 -040044 MEM_CGROUP_STAT_DIRTY, /* # of dirty pages in page cache */
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
Johannes Weiner241994e2015-02-11 15:26:06 -080056enum mem_cgroup_events_index {
57 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
58 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
59 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
60 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
61 MEM_CGROUP_EVENTS_NSTATS,
62 /* default hierarchy events */
63 MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS,
64 MEMCG_HIGH,
65 MEMCG_MAX,
66 MEMCG_OOM,
67 MEMCG_NR_EVENTS,
68};
69
Andrew Mortonc255a452012-07-31 16:43:02 -070070#ifdef CONFIG_MEMCG
Tejun Heo56161632015-05-22 17:13:20 -040071extern struct cgroup_subsys_state *mem_cgroup_root_css;
72
Johannes Weiner241994e2015-02-11 15:26:06 -080073void mem_cgroup_events(struct mem_cgroup *memcg,
74 enum mem_cgroup_events_index idx,
75 unsigned int nr);
76
77bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
78
Johannes Weiner00501b52014-08-08 14:19:20 -070079int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
80 gfp_t gfp_mask, struct mem_cgroup **memcgp);
81void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
82 bool lrucare);
83void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg);
Johannes Weiner0a31bc92014-08-08 14:19:22 -070084void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -070085void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -070086
87void mem_cgroup_migrate(struct page *oldpage, struct page *newpage,
88 bool lrucare);
89
Johannes Weiner925b7672012-01-12 17:18:15 -080090struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070091struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -080092
Johannes Weiner2314b422014-12-10 15:44:33 -080093bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
94 struct mem_cgroup *root);
95bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
David Rientjes3062fc62008-02-07 00:14:03 -080096
Wu Fengguange42d9d52009-12-16 12:19:59 +010097extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
Balbir Singhcf475ad2008-04-29 01:00:16 -070098extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
99
Glauber Costae1aab162011-12-11 21:47:03 +0000100extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
Tejun Heo182446d2013-08-08 20:11:24 -0400101extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
Glauber Costae1aab162011-12-11 21:47:03 +0000102
Johannes Weiner2314b422014-12-10 15:44:33 -0800103static inline bool mm_match_cgroup(struct mm_struct *mm,
104 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800105{
Johannes Weiner587af302012-10-08 16:34:12 -0700106 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -0800107 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700108
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800109 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700110 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -0800111 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -0800112 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800113 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700114 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800115}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800116
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700117extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
Tejun Heoad7fa852015-05-27 20:00:02 -0400118extern struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
Wu Fengguangd3242362009-12-16 12:19:59 +0100119
Andrew Morton694fbc02013-09-24 15:27:37 -0700120struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
121 struct mem_cgroup *,
122 struct mem_cgroup_reclaim_cookie *);
Johannes Weiner56600482012-01-12 17:17:59 -0800123void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
124
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800125/*
126 * For memory reclaim.
127 */
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700128int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
Vladimir Davydov90cbc252015-02-11 15:25:55 -0800129bool mem_cgroup_lruvec_online(struct lruvec *lruvec);
Ying Han889976d2011-05-26 16:25:33 -0700130int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700131unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700132void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
Balbir Singhe2224322009-04-02 16:57:39 -0700133extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
134 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800135
Johannes Weiner49426422013-10-16 13:46:59 -0700136static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700137{
Johannes Weiner49426422013-10-16 13:46:59 -0700138 WARN_ON(current->memcg_oom.may_oom);
139 current->memcg_oom.may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700140}
141
Johannes Weiner49426422013-10-16 13:46:59 -0700142static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700143{
Johannes Weiner49426422013-10-16 13:46:59 -0700144 WARN_ON(!current->memcg_oom.may_oom);
145 current->memcg_oom.may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700146}
147
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700148static inline bool task_in_memcg_oom(struct task_struct *p)
149{
Johannes Weiner49426422013-10-16 13:46:59 -0700150 return p->memcg_oom.memcg;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700151}
152
Johannes Weiner49426422013-10-16 13:46:59 -0700153bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700154
Andrew Mortonc255a452012-07-31 16:43:02 -0700155#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800156extern int do_swap_account;
157#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800158
159static inline bool mem_cgroup_disabled(void)
160{
Tejun Heo073219e2014-02-08 10:36:58 -0500161 if (memory_cgrp_subsys.disabled)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800162 return true;
163 return false;
164}
165
Johannes Weiner6de22612015-02-11 15:25:01 -0800166struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page);
Johannes Weinerd7365e72014-10-29 14:50:48 -0700167void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
168 enum mem_cgroup_stat_index idx, int val);
Johannes Weiner6de22612015-02-11 15:25:01 -0800169void mem_cgroup_end_page_stat(struct mem_cgroup *memcg);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700170
Johannes Weinerd7365e72014-10-29 14:50:48 -0700171static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700172 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800173{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700174 mem_cgroup_update_page_stat(memcg, idx, 1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800175}
176
Johannes Weinerd7365e72014-10-29 14:50:48 -0700177static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700178 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800179{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700180 mem_cgroup_update_page_stat(memcg, idx, -1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800181}
182
Andrew Morton0608f432013-09-24 15:27:41 -0700183unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
184 gfp_t gfp_mask,
185 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700186
David Rientjes68ae5642012-12-12 13:51:57 -0800187void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
188static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
189 enum vm_event_item idx)
190{
191 if (mem_cgroup_disabled())
192 return;
193 __mem_cgroup_count_vm_event(mm, idx);
194}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800195#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800196void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800197#endif
198
Andrew Mortonc255a452012-07-31 16:43:02 -0700199#else /* CONFIG_MEMCG */
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800200struct mem_cgroup;
201
Tejun Heo56161632015-05-22 17:13:20 -0400202#define mem_cgroup_root_css ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL))
203
Johannes Weiner241994e2015-02-11 15:26:06 -0800204static inline void mem_cgroup_events(struct mem_cgroup *memcg,
205 enum mem_cgroup_events_index idx,
206 unsigned int nr)
207{
208}
209
210static inline bool mem_cgroup_low(struct mem_cgroup *root,
211 struct mem_cgroup *memcg)
212{
213 return false;
214}
215
Johannes Weiner00501b52014-08-08 14:19:20 -0700216static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
217 gfp_t gfp_mask,
218 struct mem_cgroup **memcgp)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800219{
Johannes Weiner00501b52014-08-08 14:19:20 -0700220 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800221 return 0;
222}
223
Johannes Weiner00501b52014-08-08 14:19:20 -0700224static inline void mem_cgroup_commit_charge(struct page *page,
225 struct mem_cgroup *memcg,
226 bool lrucare)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800227{
228}
229
Johannes Weiner00501b52014-08-08 14:19:20 -0700230static inline void mem_cgroup_cancel_charge(struct page *page,
231 struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800232{
233}
234
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700235static inline void mem_cgroup_uncharge(struct page *page)
236{
237}
238
Johannes Weiner747db952014-08-08 14:19:24 -0700239static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800240{
241}
242
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700243static inline void mem_cgroup_migrate(struct page *oldpage,
244 struct page *newpage,
245 bool lrucare)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700246{
247}
248
Johannes Weiner925b7672012-01-12 17:18:15 -0800249static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
250 struct mem_cgroup *memcg)
251{
252 return &zone->lruvec;
253}
254
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700255static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
256 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700257{
Johannes Weiner925b7672012-01-12 17:18:15 -0800258 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800259}
260
Wu Fengguange42d9d52009-12-16 12:19:59 +0100261static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
262{
263 return NULL;
264}
265
Johannes Weiner587af302012-10-08 16:34:12 -0700266static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700267 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800268{
Johannes Weiner587af302012-10-08 16:34:12 -0700269 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800270}
271
David Rientjesffbdccf2013-07-03 15:01:23 -0700272static inline bool task_in_mem_cgroup(struct task_struct *task,
273 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800274{
David Rientjesffbdccf2013-07-03 15:01:23 -0700275 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800276}
277
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700278static inline struct cgroup_subsys_state
279 *mem_cgroup_css(struct mem_cgroup *memcg)
Wu Fengguangd3242362009-12-16 12:19:59 +0100280{
281 return NULL;
282}
283
Johannes Weiner56600482012-01-12 17:17:59 -0800284static inline struct mem_cgroup *
285mem_cgroup_iter(struct mem_cgroup *root,
286 struct mem_cgroup *prev,
287 struct mem_cgroup_reclaim_cookie *reclaim)
288{
289 return NULL;
290}
291
292static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
293 struct mem_cgroup *prev)
294{
295}
296
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800297static inline bool mem_cgroup_disabled(void)
298{
299 return true;
300}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800301
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800302static inline int
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -0700303mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800304{
305 return 1;
306}
307
Vladimir Davydov90cbc252015-02-11 15:25:55 -0800308static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec)
309{
310 return true;
311}
312
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800313static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700314mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800315{
316 return 0;
317}
318
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700319static inline void
320mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
321 int increment)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800322{
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800323}
324
Balbir Singhe2224322009-04-02 16:57:39 -0700325static inline void
326mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
327{
328}
329
Johannes Weiner6de22612015-02-11 15:25:01 -0800330static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700331{
Johannes Weinerd7365e72014-10-29 14:50:48 -0700332 return NULL;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700333}
334
Johannes Weiner6de22612015-02-11 15:25:01 -0800335static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700336{
337}
338
Johannes Weiner49426422013-10-16 13:46:59 -0700339static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700340{
341}
342
Johannes Weiner49426422013-10-16 13:46:59 -0700343static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700344{
345}
346
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700347static inline bool task_in_memcg_oom(struct task_struct *p)
348{
349 return false;
350}
351
Johannes Weiner49426422013-10-16 13:46:59 -0700352static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700353{
354 return false;
355}
356
Johannes Weinerd7365e72014-10-29 14:50:48 -0700357static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700358 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800359{
360}
361
Johannes Weinerd7365e72014-10-29 14:50:48 -0700362static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
Sha Zhengju68b48762013-09-12 15:13:50 -0700363 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700364{
365}
366
Balbir Singh4e416952009-09-23 15:56:39 -0700367static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700368unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
369 gfp_t gfp_mask,
370 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700371{
Andrew Morton0608f432013-09-24 15:27:41 -0700372 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700373}
374
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800375static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800376{
377}
378
Ying Han456f9982011-05-26 16:25:38 -0700379static inline
380void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
381{
382}
Andrew Mortonc255a452012-07-31 16:43:02 -0700383#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800384
Glauber Costae1aab162011-12-11 21:47:03 +0000385enum {
386 UNDER_LIMIT,
387 SOFT_LIMIT,
388 OVER_LIMIT,
389};
390
Tejun Heo52ebea72015-05-22 17:13:37 -0400391#ifdef CONFIG_CGROUP_WRITEBACK
392struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
393#endif
394
Glauber Costae1aab162011-12-11 21:47:03 +0000395struct sock;
David Rientjescd590852012-10-10 15:54:08 -0700396#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
Glauber Costae1aab162011-12-11 21:47:03 +0000397void sock_update_memcg(struct sock *sk);
398void sock_release_memcg(struct sock *sk);
399#else
400static inline void sock_update_memcg(struct sock *sk)
401{
402}
403static inline void sock_release_memcg(struct sock *sk)
404{
405}
David Rientjescd590852012-10-10 15:54:08 -0700406#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800407
408#ifdef CONFIG_MEMCG_KMEM
Glauber Costaa8964b92012-12-18 14:22:09 -0800409extern struct static_key memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800410
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800411extern int memcg_nr_cache_ids;
Vladimir Davydov05257a12015-02-12 14:59:01 -0800412extern void memcg_get_cache_ids(void);
413extern void memcg_put_cache_ids(void);
Glauber Costaebe945c2012-12-18 14:23:10 -0800414
415/*
416 * Helper macro to loop through all memcg-specific caches. Callers must still
417 * check if the cache is valid (it is either valid or NULL).
418 * the slab_mutex must be held when looping through those caches
419 */
Glauber Costa749c5412012-12-18 14:23:01 -0800420#define for_each_memcg_cache_index(_idx) \
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800421 for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800422
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800423static inline bool memcg_kmem_enabled(void)
424{
Glauber Costaa8964b92012-12-18 14:22:09 -0800425 return static_key_false(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800426}
427
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800428bool memcg_kmem_is_active(struct mem_cgroup *memcg);
429
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800430/*
431 * In general, we'll do everything in our power to not incur in any overhead
432 * for non-memcg users for the kmem functions. Not even a function call, if we
433 * can avoid it.
434 *
435 * Therefore, we'll inline all those functions so that in the best case, we'll
436 * see that kmemcg is off for everybody and proceed quickly. If it is on,
437 * we'll still do most of the flag checking inline. We check a lot of
438 * conditions, but because they are pretty simple, they are expected to be
439 * fast.
440 */
441bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
442 int order);
443void __memcg_kmem_commit_charge(struct page *page,
444 struct mem_cgroup *memcg, int order);
445void __memcg_kmem_uncharge_pages(struct page *page, int order);
446
Glauber Costa2633d7a2012-12-18 14:22:34 -0800447int memcg_cache_id(struct mem_cgroup *memcg);
Vladimir Davydov5722d092014-04-07 15:39:24 -0700448
Vladimir Davydov8135be52014-12-12 16:56:38 -0800449struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep);
450void __memcg_kmem_put_cache(struct kmem_cache *cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -0800451
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800452struct mem_cgroup *__mem_cgroup_from_kmem(void *ptr);
453
Vladimir Davydovdbf22eb2015-02-10 14:11:41 -0800454int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp,
455 unsigned long nr_pages);
456void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages);
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700457
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800458/**
459 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
460 * @gfp: the gfp allocation flags.
461 * @memcg: a pointer to the memcg this was charged against.
462 * @order: allocation order.
463 *
464 * returns true if the memcg where the current task belongs can hold this
465 * allocation.
466 *
467 * We return true automatically if this allocation is not to be accounted to
468 * any memcg.
469 */
470static inline bool
471memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
472{
473 if (!memcg_kmem_enabled())
474 return true;
475
476 /*
477 * __GFP_NOFAIL allocations will move on even if charging is not
478 * possible. Therefore we don't even try, and have this allocation
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800479 * unaccounted. We could in theory charge it forcibly, but we hope
480 * those allocations are rare, and won't be worth the trouble.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800481 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700482 if (gfp & __GFP_NOFAIL)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800483 return true;
484 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
485 return true;
486
487 /* If the test is dying, just let it go. */
488 if (unlikely(fatal_signal_pending(current)))
489 return true;
490
491 return __memcg_kmem_newpage_charge(gfp, memcg, order);
492}
493
494/**
495 * memcg_kmem_uncharge_pages: uncharge pages from memcg
496 * @page: pointer to struct page being freed
497 * @order: allocation order.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800498 */
499static inline void
500memcg_kmem_uncharge_pages(struct page *page, int order)
501{
502 if (memcg_kmem_enabled())
503 __memcg_kmem_uncharge_pages(page, order);
504}
505
506/**
507 * memcg_kmem_commit_charge: embeds correct memcg in a page
508 * @page: pointer to struct page recently allocated
509 * @memcg: the memcg structure we charged against
510 * @order: allocation order.
511 *
512 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
513 * failure of the allocation. if @page is NULL, this function will revert the
Johannes Weiner1306a852014-12-10 15:44:52 -0800514 * charges. Otherwise, it will commit @page to @memcg.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800515 */
516static inline void
517memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
518{
519 if (memcg_kmem_enabled() && memcg)
520 __memcg_kmem_commit_charge(page, memcg, order);
521}
522
Glauber Costad7f25f82012-12-18 14:22:40 -0800523/**
524 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
525 * @cachep: the original global kmem cache
526 * @gfp: allocation flags.
527 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700528 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800529 */
530static __always_inline struct kmem_cache *
531memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
532{
533 if (!memcg_kmem_enabled())
534 return cachep;
535 if (gfp & __GFP_NOFAIL)
536 return cachep;
537 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
538 return cachep;
539 if (unlikely(fatal_signal_pending(current)))
540 return cachep;
541
Zhang Zhen056b7cc2014-12-12 16:55:38 -0800542 return __memcg_kmem_get_cache(cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -0800543}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800544
545static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
546{
547 if (memcg_kmem_enabled())
548 __memcg_kmem_put_cache(cachep);
549}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800550
551static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
552{
553 if (!memcg_kmem_enabled())
554 return NULL;
555 return __mem_cgroup_from_kmem(ptr);
556}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800557#else
Glauber Costa749c5412012-12-18 14:23:01 -0800558#define for_each_memcg_cache_index(_idx) \
559 for (; NULL; )
560
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800561static inline bool memcg_kmem_enabled(void)
562{
563 return false;
564}
565
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800566static inline bool memcg_kmem_is_active(struct mem_cgroup *memcg)
567{
568 return false;
569}
570
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800571static inline bool
572memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
573{
574 return true;
575}
576
577static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
578{
579}
580
581static inline void
582memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
583{
584}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800585
586static inline int memcg_cache_id(struct mem_cgroup *memcg)
587{
588 return -1;
589}
590
Vladimir Davydov05257a12015-02-12 14:59:01 -0800591static inline void memcg_get_cache_ids(void)
592{
593}
594
595static inline void memcg_put_cache_ids(void)
596{
597}
598
Glauber Costad7f25f82012-12-18 14:22:40 -0800599static inline struct kmem_cache *
600memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
601{
602 return cachep;
603}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800604
605static inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
606{
607}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800608
609static inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
610{
611 return NULL;
612}
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800613#endif /* CONFIG_MEMCG_KMEM */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800614#endif /* _LINUX_MEMCONTROL_H */
615