blob: a805474df4abd8c70c83bdbd3b383ad9c02eca1c [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>
Michal Hocko33398cf2015-09-08 15:01:02 -070026#include <linux/page_counter.h>
27#include <linux/vmpressure.h>
28#include <linux/eventfd.h>
29#include <linux/mmzone.h>
30#include <linux/writeback.h>
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -070031#include <linux/page-flags.h>
Ying Han456f9982011-05-26 16:25:38 -070032
Pavel Emelianov78fb7462008-02-07 00:13:51 -080033struct mem_cgroup;
Balbir Singh8697d332008-02-07 00:13:59 -080034struct page;
35struct mm_struct;
Glauber Costa2633d7a2012-12-18 14:22:34 -080036struct kmem_cache;
Pavel Emelianov78fb7462008-02-07 00:13:51 -080037
Sha Zhengju68b48762013-09-12 15:13:50 -070038/*
39 * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
40 * These two lists should keep in accord with each other.
41 */
42enum mem_cgroup_stat_index {
43 /*
44 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
45 */
46 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
47 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
48 MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
49 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
Greg Thelenc4843a72015-05-22 17:13:16 -040050 MEM_CGROUP_STAT_DIRTY, /* # of dirty pages in page cache */
Sha Zhengju3ea67d02013-09-12 15:13:53 -070051 MEM_CGROUP_STAT_WRITEBACK, /* # of pages under writeback */
Sha Zhengju68b48762013-09-12 15:13:50 -070052 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
53 MEM_CGROUP_STAT_NSTATS,
Johannes Weinerb2807f02016-01-20 15:03:22 -080054 /* default hierarchy stats */
Vladimir Davydov12580e42016-03-17 14:17:38 -070055 MEMCG_KERNEL_STACK = MEM_CGROUP_STAT_NSTATS,
Vladimir Davydov27ee57c2016-03-17 14:17:35 -070056 MEMCG_SLAB_RECLAIMABLE,
57 MEMCG_SLAB_UNRECLAIMABLE,
Vladimir Davydov12580e42016-03-17 14:17:38 -070058 MEMCG_SOCK,
Johannes Weinerb2807f02016-01-20 15:03:22 -080059 MEMCG_NR_STAT,
Greg Thelen2a7106f2011-01-13 15:47:37 -080060};
61
Johannes Weiner56600482012-01-12 17:17:59 -080062struct mem_cgroup_reclaim_cookie {
63 struct zone *zone;
64 int priority;
65 unsigned int generation;
66};
67
Johannes Weiner241994ed2015-02-11 15:26:06 -080068enum mem_cgroup_events_index {
69 MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
70 MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
71 MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
72 MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
73 MEM_CGROUP_EVENTS_NSTATS,
74 /* default hierarchy events */
75 MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS,
76 MEMCG_HIGH,
77 MEMCG_MAX,
78 MEMCG_OOM,
79 MEMCG_NR_EVENTS,
80};
81
Michal Hocko33398cf2015-09-08 15:01:02 -070082/*
83 * Per memcg event counter is incremented at every pagein/pageout. With THP,
84 * it will be incremated by the number of pages. This counter is used for
85 * for trigger some periodic events. This is straightforward and better
86 * than using jiffies etc. to handle periodic memcg event.
87 */
88enum mem_cgroup_events_target {
89 MEM_CGROUP_TARGET_THRESH,
90 MEM_CGROUP_TARGET_SOFTLIMIT,
91 MEM_CGROUP_TARGET_NUMAINFO,
92 MEM_CGROUP_NTARGETS,
93};
94
Andrew Mortonc255a452012-07-31 16:43:02 -070095#ifdef CONFIG_MEMCG
Johannes Weiner23047a92016-03-15 14:57:16 -070096
97#define MEM_CGROUP_ID_SHIFT 16
98#define MEM_CGROUP_ID_MAX USHRT_MAX
99
Michal Hocko33398cf2015-09-08 15:01:02 -0700100struct mem_cgroup_stat_cpu {
Johannes Weinerb2807f02016-01-20 15:03:22 -0800101 long count[MEMCG_NR_STAT];
Michal Hocko33398cf2015-09-08 15:01:02 -0700102 unsigned long events[MEMCG_NR_EVENTS];
103 unsigned long nr_page_events;
104 unsigned long targets[MEM_CGROUP_NTARGETS];
105};
106
107struct mem_cgroup_reclaim_iter {
108 struct mem_cgroup *position;
109 /* scan generation, increased every round-trip */
110 unsigned int generation;
111};
112
113/*
114 * per-zone information in memory controller.
115 */
116struct mem_cgroup_per_zone {
117 struct lruvec lruvec;
118 unsigned long lru_size[NR_LRU_LISTS];
119
120 struct mem_cgroup_reclaim_iter iter[DEF_PRIORITY + 1];
121
122 struct rb_node tree_node; /* RB tree node */
123 unsigned long usage_in_excess;/* Set to the value by which */
124 /* the soft limit is exceeded*/
125 bool on_tree;
126 struct mem_cgroup *memcg; /* Back pointer, we cannot */
127 /* use container_of */
128};
129
130struct mem_cgroup_per_node {
131 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
132};
133
134struct mem_cgroup_threshold {
135 struct eventfd_ctx *eventfd;
136 unsigned long threshold;
137};
138
139/* For threshold */
140struct mem_cgroup_threshold_ary {
141 /* An array index points to threshold just below or equal to usage. */
142 int current_threshold;
143 /* Size of entries[] */
144 unsigned int size;
145 /* Array of thresholds */
146 struct mem_cgroup_threshold entries[0];
147};
148
149struct mem_cgroup_thresholds {
150 /* Primary thresholds array */
151 struct mem_cgroup_threshold_ary *primary;
152 /*
153 * Spare threshold array.
154 * This is needed to make mem_cgroup_unregister_event() "never fail".
155 * It must be able to store at least primary->size - 1 entries.
156 */
157 struct mem_cgroup_threshold_ary *spare;
158};
159
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800160enum memcg_kmem_state {
161 KMEM_NONE,
162 KMEM_ALLOCATED,
163 KMEM_ONLINE,
164};
165
Michal Hocko33398cf2015-09-08 15:01:02 -0700166/*
167 * The memory controller data structure. The memory controller controls both
168 * page cache and RSS per cgroup. We would eventually like to provide
169 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
170 * to help the administrator determine what knobs to tune.
171 */
172struct mem_cgroup {
173 struct cgroup_subsys_state css;
174
175 /* Accounted resources */
176 struct page_counter memory;
Vladimir Davydov37e84352016-01-20 15:02:56 -0800177 struct page_counter swap;
Johannes Weiner0db15292016-01-20 15:02:50 -0800178
179 /* Legacy consumer-oriented counters */
Michal Hocko33398cf2015-09-08 15:01:02 -0700180 struct page_counter memsw;
181 struct page_counter kmem;
Johannes Weiner0db15292016-01-20 15:02:50 -0800182 struct page_counter tcpmem;
Michal Hocko33398cf2015-09-08 15:01:02 -0700183
184 /* Normal memory consumption range */
185 unsigned long low;
186 unsigned long high;
187
Johannes Weinerf7e1cb62016-01-14 15:21:29 -0800188 /* Range enforcement for interrupt charges */
189 struct work_struct high_work;
190
Michal Hocko33398cf2015-09-08 15:01:02 -0700191 unsigned long soft_limit;
192
193 /* vmpressure notifications */
194 struct vmpressure vmpressure;
195
Michal Hocko33398cf2015-09-08 15:01:02 -0700196 /*
197 * Should the accounting and control be hierarchical, per subtree?
198 */
199 bool use_hierarchy;
200
201 /* protected by memcg_oom_lock */
202 bool oom_lock;
203 int under_oom;
204
205 int swappiness;
206 /* OOM-Killer disable */
207 int oom_kill_disable;
208
Tejun Heo472912a2015-09-18 18:01:59 -0400209 /* handle for "memory.events" */
210 struct cgroup_file events_file;
211
Michal Hocko33398cf2015-09-08 15:01:02 -0700212 /* protect arrays of thresholds */
213 struct mutex thresholds_lock;
214
215 /* thresholds for memory usage. RCU-protected */
216 struct mem_cgroup_thresholds thresholds;
217
218 /* thresholds for mem+swap usage. RCU-protected */
219 struct mem_cgroup_thresholds memsw_thresholds;
220
221 /* For oom notifier event fd */
222 struct list_head oom_notify;
223
224 /*
225 * Should we move charges of a task when a task is moved into this
226 * mem_cgroup ? And what type of charges should we move ?
227 */
228 unsigned long move_charge_at_immigrate;
229 /*
230 * set > 0 if pages under this cgroup are moving to other cgroup.
231 */
232 atomic_t moving_account;
233 /* taken only while moving_account > 0 */
234 spinlock_t move_lock;
235 struct task_struct *move_lock_task;
236 unsigned long move_lock_flags;
237 /*
238 * percpu counter.
239 */
240 struct mem_cgroup_stat_cpu __percpu *stat;
Michal Hocko33398cf2015-09-08 15:01:02 -0700241
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800242 unsigned long socket_pressure;
243
244 /* Legacy tcp memory accounting */
Johannes Weiner0db15292016-01-20 15:02:50 -0800245 bool tcpmem_active;
246 int tcpmem_pressure;
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800247
Johannes Weiner127424c2016-01-20 15:02:32 -0800248#ifndef CONFIG_SLOB
Michal Hocko33398cf2015-09-08 15:01:02 -0700249 /* Index in the kmem_cache->memcg_params.memcg_caches array */
250 int kmemcg_id;
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800251 enum memcg_kmem_state kmem_state;
Michal Hocko33398cf2015-09-08 15:01:02 -0700252#endif
253
254 int last_scanned_node;
255#if MAX_NUMNODES > 1
256 nodemask_t scan_nodes;
257 atomic_t numainfo_events;
258 atomic_t numainfo_updating;
259#endif
260
261#ifdef CONFIG_CGROUP_WRITEBACK
262 struct list_head cgwb_list;
263 struct wb_domain cgwb_domain;
264#endif
265
266 /* List of events which userspace want to receive */
267 struct list_head event_list;
268 spinlock_t event_list_lock;
269
270 struct mem_cgroup_per_node *nodeinfo[0];
271 /* WARNING: nodeinfo must be the last member here */
272};
Johannes Weiner7d828602016-01-14 15:20:56 -0800273
274extern struct mem_cgroup *root_mem_cgroup;
Tejun Heo56161632015-05-22 17:13:20 -0400275
Johannes Weiner23047a92016-03-15 14:57:16 -0700276static inline bool mem_cgroup_disabled(void)
277{
278 return !cgroup_subsys_enabled(memory_cgrp_subsys);
279}
280
Michal Hocko33398cf2015-09-08 15:01:02 -0700281/**
282 * mem_cgroup_events - count memory events against a cgroup
283 * @memcg: the memory cgroup
284 * @idx: the event index
285 * @nr: the number of events to account for
286 */
287static inline void mem_cgroup_events(struct mem_cgroup *memcg,
Johannes Weiner241994ed2015-02-11 15:26:06 -0800288 enum mem_cgroup_events_index idx,
Michal Hocko33398cf2015-09-08 15:01:02 -0700289 unsigned int nr)
290{
291 this_cpu_add(memcg->stat->events[idx], nr);
Tejun Heo472912a2015-09-18 18:01:59 -0400292 cgroup_file_notify(&memcg->events_file);
Michal Hocko33398cf2015-09-08 15:01:02 -0700293}
Johannes Weiner241994ed2015-02-11 15:26:06 -0800294
295bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
296
Johannes Weiner00501b52014-08-08 14:19:20 -0700297int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800298 gfp_t gfp_mask, struct mem_cgroup **memcgp,
299 bool compound);
Johannes Weiner00501b52014-08-08 14:19:20 -0700300void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800301 bool lrucare, bool compound);
302void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg,
303 bool compound);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700304void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -0700305void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700306
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700307void mem_cgroup_migrate(struct page *oldpage, struct page *newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700308
Johannes Weiner925b7672012-01-12 17:18:15 -0800309struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700310struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800311
Johannes Weiner2314b422014-12-10 15:44:33 -0800312bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
Michal Hocko64219992015-09-08 15:01:07 -0700313struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
Vladimir Davydove993d902015-09-09 15:35:35 -0700314
Michal Hocko33398cf2015-09-08 15:01:02 -0700315static inline
316struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
317 return css ? container_of(css, struct mem_cgroup, css) : NULL;
318}
319
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800320#define mem_cgroup_from_counter(counter, member) \
321 container_of(counter, struct mem_cgroup, member)
322
Michal Hocko33398cf2015-09-08 15:01:02 -0700323struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
324 struct mem_cgroup *,
325 struct mem_cgroup_reclaim_cookie *);
326void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
327
Johannes Weiner23047a92016-03-15 14:57:16 -0700328static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
329{
330 if (mem_cgroup_disabled())
331 return 0;
332
333 return memcg->css.id;
334}
335
336/**
337 * mem_cgroup_from_id - look up a memcg from an id
338 * @id: the id to look up
339 *
340 * Caller must hold rcu_read_lock() and use css_tryget() as necessary.
341 */
342static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
343{
344 struct cgroup_subsys_state *css;
345
346 css = css_from_id(id, &memory_cgrp_subsys);
347 return mem_cgroup_from_css(css);
348}
349
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800350/**
351 * parent_mem_cgroup - find the accounting parent of a memcg
352 * @memcg: memcg whose parent to find
353 *
354 * Returns the parent memcg, or NULL if this is the root or the memory
355 * controller is in legacy no-hierarchy mode.
356 */
357static inline struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
358{
359 if (!memcg->memory.parent)
360 return NULL;
361 return mem_cgroup_from_counter(memcg->memory.parent, memory);
362}
363
Michal Hocko33398cf2015-09-08 15:01:02 -0700364static inline bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
365 struct mem_cgroup *root)
366{
367 if (root == memcg)
368 return true;
369 if (!root->use_hierarchy)
370 return false;
371 return cgroup_is_descendant(memcg->css.cgroup, root->css.cgroup);
372}
Glauber Costae1aab162011-12-11 21:47:03 +0000373
Johannes Weiner2314b422014-12-10 15:44:33 -0800374static inline bool mm_match_cgroup(struct mm_struct *mm,
375 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800376{
Johannes Weiner587af302012-10-08 16:34:12 -0700377 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -0800378 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700379
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800380 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700381 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -0800382 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -0800383 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800384 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700385 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800386}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800387
Michal Hocko64219992015-09-08 15:01:07 -0700388struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700389ino_t page_cgroup_ino(struct page *page);
Wu Fengguangd3242362009-12-16 12:19:59 +0100390
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800391static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
392{
393 if (mem_cgroup_disabled())
394 return true;
395 return !!(memcg->css.flags & CSS_ONLINE);
396}
397
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800398/*
399 * For memory reclaim.
400 */
Ying Han889976d2011-05-26 16:25:33 -0700401int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Michal Hocko33398cf2015-09-08 15:01:02 -0700402
403void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
404 int nr_pages);
405
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700406unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
407 int nid, unsigned int lru_mask);
408
Michal Hocko33398cf2015-09-08 15:01:02 -0700409static inline
410unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
411{
412 struct mem_cgroup_per_zone *mz;
413
414 mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
415 return mz->lru_size[lru];
416}
417
Tejun Heob23afb92015-11-05 18:46:11 -0800418void mem_cgroup_handle_over_high(void);
419
Michal Hocko64219992015-09-08 15:01:07 -0700420void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
421 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800422
Johannes Weiner49426422013-10-16 13:46:59 -0700423static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700424{
Tejun Heo626ebc42015-11-05 18:46:09 -0800425 WARN_ON(current->memcg_may_oom);
426 current->memcg_may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700427}
428
Johannes Weiner49426422013-10-16 13:46:59 -0700429static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700430{
Tejun Heo626ebc42015-11-05 18:46:09 -0800431 WARN_ON(!current->memcg_may_oom);
432 current->memcg_may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700433}
434
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700435static inline bool task_in_memcg_oom(struct task_struct *p)
436{
Tejun Heo626ebc42015-11-05 18:46:09 -0800437 return p->memcg_in_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700438}
439
Johannes Weiner49426422013-10-16 13:46:59 -0700440bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700441
Andrew Mortonc255a452012-07-31 16:43:02 -0700442#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800443extern int do_swap_account;
444#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800445
Johannes Weiner62cccb82016-03-15 14:57:22 -0700446void lock_page_memcg(struct page *page);
447void unlock_page_memcg(struct page *page);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700448
Michal Hocko33398cf2015-09-08 15:01:02 -0700449/**
450 * mem_cgroup_update_page_stat - update page state statistics
Johannes Weiner62cccb82016-03-15 14:57:22 -0700451 * @page: the page
Michal Hocko33398cf2015-09-08 15:01:02 -0700452 * @idx: page state item to account
453 * @val: number of pages (positive or negative)
454 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700455 * The @page must be locked or the caller must use lock_page_memcg()
456 * to prevent double accounting when the page is concurrently being
457 * moved to another memcg:
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700458 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700459 * lock_page(page) or lock_page_memcg(page)
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700460 * if (TestClearPageState(page))
Johannes Weiner62cccb82016-03-15 14:57:22 -0700461 * mem_cgroup_update_page_stat(page, state, -1);
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700462 * unlock_page(page) or unlock_page_memcg(page)
Michal Hocko33398cf2015-09-08 15:01:02 -0700463 */
Johannes Weiner62cccb82016-03-15 14:57:22 -0700464static inline void mem_cgroup_update_page_stat(struct page *page,
Michal Hocko33398cf2015-09-08 15:01:02 -0700465 enum mem_cgroup_stat_index idx, int val)
466{
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700467 VM_BUG_ON(!(rcu_read_lock_held() || PageLocked(page)));
Michal Hocko33398cf2015-09-08 15:01:02 -0700468
Johannes Weiner62cccb82016-03-15 14:57:22 -0700469 if (page->mem_cgroup)
470 this_cpu_add(page->mem_cgroup->stat->count[idx], val);
Michal Hocko33398cf2015-09-08 15:01:02 -0700471}
472
Johannes Weiner62cccb82016-03-15 14:57:22 -0700473static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700474 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800475{
Johannes Weiner62cccb82016-03-15 14:57:22 -0700476 mem_cgroup_update_page_stat(page, idx, 1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800477}
478
Johannes Weiner62cccb82016-03-15 14:57:22 -0700479static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700480 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800481{
Johannes Weiner62cccb82016-03-15 14:57:22 -0700482 mem_cgroup_update_page_stat(page, idx, -1);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800483}
484
Andrew Morton0608f432013-09-24 15:27:41 -0700485unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
486 gfp_t gfp_mask,
487 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700488
David Rientjes68ae5642012-12-12 13:51:57 -0800489static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
490 enum vm_event_item idx)
491{
Michal Hocko33398cf2015-09-08 15:01:02 -0700492 struct mem_cgroup *memcg;
493
David Rientjes68ae5642012-12-12 13:51:57 -0800494 if (mem_cgroup_disabled())
495 return;
Michal Hocko33398cf2015-09-08 15:01:02 -0700496
497 rcu_read_lock();
498 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
499 if (unlikely(!memcg))
500 goto out;
501
502 switch (idx) {
503 case PGFAULT:
504 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
505 break;
506 case PGMAJFAULT:
507 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
508 break;
509 default:
510 BUG();
511 }
512out:
513 rcu_read_unlock();
David Rientjes68ae5642012-12-12 13:51:57 -0800514}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800515#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800516void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800517#endif
518
Andrew Mortonc255a452012-07-31 16:43:02 -0700519#else /* CONFIG_MEMCG */
Johannes Weiner23047a92016-03-15 14:57:16 -0700520
521#define MEM_CGROUP_ID_SHIFT 0
522#define MEM_CGROUP_ID_MAX 0
523
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800524struct mem_cgroup;
525
Johannes Weiner23047a92016-03-15 14:57:16 -0700526static inline bool mem_cgroup_disabled(void)
527{
528 return true;
529}
530
Johannes Weiner241994ed2015-02-11 15:26:06 -0800531static inline void mem_cgroup_events(struct mem_cgroup *memcg,
532 enum mem_cgroup_events_index idx,
533 unsigned int nr)
534{
535}
536
537static inline bool mem_cgroup_low(struct mem_cgroup *root,
538 struct mem_cgroup *memcg)
539{
540 return false;
541}
542
Johannes Weiner00501b52014-08-08 14:19:20 -0700543static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
544 gfp_t gfp_mask,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800545 struct mem_cgroup **memcgp,
546 bool compound)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800547{
Johannes Weiner00501b52014-08-08 14:19:20 -0700548 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800549 return 0;
550}
551
Johannes Weiner00501b52014-08-08 14:19:20 -0700552static inline void mem_cgroup_commit_charge(struct page *page,
553 struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800554 bool lrucare, bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800555{
556}
557
Johannes Weiner00501b52014-08-08 14:19:20 -0700558static inline void mem_cgroup_cancel_charge(struct page *page,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800559 struct mem_cgroup *memcg,
560 bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800561{
562}
563
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700564static inline void mem_cgroup_uncharge(struct page *page)
565{
566}
567
Johannes Weiner747db952014-08-08 14:19:24 -0700568static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800569{
570}
571
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700572static inline void mem_cgroup_migrate(struct page *old, struct page *new)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700573{
574}
575
Johannes Weiner925b7672012-01-12 17:18:15 -0800576static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
577 struct mem_cgroup *memcg)
578{
579 return &zone->lruvec;
580}
581
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700582static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
583 struct zone *zone)
Minchan Kim3f58a822011-03-22 16:32:53 -0700584{
Johannes Weiner925b7672012-01-12 17:18:15 -0800585 return &zone->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800586}
587
Johannes Weiner587af302012-10-08 16:34:12 -0700588static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700589 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800590{
Johannes Weiner587af302012-10-08 16:34:12 -0700591 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800592}
593
David Rientjesffbdccf2013-07-03 15:01:23 -0700594static inline bool task_in_mem_cgroup(struct task_struct *task,
595 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800596{
David Rientjesffbdccf2013-07-03 15:01:23 -0700597 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800598}
599
Johannes Weiner56600482012-01-12 17:17:59 -0800600static inline struct mem_cgroup *
601mem_cgroup_iter(struct mem_cgroup *root,
602 struct mem_cgroup *prev,
603 struct mem_cgroup_reclaim_cookie *reclaim)
604{
605 return NULL;
606}
607
608static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
609 struct mem_cgroup *prev)
610{
611}
612
Johannes Weiner23047a92016-03-15 14:57:16 -0700613static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800614{
Johannes Weiner23047a92016-03-15 14:57:16 -0700615 return 0;
616}
617
618static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
619{
620 WARN_ON_ONCE(id);
621 /* XXX: This should always return root_mem_cgroup */
622 return NULL;
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800623}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800624
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800625static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800626{
Yaowei Bai13308ca2015-11-05 18:47:40 -0800627 return true;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800628}
629
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800630static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700631mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800632{
633 return 0;
634}
635
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700636static inline unsigned long
637mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
638 int nid, unsigned int lru_mask)
639{
640 return 0;
641}
642
Balbir Singhe2224322009-04-02 16:57:39 -0700643static inline void
644mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
645{
646}
647
Johannes Weiner62cccb82016-03-15 14:57:22 -0700648static inline void lock_page_memcg(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700649{
650}
651
Johannes Weiner62cccb82016-03-15 14:57:22 -0700652static inline void unlock_page_memcg(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700653{
654}
655
Tejun Heob23afb92015-11-05 18:46:11 -0800656static inline void mem_cgroup_handle_over_high(void)
657{
658}
659
Johannes Weiner49426422013-10-16 13:46:59 -0700660static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700661{
662}
663
Johannes Weiner49426422013-10-16 13:46:59 -0700664static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700665{
666}
667
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700668static inline bool task_in_memcg_oom(struct task_struct *p)
669{
670 return false;
671}
672
Johannes Weiner49426422013-10-16 13:46:59 -0700673static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700674{
675 return false;
676}
677
Johannes Weiner62cccb82016-03-15 14:57:22 -0700678static inline void mem_cgroup_inc_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700679 enum mem_cgroup_stat_index idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800680{
681}
682
Johannes Weiner62cccb82016-03-15 14:57:22 -0700683static inline void mem_cgroup_dec_page_stat(struct page *page,
Sha Zhengju68b48762013-09-12 15:13:50 -0700684 enum mem_cgroup_stat_index idx)
Balbir Singhd69b0422009-06-17 16:26:34 -0700685{
686}
687
Balbir Singh4e416952009-09-23 15:56:39 -0700688static inline
Andrew Morton0608f432013-09-24 15:27:41 -0700689unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
690 gfp_t gfp_mask,
691 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700692{
Andrew Morton0608f432013-09-24 15:27:41 -0700693 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700694}
695
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800696static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800697{
698}
699
Ying Han456f9982011-05-26 16:25:38 -0700700static inline
701void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
702{
703}
Andrew Mortonc255a452012-07-31 16:43:02 -0700704#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800705
Tejun Heo52ebea72015-05-22 17:13:37 -0400706#ifdef CONFIG_CGROUP_WRITEBACK
Tejun Heo841710a2015-05-22 18:23:33 -0400707
Tejun Heo52ebea72015-05-22 17:13:37 -0400708struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
Tejun Heo841710a2015-05-22 18:23:33 -0400709struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb);
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400710void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
711 unsigned long *pheadroom, unsigned long *pdirty,
712 unsigned long *pwriteback);
Tejun Heo841710a2015-05-22 18:23:33 -0400713
714#else /* CONFIG_CGROUP_WRITEBACK */
715
716static inline struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
717{
718 return NULL;
719}
720
Tejun Heoc2aa7232015-05-22 18:23:35 -0400721static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb,
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400722 unsigned long *pfilepages,
723 unsigned long *pheadroom,
Tejun Heoc2aa7232015-05-22 18:23:35 -0400724 unsigned long *pdirty,
725 unsigned long *pwriteback)
726{
727}
728
Tejun Heo841710a2015-05-22 18:23:33 -0400729#endif /* CONFIG_CGROUP_WRITEBACK */
Tejun Heo52ebea72015-05-22 17:13:37 -0400730
Glauber Costae1aab162011-12-11 21:47:03 +0000731struct sock;
Glauber Costae1aab162011-12-11 21:47:03 +0000732void sock_update_memcg(struct sock *sk);
733void sock_release_memcg(struct sock *sk);
Johannes Weinerbaac50b2016-01-14 15:21:17 -0800734bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
735void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800736#ifdef CONFIG_MEMCG
Johannes Weineref129472016-01-14 15:21:34 -0800737extern struct static_key_false memcg_sockets_enabled_key;
738#define mem_cgroup_sockets_enabled static_branch_unlikely(&memcg_sockets_enabled_key)
Johannes Weinerbaac50b2016-01-14 15:21:17 -0800739static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -0800740{
Johannes Weiner0db15292016-01-20 15:02:50 -0800741 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_pressure)
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800742 return true;
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800743 do {
744 if (time_before(jiffies, memcg->socket_pressure))
745 return true;
746 } while ((memcg = parent_mem_cgroup(memcg)));
747 return false;
Johannes Weinere8056052016-01-14 15:21:14 -0800748}
749#else
Johannes Weiner80e95fe2016-01-14 15:21:20 -0800750#define mem_cgroup_sockets_enabled 0
Johannes Weinerbaac50b2016-01-14 15:21:17 -0800751static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -0800752{
753 return false;
754}
755#endif
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800756
Johannes Weiner127424c2016-01-20 15:02:32 -0800757#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Johannes Weineref129472016-01-14 15:21:34 -0800758extern struct static_key_false memcg_kmem_enabled_key;
Glauber Costa749c5412012-12-18 14:23:01 -0800759
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800760extern int memcg_nr_cache_ids;
Michal Hocko64219992015-09-08 15:01:07 -0700761void memcg_get_cache_ids(void);
762void memcg_put_cache_ids(void);
Glauber Costaebe945c2012-12-18 14:23:10 -0800763
764/*
765 * Helper macro to loop through all memcg-specific caches. Callers must still
766 * check if the cache is valid (it is either valid or NULL).
767 * the slab_mutex must be held when looping through those caches
768 */
Glauber Costa749c5412012-12-18 14:23:01 -0800769#define for_each_memcg_cache_index(_idx) \
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800770 for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -0800771
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800772static inline bool memcg_kmem_enabled(void)
773{
Johannes Weineref129472016-01-14 15:21:34 -0800774 return static_branch_unlikely(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800775}
776
777/*
778 * In general, we'll do everything in our power to not incur in any overhead
779 * for non-memcg users for the kmem functions. Not even a function call, if we
780 * can avoid it.
781 *
782 * Therefore, we'll inline all those functions so that in the best case, we'll
783 * see that kmemcg is off for everybody and proceed quickly. If it is on,
784 * we'll still do most of the flag checking inline. We check a lot of
785 * conditions, but because they are pretty simple, they are expected to be
786 * fast.
787 */
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -0800788int __memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
789 struct mem_cgroup *memcg);
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800790int __memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
791void __memcg_kmem_uncharge(struct page *page, int order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800792
Michal Hocko33398cf2015-09-08 15:01:02 -0700793/*
Jesper Dangaard Brouer9f706d62016-03-15 14:54:03 -0700794 * helper for accessing a memcg's index. It will be used as an index in the
Michal Hocko33398cf2015-09-08 15:01:02 -0700795 * child cache array in kmem_cache, and also to derive its name. This function
796 * will return -1 when this is not a kmem-limited memcg.
797 */
798static inline int memcg_cache_id(struct mem_cgroup *memcg)
799{
800 return memcg ? memcg->kmemcg_id : -1;
801}
Vladimir Davydov5722d092014-04-07 15:39:24 -0700802
Vladimir Davydov230e9fc2016-01-14 15:18:15 -0800803struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
Vladimir Davydov8135be52014-12-12 16:56:38 -0800804void __memcg_kmem_put_cache(struct kmem_cache *cachep);
Glauber Costad7f25f82012-12-18 14:22:40 -0800805
Vladimir Davydov230e9fc2016-01-14 15:18:15 -0800806static inline bool __memcg_kmem_bypass(void)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800807{
808 if (!memcg_kmem_enabled())
809 return true;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800810 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
811 return true;
Tejun Heocbfb4792015-11-05 18:46:14 -0800812 return false;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800813}
814
815/**
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800816 * memcg_kmem_charge: charge a kmem page
817 * @page: page to charge
818 * @gfp: reclaim mode
819 * @order: allocation order
Tejun Heocbfb4792015-11-05 18:46:14 -0800820 *
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800821 * Returns 0 on success, an error code on failure.
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800822 */
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800823static __always_inline int memcg_kmem_charge(struct page *page,
824 gfp_t gfp, int order)
Tejun Heocbfb4792015-11-05 18:46:14 -0800825{
Vladimir Davydov230e9fc2016-01-14 15:18:15 -0800826 if (__memcg_kmem_bypass())
827 return 0;
828 if (!(gfp & __GFP_ACCOUNT))
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800829 return 0;
830 return __memcg_kmem_charge(page, gfp, order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800831}
832
833/**
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800834 * memcg_kmem_uncharge: uncharge a kmem page
835 * @page: page to uncharge
836 * @order: allocation order
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800837 */
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800838static __always_inline void memcg_kmem_uncharge(struct page *page, int order)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800839{
840 if (memcg_kmem_enabled())
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800841 __memcg_kmem_uncharge(page, order);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800842}
843
Glauber Costad7f25f82012-12-18 14:22:40 -0800844/**
845 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
846 * @cachep: the original global kmem cache
Glauber Costad7f25f82012-12-18 14:22:40 -0800847 *
Vladimir Davydov5dfb4172014-06-04 16:06:38 -0700848 * All memory allocated from a per-memcg cache is charged to the owner memcg.
Glauber Costad7f25f82012-12-18 14:22:40 -0800849 */
850static __always_inline struct kmem_cache *
851memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
852{
Vladimir Davydov230e9fc2016-01-14 15:18:15 -0800853 if (__memcg_kmem_bypass())
Glauber Costad7f25f82012-12-18 14:22:40 -0800854 return cachep;
Vladimir Davydov230e9fc2016-01-14 15:18:15 -0800855 return __memcg_kmem_get_cache(cachep, gfp);
Glauber Costad7f25f82012-12-18 14:22:40 -0800856}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800857
858static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
859{
860 if (memcg_kmem_enabled())
861 __memcg_kmem_put_cache(cachep);
862}
Vladimir Davydov27ee57c2016-03-17 14:17:35 -0700863
864/**
865 * memcg_kmem_update_page_stat - update kmem page state statistics
866 * @page: the page
867 * @idx: page state item to account
868 * @val: number of pages (positive or negative)
869 */
870static inline void memcg_kmem_update_page_stat(struct page *page,
871 enum mem_cgroup_stat_index idx, int val)
872{
873 if (memcg_kmem_enabled() && page->mem_cgroup)
874 this_cpu_add(page->mem_cgroup->stat->count[idx], val);
875}
876
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800877#else
Glauber Costa749c5412012-12-18 14:23:01 -0800878#define for_each_memcg_cache_index(_idx) \
879 for (; NULL; )
880
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800881static inline bool memcg_kmem_enabled(void)
882{
883 return false;
884}
885
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800886static inline int memcg_kmem_charge(struct page *page, gfp_t gfp, int order)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800887{
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800888 return 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800889}
890
Vladimir Davydovd05e83a2015-11-05 18:48:59 -0800891static inline void memcg_kmem_uncharge(struct page *page, int order)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -0800892{
893}
Glauber Costa2633d7a2012-12-18 14:22:34 -0800894
895static inline int memcg_cache_id(struct mem_cgroup *memcg)
896{
897 return -1;
898}
899
Vladimir Davydov05257a12015-02-12 14:59:01 -0800900static inline void memcg_get_cache_ids(void)
901{
902}
903
904static inline void memcg_put_cache_ids(void)
905{
906}
907
Glauber Costad7f25f82012-12-18 14:22:40 -0800908static inline struct kmem_cache *
909memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
910{
911 return cachep;
912}
Vladimir Davydov8135be52014-12-12 16:56:38 -0800913
914static inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
915{
916}
Vladimir Davydov27ee57c2016-03-17 14:17:35 -0700917
918static inline void memcg_kmem_update_page_stat(struct page *page,
919 enum mem_cgroup_stat_index idx, int val)
920{
921}
Johannes Weiner127424c2016-01-20 15:02:32 -0800922#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
923
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800924#endif /* _LINUX_MEMCONTROL_H */