blob: c46016bb25ebe2ba3919987876ae058dd0a7b01c [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>
Johannes Weiner00f3ca22017-07-06 15:40:52 -070029#include <linux/mm.h>
30#include <linux/vmstat.h>
Michal Hocko33398cf2015-09-08 15:01:02 -070031#include <linux/writeback.h>
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -070032#include <linux/page-flags.h>
Ying Han456f9982011-05-26 16:25:38 -070033
Pavel Emelianov78fb7462008-02-07 00:13:51 -080034struct mem_cgroup;
Balbir Singh8697d332008-02-07 00:13:59 -080035struct page;
36struct mm_struct;
Glauber Costa2633d7a2012-12-18 14:22:34 -080037struct kmem_cache;
Pavel Emelianov78fb7462008-02-07 00:13:51 -080038
Johannes Weiner71cd3112017-05-03 14:55:13 -070039/* Cgroup-specific page state, on top of universal node page state */
40enum memcg_stat_item {
41 MEMCG_CACHE = NR_VM_NODE_STAT_ITEMS,
42 MEMCG_RSS,
43 MEMCG_RSS_HUGE,
44 MEMCG_SWAP,
45 MEMCG_SOCK,
46 /* XXX: why are these zone and not node counters? */
47 MEMCG_KERNEL_STACK_KB,
Johannes Weinerb2807f02016-01-20 15:03:22 -080048 MEMCG_NR_STAT,
Greg Thelen2a7106f2011-01-13 15:47:37 -080049};
50
Johannes Weiner71cd3112017-05-03 14:55:13 -070051/* Cgroup-specific events, on top of universal VM events */
52enum memcg_event_item {
53 MEMCG_LOW = NR_VM_EVENT_ITEMS,
54 MEMCG_HIGH,
55 MEMCG_MAX,
56 MEMCG_OOM,
57 MEMCG_NR_EVENTS,
58};
59
Johannes Weiner56600482012-01-12 17:17:59 -080060struct mem_cgroup_reclaim_cookie {
Mel Gormanef8f2322016-07-28 15:46:05 -070061 pg_data_t *pgdat;
Johannes Weiner56600482012-01-12 17:17:59 -080062 int priority;
63 unsigned int generation;
64};
65
Johannes Weiner71cd3112017-05-03 14:55:13 -070066#ifdef CONFIG_MEMCG
67
68#define MEM_CGROUP_ID_SHIFT 16
69#define MEM_CGROUP_ID_MAX USHRT_MAX
70
71struct mem_cgroup_id {
72 int id;
73 atomic_t ref;
74};
75
Michal Hocko33398cf2015-09-08 15:01:02 -070076/*
77 * Per memcg event counter is incremented at every pagein/pageout. With THP,
78 * it will be incremated by the number of pages. This counter is used for
79 * for trigger some periodic events. This is straightforward and better
80 * than using jiffies etc. to handle periodic memcg event.
81 */
82enum mem_cgroup_events_target {
83 MEM_CGROUP_TARGET_THRESH,
84 MEM_CGROUP_TARGET_SOFTLIMIT,
85 MEM_CGROUP_TARGET_NUMAINFO,
86 MEM_CGROUP_NTARGETS,
87};
88
Michal Hocko33398cf2015-09-08 15:01:02 -070089struct mem_cgroup_stat_cpu {
Johannes Weinerb2807f02016-01-20 15:03:22 -080090 long count[MEMCG_NR_STAT];
Michal Hocko33398cf2015-09-08 15:01:02 -070091 unsigned long events[MEMCG_NR_EVENTS];
92 unsigned long nr_page_events;
93 unsigned long targets[MEM_CGROUP_NTARGETS];
94};
95
96struct mem_cgroup_reclaim_iter {
97 struct mem_cgroup *position;
98 /* scan generation, increased every round-trip */
99 unsigned int generation;
100};
101
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700102struct lruvec_stat {
103 long count[NR_VM_NODE_STAT_ITEMS];
104};
105
Michal Hocko33398cf2015-09-08 15:01:02 -0700106/*
107 * per-zone information in memory controller.
108 */
Mel Gormanef8f2322016-07-28 15:46:05 -0700109struct mem_cgroup_per_node {
Michal Hocko33398cf2015-09-08 15:01:02 -0700110 struct lruvec lruvec;
Johannes Weinera983b5e2018-01-31 16:16:45 -0800111
112 struct lruvec_stat __percpu *lruvec_stat_cpu;
113 atomic_long_t lruvec_stat[NR_VM_NODE_STAT_ITEMS];
114
Michal Hockob4536f0c82017-01-10 16:58:04 -0800115 unsigned long lru_zone_size[MAX_NR_ZONES][NR_LRU_LISTS];
Michal Hocko33398cf2015-09-08 15:01:02 -0700116
117 struct mem_cgroup_reclaim_iter iter[DEF_PRIORITY + 1];
118
119 struct rb_node tree_node; /* RB tree node */
120 unsigned long usage_in_excess;/* Set to the value by which */
121 /* the soft limit is exceeded*/
122 bool on_tree;
123 struct mem_cgroup *memcg; /* Back pointer, we cannot */
124 /* use container_of */
125};
126
Michal Hocko33398cf2015-09-08 15:01:02 -0700127struct mem_cgroup_threshold {
128 struct eventfd_ctx *eventfd;
129 unsigned long threshold;
130};
131
132/* For threshold */
133struct mem_cgroup_threshold_ary {
134 /* An array index points to threshold just below or equal to usage. */
135 int current_threshold;
136 /* Size of entries[] */
137 unsigned int size;
138 /* Array of thresholds */
139 struct mem_cgroup_threshold entries[0];
140};
141
142struct mem_cgroup_thresholds {
143 /* Primary thresholds array */
144 struct mem_cgroup_threshold_ary *primary;
145 /*
146 * Spare threshold array.
147 * This is needed to make mem_cgroup_unregister_event() "never fail".
148 * It must be able to store at least primary->size - 1 entries.
149 */
150 struct mem_cgroup_threshold_ary *spare;
151};
152
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800153enum memcg_kmem_state {
154 KMEM_NONE,
155 KMEM_ALLOCATED,
156 KMEM_ONLINE,
157};
158
Michal Hocko33398cf2015-09-08 15:01:02 -0700159/*
160 * The memory controller data structure. The memory controller controls both
161 * page cache and RSS per cgroup. We would eventually like to provide
162 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
163 * to help the administrator determine what knobs to tune.
164 */
165struct mem_cgroup {
166 struct cgroup_subsys_state css;
167
Johannes Weiner73f576c2016-07-20 15:44:57 -0700168 /* Private memcg ID. Used to ID objects that outlive the cgroup */
169 struct mem_cgroup_id id;
170
Michal Hocko33398cf2015-09-08 15:01:02 -0700171 /* Accounted resources */
172 struct page_counter memory;
Vladimir Davydov37e84352016-01-20 15:02:56 -0800173 struct page_counter swap;
Johannes Weiner0db15292016-01-20 15:02:50 -0800174
175 /* Legacy consumer-oriented counters */
Michal Hocko33398cf2015-09-08 15:01:02 -0700176 struct page_counter memsw;
177 struct page_counter kmem;
Johannes Weiner0db15292016-01-20 15:02:50 -0800178 struct page_counter tcpmem;
Michal Hocko33398cf2015-09-08 15:01:02 -0700179
180 /* Normal memory consumption range */
181 unsigned long low;
182 unsigned long high;
183
Johannes Weinerf7e1cb62016-01-14 15:21:29 -0800184 /* Range enforcement for interrupt charges */
185 struct work_struct high_work;
186
Michal Hocko33398cf2015-09-08 15:01:02 -0700187 unsigned long soft_limit;
188
189 /* vmpressure notifications */
190 struct vmpressure vmpressure;
191
Michal Hocko33398cf2015-09-08 15:01:02 -0700192 /*
193 * Should the accounting and control be hierarchical, per subtree?
194 */
195 bool use_hierarchy;
196
197 /* protected by memcg_oom_lock */
198 bool oom_lock;
199 int under_oom;
200
201 int swappiness;
202 /* OOM-Killer disable */
203 int oom_kill_disable;
204
Tejun Heo472912a2015-09-18 18:01:59 -0400205 /* handle for "memory.events" */
206 struct cgroup_file events_file;
207
Michal Hocko33398cf2015-09-08 15:01:02 -0700208 /* protect arrays of thresholds */
209 struct mutex thresholds_lock;
210
211 /* thresholds for memory usage. RCU-protected */
212 struct mem_cgroup_thresholds thresholds;
213
214 /* thresholds for mem+swap usage. RCU-protected */
215 struct mem_cgroup_thresholds memsw_thresholds;
216
217 /* For oom notifier event fd */
218 struct list_head oom_notify;
219
220 /*
221 * Should we move charges of a task when a task is moved into this
222 * mem_cgroup ? And what type of charges should we move ?
223 */
224 unsigned long move_charge_at_immigrate;
225 /*
226 * set > 0 if pages under this cgroup are moving to other cgroup.
227 */
228 atomic_t moving_account;
229 /* taken only while moving_account > 0 */
230 spinlock_t move_lock;
231 struct task_struct *move_lock_task;
232 unsigned long move_lock_flags;
Johannes Weinera983b5e2018-01-31 16:16:45 -0800233
234 struct mem_cgroup_stat_cpu __percpu *stat_cpu;
235 atomic_long_t stat[MEMCG_NR_STAT];
236 atomic_long_t events[MEMCG_NR_EVENTS];
Michal Hocko33398cf2015-09-08 15:01:02 -0700237
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800238 unsigned long socket_pressure;
239
240 /* Legacy tcp memory accounting */
Johannes Weiner0db15292016-01-20 15:02:50 -0800241 bool tcpmem_active;
242 int tcpmem_pressure;
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800243
Johannes Weiner127424c2016-01-20 15:02:32 -0800244#ifndef CONFIG_SLOB
Michal Hocko33398cf2015-09-08 15:01:02 -0700245 /* Index in the kmem_cache->memcg_params.memcg_caches array */
246 int kmemcg_id;
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800247 enum memcg_kmem_state kmem_state;
Tejun Heobc2791f2017-02-22 15:41:21 -0800248 struct list_head kmem_caches;
Michal Hocko33398cf2015-09-08 15:01:02 -0700249#endif
250
251 int last_scanned_node;
252#if MAX_NUMNODES > 1
253 nodemask_t scan_nodes;
254 atomic_t numainfo_events;
255 atomic_t numainfo_updating;
256#endif
257
258#ifdef CONFIG_CGROUP_WRITEBACK
259 struct list_head cgwb_list;
260 struct wb_domain cgwb_domain;
261#endif
262
263 /* List of events which userspace want to receive */
264 struct list_head event_list;
265 spinlock_t event_list_lock;
266
267 struct mem_cgroup_per_node *nodeinfo[0];
268 /* WARNING: nodeinfo must be the last member here */
269};
Johannes Weiner7d828602016-01-14 15:20:56 -0800270
Johannes Weinera983b5e2018-01-31 16:16:45 -0800271/*
272 * size of first charge trial. "32" comes from vmscan.c's magic value.
273 * TODO: maybe necessary to use big numbers in big irons.
274 */
275#define MEMCG_CHARGE_BATCH 32U
276
Johannes Weiner7d828602016-01-14 15:20:56 -0800277extern struct mem_cgroup *root_mem_cgroup;
Tejun Heo56161632015-05-22 17:13:20 -0400278
Johannes Weiner23047a92016-03-15 14:57:16 -0700279static inline bool mem_cgroup_disabled(void)
280{
281 return !cgroup_subsys_enabled(memory_cgrp_subsys);
282}
283
Johannes Weiner241994ed2015-02-11 15:26:06 -0800284bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
285
Johannes Weiner00501b52014-08-08 14:19:20 -0700286int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800287 gfp_t gfp_mask, struct mem_cgroup **memcgp,
288 bool compound);
Johannes Weiner00501b52014-08-08 14:19:20 -0700289void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800290 bool lrucare, bool compound);
291void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg,
292 bool compound);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700293void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -0700294void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700295
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700296void mem_cgroup_migrate(struct page *oldpage, struct page *newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700297
Mel Gormanef8f2322016-07-28 15:46:05 -0700298static struct mem_cgroup_per_node *
299mem_cgroup_nodeinfo(struct mem_cgroup *memcg, int nid)
Johannes Weiner55779ec2016-07-28 15:45:10 -0700300{
Mel Gormanef8f2322016-07-28 15:46:05 -0700301 return memcg->nodeinfo[nid];
Johannes Weiner55779ec2016-07-28 15:45:10 -0700302}
303
304/**
Mel Gormana9dd0a82016-07-28 15:46:02 -0700305 * mem_cgroup_lruvec - get the lru list vector for a node or a memcg zone
306 * @node: node of the wanted lruvec
Johannes Weiner55779ec2016-07-28 15:45:10 -0700307 * @memcg: memcg of the wanted lruvec
308 *
Mel Gormana9dd0a82016-07-28 15:46:02 -0700309 * Returns the lru list vector holding pages for a given @node or a given
310 * @memcg and @zone. This can be the node lruvec, if the memory controller
Johannes Weiner55779ec2016-07-28 15:45:10 -0700311 * is disabled.
312 */
Mel Gormana9dd0a82016-07-28 15:46:02 -0700313static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
Mel Gormanef8f2322016-07-28 15:46:05 -0700314 struct mem_cgroup *memcg)
Johannes Weiner55779ec2016-07-28 15:45:10 -0700315{
Mel Gormanef8f2322016-07-28 15:46:05 -0700316 struct mem_cgroup_per_node *mz;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700317 struct lruvec *lruvec;
318
319 if (mem_cgroup_disabled()) {
Mel Gormana9dd0a82016-07-28 15:46:02 -0700320 lruvec = node_lruvec(pgdat);
Johannes Weiner55779ec2016-07-28 15:45:10 -0700321 goto out;
322 }
323
Mel Gormanef8f2322016-07-28 15:46:05 -0700324 mz = mem_cgroup_nodeinfo(memcg, pgdat->node_id);
Johannes Weiner55779ec2016-07-28 15:45:10 -0700325 lruvec = &mz->lruvec;
326out:
327 /*
328 * Since a node can be onlined after the mem_cgroup was created,
Mel Gorman599d0c92016-07-28 15:45:31 -0700329 * we have to be prepared to initialize lruvec->pgdat here;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700330 * and if offlined then reonlined, we need to reinitialize it.
331 */
Mel Gormanef8f2322016-07-28 15:46:05 -0700332 if (unlikely(lruvec->pgdat != pgdat))
333 lruvec->pgdat = pgdat;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700334 return lruvec;
335}
336
Mel Gorman599d0c92016-07-28 15:45:31 -0700337struct lruvec *mem_cgroup_page_lruvec(struct page *, struct pglist_data *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800338
Johannes Weiner2314b422014-12-10 15:44:33 -0800339bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
Michal Hocko64219992015-09-08 15:01:07 -0700340struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
Vladimir Davydove993d902015-09-09 15:35:35 -0700341
Michal Hocko33398cf2015-09-08 15:01:02 -0700342static inline
343struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
344 return css ? container_of(css, struct mem_cgroup, css) : NULL;
345}
346
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800347#define mem_cgroup_from_counter(counter, member) \
348 container_of(counter, struct mem_cgroup, member)
349
Michal Hocko33398cf2015-09-08 15:01:02 -0700350struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
351 struct mem_cgroup *,
352 struct mem_cgroup_reclaim_cookie *);
353void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700354int mem_cgroup_scan_tasks(struct mem_cgroup *,
355 int (*)(struct task_struct *, void *), void *);
Michal Hocko33398cf2015-09-08 15:01:02 -0700356
Johannes Weiner23047a92016-03-15 14:57:16 -0700357static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
358{
359 if (mem_cgroup_disabled())
360 return 0;
361
Johannes Weiner73f576c2016-07-20 15:44:57 -0700362 return memcg->id.id;
Johannes Weiner23047a92016-03-15 14:57:16 -0700363}
Johannes Weiner73f576c2016-07-20 15:44:57 -0700364struct mem_cgroup *mem_cgroup_from_id(unsigned short id);
Johannes Weiner23047a92016-03-15 14:57:16 -0700365
Roman Gushchin22621852017-07-06 15:40:25 -0700366static inline struct mem_cgroup *lruvec_memcg(struct lruvec *lruvec)
367{
368 struct mem_cgroup_per_node *mz;
369
370 if (mem_cgroup_disabled())
371 return NULL;
372
373 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
374 return mz->memcg;
375}
376
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800377/**
378 * parent_mem_cgroup - find the accounting parent of a memcg
379 * @memcg: memcg whose parent to find
380 *
381 * Returns the parent memcg, or NULL if this is the root or the memory
382 * controller is in legacy no-hierarchy mode.
383 */
384static inline struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
385{
386 if (!memcg->memory.parent)
387 return NULL;
388 return mem_cgroup_from_counter(memcg->memory.parent, memory);
389}
390
Michal Hocko33398cf2015-09-08 15:01:02 -0700391static inline bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
392 struct mem_cgroup *root)
393{
394 if (root == memcg)
395 return true;
396 if (!root->use_hierarchy)
397 return false;
398 return cgroup_is_descendant(memcg->css.cgroup, root->css.cgroup);
399}
Glauber Costae1aab162011-12-11 21:47:03 +0000400
Johannes Weiner2314b422014-12-10 15:44:33 -0800401static inline bool mm_match_cgroup(struct mm_struct *mm,
402 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800403{
Johannes Weiner587af302012-10-08 16:34:12 -0700404 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -0800405 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700406
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800407 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700408 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -0800409 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -0800410 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800411 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700412 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800413}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800414
Michal Hocko64219992015-09-08 15:01:07 -0700415struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700416ino_t page_cgroup_ino(struct page *page);
Wu Fengguangd3242362009-12-16 12:19:59 +0100417
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800418static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
419{
420 if (mem_cgroup_disabled())
421 return true;
422 return !!(memcg->css.flags & CSS_ONLINE);
423}
424
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800425/*
426 * For memory reclaim.
427 */
Ying Han889976d2011-05-26 16:25:33 -0700428int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Michal Hocko33398cf2015-09-08 15:01:02 -0700429
430void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
Michal Hockob4536f0c82017-01-10 16:58:04 -0800431 int zid, int nr_pages);
Michal Hocko33398cf2015-09-08 15:01:02 -0700432
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700433unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
434 int nid, unsigned int lru_mask);
435
Michal Hocko33398cf2015-09-08 15:01:02 -0700436static inline
437unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
438{
Mel Gormanef8f2322016-07-28 15:46:05 -0700439 struct mem_cgroup_per_node *mz;
Michal Hockob4536f0c82017-01-10 16:58:04 -0800440 unsigned long nr_pages = 0;
441 int zid;
Michal Hocko33398cf2015-09-08 15:01:02 -0700442
Mel Gormanef8f2322016-07-28 15:46:05 -0700443 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
Michal Hockob4536f0c82017-01-10 16:58:04 -0800444 for (zid = 0; zid < MAX_NR_ZONES; zid++)
445 nr_pages += mz->lru_zone_size[zid][lru];
446 return nr_pages;
447}
448
449static inline
450unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
451 enum lru_list lru, int zone_idx)
452{
453 struct mem_cgroup_per_node *mz;
454
455 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
456 return mz->lru_zone_size[zone_idx][lru];
Michal Hocko33398cf2015-09-08 15:01:02 -0700457}
458
Tejun Heob23afb92015-11-05 18:46:11 -0800459void mem_cgroup_handle_over_high(void);
460
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700461unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg);
462
Michal Hocko64219992015-09-08 15:01:07 -0700463void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
464 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800465
Johannes Weiner49426422013-10-16 13:46:59 -0700466static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700467{
Tejun Heo626ebc42015-11-05 18:46:09 -0800468 WARN_ON(current->memcg_may_oom);
469 current->memcg_may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700470}
471
Johannes Weiner49426422013-10-16 13:46:59 -0700472static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700473{
Tejun Heo626ebc42015-11-05 18:46:09 -0800474 WARN_ON(!current->memcg_may_oom);
475 current->memcg_may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700476}
477
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700478static inline bool task_in_memcg_oom(struct task_struct *p)
479{
Tejun Heo626ebc42015-11-05 18:46:09 -0800480 return p->memcg_in_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700481}
482
Johannes Weiner49426422013-10-16 13:46:59 -0700483bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700484
Andrew Mortonc255a452012-07-31 16:43:02 -0700485#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800486extern int do_swap_account;
487#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800488
Johannes Weiner739f79f2017-08-18 15:15:48 -0700489struct mem_cgroup *lock_page_memcg(struct page *page);
490void __unlock_page_memcg(struct mem_cgroup *memcg);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700491void unlock_page_memcg(struct page *page);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700492
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700493/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weinerccda7f42017-05-03 14:55:16 -0700494static inline unsigned long memcg_page_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700495 int idx)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700496{
Johannes Weinera983b5e2018-01-31 16:16:45 -0800497 long x = atomic_long_read(&memcg->stat[idx]);
498#ifdef CONFIG_SMP
499 if (x < 0)
500 x = 0;
501#endif
502 return x;
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700503}
504
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700505/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700506static inline void __mod_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700507 int idx, int val)
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700508{
Johannes Weinera983b5e2018-01-31 16:16:45 -0800509 long x;
510
511 if (mem_cgroup_disabled())
512 return;
513
514 x = val + __this_cpu_read(memcg->stat_cpu->count[idx]);
515 if (unlikely(abs(x) > MEMCG_CHARGE_BATCH)) {
516 atomic_long_add(x, &memcg->stat[idx]);
517 x = 0;
518 }
519 __this_cpu_write(memcg->stat_cpu->count[idx], x);
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700520}
521
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700522/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weinerccda7f42017-05-03 14:55:16 -0700523static inline void mod_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700524 int idx, int val)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700525{
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800526 unsigned long flags;
527
528 local_irq_save(flags);
Johannes Weinera983b5e2018-01-31 16:16:45 -0800529 __mod_memcg_state(memcg, idx, val);
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800530 local_irq_restore(flags);
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700531}
532
Michal Hocko33398cf2015-09-08 15:01:02 -0700533/**
Johannes Weinerccda7f42017-05-03 14:55:16 -0700534 * mod_memcg_page_state - update page state statistics
Johannes Weiner62cccb82016-03-15 14:57:22 -0700535 * @page: the page
Michal Hocko33398cf2015-09-08 15:01:02 -0700536 * @idx: page state item to account
537 * @val: number of pages (positive or negative)
538 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700539 * The @page must be locked or the caller must use lock_page_memcg()
540 * to prevent double accounting when the page is concurrently being
541 * moved to another memcg:
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700542 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700543 * lock_page(page) or lock_page_memcg(page)
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700544 * if (TestClearPageState(page))
Johannes Weinerccda7f42017-05-03 14:55:16 -0700545 * mod_memcg_page_state(page, state, -1);
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700546 * unlock_page(page) or unlock_page_memcg(page)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700547 *
548 * Kernel pages are an exception to this, since they'll never move.
Michal Hocko33398cf2015-09-08 15:01:02 -0700549 */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700550static inline void __mod_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700551 int idx, int val)
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700552{
553 if (page->mem_cgroup)
554 __mod_memcg_state(page->mem_cgroup, idx, val);
555}
556
Johannes Weinerccda7f42017-05-03 14:55:16 -0700557static inline void mod_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700558 int idx, int val)
Michal Hocko33398cf2015-09-08 15:01:02 -0700559{
Johannes Weiner62cccb82016-03-15 14:57:22 -0700560 if (page->mem_cgroup)
Johannes Weinerccda7f42017-05-03 14:55:16 -0700561 mod_memcg_state(page->mem_cgroup, idx, val);
Michal Hocko33398cf2015-09-08 15:01:02 -0700562}
563
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700564static inline unsigned long lruvec_page_state(struct lruvec *lruvec,
565 enum node_stat_item idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800566{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700567 struct mem_cgroup_per_node *pn;
Johannes Weinera983b5e2018-01-31 16:16:45 -0800568 long x;
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700569
570 if (mem_cgroup_disabled())
571 return node_page_state(lruvec_pgdat(lruvec), idx);
572
573 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
Johannes Weinera983b5e2018-01-31 16:16:45 -0800574 x = atomic_long_read(&pn->lruvec_stat[idx]);
575#ifdef CONFIG_SMP
576 if (x < 0)
577 x = 0;
578#endif
579 return x;
Greg Thelen2a7106f2011-01-13 15:47:37 -0800580}
581
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700582static inline void __mod_lruvec_state(struct lruvec *lruvec,
583 enum node_stat_item idx, int val)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800584{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700585 struct mem_cgroup_per_node *pn;
Johannes Weinera983b5e2018-01-31 16:16:45 -0800586 long x;
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700587
Johannes Weiner28454262018-01-31 16:16:41 -0800588 /* Update node */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700589 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
Johannes Weiner28454262018-01-31 16:16:41 -0800590
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700591 if (mem_cgroup_disabled())
592 return;
Johannes Weiner28454262018-01-31 16:16:41 -0800593
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700594 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
Johannes Weiner28454262018-01-31 16:16:41 -0800595
596 /* Update memcg */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700597 __mod_memcg_state(pn->memcg, idx, val);
Johannes Weiner28454262018-01-31 16:16:41 -0800598
599 /* Update lruvec */
Johannes Weinera983b5e2018-01-31 16:16:45 -0800600 x = val + __this_cpu_read(pn->lruvec_stat_cpu->count[idx]);
601 if (unlikely(abs(x) > MEMCG_CHARGE_BATCH)) {
602 atomic_long_add(x, &pn->lruvec_stat[idx]);
603 x = 0;
604 }
605 __this_cpu_write(pn->lruvec_stat_cpu->count[idx], x);
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700606}
607
608static inline void mod_lruvec_state(struct lruvec *lruvec,
609 enum node_stat_item idx, int val)
610{
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800611 unsigned long flags;
612
613 local_irq_save(flags);
Johannes Weiner28454262018-01-31 16:16:41 -0800614 __mod_lruvec_state(lruvec, idx, val);
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800615 local_irq_restore(flags);
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700616}
617
618static inline void __mod_lruvec_page_state(struct page *page,
619 enum node_stat_item idx, int val)
620{
Johannes Weiner28454262018-01-31 16:16:41 -0800621 pg_data_t *pgdat = page_pgdat(page);
622 struct lruvec *lruvec;
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700623
Johannes Weiner28454262018-01-31 16:16:41 -0800624 /* Untracked pages have no memcg, no lruvec. Update only the node */
625 if (!page->mem_cgroup) {
626 __mod_node_page_state(pgdat, idx, val);
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700627 return;
Johannes Weiner28454262018-01-31 16:16:41 -0800628 }
629
630 lruvec = mem_cgroup_lruvec(pgdat, page->mem_cgroup);
631 __mod_lruvec_state(lruvec, idx, val);
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700632}
633
634static inline void mod_lruvec_page_state(struct page *page,
635 enum node_stat_item idx, int val)
636{
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800637 unsigned long flags;
638
639 local_irq_save(flags);
Johannes Weiner28454262018-01-31 16:16:41 -0800640 __mod_lruvec_page_state(page, idx, val);
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800641 local_irq_restore(flags);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800642}
643
Mel Gormanef8f2322016-07-28 15:46:05 -0700644unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
Andrew Morton0608f432013-09-24 15:27:41 -0700645 gfp_t gfp_mask,
646 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700647
Johannes Weinerc9019e92018-01-31 16:16:37 -0800648/* idx can be of type enum memcg_event_item or vm_event_item */
649static inline void __count_memcg_events(struct mem_cgroup *memcg,
650 int idx, unsigned long count)
651{
Johannes Weinera983b5e2018-01-31 16:16:45 -0800652 unsigned long x;
653
654 if (mem_cgroup_disabled())
655 return;
656
657 x = count + __this_cpu_read(memcg->stat_cpu->events[idx]);
658 if (unlikely(x > MEMCG_CHARGE_BATCH)) {
659 atomic_long_add(x, &memcg->events[idx]);
660 x = 0;
661 }
662 __this_cpu_write(memcg->stat_cpu->events[idx], x);
Johannes Weinerc9019e92018-01-31 16:16:37 -0800663}
664
Roman Gushchin22621852017-07-06 15:40:25 -0700665static inline void count_memcg_events(struct mem_cgroup *memcg,
Johannes Weinerc9019e92018-01-31 16:16:37 -0800666 int idx, unsigned long count)
Roman Gushchin22621852017-07-06 15:40:25 -0700667{
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800668 unsigned long flags;
669
670 local_irq_save(flags);
Johannes Weinera983b5e2018-01-31 16:16:45 -0800671 __count_memcg_events(memcg, idx, count);
Johannes Weinerc3cc3912018-02-21 14:45:24 -0800672 local_irq_restore(flags);
Roman Gushchin22621852017-07-06 15:40:25 -0700673}
674
Johannes Weinerc9019e92018-01-31 16:16:37 -0800675/* idx can be of type enum memcg_event_item or vm_event_item */
Roman Gushchin22621852017-07-06 15:40:25 -0700676static inline void count_memcg_page_event(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700677 int idx)
Roman Gushchin22621852017-07-06 15:40:25 -0700678{
679 if (page->mem_cgroup)
680 count_memcg_events(page->mem_cgroup, idx, 1);
681}
682
683static inline void count_memcg_event_mm(struct mm_struct *mm,
684 enum vm_event_item idx)
David Rientjes68ae5642012-12-12 13:51:57 -0800685{
Michal Hocko33398cf2015-09-08 15:01:02 -0700686 struct mem_cgroup *memcg;
687
David Rientjes68ae5642012-12-12 13:51:57 -0800688 if (mem_cgroup_disabled())
689 return;
Michal Hocko33398cf2015-09-08 15:01:02 -0700690
691 rcu_read_lock();
692 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Konstantin Khlebnikov8e675f72017-07-06 15:40:28 -0700693 if (likely(memcg)) {
Johannes Weinerc9019e92018-01-31 16:16:37 -0800694 count_memcg_events(memcg, idx, 1);
Konstantin Khlebnikov8e675f72017-07-06 15:40:28 -0700695 if (idx == OOM_KILL)
696 cgroup_file_notify(&memcg->events_file);
697 }
Michal Hocko33398cf2015-09-08 15:01:02 -0700698 rcu_read_unlock();
David Rientjes68ae5642012-12-12 13:51:57 -0800699}
Johannes Weinerc9019e92018-01-31 16:16:37 -0800700
701static inline void mem_cgroup_event(struct mem_cgroup *memcg,
702 enum memcg_event_item event)
703{
704 count_memcg_events(memcg, event, 1);
705 cgroup_file_notify(&memcg->events_file);
706}
707
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800708#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800709void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800710#endif
711
Andrew Mortonc255a452012-07-31 16:43:02 -0700712#else /* CONFIG_MEMCG */
Johannes Weiner23047a92016-03-15 14:57:16 -0700713
714#define MEM_CGROUP_ID_SHIFT 0
715#define MEM_CGROUP_ID_MAX 0
716
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800717struct mem_cgroup;
718
Johannes Weiner23047a92016-03-15 14:57:16 -0700719static inline bool mem_cgroup_disabled(void)
720{
721 return true;
722}
723
Johannes Weiner31176c72017-05-03 14:55:07 -0700724static inline void mem_cgroup_event(struct mem_cgroup *memcg,
Johannes Weinerdf0e53d2017-05-03 14:55:10 -0700725 enum memcg_event_item event)
Johannes Weiner241994ed2015-02-11 15:26:06 -0800726{
727}
728
729static inline bool mem_cgroup_low(struct mem_cgroup *root,
730 struct mem_cgroup *memcg)
731{
732 return false;
733}
734
Johannes Weiner00501b52014-08-08 14:19:20 -0700735static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
736 gfp_t gfp_mask,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800737 struct mem_cgroup **memcgp,
738 bool compound)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800739{
Johannes Weiner00501b52014-08-08 14:19:20 -0700740 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800741 return 0;
742}
743
Johannes Weiner00501b52014-08-08 14:19:20 -0700744static inline void mem_cgroup_commit_charge(struct page *page,
745 struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800746 bool lrucare, bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800747{
748}
749
Johannes Weiner00501b52014-08-08 14:19:20 -0700750static inline void mem_cgroup_cancel_charge(struct page *page,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800751 struct mem_cgroup *memcg,
752 bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800753{
754}
755
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700756static inline void mem_cgroup_uncharge(struct page *page)
757{
758}
759
Johannes Weiner747db952014-08-08 14:19:24 -0700760static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800761{
762}
763
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700764static inline void mem_cgroup_migrate(struct page *old, struct page *new)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700765{
766}
767
Mel Gormana9dd0a82016-07-28 15:46:02 -0700768static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
Mel Gormanef8f2322016-07-28 15:46:05 -0700769 struct mem_cgroup *memcg)
Johannes Weiner925b7672012-01-12 17:18:15 -0800770{
Mel Gormana9dd0a82016-07-28 15:46:02 -0700771 return node_lruvec(pgdat);
Johannes Weiner925b7672012-01-12 17:18:15 -0800772}
773
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700774static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
Mel Gorman599d0c92016-07-28 15:45:31 -0700775 struct pglist_data *pgdat)
Minchan Kim3f58a822011-03-22 16:32:53 -0700776{
Mel Gorman599d0c92016-07-28 15:45:31 -0700777 return &pgdat->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800778}
779
Johannes Weiner587af302012-10-08 16:34:12 -0700780static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700781 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800782{
Johannes Weiner587af302012-10-08 16:34:12 -0700783 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800784}
785
David Rientjesffbdccf2013-07-03 15:01:23 -0700786static inline bool task_in_mem_cgroup(struct task_struct *task,
787 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800788{
David Rientjesffbdccf2013-07-03 15:01:23 -0700789 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800790}
791
Johannes Weiner56600482012-01-12 17:17:59 -0800792static inline struct mem_cgroup *
793mem_cgroup_iter(struct mem_cgroup *root,
794 struct mem_cgroup *prev,
795 struct mem_cgroup_reclaim_cookie *reclaim)
796{
797 return NULL;
798}
799
800static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
801 struct mem_cgroup *prev)
802{
803}
804
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700805static inline int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
806 int (*fn)(struct task_struct *, void *), void *arg)
807{
808 return 0;
809}
810
Johannes Weiner23047a92016-03-15 14:57:16 -0700811static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800812{
Johannes Weiner23047a92016-03-15 14:57:16 -0700813 return 0;
814}
815
816static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
817{
818 WARN_ON_ONCE(id);
819 /* XXX: This should always return root_mem_cgroup */
820 return NULL;
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800821}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800822
Roman Gushchin22621852017-07-06 15:40:25 -0700823static inline struct mem_cgroup *lruvec_memcg(struct lruvec *lruvec)
824{
825 return NULL;
826}
827
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800828static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800829{
Yaowei Bai13308ca2015-11-05 18:47:40 -0800830 return true;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800831}
832
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800833static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700834mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800835{
836 return 0;
837}
Michal Hockob4536f0c82017-01-10 16:58:04 -0800838static inline
839unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
840 enum lru_list lru, int zone_idx)
841{
842 return 0;
843}
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800844
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700845static inline unsigned long
846mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
847 int nid, unsigned int lru_mask)
848{
849 return 0;
850}
851
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700852static inline unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg)
853{
854 return 0;
855}
856
Balbir Singhe2224322009-04-02 16:57:39 -0700857static inline void
858mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
859{
860}
861
Johannes Weiner739f79f2017-08-18 15:15:48 -0700862static inline struct mem_cgroup *lock_page_memcg(struct page *page)
863{
864 return NULL;
865}
866
867static inline void __unlock_page_memcg(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700868{
869}
870
Johannes Weiner62cccb82016-03-15 14:57:22 -0700871static inline void unlock_page_memcg(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700872{
873}
874
Tejun Heob23afb92015-11-05 18:46:11 -0800875static inline void mem_cgroup_handle_over_high(void)
876{
877}
878
Johannes Weiner49426422013-10-16 13:46:59 -0700879static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700880{
881}
882
Johannes Weiner49426422013-10-16 13:46:59 -0700883static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700884{
885}
886
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700887static inline bool task_in_memcg_oom(struct task_struct *p)
888{
889 return false;
890}
891
Johannes Weiner49426422013-10-16 13:46:59 -0700892static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700893{
894 return false;
895}
896
Johannes Weinerccda7f42017-05-03 14:55:16 -0700897static inline unsigned long memcg_page_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700898 int idx)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700899{
900 return 0;
901}
902
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700903static inline void __mod_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700904 int idx,
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700905 int nr)
906{
907}
908
Johannes Weinerccda7f42017-05-03 14:55:16 -0700909static inline void mod_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700910 int idx,
Johannes Weinerccda7f42017-05-03 14:55:16 -0700911 int nr)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700912{
913}
914
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700915static inline void __mod_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700916 int idx,
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700917 int nr)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700918{
919}
920
Johannes Weinerccda7f42017-05-03 14:55:16 -0700921static inline void mod_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700922 int idx,
Johannes Weinerccda7f42017-05-03 14:55:16 -0700923 int nr)
Johannes Weiner553af432017-03-31 15:11:50 -0700924{
925}
926
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700927static inline unsigned long lruvec_page_state(struct lruvec *lruvec,
928 enum node_stat_item idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800929{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700930 return node_page_state(lruvec_pgdat(lruvec), idx);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800931}
932
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700933static inline void __mod_lruvec_state(struct lruvec *lruvec,
934 enum node_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -0700935{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700936 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
937}
938
939static inline void mod_lruvec_state(struct lruvec *lruvec,
940 enum node_stat_item idx, int val)
941{
942 mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
943}
944
945static inline void __mod_lruvec_page_state(struct page *page,
946 enum node_stat_item idx, int val)
947{
948 __mod_node_page_state(page_pgdat(page), idx, val);
949}
950
951static inline void mod_lruvec_page_state(struct page *page,
952 enum node_stat_item idx, int val)
953{
954 mod_node_page_state(page_pgdat(page), idx, val);
Balbir Singhd69b0422009-06-17 16:26:34 -0700955}
956
Balbir Singh4e416952009-09-23 15:56:39 -0700957static inline
Mel Gormanef8f2322016-07-28 15:46:05 -0700958unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
Andrew Morton0608f432013-09-24 15:27:41 -0700959 gfp_t gfp_mask,
960 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700961{
Andrew Morton0608f432013-09-24 15:27:41 -0700962 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700963}
964
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800965static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800966{
967}
968
Roman Gushchin22621852017-07-06 15:40:25 -0700969static inline void count_memcg_events(struct mem_cgroup *memcg,
970 enum vm_event_item idx,
971 unsigned long count)
972{
973}
974
975static inline void count_memcg_page_event(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700976 int idx)
Roman Gushchin22621852017-07-06 15:40:25 -0700977{
978}
979
Ying Han456f9982011-05-26 16:25:38 -0700980static inline
Roman Gushchin22621852017-07-06 15:40:25 -0700981void count_memcg_event_mm(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -0700982{
983}
Andrew Mortonc255a452012-07-31 16:43:02 -0700984#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800985
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700986/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700987static inline void __inc_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700988 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700989{
990 __mod_memcg_state(memcg, idx, 1);
991}
992
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700993/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700994static inline void __dec_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -0700995 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700996{
997 __mod_memcg_state(memcg, idx, -1);
998}
999
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001000/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001001static inline void __inc_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001002 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001003{
1004 __mod_memcg_page_state(page, idx, 1);
1005}
1006
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001007/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001008static inline void __dec_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001009 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001010{
1011 __mod_memcg_page_state(page, idx, -1);
1012}
1013
1014static inline void __inc_lruvec_state(struct lruvec *lruvec,
1015 enum node_stat_item idx)
1016{
1017 __mod_lruvec_state(lruvec, idx, 1);
1018}
1019
1020static inline void __dec_lruvec_state(struct lruvec *lruvec,
1021 enum node_stat_item idx)
1022{
1023 __mod_lruvec_state(lruvec, idx, -1);
1024}
1025
1026static inline void __inc_lruvec_page_state(struct page *page,
1027 enum node_stat_item idx)
1028{
1029 __mod_lruvec_page_state(page, idx, 1);
1030}
1031
1032static inline void __dec_lruvec_page_state(struct page *page,
1033 enum node_stat_item idx)
1034{
1035 __mod_lruvec_page_state(page, idx, -1);
1036}
1037
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001038/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001039static inline void inc_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001040 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001041{
1042 mod_memcg_state(memcg, idx, 1);
1043}
1044
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001045/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001046static inline void dec_memcg_state(struct mem_cgroup *memcg,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001047 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001048{
1049 mod_memcg_state(memcg, idx, -1);
1050}
1051
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001052/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001053static inline void inc_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001054 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001055{
1056 mod_memcg_page_state(page, idx, 1);
1057}
1058
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001059/* idx can be of type enum memcg_stat_item or node_stat_item */
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001060static inline void dec_memcg_page_state(struct page *page,
Matthias Kaehlcke04fecbf2017-09-06 16:22:09 -07001061 int idx)
Johannes Weiner00f3ca22017-07-06 15:40:52 -07001062{
1063 mod_memcg_page_state(page, idx, -1);
1064}
1065
1066static inline void inc_lruvec_state(struct lruvec *lruvec,
1067 enum node_stat_item idx)
1068{
1069 mod_lruvec_state(lruvec, idx, 1);
1070}
1071
1072static inline void dec_lruvec_state(struct lruvec *lruvec,
1073 enum node_stat_item idx)
1074{
1075 mod_lruvec_state(lruvec, idx, -1);
1076}
1077
1078static inline void inc_lruvec_page_state(struct page *page,
1079 enum node_stat_item idx)
1080{
1081 mod_lruvec_page_state(page, idx, 1);
1082}
1083
1084static inline void dec_lruvec_page_state(struct page *page,
1085 enum node_stat_item idx)
1086{
1087 mod_lruvec_page_state(page, idx, -1);
1088}
1089
Tejun Heo52ebea72015-05-22 17:13:37 -04001090#ifdef CONFIG_CGROUP_WRITEBACK
Tejun Heo841710a2015-05-22 18:23:33 -04001091
Tejun Heo52ebea72015-05-22 17:13:37 -04001092struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
Tejun Heo841710a2015-05-22 18:23:33 -04001093struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb);
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001094void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
1095 unsigned long *pheadroom, unsigned long *pdirty,
1096 unsigned long *pwriteback);
Tejun Heo841710a2015-05-22 18:23:33 -04001097
1098#else /* CONFIG_CGROUP_WRITEBACK */
1099
1100static inline struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
1101{
1102 return NULL;
1103}
1104
Tejun Heoc2aa7232015-05-22 18:23:35 -04001105static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb,
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001106 unsigned long *pfilepages,
1107 unsigned long *pheadroom,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001108 unsigned long *pdirty,
1109 unsigned long *pwriteback)
1110{
1111}
1112
Tejun Heo841710a2015-05-22 18:23:33 -04001113#endif /* CONFIG_CGROUP_WRITEBACK */
Tejun Heo52ebea72015-05-22 17:13:37 -04001114
Glauber Costae1aab162011-12-11 21:47:03 +00001115struct sock;
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001116bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
1117void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
Johannes Weinerd886f4e2016-01-20 15:02:47 -08001118#ifdef CONFIG_MEMCG
Johannes Weineref129472016-01-14 15:21:34 -08001119extern struct static_key_false memcg_sockets_enabled_key;
1120#define mem_cgroup_sockets_enabled static_branch_unlikely(&memcg_sockets_enabled_key)
Johannes Weiner2d758072016-10-07 17:00:58 -07001121void mem_cgroup_sk_alloc(struct sock *sk);
1122void mem_cgroup_sk_free(struct sock *sk);
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001123static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -08001124{
Johannes Weiner0db15292016-01-20 15:02:50 -08001125 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_pressure)
Johannes Weiner8e8ae642016-01-14 15:21:32 -08001126 return true;
Johannes Weiner8e8ae642016-01-14 15:21:32 -08001127 do {
1128 if (time_before(jiffies, memcg->socket_pressure))
1129 return true;
1130 } while ((memcg = parent_mem_cgroup(memcg)));
1131 return false;
Johannes Weinere8056052016-01-14 15:21:14 -08001132}
1133#else
Johannes Weiner80e95fe2016-01-14 15:21:20 -08001134#define mem_cgroup_sockets_enabled 0
Johannes Weiner2d758072016-10-07 17:00:58 -07001135static inline void mem_cgroup_sk_alloc(struct sock *sk) { };
1136static inline void mem_cgroup_sk_free(struct sock *sk) { };
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001137static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -08001138{
1139 return false;
1140}
1141#endif
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001142
Vladimir Davydov45264772016-07-26 15:24:21 -07001143struct kmem_cache *memcg_kmem_get_cache(struct kmem_cache *cachep);
1144void memcg_kmem_put_cache(struct kmem_cache *cachep);
1145int memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
1146 struct mem_cgroup *memcg);
1147int memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
1148void memcg_kmem_uncharge(struct page *page, int order);
1149
Johannes Weiner127424c2016-01-20 15:02:32 -08001150#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Johannes Weineref129472016-01-14 15:21:34 -08001151extern struct static_key_false memcg_kmem_enabled_key;
Tejun Heo17cc4df2017-02-22 15:41:36 -08001152extern struct workqueue_struct *memcg_kmem_cache_wq;
Glauber Costa749c5412012-12-18 14:23:01 -08001153
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08001154extern int memcg_nr_cache_ids;
Michal Hocko64219992015-09-08 15:01:07 -07001155void memcg_get_cache_ids(void);
1156void memcg_put_cache_ids(void);
Glauber Costaebe945c2012-12-18 14:23:10 -08001157
1158/*
1159 * Helper macro to loop through all memcg-specific caches. Callers must still
1160 * check if the cache is valid (it is either valid or NULL).
1161 * the slab_mutex must be held when looping through those caches
1162 */
Glauber Costa749c5412012-12-18 14:23:01 -08001163#define for_each_memcg_cache_index(_idx) \
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08001164 for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -08001165
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001166static inline bool memcg_kmem_enabled(void)
1167{
Johannes Weineref129472016-01-14 15:21:34 -08001168 return static_branch_unlikely(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001169}
1170
1171/*
Jesper Dangaard Brouer9f706d62016-03-15 14:54:03 -07001172 * helper for accessing a memcg's index. It will be used as an index in the
Michal Hocko33398cf2015-09-08 15:01:02 -07001173 * child cache array in kmem_cache, and also to derive its name. This function
1174 * will return -1 when this is not a kmem-limited memcg.
1175 */
1176static inline int memcg_cache_id(struct mem_cgroup *memcg)
1177{
1178 return memcg ? memcg->kmemcg_id : -1;
1179}
Vladimir Davydov5722d092014-04-07 15:39:24 -07001180
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001181#else
Glauber Costa749c5412012-12-18 14:23:01 -08001182#define for_each_memcg_cache_index(_idx) \
1183 for (; NULL; )
1184
Glauber Costab9ce5ef2012-12-18 14:22:46 -08001185static inline bool memcg_kmem_enabled(void)
1186{
1187 return false;
1188}
1189
Glauber Costa2633d7a2012-12-18 14:22:34 -08001190static inline int memcg_cache_id(struct mem_cgroup *memcg)
1191{
1192 return -1;
1193}
1194
Vladimir Davydov05257a12015-02-12 14:59:01 -08001195static inline void memcg_get_cache_ids(void)
1196{
1197}
1198
1199static inline void memcg_put_cache_ids(void)
1200{
1201}
1202
Johannes Weiner127424c2016-01-20 15:02:32 -08001203#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
1204
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001205#endif /* _LINUX_MEMCONTROL_H */