blob: 3914e3dd61680a9bc8814d9b9a386c59611eca81 [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 Weiner00f3ca22017-07-06 15:40:52 -0700111 struct lruvec_stat __percpu *lruvec_stat;
Michal Hockob4536f0c82017-01-10 16:58:04 -0800112 unsigned long lru_zone_size[MAX_NR_ZONES][NR_LRU_LISTS];
Michal Hocko33398cf2015-09-08 15:01:02 -0700113
114 struct mem_cgroup_reclaim_iter iter[DEF_PRIORITY + 1];
115
116 struct rb_node tree_node; /* RB tree node */
117 unsigned long usage_in_excess;/* Set to the value by which */
118 /* the soft limit is exceeded*/
119 bool on_tree;
120 struct mem_cgroup *memcg; /* Back pointer, we cannot */
121 /* use container_of */
122};
123
Michal Hocko33398cf2015-09-08 15:01:02 -0700124struct mem_cgroup_threshold {
125 struct eventfd_ctx *eventfd;
126 unsigned long threshold;
127};
128
129/* For threshold */
130struct mem_cgroup_threshold_ary {
131 /* An array index points to threshold just below or equal to usage. */
132 int current_threshold;
133 /* Size of entries[] */
134 unsigned int size;
135 /* Array of thresholds */
136 struct mem_cgroup_threshold entries[0];
137};
138
139struct mem_cgroup_thresholds {
140 /* Primary thresholds array */
141 struct mem_cgroup_threshold_ary *primary;
142 /*
143 * Spare threshold array.
144 * This is needed to make mem_cgroup_unregister_event() "never fail".
145 * It must be able to store at least primary->size - 1 entries.
146 */
147 struct mem_cgroup_threshold_ary *spare;
148};
149
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800150enum memcg_kmem_state {
151 KMEM_NONE,
152 KMEM_ALLOCATED,
153 KMEM_ONLINE,
154};
155
Michal Hocko33398cf2015-09-08 15:01:02 -0700156/*
157 * The memory controller data structure. The memory controller controls both
158 * page cache and RSS per cgroup. We would eventually like to provide
159 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
160 * to help the administrator determine what knobs to tune.
161 */
162struct mem_cgroup {
163 struct cgroup_subsys_state css;
164
Johannes Weiner73f576c2016-07-20 15:44:57 -0700165 /* Private memcg ID. Used to ID objects that outlive the cgroup */
166 struct mem_cgroup_id id;
167
Michal Hocko33398cf2015-09-08 15:01:02 -0700168 /* Accounted resources */
169 struct page_counter memory;
Vladimir Davydov37e84352016-01-20 15:02:56 -0800170 struct page_counter swap;
Johannes Weiner0db15292016-01-20 15:02:50 -0800171
172 /* Legacy consumer-oriented counters */
Michal Hocko33398cf2015-09-08 15:01:02 -0700173 struct page_counter memsw;
174 struct page_counter kmem;
Johannes Weiner0db15292016-01-20 15:02:50 -0800175 struct page_counter tcpmem;
Michal Hocko33398cf2015-09-08 15:01:02 -0700176
177 /* Normal memory consumption range */
178 unsigned long low;
179 unsigned long high;
180
Johannes Weinerf7e1cb62016-01-14 15:21:29 -0800181 /* Range enforcement for interrupt charges */
182 struct work_struct high_work;
183
Michal Hocko33398cf2015-09-08 15:01:02 -0700184 unsigned long soft_limit;
185
186 /* vmpressure notifications */
187 struct vmpressure vmpressure;
188
Michal Hocko33398cf2015-09-08 15:01:02 -0700189 /*
190 * Should the accounting and control be hierarchical, per subtree?
191 */
192 bool use_hierarchy;
193
194 /* protected by memcg_oom_lock */
195 bool oom_lock;
196 int under_oom;
197
198 int swappiness;
199 /* OOM-Killer disable */
200 int oom_kill_disable;
201
Tejun Heo472912a2015-09-18 18:01:59 -0400202 /* handle for "memory.events" */
203 struct cgroup_file events_file;
204
Michal Hocko33398cf2015-09-08 15:01:02 -0700205 /* protect arrays of thresholds */
206 struct mutex thresholds_lock;
207
208 /* thresholds for memory usage. RCU-protected */
209 struct mem_cgroup_thresholds thresholds;
210
211 /* thresholds for mem+swap usage. RCU-protected */
212 struct mem_cgroup_thresholds memsw_thresholds;
213
214 /* For oom notifier event fd */
215 struct list_head oom_notify;
216
217 /*
218 * Should we move charges of a task when a task is moved into this
219 * mem_cgroup ? And what type of charges should we move ?
220 */
221 unsigned long move_charge_at_immigrate;
222 /*
223 * set > 0 if pages under this cgroup are moving to other cgroup.
224 */
225 atomic_t moving_account;
226 /* taken only while moving_account > 0 */
227 spinlock_t move_lock;
228 struct task_struct *move_lock_task;
229 unsigned long move_lock_flags;
230 /*
231 * percpu counter.
232 */
233 struct mem_cgroup_stat_cpu __percpu *stat;
Michal Hocko33398cf2015-09-08 15:01:02 -0700234
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800235 unsigned long socket_pressure;
236
237 /* Legacy tcp memory accounting */
Johannes Weiner0db15292016-01-20 15:02:50 -0800238 bool tcpmem_active;
239 int tcpmem_pressure;
Johannes Weinerd886f4e2016-01-20 15:02:47 -0800240
Johannes Weiner127424c2016-01-20 15:02:32 -0800241#ifndef CONFIG_SLOB
Michal Hocko33398cf2015-09-08 15:01:02 -0700242 /* Index in the kmem_cache->memcg_params.memcg_caches array */
243 int kmemcg_id;
Johannes Weiner567e9ab2016-01-20 15:02:24 -0800244 enum memcg_kmem_state kmem_state;
Tejun Heobc2791f2017-02-22 15:41:21 -0800245 struct list_head kmem_caches;
Michal Hocko33398cf2015-09-08 15:01:02 -0700246#endif
247
248 int last_scanned_node;
249#if MAX_NUMNODES > 1
250 nodemask_t scan_nodes;
251 atomic_t numainfo_events;
252 atomic_t numainfo_updating;
253#endif
254
255#ifdef CONFIG_CGROUP_WRITEBACK
256 struct list_head cgwb_list;
257 struct wb_domain cgwb_domain;
258#endif
259
260 /* List of events which userspace want to receive */
261 struct list_head event_list;
262 spinlock_t event_list_lock;
263
264 struct mem_cgroup_per_node *nodeinfo[0];
265 /* WARNING: nodeinfo must be the last member here */
266};
Johannes Weiner7d828602016-01-14 15:20:56 -0800267
268extern struct mem_cgroup *root_mem_cgroup;
Tejun Heo56161632015-05-22 17:13:20 -0400269
Johannes Weiner23047a92016-03-15 14:57:16 -0700270static inline bool mem_cgroup_disabled(void)
271{
272 return !cgroup_subsys_enabled(memory_cgrp_subsys);
273}
274
Johannes Weiner31176c72017-05-03 14:55:07 -0700275static inline void mem_cgroup_event(struct mem_cgroup *memcg,
Johannes Weinerdf0e53d2017-05-03 14:55:10 -0700276 enum memcg_event_item event)
Michal Hocko33398cf2015-09-08 15:01:02 -0700277{
Johannes Weinerdf0e53d2017-05-03 14:55:10 -0700278 this_cpu_inc(memcg->stat->events[event]);
Tejun Heo472912a2015-09-18 18:01:59 -0400279 cgroup_file_notify(&memcg->events_file);
Michal Hocko33398cf2015-09-08 15:01:02 -0700280}
Johannes Weiner241994ed2015-02-11 15:26:06 -0800281
282bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
283
Johannes Weiner00501b52014-08-08 14:19:20 -0700284int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800285 gfp_t gfp_mask, struct mem_cgroup **memcgp,
286 bool compound);
Johannes Weiner00501b52014-08-08 14:19:20 -0700287void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800288 bool lrucare, bool compound);
289void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg,
290 bool compound);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700291void mem_cgroup_uncharge(struct page *page);
Johannes Weiner747db952014-08-08 14:19:24 -0700292void mem_cgroup_uncharge_list(struct list_head *page_list);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700293
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700294void mem_cgroup_migrate(struct page *oldpage, struct page *newpage);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700295
Mel Gormanef8f2322016-07-28 15:46:05 -0700296static struct mem_cgroup_per_node *
297mem_cgroup_nodeinfo(struct mem_cgroup *memcg, int nid)
Johannes Weiner55779ec2016-07-28 15:45:10 -0700298{
Mel Gormanef8f2322016-07-28 15:46:05 -0700299 return memcg->nodeinfo[nid];
Johannes Weiner55779ec2016-07-28 15:45:10 -0700300}
301
302/**
Mel Gormana9dd0a82016-07-28 15:46:02 -0700303 * mem_cgroup_lruvec - get the lru list vector for a node or a memcg zone
304 * @node: node of the wanted lruvec
Johannes Weiner55779ec2016-07-28 15:45:10 -0700305 * @memcg: memcg of the wanted lruvec
306 *
Mel Gormana9dd0a82016-07-28 15:46:02 -0700307 * Returns the lru list vector holding pages for a given @node or a given
308 * @memcg and @zone. This can be the node lruvec, if the memory controller
Johannes Weiner55779ec2016-07-28 15:45:10 -0700309 * is disabled.
310 */
Mel Gormana9dd0a82016-07-28 15:46:02 -0700311static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
Mel Gormanef8f2322016-07-28 15:46:05 -0700312 struct mem_cgroup *memcg)
Johannes Weiner55779ec2016-07-28 15:45:10 -0700313{
Mel Gormanef8f2322016-07-28 15:46:05 -0700314 struct mem_cgroup_per_node *mz;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700315 struct lruvec *lruvec;
316
317 if (mem_cgroup_disabled()) {
Mel Gormana9dd0a82016-07-28 15:46:02 -0700318 lruvec = node_lruvec(pgdat);
Johannes Weiner55779ec2016-07-28 15:45:10 -0700319 goto out;
320 }
321
Mel Gormanef8f2322016-07-28 15:46:05 -0700322 mz = mem_cgroup_nodeinfo(memcg, pgdat->node_id);
Johannes Weiner55779ec2016-07-28 15:45:10 -0700323 lruvec = &mz->lruvec;
324out:
325 /*
326 * Since a node can be onlined after the mem_cgroup was created,
Mel Gorman599d0c92016-07-28 15:45:31 -0700327 * we have to be prepared to initialize lruvec->pgdat here;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700328 * and if offlined then reonlined, we need to reinitialize it.
329 */
Mel Gormanef8f2322016-07-28 15:46:05 -0700330 if (unlikely(lruvec->pgdat != pgdat))
331 lruvec->pgdat = pgdat;
Johannes Weiner55779ec2016-07-28 15:45:10 -0700332 return lruvec;
333}
334
Mel Gorman599d0c92016-07-28 15:45:31 -0700335struct lruvec *mem_cgroup_page_lruvec(struct page *, struct pglist_data *);
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800336
Johannes Weiner2314b422014-12-10 15:44:33 -0800337bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
Michal Hocko64219992015-09-08 15:01:07 -0700338struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
Vladimir Davydove993d902015-09-09 15:35:35 -0700339
Michal Hocko33398cf2015-09-08 15:01:02 -0700340static inline
341struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
342 return css ? container_of(css, struct mem_cgroup, css) : NULL;
343}
344
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800345#define mem_cgroup_from_counter(counter, member) \
346 container_of(counter, struct mem_cgroup, member)
347
Michal Hocko33398cf2015-09-08 15:01:02 -0700348struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
349 struct mem_cgroup *,
350 struct mem_cgroup_reclaim_cookie *);
351void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700352int mem_cgroup_scan_tasks(struct mem_cgroup *,
353 int (*)(struct task_struct *, void *), void *);
Michal Hocko33398cf2015-09-08 15:01:02 -0700354
Johannes Weiner23047a92016-03-15 14:57:16 -0700355static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
356{
357 if (mem_cgroup_disabled())
358 return 0;
359
Johannes Weiner73f576c2016-07-20 15:44:57 -0700360 return memcg->id.id;
Johannes Weiner23047a92016-03-15 14:57:16 -0700361}
Johannes Weiner73f576c2016-07-20 15:44:57 -0700362struct mem_cgroup *mem_cgroup_from_id(unsigned short id);
Johannes Weiner23047a92016-03-15 14:57:16 -0700363
Roman Gushchin22621852017-07-06 15:40:25 -0700364static inline struct mem_cgroup *lruvec_memcg(struct lruvec *lruvec)
365{
366 struct mem_cgroup_per_node *mz;
367
368 if (mem_cgroup_disabled())
369 return NULL;
370
371 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
372 return mz->memcg;
373}
374
Johannes Weiner8e8ae642016-01-14 15:21:32 -0800375/**
376 * parent_mem_cgroup - find the accounting parent of a memcg
377 * @memcg: memcg whose parent to find
378 *
379 * Returns the parent memcg, or NULL if this is the root or the memory
380 * controller is in legacy no-hierarchy mode.
381 */
382static inline struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
383{
384 if (!memcg->memory.parent)
385 return NULL;
386 return mem_cgroup_from_counter(memcg->memory.parent, memory);
387}
388
Michal Hocko33398cf2015-09-08 15:01:02 -0700389static inline bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
390 struct mem_cgroup *root)
391{
392 if (root == memcg)
393 return true;
394 if (!root->use_hierarchy)
395 return false;
396 return cgroup_is_descendant(memcg->css.cgroup, root->css.cgroup);
397}
Glauber Costae1aab162011-12-11 21:47:03 +0000398
Johannes Weiner2314b422014-12-10 15:44:33 -0800399static inline bool mm_match_cgroup(struct mm_struct *mm,
400 struct mem_cgroup *memcg)
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800401{
Johannes Weiner587af302012-10-08 16:34:12 -0700402 struct mem_cgroup *task_memcg;
Johannes Weiner413918b2014-12-10 15:44:30 -0800403 bool match = false;
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700404
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800405 rcu_read_lock();
Johannes Weiner587af302012-10-08 16:34:12 -0700406 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Johannes Weiner413918b2014-12-10 15:44:30 -0800407 if (task_memcg)
Johannes Weiner2314b422014-12-10 15:44:33 -0800408 match = mem_cgroup_is_descendant(task_memcg, memcg);
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800409 rcu_read_unlock();
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700410 return match;
Lai Jiangshan2e4d4092009-01-07 18:08:07 -0800411}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800412
Michal Hocko64219992015-09-08 15:01:07 -0700413struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700414ino_t page_cgroup_ino(struct page *page);
Wu Fengguangd3242362009-12-16 12:19:59 +0100415
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800416static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
417{
418 if (mem_cgroup_disabled())
419 return true;
420 return !!(memcg->css.flags & CSS_ONLINE);
421}
422
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800423/*
424 * For memory reclaim.
425 */
Ying Han889976d2011-05-26 16:25:33 -0700426int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
Michal Hocko33398cf2015-09-08 15:01:02 -0700427
428void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
Michal Hockob4536f0c82017-01-10 16:58:04 -0800429 int zid, int nr_pages);
Michal Hocko33398cf2015-09-08 15:01:02 -0700430
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700431unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
432 int nid, unsigned int lru_mask);
433
Michal Hocko33398cf2015-09-08 15:01:02 -0700434static inline
435unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
436{
Mel Gormanef8f2322016-07-28 15:46:05 -0700437 struct mem_cgroup_per_node *mz;
Michal Hockob4536f0c82017-01-10 16:58:04 -0800438 unsigned long nr_pages = 0;
439 int zid;
Michal Hocko33398cf2015-09-08 15:01:02 -0700440
Mel Gormanef8f2322016-07-28 15:46:05 -0700441 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
Michal Hockob4536f0c82017-01-10 16:58:04 -0800442 for (zid = 0; zid < MAX_NR_ZONES; zid++)
443 nr_pages += mz->lru_zone_size[zid][lru];
444 return nr_pages;
445}
446
447static inline
448unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
449 enum lru_list lru, int zone_idx)
450{
451 struct mem_cgroup_per_node *mz;
452
453 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
454 return mz->lru_zone_size[zone_idx][lru];
Michal Hocko33398cf2015-09-08 15:01:02 -0700455}
456
Tejun Heob23afb92015-11-05 18:46:11 -0800457void mem_cgroup_handle_over_high(void);
458
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700459unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg);
460
Michal Hocko64219992015-09-08 15:01:07 -0700461void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
462 struct task_struct *p);
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800463
Johannes Weiner49426422013-10-16 13:46:59 -0700464static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700465{
Tejun Heo626ebc42015-11-05 18:46:09 -0800466 WARN_ON(current->memcg_may_oom);
467 current->memcg_may_oom = 1;
Johannes Weiner519e5242013-09-12 15:13:42 -0700468}
469
Johannes Weiner49426422013-10-16 13:46:59 -0700470static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700471{
Tejun Heo626ebc42015-11-05 18:46:09 -0800472 WARN_ON(!current->memcg_may_oom);
473 current->memcg_may_oom = 0;
Johannes Weiner519e5242013-09-12 15:13:42 -0700474}
475
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700476static inline bool task_in_memcg_oom(struct task_struct *p)
477{
Tejun Heo626ebc42015-11-05 18:46:09 -0800478 return p->memcg_in_oom;
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700479}
480
Johannes Weiner49426422013-10-16 13:46:59 -0700481bool mem_cgroup_oom_synchronize(bool wait);
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700482
Andrew Mortonc255a452012-07-31 16:43:02 -0700483#ifdef CONFIG_MEMCG_SWAP
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -0800484extern int do_swap_account;
485#endif
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800486
Johannes Weiner62cccb82016-03-15 14:57:22 -0700487void lock_page_memcg(struct page *page);
488void unlock_page_memcg(struct page *page);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700489
Johannes Weinerccda7f42017-05-03 14:55:16 -0700490static inline unsigned long memcg_page_state(struct mem_cgroup *memcg,
491 enum memcg_stat_item idx)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700492{
493 long val = 0;
494 int cpu;
495
496 for_each_possible_cpu(cpu)
497 val += per_cpu(memcg->stat->count[idx], cpu);
498
499 if (val < 0)
500 val = 0;
501
502 return val;
503}
504
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700505static inline void __mod_memcg_state(struct mem_cgroup *memcg,
506 enum memcg_stat_item idx, int val)
507{
508 if (!mem_cgroup_disabled())
509 __this_cpu_add(memcg->stat->count[idx], val);
510}
511
Johannes Weinerccda7f42017-05-03 14:55:16 -0700512static inline void mod_memcg_state(struct mem_cgroup *memcg,
513 enum memcg_stat_item idx, int val)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700514{
515 if (!mem_cgroup_disabled())
516 this_cpu_add(memcg->stat->count[idx], val);
517}
518
Michal Hocko33398cf2015-09-08 15:01:02 -0700519/**
Johannes Weinerccda7f42017-05-03 14:55:16 -0700520 * mod_memcg_page_state - update page state statistics
Johannes Weiner62cccb82016-03-15 14:57:22 -0700521 * @page: the page
Michal Hocko33398cf2015-09-08 15:01:02 -0700522 * @idx: page state item to account
523 * @val: number of pages (positive or negative)
524 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700525 * The @page must be locked or the caller must use lock_page_memcg()
526 * to prevent double accounting when the page is concurrently being
527 * moved to another memcg:
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700528 *
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700529 * lock_page(page) or lock_page_memcg(page)
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700530 * if (TestClearPageState(page))
Johannes Weinerccda7f42017-05-03 14:55:16 -0700531 * mod_memcg_page_state(page, state, -1);
Johannes Weinerfdf1cdb2016-03-15 14:57:25 -0700532 * unlock_page(page) or unlock_page_memcg(page)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700533 *
534 * Kernel pages are an exception to this, since they'll never move.
Michal Hocko33398cf2015-09-08 15:01:02 -0700535 */
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700536static inline void __mod_memcg_page_state(struct page *page,
537 enum memcg_stat_item idx, int val)
538{
539 if (page->mem_cgroup)
540 __mod_memcg_state(page->mem_cgroup, idx, val);
541}
542
Johannes Weinerccda7f42017-05-03 14:55:16 -0700543static inline void mod_memcg_page_state(struct page *page,
544 enum memcg_stat_item idx, int val)
Michal Hocko33398cf2015-09-08 15:01:02 -0700545{
Johannes Weiner62cccb82016-03-15 14:57:22 -0700546 if (page->mem_cgroup)
Johannes Weinerccda7f42017-05-03 14:55:16 -0700547 mod_memcg_state(page->mem_cgroup, idx, val);
Michal Hocko33398cf2015-09-08 15:01:02 -0700548}
549
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700550static inline unsigned long lruvec_page_state(struct lruvec *lruvec,
551 enum node_stat_item idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800552{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700553 struct mem_cgroup_per_node *pn;
554 long val = 0;
555 int cpu;
556
557 if (mem_cgroup_disabled())
558 return node_page_state(lruvec_pgdat(lruvec), idx);
559
560 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
561 for_each_possible_cpu(cpu)
562 val += per_cpu(pn->lruvec_stat->count[idx], cpu);
563
564 if (val < 0)
565 val = 0;
566
567 return val;
Greg Thelen2a7106f2011-01-13 15:47:37 -0800568}
569
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700570static inline void __mod_lruvec_state(struct lruvec *lruvec,
571 enum node_stat_item idx, int val)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800572{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700573 struct mem_cgroup_per_node *pn;
574
575 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
576 if (mem_cgroup_disabled())
577 return;
578 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
579 __mod_memcg_state(pn->memcg, idx, val);
580 __this_cpu_add(pn->lruvec_stat->count[idx], val);
581}
582
583static inline void mod_lruvec_state(struct lruvec *lruvec,
584 enum node_stat_item idx, int val)
585{
586 struct mem_cgroup_per_node *pn;
587
588 mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
589 if (mem_cgroup_disabled())
590 return;
591 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
592 mod_memcg_state(pn->memcg, idx, val);
593 this_cpu_add(pn->lruvec_stat->count[idx], val);
594}
595
596static inline void __mod_lruvec_page_state(struct page *page,
597 enum node_stat_item idx, int val)
598{
599 struct mem_cgroup_per_node *pn;
600
601 __mod_node_page_state(page_pgdat(page), idx, val);
602 if (mem_cgroup_disabled() || !page->mem_cgroup)
603 return;
604 __mod_memcg_state(page->mem_cgroup, idx, val);
605 pn = page->mem_cgroup->nodeinfo[page_to_nid(page)];
606 __this_cpu_add(pn->lruvec_stat->count[idx], val);
607}
608
609static inline void mod_lruvec_page_state(struct page *page,
610 enum node_stat_item idx, int val)
611{
612 struct mem_cgroup_per_node *pn;
613
614 mod_node_page_state(page_pgdat(page), idx, val);
615 if (mem_cgroup_disabled() || !page->mem_cgroup)
616 return;
617 mod_memcg_state(page->mem_cgroup, idx, val);
618 pn = page->mem_cgroup->nodeinfo[page_to_nid(page)];
619 this_cpu_add(pn->lruvec_stat->count[idx], val);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800620}
621
Mel Gormanef8f2322016-07-28 15:46:05 -0700622unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
Andrew Morton0608f432013-09-24 15:27:41 -0700623 gfp_t gfp_mask,
624 unsigned long *total_scanned);
David Rientjesa63d83f2010-08-09 17:19:46 -0700625
Roman Gushchin22621852017-07-06 15:40:25 -0700626static inline void count_memcg_events(struct mem_cgroup *memcg,
627 enum vm_event_item idx,
628 unsigned long count)
629{
630 if (!mem_cgroup_disabled())
631 this_cpu_add(memcg->stat->events[idx], count);
632}
633
634static inline void count_memcg_page_event(struct page *page,
635 enum memcg_stat_item idx)
636{
637 if (page->mem_cgroup)
638 count_memcg_events(page->mem_cgroup, idx, 1);
639}
640
641static inline void count_memcg_event_mm(struct mm_struct *mm,
642 enum vm_event_item idx)
David Rientjes68ae5642012-12-12 13:51:57 -0800643{
Michal Hocko33398cf2015-09-08 15:01:02 -0700644 struct mem_cgroup *memcg;
645
David Rientjes68ae5642012-12-12 13:51:57 -0800646 if (mem_cgroup_disabled())
647 return;
Michal Hocko33398cf2015-09-08 15:01:02 -0700648
649 rcu_read_lock();
650 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
Konstantin Khlebnikov8e675f72017-07-06 15:40:28 -0700651 if (likely(memcg)) {
Johannes Weinerdf0e53d2017-05-03 14:55:10 -0700652 this_cpu_inc(memcg->stat->events[idx]);
Konstantin Khlebnikov8e675f72017-07-06 15:40:28 -0700653 if (idx == OOM_KILL)
654 cgroup_file_notify(&memcg->events_file);
655 }
Michal Hocko33398cf2015-09-08 15:01:02 -0700656 rcu_read_unlock();
David Rientjes68ae5642012-12-12 13:51:57 -0800657}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800658#ifdef CONFIG_TRANSPARENT_HUGEPAGE
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800659void mem_cgroup_split_huge_fixup(struct page *head);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800660#endif
661
Andrew Mortonc255a452012-07-31 16:43:02 -0700662#else /* CONFIG_MEMCG */
Johannes Weiner23047a92016-03-15 14:57:16 -0700663
664#define MEM_CGROUP_ID_SHIFT 0
665#define MEM_CGROUP_ID_MAX 0
666
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800667struct mem_cgroup;
668
Johannes Weiner23047a92016-03-15 14:57:16 -0700669static inline bool mem_cgroup_disabled(void)
670{
671 return true;
672}
673
Johannes Weiner31176c72017-05-03 14:55:07 -0700674static inline void mem_cgroup_event(struct mem_cgroup *memcg,
Johannes Weinerdf0e53d2017-05-03 14:55:10 -0700675 enum memcg_event_item event)
Johannes Weiner241994ed2015-02-11 15:26:06 -0800676{
677}
678
679static inline bool mem_cgroup_low(struct mem_cgroup *root,
680 struct mem_cgroup *memcg)
681{
682 return false;
683}
684
Johannes Weiner00501b52014-08-08 14:19:20 -0700685static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
686 gfp_t gfp_mask,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800687 struct mem_cgroup **memcgp,
688 bool compound)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800689{
Johannes Weiner00501b52014-08-08 14:19:20 -0700690 *memcgp = NULL;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800691 return 0;
692}
693
Johannes Weiner00501b52014-08-08 14:19:20 -0700694static inline void mem_cgroup_commit_charge(struct page *page,
695 struct mem_cgroup *memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800696 bool lrucare, bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800697{
698}
699
Johannes Weiner00501b52014-08-08 14:19:20 -0700700static inline void mem_cgroup_cancel_charge(struct page *page,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800701 struct mem_cgroup *memcg,
702 bool compound)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800703{
704}
705
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700706static inline void mem_cgroup_uncharge(struct page *page)
707{
708}
709
Johannes Weiner747db952014-08-08 14:19:24 -0700710static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
KAMEZAWA Hiroyuki569b8462009-12-15 16:47:03 -0800711{
712}
713
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700714static inline void mem_cgroup_migrate(struct page *old, struct page *new)
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700715{
716}
717
Mel Gormana9dd0a82016-07-28 15:46:02 -0700718static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
Mel Gormanef8f2322016-07-28 15:46:05 -0700719 struct mem_cgroup *memcg)
Johannes Weiner925b7672012-01-12 17:18:15 -0800720{
Mel Gormana9dd0a82016-07-28 15:46:02 -0700721 return node_lruvec(pgdat);
Johannes Weiner925b7672012-01-12 17:18:15 -0800722}
723
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700724static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
Mel Gorman599d0c92016-07-28 15:45:31 -0700725 struct pglist_data *pgdat)
Minchan Kim3f58a822011-03-22 16:32:53 -0700726{
Mel Gorman599d0c92016-07-28 15:45:31 -0700727 return &pgdat->lruvec;
Balbir Singh66e17072008-02-07 00:13:56 -0800728}
729
Johannes Weiner587af302012-10-08 16:34:12 -0700730static inline bool mm_match_cgroup(struct mm_struct *mm,
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700731 struct mem_cgroup *memcg)
Balbir Singhbed71612008-02-07 00:14:01 -0800732{
Johannes Weiner587af302012-10-08 16:34:12 -0700733 return true;
Balbir Singhbed71612008-02-07 00:14:01 -0800734}
735
David Rientjesffbdccf2013-07-03 15:01:23 -0700736static inline bool task_in_mem_cgroup(struct task_struct *task,
737 const struct mem_cgroup *memcg)
David Rientjes4c4a2212008-02-07 00:14:06 -0800738{
David Rientjesffbdccf2013-07-03 15:01:23 -0700739 return true;
David Rientjes4c4a2212008-02-07 00:14:06 -0800740}
741
Johannes Weiner56600482012-01-12 17:17:59 -0800742static inline struct mem_cgroup *
743mem_cgroup_iter(struct mem_cgroup *root,
744 struct mem_cgroup *prev,
745 struct mem_cgroup_reclaim_cookie *reclaim)
746{
747 return NULL;
748}
749
750static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
751 struct mem_cgroup *prev)
752{
753}
754
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700755static inline int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
756 int (*fn)(struct task_struct *, void *), void *arg)
757{
758 return 0;
759}
760
Johannes Weiner23047a92016-03-15 14:57:16 -0700761static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800762{
Johannes Weiner23047a92016-03-15 14:57:16 -0700763 return 0;
764}
765
766static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
767{
768 WARN_ON_ONCE(id);
769 /* XXX: This should always return root_mem_cgroup */
770 return NULL;
Hirokazu Takahashif8d665422009-01-07 18:08:02 -0800771}
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -0800772
Roman Gushchin22621852017-07-06 15:40:25 -0700773static inline struct mem_cgroup *lruvec_memcg(struct lruvec *lruvec)
774{
775 return NULL;
776}
777
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -0800778static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800779{
Yaowei Bai13308ca2015-11-05 18:47:40 -0800780 return true;
KOSAKI Motohiro14797e22009-01-07 18:08:18 -0800781}
782
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800783static inline unsigned long
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700784mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800785{
786 return 0;
787}
Michal Hockob4536f0c82017-01-10 16:58:04 -0800788static inline
789unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
790 enum lru_list lru, int zone_idx)
791{
792 return 0;
793}
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800794
Vladimir Davydov0a6b76d2016-03-17 14:18:42 -0700795static inline unsigned long
796mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
797 int nid, unsigned int lru_mask)
798{
799 return 0;
800}
801
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -0700802static inline unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg)
803{
804 return 0;
805}
806
Balbir Singhe2224322009-04-02 16:57:39 -0700807static inline void
808mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
809{
810}
811
Johannes Weiner62cccb82016-03-15 14:57:22 -0700812static inline void lock_page_memcg(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700813{
814}
815
Johannes Weiner62cccb82016-03-15 14:57:22 -0700816static inline void unlock_page_memcg(struct page *page)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -0700817{
818}
819
Tejun Heob23afb92015-11-05 18:46:11 -0800820static inline void mem_cgroup_handle_over_high(void)
821{
822}
823
Johannes Weiner49426422013-10-16 13:46:59 -0700824static inline void mem_cgroup_oom_enable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700825{
826}
827
Johannes Weiner49426422013-10-16 13:46:59 -0700828static inline void mem_cgroup_oom_disable(void)
Johannes Weiner519e5242013-09-12 15:13:42 -0700829{
830}
831
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700832static inline bool task_in_memcg_oom(struct task_struct *p)
833{
834 return false;
835}
836
Johannes Weiner49426422013-10-16 13:46:59 -0700837static inline bool mem_cgroup_oom_synchronize(bool wait)
Johannes Weiner3812c8c2013-09-12 15:13:44 -0700838{
839 return false;
840}
841
Johannes Weinerccda7f42017-05-03 14:55:16 -0700842static inline unsigned long memcg_page_state(struct mem_cgroup *memcg,
843 enum memcg_stat_item idx)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700844{
845 return 0;
846}
847
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700848static inline void __mod_memcg_state(struct mem_cgroup *memcg,
849 enum memcg_stat_item idx,
850 int nr)
851{
852}
853
Johannes Weinerccda7f42017-05-03 14:55:16 -0700854static inline void mod_memcg_state(struct mem_cgroup *memcg,
855 enum memcg_stat_item idx,
856 int nr)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700857{
858}
859
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700860static inline void __mod_memcg_page_state(struct page *page,
861 enum memcg_stat_item idx,
862 int nr)
Johannes Weiner2a2e4882017-05-03 14:55:03 -0700863{
864}
865
Johannes Weinerccda7f42017-05-03 14:55:16 -0700866static inline void mod_memcg_page_state(struct page *page,
867 enum memcg_stat_item idx,
868 int nr)
Johannes Weiner553af432017-03-31 15:11:50 -0700869{
870}
871
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700872static inline unsigned long lruvec_page_state(struct lruvec *lruvec,
873 enum node_stat_item idx)
Greg Thelen2a7106f2011-01-13 15:47:37 -0800874{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700875 return node_page_state(lruvec_pgdat(lruvec), idx);
Greg Thelen2a7106f2011-01-13 15:47:37 -0800876}
877
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700878static inline void __mod_lruvec_state(struct lruvec *lruvec,
879 enum node_stat_item idx, int val)
Balbir Singhd69b0422009-06-17 16:26:34 -0700880{
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700881 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
882}
883
884static inline void mod_lruvec_state(struct lruvec *lruvec,
885 enum node_stat_item idx, int val)
886{
887 mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
888}
889
890static inline void __mod_lruvec_page_state(struct page *page,
891 enum node_stat_item idx, int val)
892{
893 __mod_node_page_state(page_pgdat(page), idx, val);
894}
895
896static inline void mod_lruvec_page_state(struct page *page,
897 enum node_stat_item idx, int val)
898{
899 mod_node_page_state(page_pgdat(page), idx, val);
Balbir Singhd69b0422009-06-17 16:26:34 -0700900}
901
Balbir Singh4e416952009-09-23 15:56:39 -0700902static inline
Mel Gormanef8f2322016-07-28 15:46:05 -0700903unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
Andrew Morton0608f432013-09-24 15:27:41 -0700904 gfp_t gfp_mask,
905 unsigned long *total_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -0700906{
Andrew Morton0608f432013-09-24 15:27:41 -0700907 return 0;
Balbir Singh4e416952009-09-23 15:56:39 -0700908}
909
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -0800910static inline void mem_cgroup_split_huge_fixup(struct page *head)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -0800911{
912}
913
Roman Gushchin22621852017-07-06 15:40:25 -0700914static inline void count_memcg_events(struct mem_cgroup *memcg,
915 enum vm_event_item idx,
916 unsigned long count)
917{
918}
919
920static inline void count_memcg_page_event(struct page *page,
921 enum memcg_stat_item idx)
922{
923}
924
Ying Han456f9982011-05-26 16:25:38 -0700925static inline
Roman Gushchin22621852017-07-06 15:40:25 -0700926void count_memcg_event_mm(struct mm_struct *mm, enum vm_event_item idx)
Ying Han456f9982011-05-26 16:25:38 -0700927{
928}
Andrew Mortonc255a452012-07-31 16:43:02 -0700929#endif /* CONFIG_MEMCG */
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800930
Johannes Weiner00f3ca22017-07-06 15:40:52 -0700931static inline void __inc_memcg_state(struct mem_cgroup *memcg,
932 enum memcg_stat_item idx)
933{
934 __mod_memcg_state(memcg, idx, 1);
935}
936
937static inline void __dec_memcg_state(struct mem_cgroup *memcg,
938 enum memcg_stat_item idx)
939{
940 __mod_memcg_state(memcg, idx, -1);
941}
942
943static inline void __inc_memcg_page_state(struct page *page,
944 enum memcg_stat_item idx)
945{
946 __mod_memcg_page_state(page, idx, 1);
947}
948
949static inline void __dec_memcg_page_state(struct page *page,
950 enum memcg_stat_item idx)
951{
952 __mod_memcg_page_state(page, idx, -1);
953}
954
955static inline void __inc_lruvec_state(struct lruvec *lruvec,
956 enum node_stat_item idx)
957{
958 __mod_lruvec_state(lruvec, idx, 1);
959}
960
961static inline void __dec_lruvec_state(struct lruvec *lruvec,
962 enum node_stat_item idx)
963{
964 __mod_lruvec_state(lruvec, idx, -1);
965}
966
967static inline void __inc_lruvec_page_state(struct page *page,
968 enum node_stat_item idx)
969{
970 __mod_lruvec_page_state(page, idx, 1);
971}
972
973static inline void __dec_lruvec_page_state(struct page *page,
974 enum node_stat_item idx)
975{
976 __mod_lruvec_page_state(page, idx, -1);
977}
978
979static inline void inc_memcg_state(struct mem_cgroup *memcg,
980 enum memcg_stat_item idx)
981{
982 mod_memcg_state(memcg, idx, 1);
983}
984
985static inline void dec_memcg_state(struct mem_cgroup *memcg,
986 enum memcg_stat_item idx)
987{
988 mod_memcg_state(memcg, idx, -1);
989}
990
991static inline void inc_memcg_page_state(struct page *page,
992 enum memcg_stat_item idx)
993{
994 mod_memcg_page_state(page, idx, 1);
995}
996
997static inline void dec_memcg_page_state(struct page *page,
998 enum memcg_stat_item idx)
999{
1000 mod_memcg_page_state(page, idx, -1);
1001}
1002
1003static inline void inc_lruvec_state(struct lruvec *lruvec,
1004 enum node_stat_item idx)
1005{
1006 mod_lruvec_state(lruvec, idx, 1);
1007}
1008
1009static inline void dec_lruvec_state(struct lruvec *lruvec,
1010 enum node_stat_item idx)
1011{
1012 mod_lruvec_state(lruvec, idx, -1);
1013}
1014
1015static inline void inc_lruvec_page_state(struct page *page,
1016 enum node_stat_item idx)
1017{
1018 mod_lruvec_page_state(page, idx, 1);
1019}
1020
1021static inline void dec_lruvec_page_state(struct page *page,
1022 enum node_stat_item idx)
1023{
1024 mod_lruvec_page_state(page, idx, -1);
1025}
1026
Tejun Heo52ebea72015-05-22 17:13:37 -04001027#ifdef CONFIG_CGROUP_WRITEBACK
Tejun Heo841710a2015-05-22 18:23:33 -04001028
Tejun Heo52ebea72015-05-22 17:13:37 -04001029struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
Tejun Heo841710a2015-05-22 18:23:33 -04001030struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb);
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001031void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
1032 unsigned long *pheadroom, unsigned long *pdirty,
1033 unsigned long *pwriteback);
Tejun Heo841710a2015-05-22 18:23:33 -04001034
1035#else /* CONFIG_CGROUP_WRITEBACK */
1036
1037static inline struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
1038{
1039 return NULL;
1040}
1041
Tejun Heoc2aa7232015-05-22 18:23:35 -04001042static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb,
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001043 unsigned long *pfilepages,
1044 unsigned long *pheadroom,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001045 unsigned long *pdirty,
1046 unsigned long *pwriteback)
1047{
1048}
1049
Tejun Heo841710a2015-05-22 18:23:33 -04001050#endif /* CONFIG_CGROUP_WRITEBACK */
Tejun Heo52ebea72015-05-22 17:13:37 -04001051
Glauber Costae1aab162011-12-11 21:47:03 +00001052struct sock;
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001053bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
1054void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
Johannes Weinerd886f4e2016-01-20 15:02:47 -08001055#ifdef CONFIG_MEMCG
Johannes Weineref129472016-01-14 15:21:34 -08001056extern struct static_key_false memcg_sockets_enabled_key;
1057#define mem_cgroup_sockets_enabled static_branch_unlikely(&memcg_sockets_enabled_key)
Johannes Weiner2d758072016-10-07 17:00:58 -07001058void mem_cgroup_sk_alloc(struct sock *sk);
1059void mem_cgroup_sk_free(struct sock *sk);
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001060static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -08001061{
Johannes Weiner0db15292016-01-20 15:02:50 -08001062 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_pressure)
Johannes Weiner8e8ae642016-01-14 15:21:32 -08001063 return true;
Johannes Weiner8e8ae642016-01-14 15:21:32 -08001064 do {
1065 if (time_before(jiffies, memcg->socket_pressure))
1066 return true;
1067 } while ((memcg = parent_mem_cgroup(memcg)));
1068 return false;
Johannes Weinere8056052016-01-14 15:21:14 -08001069}
1070#else
Johannes Weiner80e95fe2016-01-14 15:21:20 -08001071#define mem_cgroup_sockets_enabled 0
Johannes Weiner2d758072016-10-07 17:00:58 -07001072static inline void mem_cgroup_sk_alloc(struct sock *sk) { };
1073static inline void mem_cgroup_sk_free(struct sock *sk) { };
Johannes Weinerbaac50b2016-01-14 15:21:17 -08001074static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
Johannes Weinere8056052016-01-14 15:21:14 -08001075{
1076 return false;
1077}
1078#endif
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001079
Vladimir Davydov45264772016-07-26 15:24:21 -07001080struct kmem_cache *memcg_kmem_get_cache(struct kmem_cache *cachep);
1081void memcg_kmem_put_cache(struct kmem_cache *cachep);
1082int memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
1083 struct mem_cgroup *memcg);
1084int memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
1085void memcg_kmem_uncharge(struct page *page, int order);
1086
Johannes Weiner127424c2016-01-20 15:02:32 -08001087#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Johannes Weineref129472016-01-14 15:21:34 -08001088extern struct static_key_false memcg_kmem_enabled_key;
Tejun Heo17cc4df2017-02-22 15:41:36 -08001089extern struct workqueue_struct *memcg_kmem_cache_wq;
Glauber Costa749c5412012-12-18 14:23:01 -08001090
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08001091extern int memcg_nr_cache_ids;
Michal Hocko64219992015-09-08 15:01:07 -07001092void memcg_get_cache_ids(void);
1093void memcg_put_cache_ids(void);
Glauber Costaebe945c2012-12-18 14:23:10 -08001094
1095/*
1096 * Helper macro to loop through all memcg-specific caches. Callers must still
1097 * check if the cache is valid (it is either valid or NULL).
1098 * the slab_mutex must be held when looping through those caches
1099 */
Glauber Costa749c5412012-12-18 14:23:01 -08001100#define for_each_memcg_cache_index(_idx) \
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08001101 for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
Glauber Costa749c5412012-12-18 14:23:01 -08001102
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001103static inline bool memcg_kmem_enabled(void)
1104{
Johannes Weineref129472016-01-14 15:21:34 -08001105 return static_branch_unlikely(&memcg_kmem_enabled_key);
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001106}
1107
1108/*
Jesper Dangaard Brouer9f706d62016-03-15 14:54:03 -07001109 * helper for accessing a memcg's index. It will be used as an index in the
Michal Hocko33398cf2015-09-08 15:01:02 -07001110 * child cache array in kmem_cache, and also to derive its name. This function
1111 * will return -1 when this is not a kmem-limited memcg.
1112 */
1113static inline int memcg_cache_id(struct mem_cgroup *memcg)
1114{
1115 return memcg ? memcg->kmemcg_id : -1;
1116}
Vladimir Davydov5722d092014-04-07 15:39:24 -07001117
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08001118#else
Glauber Costa749c5412012-12-18 14:23:01 -08001119#define for_each_memcg_cache_index(_idx) \
1120 for (; NULL; )
1121
Glauber Costab9ce5ef2012-12-18 14:22:46 -08001122static inline bool memcg_kmem_enabled(void)
1123{
1124 return false;
1125}
1126
Glauber Costa2633d7a2012-12-18 14:22:34 -08001127static inline int memcg_cache_id(struct mem_cgroup *memcg)
1128{
1129 return -1;
1130}
1131
Vladimir Davydov05257a12015-02-12 14:59:01 -08001132static inline void memcg_get_cache_ids(void)
1133{
1134}
1135
1136static inline void memcg_put_cache_ids(void)
1137{
1138}
1139
Johannes Weiner127424c2016-01-20 15:02:32 -08001140#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
1141
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001142#endif /* _LINUX_MEMCONTROL_H */