blob: 36e9f38c919d0976494b96f60f4d1bcee09cf54d [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Balbir Singh8cdea7c2008-02-07 00:13:50 -08002/* memcontrol.c - Memory Controller
3 *
4 * Copyright IBM Corporation, 2007
5 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
6 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08007 * Copyright 2007 OpenVZ SWsoft Inc
8 * Author: Pavel Emelianov <xemul@openvz.org>
9 *
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080010 * Memory thresholds
11 * Copyright (C) 2009 Nokia Corporation
12 * Author: Kirill A. Shutemov
13 *
Glauber Costa7ae1e1d2012-12-18 14:21:56 -080014 * Kernel Memory Controller
15 * Copyright (C) 2012 Parallels Inc. and Google Inc.
16 * Authors: Glauber Costa and Suleiman Souhlal
17 *
Johannes Weiner1575e682015-04-14 15:44:51 -070018 * Native page reclaim
19 * Charge lifetime sanitation
20 * Lockless page tracking & accounting
21 * Unified hierarchy configuration model
22 * Copyright (C) 2015 Red Hat, Inc., Johannes Weiner
Alex Shi6168d0d2020-12-15 12:34:29 -080023 *
24 * Per memcg lru locking
25 * Copyright (C) 2020 Alibaba, Inc, Alex Shi
Balbir Singh8cdea7c2008-02-07 00:13:50 -080026 */
27
Johannes Weiner3e32cb22014-12-10 15:42:31 -080028#include <linux/page_counter.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080029#include <linux/memcontrol.h>
30#include <linux/cgroup.h>
Christoph Hellwiga5201102019-08-28 16:19:53 +020031#include <linux/pagewalk.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010032#include <linux/sched/mm.h>
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080033#include <linux/shmem_fs.h>
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -080034#include <linux/hugetlb.h>
KAMEZAWA Hiroyukid13d1442009-01-07 18:07:56 -080035#include <linux/pagemap.h>
Chris Down1ff9e6e2019-03-05 15:48:09 -080036#include <linux/vm_event_item.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080037#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080038#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080039#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080040#include <linux/bit_spinlock.h>
41#include <linux/rcupdate.h>
Balbir Singhe2224322009-04-02 16:57:39 -070042#include <linux/limits.h>
Paul Gortmakerb9e15ba2011-05-26 16:00:52 -040043#include <linux/export.h>
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -080044#include <linux/mutex.h>
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -070045#include <linux/rbtree.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070046#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080047#include <linux/swap.h>
Daisuke Nishimura02491442010-03-10 15:22:17 -080048#include <linux/swapops.h>
Balbir Singh66e17072008-02-07 00:13:56 -080049#include <linux/spinlock.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080050#include <linux/eventfd.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050051#include <linux/poll.h>
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -080052#include <linux/sort.h>
Balbir Singh66e17072008-02-07 00:13:56 -080053#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080054#include <linux/seq_file.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070055#include <linux/vmpressure.h>
Christoph Lameterb69408e2008-10-18 20:26:14 -070056#include <linux/mm_inline.h>
Johannes Weiner5d1ea482014-12-10 15:44:55 -080057#include <linux/swap_cgroup.h>
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -080058#include <linux/cpu.h>
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070059#include <linux/oom.h>
Johannes Weiner0056f4e2013-10-31 16:34:14 -070060#include <linux/lockdep.h>
Tejun Heo79bd9812013-11-22 18:20:42 -050061#include <linux/file.h>
Tejun Heob23afb92015-11-05 18:46:11 -080062#include <linux/tracehook.h>
Chris Down0e4b01d2019-09-23 15:34:55 -070063#include <linux/psi.h>
Johannes Weinerc8713d02019-07-11 20:55:59 -070064#include <linux/seq_buf.h>
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -080065#include "internal.h"
Glauber Costad1a4c0b2011-12-11 21:47:04 +000066#include <net/sock.h>
Michal Hocko4bd2c1e2012-10-08 16:33:10 -070067#include <net/ip.h>
Qiang Huangf35c3a82013-11-12 15:08:22 -080068#include "slab.h"
Balbir Singh8cdea7c2008-02-07 00:13:50 -080069
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080070#include <linux/uaccess.h>
Balbir Singh8697d332008-02-07 00:13:59 -080071
KOSAKI Motohirocc8e9702010-08-09 17:19:57 -070072#include <trace/events/vmscan.h>
73
Tejun Heo073219e2014-02-08 10:36:58 -050074struct cgroup_subsys memory_cgrp_subsys __read_mostly;
75EXPORT_SYMBOL(memory_cgrp_subsys);
David Rientjes68ae5642012-12-12 13:51:57 -080076
Johannes Weiner7d828602016-01-14 15:20:56 -080077struct mem_cgroup *root_mem_cgroup __read_mostly;
78
Roman Gushchin37d59852020-10-17 16:13:50 -070079/* Active memory cgroup to use from an interrupt context */
80DEFINE_PER_CPU(struct mem_cgroup *, int_active_memcg);
Dan Schatzbergc74d40e2021-06-28 19:38:21 -070081EXPORT_PER_CPU_SYMBOL_GPL(int_active_memcg);
Roman Gushchin37d59852020-10-17 16:13:50 -070082
Johannes Weinerf7e1cb62016-01-14 15:21:29 -080083/* Socket memory accounting disabled? */
Roman Gushchin0f0cace2021-06-02 18:09:29 -070084static bool cgroup_memory_nosocket __ro_after_init;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -080085
Vladimir Davydov04823c82016-01-20 15:02:38 -080086/* Kernel memory accounting disabled? */
Muchun Song17c17362022-01-14 14:05:29 -080087static bool cgroup_memory_nokmem __ro_after_init;
Vladimir Davydov04823c82016-01-20 15:02:38 -080088
Johannes Weiner21afa382015-02-11 15:26:36 -080089/* Whether the swap controller is active */
Andrew Mortonc255a452012-07-31 16:43:02 -070090#ifdef CONFIG_MEMCG_SWAP
Roman Gushchin0f0cace2021-06-02 18:09:29 -070091bool cgroup_memory_noswap __ro_after_init;
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080092#else
Johannes Weinereccb52e2020-06-03 16:02:11 -070093#define cgroup_memory_noswap 1
Johannes Weiner2d1c4982020-06-03 16:02:14 -070094#endif
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -080095
Tejun Heo97b27822019-08-26 09:06:56 -070096#ifdef CONFIG_CGROUP_WRITEBACK
97static DECLARE_WAIT_QUEUE_HEAD(memcg_cgwb_frn_waitq);
98#endif
99
Johannes Weiner7941d212016-01-14 15:21:23 -0800100/* Whether legacy memory+swap accounting is active */
101static bool do_memsw_account(void)
102{
Johannes Weinereccb52e2020-06-03 16:02:11 -0700103 return !cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_noswap;
Johannes Weiner7941d212016-01-14 15:21:23 -0800104}
105
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700106#define THRESHOLDS_EVENTS_TARGET 128
107#define SOFTLIMIT_EVENTS_TARGET 1024
Johannes Weinere9f89742011-03-23 16:42:37 -0700108
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700109/*
110 * Cgroups above their limits are maintained in a RB-Tree, independent of
111 * their hierarchy representation
112 */
113
Mel Gormanef8f2322016-07-28 15:46:05 -0700114struct mem_cgroup_tree_per_node {
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700115 struct rb_root rb_root;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700116 struct rb_node *rb_rightmost;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700117 spinlock_t lock;
118};
119
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700120struct mem_cgroup_tree {
121 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
122};
123
124static struct mem_cgroup_tree soft_limit_tree __read_mostly;
125
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700126/* for OOM */
127struct mem_cgroup_eventfd_list {
128 struct list_head list;
129 struct eventfd_ctx *eventfd;
130};
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800131
Tejun Heo79bd9812013-11-22 18:20:42 -0500132/*
133 * cgroup_event represents events which userspace want to receive.
134 */
Tejun Heo3bc942f2013-11-22 18:20:44 -0500135struct mem_cgroup_event {
Tejun Heo79bd9812013-11-22 18:20:42 -0500136 /*
Tejun Heo59b6f872013-11-22 18:20:43 -0500137 * memcg which the event belongs to.
Tejun Heo79bd9812013-11-22 18:20:42 -0500138 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500139 struct mem_cgroup *memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -0500140 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500141 * eventfd to signal userspace about the event.
142 */
143 struct eventfd_ctx *eventfd;
144 /*
145 * Each of these stored in a list by the cgroup.
146 */
147 struct list_head list;
148 /*
Tejun Heofba94802013-11-22 18:20:43 -0500149 * register_event() callback will be used to add new userspace
150 * waiter for changes related to this event. Use eventfd_signal()
151 * on eventfd to send notification to userspace.
152 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500153 int (*register_event)(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -0500154 struct eventfd_ctx *eventfd, const char *args);
Tejun Heofba94802013-11-22 18:20:43 -0500155 /*
156 * unregister_event() callback will be called when userspace closes
157 * the eventfd or on cgroup removing. This callback must be set,
158 * if you want provide notification functionality.
159 */
Tejun Heo59b6f872013-11-22 18:20:43 -0500160 void (*unregister_event)(struct mem_cgroup *memcg,
Tejun Heofba94802013-11-22 18:20:43 -0500161 struct eventfd_ctx *eventfd);
162 /*
Tejun Heo79bd9812013-11-22 18:20:42 -0500163 * All fields below needed to unregister event when
164 * userspace closes eventfd.
165 */
166 poll_table pt;
167 wait_queue_head_t *wqh;
Ingo Molnarac6424b2017-06-20 12:06:13 +0200168 wait_queue_entry_t wait;
Tejun Heo79bd9812013-11-22 18:20:42 -0500169 struct work_struct remove;
170};
171
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700172static void mem_cgroup_threshold(struct mem_cgroup *memcg);
173static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -0800174
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800175/* Stuffs for move charges at task migration. */
176/*
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800177 * Types of charges to be moved.
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800178 */
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800179#define MOVE_ANON 0x1U
180#define MOVE_FILE 0x2U
181#define MOVE_MASK (MOVE_ANON | MOVE_FILE)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -0800182
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800183/* "mc" and its members are protected by cgroup_mutex */
184static struct move_charge_struct {
Daisuke Nishimurab1dd6932010-11-24 12:57:06 -0800185 spinlock_t lock; /* for from, to */
Tejun Heo264a0ae2016-04-21 19:09:02 -0400186 struct mm_struct *mm;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800187 struct mem_cgroup *from;
188 struct mem_cgroup *to;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -0800189 unsigned long flags;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800190 unsigned long precharge;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -0800191 unsigned long moved_charge;
Daisuke Nishimura483c30b2010-03-10 15:22:18 -0800192 unsigned long moved_swap;
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800193 struct task_struct *moving_task; /* a task moving charges */
194 wait_queue_head_t waitq; /* a waitq for other context */
195} mc = {
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -0700196 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
Daisuke Nishimura8033b972010-03-10 15:22:16 -0800197 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
198};
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -0800199
Balbir Singh4e416952009-09-23 15:56:39 -0700200/*
201 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
202 * limit reclaim to prevent infinite loops, if they ever occur.
203 */
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700204#define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700205#define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
Balbir Singh4e416952009-09-23 15:56:39 -0700206
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800207/* for encoding cft->private value on file */
Glauber Costa86ae53e2012-12-18 14:21:45 -0800208enum res_type {
209 _MEM,
210 _MEMSWAP,
211 _OOM_TYPE,
Glauber Costa510fc4e2012-12-18 14:21:47 -0800212 _KMEM,
Vladimir Davydovd55f90b2016-01-20 15:02:44 -0800213 _TCP,
Glauber Costa86ae53e2012-12-18 14:21:45 -0800214};
215
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -0700216#define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
217#define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800218#define MEMFILE_ATTR(val) ((val) & 0xffff)
Ingo Molnarf0953a12021-05-06 18:06:47 -0700219/* Used for OOM notifier */
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -0700220#define OOM_CONTROL (0)
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -0800221
Kirill Tkhaib05706f2018-08-17 15:47:33 -0700222/*
223 * Iteration constructs for visiting all cgroups (under a tree). If
224 * loops are exited prematurely (break), mem_cgroup_iter_break() must
225 * be used for reference counting.
226 */
227#define for_each_mem_cgroup_tree(iter, root) \
228 for (iter = mem_cgroup_iter(root, NULL, NULL); \
229 iter != NULL; \
230 iter = mem_cgroup_iter(root, iter, NULL))
231
232#define for_each_mem_cgroup(iter) \
233 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
234 iter != NULL; \
235 iter = mem_cgroup_iter(NULL, iter, NULL))
236
Vasily Averina4ebf1b2021-11-05 13:38:09 -0700237static inline bool task_is_dying(void)
Tetsuo Handa7775fac2019-03-05 15:46:47 -0800238{
239 return tsk_is_oom_victim(current) || fatal_signal_pending(current) ||
240 (current->flags & PF_EXITING);
241}
242
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700243/* Some nice accessors for the vmpressure. */
244struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
245{
246 if (!memcg)
247 memcg = root_mem_cgroup;
248 return &memcg->vmpressure;
249}
250
Hui Su96478752021-09-02 14:59:36 -0700251struct mem_cgroup *vmpressure_to_memcg(struct vmpressure *vmpr)
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700252{
Hui Su96478752021-09-02 14:59:36 -0700253 return container_of(vmpr, struct mem_cgroup, vmpressure);
Anton Vorontsov70ddf632013-04-29 15:08:31 -0700254}
255
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700256#ifdef CONFIG_MEMCG_KMEM
Roman Gushchin0764db92022-02-11 16:32:32 -0800257static DEFINE_SPINLOCK(objcg_lock);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700258
Roman Gushchin4d5c8ae2021-06-02 18:09:30 -0700259bool mem_cgroup_kmem_disabled(void)
260{
261 return cgroup_memory_nokmem;
262}
263
Muchun Songf1286fa2021-04-29 22:56:55 -0700264static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
265 unsigned int nr_pages);
Roman Gushchinc1a660d2021-02-24 12:03:58 -0800266
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700267static void obj_cgroup_release(struct percpu_ref *ref)
268{
269 struct obj_cgroup *objcg = container_of(ref, struct obj_cgroup, refcnt);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700270 unsigned int nr_bytes;
271 unsigned int nr_pages;
272 unsigned long flags;
273
274 /*
275 * At this point all allocated objects are freed, and
276 * objcg->nr_charged_bytes can't have an arbitrary byte value.
277 * However, it can be PAGE_SIZE or (x * PAGE_SIZE).
278 *
279 * The following sequence can lead to it:
280 * 1) CPU0: objcg == stock->cached_objcg
281 * 2) CPU1: we do a small allocation (e.g. 92 bytes),
282 * PAGE_SIZE bytes are charged
283 * 3) CPU1: a process from another memcg is allocating something,
284 * the stock if flushed,
285 * objcg->nr_charged_bytes = PAGE_SIZE - 92
286 * 5) CPU0: we do release this object,
287 * 92 bytes are added to stock->nr_bytes
288 * 6) CPU0: stock is flushed,
289 * 92 bytes are added to objcg->nr_charged_bytes
290 *
291 * In the result, nr_charged_bytes == PAGE_SIZE.
292 * This page will be uncharged in obj_cgroup_release().
293 */
294 nr_bytes = atomic_read(&objcg->nr_charged_bytes);
295 WARN_ON_ONCE(nr_bytes & (PAGE_SIZE - 1));
296 nr_pages = nr_bytes >> PAGE_SHIFT;
297
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700298 if (nr_pages)
Muchun Songf1286fa2021-04-29 22:56:55 -0700299 obj_cgroup_uncharge_pages(objcg, nr_pages);
Muchun Song271dd6b2021-06-28 19:38:06 -0700300
Roman Gushchin0764db92022-02-11 16:32:32 -0800301 spin_lock_irqsave(&objcg_lock, flags);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700302 list_del(&objcg->list);
Roman Gushchin0764db92022-02-11 16:32:32 -0800303 spin_unlock_irqrestore(&objcg_lock, flags);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700304
305 percpu_ref_exit(ref);
306 kfree_rcu(objcg, rcu);
307}
308
309static struct obj_cgroup *obj_cgroup_alloc(void)
310{
311 struct obj_cgroup *objcg;
312 int ret;
313
314 objcg = kzalloc(sizeof(struct obj_cgroup), GFP_KERNEL);
315 if (!objcg)
316 return NULL;
317
318 ret = percpu_ref_init(&objcg->refcnt, obj_cgroup_release, 0,
319 GFP_KERNEL);
320 if (ret) {
321 kfree(objcg);
322 return NULL;
323 }
324 INIT_LIST_HEAD(&objcg->list);
325 return objcg;
326}
327
328static void memcg_reparent_objcgs(struct mem_cgroup *memcg,
329 struct mem_cgroup *parent)
330{
331 struct obj_cgroup *objcg, *iter;
332
333 objcg = rcu_replace_pointer(memcg->objcg, NULL, true);
334
Roman Gushchin0764db92022-02-11 16:32:32 -0800335 spin_lock_irq(&objcg_lock);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700336
Muchun Song98383542021-06-28 19:38:03 -0700337 /* 1) Ready to reparent active objcg. */
338 list_add(&objcg->list, &memcg->objcg_list);
339 /* 2) Reparent active objcg and already reparented objcgs to parent. */
340 list_for_each_entry(iter, &memcg->objcg_list, list)
341 WRITE_ONCE(iter->memcg, parent);
342 /* 3) Move already reparented objcgs to the parent's list */
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700343 list_splice(&memcg->objcg_list, &parent->objcg_list);
344
Roman Gushchin0764db92022-02-11 16:32:32 -0800345 spin_unlock_irq(&objcg_lock);
Roman Gushchinbf4f0592020-08-06 23:20:49 -0700346
347 percpu_ref_kill(&objcg->refcnt);
348}
349
Glauber Costa55007d82012-12-18 14:22:38 -0800350/*
Roman Gushchin98556092020-08-06 23:21:10 -0700351 * This will be used as a shrinker list's index.
Li Zefanb8627832013-09-23 16:56:47 +0800352 * The main reason for not using cgroup id for this:
353 * this works better in sparse environments, where we have a lot of memcgs,
354 * but only a few kmem-limited. Or also, if we have, for instance, 200
355 * memcgs, and none but the 200th is kmem-limited, we'd have to have a
356 * 200 entry array for that.
Glauber Costa55007d82012-12-18 14:22:38 -0800357 *
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800358 * The current size of the caches array is stored in memcg_nr_cache_ids. It
359 * will double each time we have to increase it.
Glauber Costa55007d82012-12-18 14:22:38 -0800360 */
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800361static DEFINE_IDA(memcg_cache_ida);
362int memcg_nr_cache_ids;
Glauber Costa749c5412012-12-18 14:23:01 -0800363
Vladimir Davydov05257a12015-02-12 14:59:01 -0800364/* Protects memcg_nr_cache_ids */
365static DECLARE_RWSEM(memcg_cache_ids_sem);
366
367void memcg_get_cache_ids(void)
368{
369 down_read(&memcg_cache_ids_sem);
370}
371
372void memcg_put_cache_ids(void)
373{
374 up_read(&memcg_cache_ids_sem);
375}
376
Glauber Costa55007d82012-12-18 14:22:38 -0800377/*
378 * MIN_SIZE is different than 1, because we would like to avoid going through
379 * the alloc/free process all the time. In a small machine, 4 kmem-limited
380 * cgroups is a reasonable guess. In the future, it could be a parameter or
381 * tunable, but that is strictly not necessary.
382 *
Li Zefanb8627832013-09-23 16:56:47 +0800383 * MAX_SIZE should be as large as the number of cgrp_ids. Ideally, we could get
Glauber Costa55007d82012-12-18 14:22:38 -0800384 * this constant directly from cgroup, but it is understandable that this is
385 * better kept as an internal representation in cgroup.c. In any case, the
Li Zefanb8627832013-09-23 16:56:47 +0800386 * cgrp_id space is not getting any smaller, and we don't have to necessarily
Glauber Costa55007d82012-12-18 14:22:38 -0800387 * increase ours as well if it increases.
388 */
389#define MEMCG_CACHES_MIN_SIZE 4
Li Zefanb8627832013-09-23 16:56:47 +0800390#define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
Glauber Costa55007d82012-12-18 14:22:38 -0800391
Glauber Costad7f25f82012-12-18 14:22:40 -0800392/*
393 * A lot of the calls to the cache allocation functions are expected to be
Roman Gushchin272911a2020-08-06 23:21:17 -0700394 * inlined by the compiler. Since the calls to memcg_slab_pre_alloc_hook() are
Glauber Costad7f25f82012-12-18 14:22:40 -0800395 * conditional to this static branch, we'll have to allow modules that does
396 * kmem_cache_alloc and the such to see this symbol as well
397 */
Johannes Weineref129472016-01-14 15:21:34 -0800398DEFINE_STATIC_KEY_FALSE(memcg_kmem_enabled_key);
Glauber Costad7f25f82012-12-18 14:22:40 -0800399EXPORT_SYMBOL(memcg_kmem_enabled_key);
Yang Shi0a432dc2019-09-23 15:38:12 -0700400#endif
Tejun Heo17cc4df2017-02-22 15:41:36 -0800401
Tejun Heoad7fa852015-05-27 20:00:02 -0400402/**
403 * mem_cgroup_css_from_page - css of the memcg associated with a page
404 * @page: page of interest
405 *
406 * If memcg is bound to the default hierarchy, css of the memcg associated
407 * with @page is returned. The returned css remains associated with @page
408 * until it is released.
409 *
410 * If memcg is bound to a traditional hierarchy, the css of root_mem_cgroup
411 * is returned.
Tejun Heoad7fa852015-05-27 20:00:02 -0400412 */
413struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page)
414{
415 struct mem_cgroup *memcg;
416
Roman Gushchinbcfe06b2020-12-01 13:58:27 -0800417 memcg = page_memcg(page);
Tejun Heoad7fa852015-05-27 20:00:02 -0400418
Tejun Heo9e10a132015-09-18 11:56:28 -0400419 if (!memcg || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
Tejun Heoad7fa852015-05-27 20:00:02 -0400420 memcg = root_mem_cgroup;
421
Tejun Heoad7fa852015-05-27 20:00:02 -0400422 return &memcg->css;
423}
424
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700425/**
426 * page_cgroup_ino - return inode number of the memcg a page is charged to
427 * @page: the page
428 *
429 * Look up the closest online ancestor of the memory cgroup @page is charged to
430 * and return its inode number or 0 if @page is not charged to any cgroup. It
431 * is safe to call this function without holding a reference to @page.
432 *
433 * Note, this function is inherently racy, because there is nothing to prevent
434 * the cgroup inode from getting torn down and potentially reallocated a moment
435 * after page_cgroup_ino() returns, so it only should be used by callers that
436 * do not care (such as procfs interfaces).
437 */
438ino_t page_cgroup_ino(struct page *page)
439{
440 struct mem_cgroup *memcg;
441 unsigned long ino = 0;
442
443 rcu_read_lock();
Roman Gushchinbcfe06b2020-12-01 13:58:27 -0800444 memcg = page_memcg_check(page);
Roman Gushchin286e04b2020-08-06 23:20:52 -0700445
Vladimir Davydov2fc04522015-09-09 15:35:28 -0700446 while (memcg && !(memcg->css.flags & CSS_ONLINE))
447 memcg = parent_mem_cgroup(memcg);
448 if (memcg)
449 ino = cgroup_ino(memcg->css.cgroup);
450 rcu_read_unlock();
451 return ino;
452}
453
Mel Gormanef8f2322016-07-28 15:46:05 -0700454static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_node *mz,
455 struct mem_cgroup_tree_per_node *mctz,
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800456 unsigned long new_usage_in_excess)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700457{
458 struct rb_node **p = &mctz->rb_root.rb_node;
459 struct rb_node *parent = NULL;
Mel Gormanef8f2322016-07-28 15:46:05 -0700460 struct mem_cgroup_per_node *mz_node;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700461 bool rightmost = true;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700462
463 if (mz->on_tree)
464 return;
465
466 mz->usage_in_excess = new_usage_in_excess;
467 if (!mz->usage_in_excess)
468 return;
469 while (*p) {
470 parent = *p;
Mel Gormanef8f2322016-07-28 15:46:05 -0700471 mz_node = rb_entry(parent, struct mem_cgroup_per_node,
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700472 tree_node);
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700473 if (mz->usage_in_excess < mz_node->usage_in_excess) {
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700474 p = &(*p)->rb_left;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700475 rightmost = false;
Miaohe Lin378876b2020-12-14 19:06:28 -0800476 } else {
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700477 p = &(*p)->rb_right;
Miaohe Lin378876b2020-12-14 19:06:28 -0800478 }
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700479 }
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700480
481 if (rightmost)
482 mctz->rb_rightmost = &mz->tree_node;
483
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700484 rb_link_node(&mz->tree_node, parent, p);
485 rb_insert_color(&mz->tree_node, &mctz->rb_root);
486 mz->on_tree = true;
487}
488
Mel Gormanef8f2322016-07-28 15:46:05 -0700489static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
490 struct mem_cgroup_tree_per_node *mctz)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700491{
492 if (!mz->on_tree)
493 return;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700494
495 if (&mz->tree_node == mctz->rb_rightmost)
496 mctz->rb_rightmost = rb_prev(&mz->tree_node);
497
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700498 rb_erase(&mz->tree_node, &mctz->rb_root);
499 mz->on_tree = false;
500}
501
Mel Gormanef8f2322016-07-28 15:46:05 -0700502static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
503 struct mem_cgroup_tree_per_node *mctz)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700504{
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700505 unsigned long flags;
506
507 spin_lock_irqsave(&mctz->lock, flags);
Johannes Weinercf2c8122014-06-06 14:38:21 -0700508 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700509 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700510}
511
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800512static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
513{
514 unsigned long nr_pages = page_counter_read(&memcg->memory);
Jason Low4db0c3c2015-04-15 16:14:08 -0700515 unsigned long soft_limit = READ_ONCE(memcg->soft_limit);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800516 unsigned long excess = 0;
517
518 if (nr_pages > soft_limit)
519 excess = nr_pages - soft_limit;
520
521 return excess;
522}
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700523
Matthew Wilcox (Oracle)658b69c2021-04-29 14:51:26 -0400524static void mem_cgroup_update_tree(struct mem_cgroup *memcg, int nid)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700525{
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800526 unsigned long excess;
Mel Gormanef8f2322016-07-28 15:46:05 -0700527 struct mem_cgroup_per_node *mz;
528 struct mem_cgroup_tree_per_node *mctz;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700529
Matthew Wilcox (Oracle)2ab082b2021-06-25 08:57:02 -0400530 mctz = soft_limit_tree.rb_tree_per_node[nid];
Laurent Dufourbfc72282017-03-09 16:17:06 -0800531 if (!mctz)
532 return;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700533 /*
534 * Necessary to update all ancestors when hierarchy is used.
535 * because their event counter is not touched.
536 */
537 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
Matthew Wilcox (Oracle)658b69c2021-04-29 14:51:26 -0400538 mz = memcg->nodeinfo[nid];
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800539 excess = soft_limit_excess(memcg);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700540 /*
541 * We have to update the tree if mz is on RB-tree or
542 * mem is over its softlimit.
543 */
544 if (excess || mz->on_tree) {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700545 unsigned long flags;
546
547 spin_lock_irqsave(&mctz->lock, flags);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700548 /* if on-tree, remove it */
549 if (mz->on_tree)
Johannes Weinercf2c8122014-06-06 14:38:21 -0700550 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700551 /*
552 * Insert again. mz->usage_in_excess will be updated.
553 * If excess is 0, no tree ops.
554 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700555 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700556 spin_unlock_irqrestore(&mctz->lock, flags);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700557 }
558 }
559}
560
561static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
562{
Mel Gormanef8f2322016-07-28 15:46:05 -0700563 struct mem_cgroup_tree_per_node *mctz;
564 struct mem_cgroup_per_node *mz;
565 int nid;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700566
Jianyu Zhane2318752014-06-06 14:38:20 -0700567 for_each_node(nid) {
Johannes Weinera3747b52021-04-29 22:56:14 -0700568 mz = memcg->nodeinfo[nid];
Matthew Wilcox (Oracle)2ab082b2021-06-25 08:57:02 -0400569 mctz = soft_limit_tree.rb_tree_per_node[nid];
Laurent Dufourbfc72282017-03-09 16:17:06 -0800570 if (mctz)
571 mem_cgroup_remove_exceeded(mz, mctz);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700572 }
573}
574
Mel Gormanef8f2322016-07-28 15:46:05 -0700575static struct mem_cgroup_per_node *
576__mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700577{
Mel Gormanef8f2322016-07-28 15:46:05 -0700578 struct mem_cgroup_per_node *mz;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700579
580retry:
581 mz = NULL;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700582 if (!mctz->rb_rightmost)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700583 goto done; /* Nothing to reclaim from */
584
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -0700585 mz = rb_entry(mctz->rb_rightmost,
586 struct mem_cgroup_per_node, tree_node);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700587 /*
588 * Remove the node now but someone else can add it back,
589 * we will to add it back at the end of reclaim to its correct
590 * position in the tree.
591 */
Johannes Weinercf2c8122014-06-06 14:38:21 -0700592 __mem_cgroup_remove_exceeded(mz, mctz);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800593 if (!soft_limit_excess(mz->memcg) ||
Shakeel Butt8965aa22020-04-01 21:07:10 -0700594 !css_tryget(&mz->memcg->css))
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700595 goto retry;
596done:
597 return mz;
598}
599
Mel Gormanef8f2322016-07-28 15:46:05 -0700600static struct mem_cgroup_per_node *
601mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700602{
Mel Gormanef8f2322016-07-28 15:46:05 -0700603 struct mem_cgroup_per_node *mz;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700604
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700605 spin_lock_irq(&mctz->lock);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700606 mz = __mem_cgroup_largest_soft_limit_node(mctz);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700607 spin_unlock_irq(&mctz->lock);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700608 return mz;
609}
610
Shakeel Butt11192d92021-11-05 13:37:31 -0700611/*
612 * memcg and lruvec stats flushing
613 *
614 * Many codepaths leading to stats update or read are performance sensitive and
615 * adding stats flushing in such codepaths is not desirable. So, to optimize the
616 * flushing the kernel does:
617 *
618 * 1) Periodically and asynchronously flush the stats every 2 seconds to not let
619 * rstat update tree grow unbounded.
620 *
621 * 2) Flush the stats synchronously on reader side only when there are more than
622 * (MEMCG_CHARGE_BATCH * nr_cpus) update events. Though this optimization
623 * will let stats be out of sync by atmost (MEMCG_CHARGE_BATCH * nr_cpus) but
624 * only for 2 seconds due to (1).
625 */
626static void flush_memcg_stats_dwork(struct work_struct *w);
627static DECLARE_DEFERRABLE_WORK(stats_flush_dwork, flush_memcg_stats_dwork);
628static DEFINE_SPINLOCK(stats_flush_lock);
629static DEFINE_PER_CPU(unsigned int, stats_updates);
630static atomic_t stats_flush_threshold = ATOMIC_INIT(0);
631
Shakeel Butt5b3be692022-01-14 14:05:39 -0800632static inline void memcg_rstat_updated(struct mem_cgroup *memcg, int val)
Shakeel Butt11192d92021-11-05 13:37:31 -0700633{
Shakeel Butt5b3be692022-01-14 14:05:39 -0800634 unsigned int x;
635
Shakeel Butt11192d92021-11-05 13:37:31 -0700636 cgroup_rstat_updated(memcg->css.cgroup, smp_processor_id());
Shakeel Butt5b3be692022-01-14 14:05:39 -0800637
638 x = __this_cpu_add_return(stats_updates, abs(val));
639 if (x > MEMCG_CHARGE_BATCH) {
640 atomic_add(x / MEMCG_CHARGE_BATCH, &stats_flush_threshold);
641 __this_cpu_write(stats_updates, 0);
642 }
Shakeel Butt11192d92021-11-05 13:37:31 -0700643}
644
645static void __mem_cgroup_flush_stats(void)
646{
Shakeel Buttfd25a9e2021-11-05 13:37:34 -0700647 unsigned long flag;
648
649 if (!spin_trylock_irqsave(&stats_flush_lock, flag))
Shakeel Butt11192d92021-11-05 13:37:31 -0700650 return;
651
652 cgroup_rstat_flush_irqsafe(root_mem_cgroup->css.cgroup);
653 atomic_set(&stats_flush_threshold, 0);
Shakeel Buttfd25a9e2021-11-05 13:37:34 -0700654 spin_unlock_irqrestore(&stats_flush_lock, flag);
Shakeel Butt11192d92021-11-05 13:37:31 -0700655}
656
657void mem_cgroup_flush_stats(void)
658{
659 if (atomic_read(&stats_flush_threshold) > num_online_cpus())
660 __mem_cgroup_flush_stats();
661}
662
663static void flush_memcg_stats_dwork(struct work_struct *w)
664{
Shakeel Butt5b3be692022-01-14 14:05:39 -0800665 __mem_cgroup_flush_stats();
Shakeel Butt11192d92021-11-05 13:37:31 -0700666 queue_delayed_work(system_unbound_wq, &stats_flush_dwork, 2UL*HZ);
667}
668
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700669/**
670 * __mod_memcg_state - update cgroup memory statistics
671 * @memcg: the memory cgroup
672 * @idx: the stat item - can be enum memcg_stat_item or enum node_stat_item
673 * @val: delta to add to the counter, can be negative
674 */
675void __mod_memcg_state(struct mem_cgroup *memcg, int idx, int val)
676{
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700677 if (mem_cgroup_disabled())
678 return;
679
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700680 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
Shakeel Butt5b3be692022-01-14 14:05:39 -0800681 memcg_rstat_updated(memcg, val);
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700682}
683
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700684/* idx can be of type enum memcg_stat_item or node_stat_item. */
Johannes Weinera18e6e62021-04-29 22:56:17 -0700685static unsigned long memcg_page_state_local(struct mem_cgroup *memcg, int idx)
686{
687 long x = 0;
688 int cpu;
689
690 for_each_possible_cpu(cpu)
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700691 x += per_cpu(memcg->vmstats_percpu->state[idx], cpu);
Johannes Weinera18e6e62021-04-29 22:56:17 -0700692#ifdef CONFIG_SMP
693 if (x < 0)
694 x = 0;
695#endif
696 return x;
697}
698
Roman Gushchineedc4e52020-08-06 23:20:32 -0700699void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
700 int val)
701{
702 struct mem_cgroup_per_node *pn;
703 struct mem_cgroup *memcg;
Roman Gushchineedc4e52020-08-06 23:20:32 -0700704
705 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
706 memcg = pn->memcg;
707
708 /* Update memcg */
Shakeel Butt11192d92021-11-05 13:37:31 -0700709 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
Roman Gushchineedc4e52020-08-06 23:20:32 -0700710
711 /* Update lruvec */
Shakeel Butt7e1c0d62021-09-02 14:55:00 -0700712 __this_cpu_add(pn->lruvec_stats_percpu->state[idx], val);
Shakeel Butt11192d92021-11-05 13:37:31 -0700713
Shakeel Butt5b3be692022-01-14 14:05:39 -0800714 memcg_rstat_updated(memcg, val);
Roman Gushchineedc4e52020-08-06 23:20:32 -0700715}
716
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700717/**
718 * __mod_lruvec_state - update lruvec memory statistics
719 * @lruvec: the lruvec
720 * @idx: the stat item
721 * @val: delta to add to the counter, can be negative
722 *
723 * The lruvec is the intersection of the NUMA node and a cgroup. This
724 * function updates the all three counters that are affected by a
725 * change of state at this level: per-node, per-cgroup, per-lruvec.
726 */
727void __mod_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
728 int val)
729{
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700730 /* Update node */
Roman Gushchineedc4e52020-08-06 23:20:32 -0700731 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700732
Roman Gushchineedc4e52020-08-06 23:20:32 -0700733 /* Update memcg and lruvec */
734 if (!mem_cgroup_disabled())
735 __mod_memcg_lruvec_state(lruvec, idx, val);
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700736}
737
Shakeel Buttc47d5032020-12-14 19:07:14 -0800738void __mod_lruvec_page_state(struct page *page, enum node_stat_item idx,
739 int val)
740{
741 struct page *head = compound_head(page); /* rmap on tail pages */
Muchun Songb4e0b682021-04-29 22:56:52 -0700742 struct mem_cgroup *memcg;
Shakeel Buttc47d5032020-12-14 19:07:14 -0800743 pg_data_t *pgdat = page_pgdat(page);
744 struct lruvec *lruvec;
745
Muchun Songb4e0b682021-04-29 22:56:52 -0700746 rcu_read_lock();
747 memcg = page_memcg(head);
Shakeel Buttc47d5032020-12-14 19:07:14 -0800748 /* Untracked pages have no memcg, no lruvec. Update only the node */
Linus Torvaldsd635a692020-12-15 13:22:29 -0800749 if (!memcg) {
Muchun Songb4e0b682021-04-29 22:56:52 -0700750 rcu_read_unlock();
Shakeel Buttc47d5032020-12-14 19:07:14 -0800751 __mod_node_page_state(pgdat, idx, val);
752 return;
753 }
754
Linus Torvaldsd635a692020-12-15 13:22:29 -0800755 lruvec = mem_cgroup_lruvec(memcg, pgdat);
Shakeel Buttc47d5032020-12-14 19:07:14 -0800756 __mod_lruvec_state(lruvec, idx, val);
Muchun Songb4e0b682021-04-29 22:56:52 -0700757 rcu_read_unlock();
Shakeel Buttc47d5032020-12-14 19:07:14 -0800758}
Shakeel Buttf0c0c112020-12-14 19:07:17 -0800759EXPORT_SYMBOL(__mod_lruvec_page_state);
Shakeel Buttc47d5032020-12-14 19:07:14 -0800760
Muchun Songda3ceef2020-12-14 19:07:04 -0800761void __mod_lruvec_kmem_state(void *p, enum node_stat_item idx, int val)
Roman Gushchinec9f0232019-08-13 15:37:41 -0700762{
Roman Gushchin4f103c62020-04-01 21:06:36 -0700763 pg_data_t *pgdat = page_pgdat(virt_to_page(p));
Roman Gushchinec9f0232019-08-13 15:37:41 -0700764 struct mem_cgroup *memcg;
765 struct lruvec *lruvec;
766
767 rcu_read_lock();
Roman Gushchin4f103c62020-04-01 21:06:36 -0700768 memcg = mem_cgroup_from_obj(p);
Roman Gushchinec9f0232019-08-13 15:37:41 -0700769
Muchun Song8faeb1f2020-11-21 22:17:12 -0800770 /*
771 * Untracked pages have no memcg, no lruvec. Update only the
772 * node. If we reparent the slab objects to the root memcg,
773 * when we free the slab object, we need to update the per-memcg
774 * vmstats to keep it correct for the root memcg.
775 */
776 if (!memcg) {
Roman Gushchinec9f0232019-08-13 15:37:41 -0700777 __mod_node_page_state(pgdat, idx, val);
778 } else {
Johannes Weiner867e5e12019-11-30 17:55:34 -0800779 lruvec = mem_cgroup_lruvec(memcg, pgdat);
Roman Gushchinec9f0232019-08-13 15:37:41 -0700780 __mod_lruvec_state(lruvec, idx, val);
781 }
782 rcu_read_unlock();
783}
784
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700785/**
786 * __count_memcg_events - account VM events in a cgroup
787 * @memcg: the memory cgroup
788 * @idx: the event item
Ingo Molnarf0953a12021-05-06 18:06:47 -0700789 * @count: the number of events that occurred
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700790 */
791void __count_memcg_events(struct mem_cgroup *memcg, enum vm_event_item idx,
792 unsigned long count)
793{
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700794 if (mem_cgroup_disabled())
795 return;
796
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700797 __this_cpu_add(memcg->vmstats_percpu->events[idx], count);
Shakeel Butt5b3be692022-01-14 14:05:39 -0800798 memcg_rstat_updated(memcg, count);
Johannes Weinerdb9adbc2019-05-14 15:47:09 -0700799}
800
Johannes Weiner42a30032019-05-14 15:47:12 -0700801static unsigned long memcg_events(struct mem_cgroup *memcg, int event)
Johannes Weinere9f89742011-03-23 16:42:37 -0700802{
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700803 return READ_ONCE(memcg->vmstats.events[event]);
Johannes Weinere9f89742011-03-23 16:42:37 -0700804}
805
Johannes Weiner42a30032019-05-14 15:47:12 -0700806static unsigned long memcg_events_local(struct mem_cgroup *memcg, int event)
807{
Johannes Weiner815744d2019-06-13 15:55:46 -0700808 long x = 0;
809 int cpu;
810
811 for_each_possible_cpu(cpu)
Johannes Weiner2d146aa2021-04-29 22:56:26 -0700812 x += per_cpu(memcg->vmstats_percpu->events[event], cpu);
Johannes Weiner815744d2019-06-13 15:55:46 -0700813 return x;
Johannes Weiner42a30032019-05-14 15:47:12 -0700814}
815
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700816static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
Johannes Weiner3fba69a2020-06-03 16:01:31 -0700817 int nr_pages)
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800818{
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800819 /* pagein of a big page is an event. So, ignore page size */
820 if (nr_pages > 0)
Johannes Weinerc9019e92018-01-31 16:16:37 -0800821 __count_memcg_events(memcg, PGPGIN, 1);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800822 else {
Johannes Weinerc9019e92018-01-31 16:16:37 -0800823 __count_memcg_events(memcg, PGPGOUT, 1);
KAMEZAWA Hiroyuki3751d602011-02-01 15:52:45 -0800824 nr_pages = -nr_pages; /* for event */
825 }
KAMEZAWA Hiroyukie401f172011-01-20 14:44:23 -0800826
Chris Down871789d2019-05-14 15:46:57 -0700827 __this_cpu_add(memcg->vmstats_percpu->nr_page_events, nr_pages);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800828}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800829
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800830static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
831 enum mem_cgroup_events_target target)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800832{
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700833 unsigned long val, next;
834
Chris Down871789d2019-05-14 15:46:57 -0700835 val = __this_cpu_read(memcg->vmstats_percpu->nr_page_events);
836 next = __this_cpu_read(memcg->vmstats_percpu->targets[target]);
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700837 /* from time_after() in jiffies.h */
Michal Hocko6a1a8b82017-07-10 15:48:53 -0700838 if ((long)(next - val) < 0) {
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800839 switch (target) {
840 case MEM_CGROUP_TARGET_THRESH:
841 next = val + THRESHOLDS_EVENTS_TARGET;
842 break;
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700843 case MEM_CGROUP_TARGET_SOFTLIMIT:
844 next = val + SOFTLIMIT_EVENTS_TARGET;
845 break;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800846 default:
847 break;
848 }
Chris Down871789d2019-05-14 15:46:57 -0700849 __this_cpu_write(memcg->vmstats_percpu->targets[target], next);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800850 return true;
Johannes Weiner7a159cc2011-03-23 16:42:38 -0700851 }
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800852 return false;
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800853}
854
855/*
856 * Check events in order.
857 *
858 */
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -0400859static void memcg_check_events(struct mem_cgroup *memcg, int nid)
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800860{
861 /* threshold event is triggered in finer grain than soft limit */
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800862 if (unlikely(mem_cgroup_event_ratelimit(memcg,
863 MEM_CGROUP_TARGET_THRESH))) {
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700864 bool do_softlimit;
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800865
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700866 do_softlimit = mem_cgroup_event_ratelimit(memcg,
867 MEM_CGROUP_TARGET_SOFTLIMIT);
Johannes Weinerf53d7ce2012-01-12 17:18:23 -0800868 mem_cgroup_threshold(memcg);
Andrew Mortonbb4cc1a82013-09-24 15:27:40 -0700869 if (unlikely(do_softlimit))
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -0400870 mem_cgroup_update_tree(memcg, nid);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700871 }
KAMEZAWA Hiroyukid2265e62010-03-10 15:22:31 -0800872}
873
Balbir Singhcf475ad2008-04-29 01:00:16 -0700874struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800875{
Balbir Singh31a78f22008-09-28 23:09:31 +0100876 /*
877 * mm_update_next_owner() may clear mm->owner to NULL
878 * if it races with swapoff, page migration, etc.
879 * So this can be called with p == NULL.
880 */
881 if (unlikely(!p))
882 return NULL;
883
Tejun Heo073219e2014-02-08 10:36:58 -0500884 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800885}
Michal Hocko33398cf2015-09-08 15:01:02 -0700886EXPORT_SYMBOL(mem_cgroup_from_task);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800887
Dan Schatzberg04f94e32021-06-28 19:38:18 -0700888static __always_inline struct mem_cgroup *active_memcg(void)
889{
Vasily Averin55a68c82021-09-02 14:55:49 -0700890 if (!in_task())
Dan Schatzberg04f94e32021-06-28 19:38:18 -0700891 return this_cpu_read(int_active_memcg);
892 else
893 return current->active_memcg;
894}
895
Shakeel Buttd46eb14b2018-08-17 15:46:39 -0700896/**
897 * get_mem_cgroup_from_mm: Obtain a reference on given mm_struct's memcg.
898 * @mm: mm from which memcg should be extracted. It can be NULL.
899 *
Dan Schatzberg04f94e32021-06-28 19:38:18 -0700900 * Obtain a reference on mm->memcg and returns it if successful. If mm
901 * is NULL, then the memcg is chosen as follows:
902 * 1) The active memcg, if set.
903 * 2) current->mm->memcg, if available
904 * 3) root memcg
905 * If mem_cgroup is disabled, NULL is returned.
Shakeel Buttd46eb14b2018-08-17 15:46:39 -0700906 */
907struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800908{
Shakeel Buttd46eb14b2018-08-17 15:46:39 -0700909 struct mem_cgroup *memcg;
910
911 if (mem_cgroup_disabled())
912 return NULL;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -0700913
Muchun Song2884b6b2021-06-28 19:37:50 -0700914 /*
915 * Page cache insertions can happen without an
916 * actual mm context, e.g. during disk probing
917 * on boot, loopback IO, acct() writes etc.
918 *
919 * No need to css_get on root memcg as the reference
920 * counting is disabled on the root level in the
921 * cgroup core. See CSS_NO_REF.
922 */
Dan Schatzberg04f94e32021-06-28 19:38:18 -0700923 if (unlikely(!mm)) {
924 memcg = active_memcg();
925 if (unlikely(memcg)) {
926 /* remote memcg must hold a ref */
927 css_get(&memcg->css);
928 return memcg;
929 }
930 mm = current->mm;
931 if (unlikely(!mm))
932 return root_mem_cgroup;
933 }
Muchun Song2884b6b2021-06-28 19:37:50 -0700934
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800935 rcu_read_lock();
936 do {
Muchun Song2884b6b2021-06-28 19:37:50 -0700937 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
938 if (unlikely(!memcg))
Johannes Weinerdf381972014-04-07 15:37:43 -0700939 memcg = root_mem_cgroup;
Roman Gushchin00d484f2019-11-15 17:34:43 -0800940 } while (!css_tryget(&memcg->css));
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800941 rcu_read_unlock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -0700942 return memcg;
KAMEZAWA Hiroyuki54595fe2009-01-07 18:08:33 -0800943}
Shakeel Buttd46eb14b2018-08-17 15:46:39 -0700944EXPORT_SYMBOL(get_mem_cgroup_from_mm);
945
Roman Gushchin4127c652020-10-17 16:13:53 -0700946static __always_inline bool memcg_kmem_bypass(void)
947{
948 /* Allow remote memcg charging from any context. */
949 if (unlikely(active_memcg()))
950 return false;
951
952 /* Memcg to charge can't be determined. */
Vasily Averin61268912021-07-19 13:44:31 +0300953 if (!in_task() || !current->mm || (current->flags & PF_KTHREAD))
Roman Gushchin4127c652020-10-17 16:13:53 -0700954 return true;
955
956 return false;
957}
958
Shakeel Buttf745c6f2018-08-17 15:46:44 -0700959/**
Johannes Weiner56600482012-01-12 17:17:59 -0800960 * mem_cgroup_iter - iterate over memory cgroup hierarchy
961 * @root: hierarchy root
962 * @prev: previously returned memcg, NULL on first invocation
963 * @reclaim: cookie for shared reclaim walks, NULL for full walks
964 *
965 * Returns references to children of the hierarchy below @root, or
966 * @root itself, or %NULL after a full round-trip.
967 *
968 * Caller must pass the return value in @prev on subsequent
969 * invocations for reference counting, or use mem_cgroup_iter_break()
970 * to cancel a hierarchy walk before the round-trip is complete.
971 *
Miaohe Lin05bdc522020-10-13 16:52:45 -0700972 * Reclaimers can specify a node in @reclaim to divide up the memcgs
973 * in the hierarchy among all concurrent reclaimers operating on the
974 * same node.
Johannes Weiner56600482012-01-12 17:17:59 -0800975 */
Andrew Morton694fbc02013-09-24 15:27:37 -0700976struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
Johannes Weiner56600482012-01-12 17:17:59 -0800977 struct mem_cgroup *prev,
Andrew Morton694fbc02013-09-24 15:27:37 -0700978 struct mem_cgroup_reclaim_cookie *reclaim)
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -0700979{
Kees Cook3f649ab2020-06-03 13:09:38 -0700980 struct mem_cgroup_reclaim_iter *iter;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800981 struct cgroup_subsys_state *css = NULL;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800982 struct mem_cgroup *memcg = NULL;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800983 struct mem_cgroup *pos = NULL;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -0700984
Andrew Morton694fbc02013-09-24 15:27:37 -0700985 if (mem_cgroup_disabled())
986 return NULL;
Johannes Weiner56600482012-01-12 17:17:59 -0800987
KAMEZAWA Hiroyuki711d3d22010-10-27 15:33:42 -0700988 if (!root)
989 root = root_mem_cgroup;
990
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800991 if (prev && !reclaim)
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800992 pos = prev;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800993
Michal Hocko542f85f2013-04-29 15:07:15 -0700994 rcu_read_lock();
Johannes Weiner9f3a0d02012-01-12 17:17:48 -0800995
Johannes Weiner5ac8fb32014-12-10 15:42:39 -0800996 if (reclaim) {
Mel Gormanef8f2322016-07-28 15:46:05 -0700997 struct mem_cgroup_per_node *mz;
Johannes Weiner527a5ec2012-01-12 17:17:55 -0800998
Johannes Weinera3747b52021-04-29 22:56:14 -0700999 mz = root->nodeinfo[reclaim->pgdat->node_id];
Yafang Shao9da83f32019-11-30 17:50:03 -08001000 iter = &mz->iter;
Michal Hocko5f578162013-04-29 15:07:17 -07001001
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001002 if (prev && reclaim->generation != iter->generation)
Michal Hocko542f85f2013-04-29 15:07:15 -07001003 goto out_unlock;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001004
Vladimir Davydov6df38682015-12-29 14:54:10 -08001005 while (1) {
Jason Low4db0c3c2015-04-15 16:14:08 -07001006 pos = READ_ONCE(iter->position);
Vladimir Davydov6df38682015-12-29 14:54:10 -08001007 if (!pos || css_tryget(&pos->css))
1008 break;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001009 /*
Vladimir Davydov6df38682015-12-29 14:54:10 -08001010 * css reference reached zero, so iter->position will
1011 * be cleared by ->css_released. However, we should not
1012 * rely on this happening soon, because ->css_released
1013 * is called from a work queue, and by busy-waiting we
1014 * might block it. So we clear iter->position right
1015 * away.
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001016 */
Vladimir Davydov6df38682015-12-29 14:54:10 -08001017 (void)cmpxchg(&iter->position, pos, NULL);
1018 }
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001019 }
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001020
1021 if (pos)
1022 css = &pos->css;
1023
1024 for (;;) {
1025 css = css_next_descendant_pre(css, &root->css);
1026 if (!css) {
1027 /*
1028 * Reclaimers share the hierarchy walk, and a
1029 * new one might jump in right at the end of
1030 * the hierarchy - make sure they see at least
1031 * one group and restart from the beginning.
1032 */
1033 if (!prev)
1034 continue;
1035 break;
1036 }
1037
1038 /*
1039 * Verify the css and acquire a reference. The root
1040 * is provided by the caller, so we know it's alive
1041 * and kicking, and don't take an extra reference.
1042 */
1043 memcg = mem_cgroup_from_css(css);
1044
1045 if (css == &root->css)
1046 break;
1047
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08001048 if (css_tryget(css))
1049 break;
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001050
1051 memcg = NULL;
1052 }
1053
1054 if (reclaim) {
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001055 /*
Vladimir Davydov6df38682015-12-29 14:54:10 -08001056 * The position could have already been updated by a competing
1057 * thread, so check that the value hasn't changed since we read
1058 * it to avoid reclaiming from the same cgroup twice.
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001059 */
Vladimir Davydov6df38682015-12-29 14:54:10 -08001060 (void)cmpxchg(&iter->position, pos, memcg);
1061
Johannes Weiner5ac8fb32014-12-10 15:42:39 -08001062 if (pos)
1063 css_put(&pos->css);
1064
1065 if (!memcg)
1066 iter->generation++;
1067 else if (!prev)
1068 reclaim->generation = iter->generation;
1069 }
1070
Michal Hocko542f85f2013-04-29 15:07:15 -07001071out_unlock:
1072 rcu_read_unlock();
Michal Hockoc40046f2013-04-29 15:07:14 -07001073 if (prev && prev != root)
1074 css_put(&prev->css);
1075
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001076 return memcg;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001077}
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001078
Johannes Weiner56600482012-01-12 17:17:59 -08001079/**
1080 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1081 * @root: hierarchy root
1082 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1083 */
1084void mem_cgroup_iter_break(struct mem_cgroup *root,
1085 struct mem_cgroup *prev)
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001086{
1087 if (!root)
1088 root = root_mem_cgroup;
1089 if (prev && prev != root)
1090 css_put(&prev->css);
1091}
1092
Miles Chen54a83d62019-08-13 15:37:28 -07001093static void __invalidate_reclaim_iterators(struct mem_cgroup *from,
1094 struct mem_cgroup *dead_memcg)
Vladimir Davydov6df38682015-12-29 14:54:10 -08001095{
Vladimir Davydov6df38682015-12-29 14:54:10 -08001096 struct mem_cgroup_reclaim_iter *iter;
Mel Gormanef8f2322016-07-28 15:46:05 -07001097 struct mem_cgroup_per_node *mz;
1098 int nid;
Vladimir Davydov6df38682015-12-29 14:54:10 -08001099
Miles Chen54a83d62019-08-13 15:37:28 -07001100 for_each_node(nid) {
Johannes Weinera3747b52021-04-29 22:56:14 -07001101 mz = from->nodeinfo[nid];
Yafang Shao9da83f32019-11-30 17:50:03 -08001102 iter = &mz->iter;
1103 cmpxchg(&iter->position, dead_memcg, NULL);
Vladimir Davydov6df38682015-12-29 14:54:10 -08001104 }
1105}
1106
Miles Chen54a83d62019-08-13 15:37:28 -07001107static void invalidate_reclaim_iterators(struct mem_cgroup *dead_memcg)
1108{
1109 struct mem_cgroup *memcg = dead_memcg;
1110 struct mem_cgroup *last;
1111
1112 do {
1113 __invalidate_reclaim_iterators(memcg, dead_memcg);
1114 last = memcg;
1115 } while ((memcg = parent_mem_cgroup(memcg)));
1116
1117 /*
1118 * When cgruop1 non-hierarchy mode is used,
1119 * parent_mem_cgroup() does not walk all the way up to the
1120 * cgroup root (root_mem_cgroup). So we have to handle
1121 * dead_memcg from cgroup root separately.
1122 */
1123 if (last != root_mem_cgroup)
1124 __invalidate_reclaim_iterators(root_mem_cgroup,
1125 dead_memcg);
1126}
1127
Johannes Weiner925b7672012-01-12 17:18:15 -08001128/**
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -07001129 * mem_cgroup_scan_tasks - iterate over tasks of a memory cgroup hierarchy
1130 * @memcg: hierarchy root
1131 * @fn: function to call for each task
1132 * @arg: argument passed to @fn
1133 *
1134 * This function iterates over tasks attached to @memcg or to any of its
1135 * descendants and calls @fn for each task. If @fn returns a non-zero
1136 * value, the function breaks the iteration loop and returns the value.
1137 * Otherwise, it will iterate over all tasks and return 0.
1138 *
1139 * This function must not be called for the root memory cgroup.
1140 */
1141int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
1142 int (*fn)(struct task_struct *, void *), void *arg)
1143{
1144 struct mem_cgroup *iter;
1145 int ret = 0;
1146
1147 BUG_ON(memcg == root_mem_cgroup);
1148
1149 for_each_mem_cgroup_tree(iter, memcg) {
1150 struct css_task_iter it;
1151 struct task_struct *task;
1152
Tetsuo Handaf168a9a2019-07-11 21:00:20 -07001153 css_task_iter_start(&iter->css, CSS_TASK_ITER_PROCS, &it);
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -07001154 while (!ret && (task = css_task_iter_next(&it)))
1155 ret = fn(task, arg);
1156 css_task_iter_end(&it);
1157 if (ret) {
1158 mem_cgroup_iter_break(memcg, iter);
1159 break;
1160 }
1161 }
1162 return ret;
1163}
1164
Alex Shi6168d0d2020-12-15 12:34:29 -08001165#ifdef CONFIG_DEBUG_VM
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001166void lruvec_memcg_debug(struct lruvec *lruvec, struct folio *folio)
Alex Shi6168d0d2020-12-15 12:34:29 -08001167{
1168 struct mem_cgroup *memcg;
1169
1170 if (mem_cgroup_disabled())
1171 return;
1172
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001173 memcg = folio_memcg(folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001174
1175 if (!memcg)
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001176 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != root_mem_cgroup, folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001177 else
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001178 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != memcg, folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001179}
1180#endif
1181
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -07001182/**
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001183 * folio_lruvec_lock - Lock the lruvec for a folio.
1184 * @folio: Pointer to the folio.
Alex Shi6168d0d2020-12-15 12:34:29 -08001185 *
Alex Shid7e3aba2021-02-24 12:03:47 -08001186 * These functions are safe to use under any of the following conditions:
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001187 * - folio locked
1188 * - folio_test_lru false
1189 * - folio_memcg_lock()
1190 * - folio frozen (refcount of 0)
1191 *
1192 * Return: The lruvec this folio is on with its lock held.
Alex Shi6168d0d2020-12-15 12:34:29 -08001193 */
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001194struct lruvec *folio_lruvec_lock(struct folio *folio)
Alex Shi6168d0d2020-12-15 12:34:29 -08001195{
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001196 struct lruvec *lruvec = folio_lruvec(folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001197
Alex Shi6168d0d2020-12-15 12:34:29 -08001198 spin_lock(&lruvec->lru_lock);
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001199 lruvec_memcg_debug(lruvec, folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001200
1201 return lruvec;
1202}
1203
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001204/**
1205 * folio_lruvec_lock_irq - Lock the lruvec for a folio.
1206 * @folio: Pointer to the folio.
1207 *
1208 * These functions are safe to use under any of the following conditions:
1209 * - folio locked
1210 * - folio_test_lru false
1211 * - folio_memcg_lock()
1212 * - folio frozen (refcount of 0)
1213 *
1214 * Return: The lruvec this folio is on with its lock held and interrupts
1215 * disabled.
1216 */
1217struct lruvec *folio_lruvec_lock_irq(struct folio *folio)
Alex Shi6168d0d2020-12-15 12:34:29 -08001218{
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001219 struct lruvec *lruvec = folio_lruvec(folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001220
Alex Shi6168d0d2020-12-15 12:34:29 -08001221 spin_lock_irq(&lruvec->lru_lock);
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001222 lruvec_memcg_debug(lruvec, folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001223
1224 return lruvec;
1225}
1226
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001227/**
1228 * folio_lruvec_lock_irqsave - Lock the lruvec for a folio.
1229 * @folio: Pointer to the folio.
1230 * @flags: Pointer to irqsave flags.
1231 *
1232 * These functions are safe to use under any of the following conditions:
1233 * - folio locked
1234 * - folio_test_lru false
1235 * - folio_memcg_lock()
1236 * - folio frozen (refcount of 0)
1237 *
1238 * Return: The lruvec this folio is on with its lock held and interrupts
1239 * disabled.
1240 */
1241struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
1242 unsigned long *flags)
Alex Shi6168d0d2020-12-15 12:34:29 -08001243{
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001244 struct lruvec *lruvec = folio_lruvec(folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001245
Alex Shi6168d0d2020-12-15 12:34:29 -08001246 spin_lock_irqsave(&lruvec->lru_lock, *flags);
Matthew Wilcox (Oracle)e809c3f2021-06-28 21:59:47 -04001247 lruvec_memcg_debug(lruvec, folio);
Alex Shi6168d0d2020-12-15 12:34:29 -08001248
1249 return lruvec;
1250}
1251
1252/**
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001253 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1254 * @lruvec: mem_cgroup per zone lru vector
1255 * @lru: index of lru list the page is sitting on
Michal Hockob4536f0c82017-01-10 16:58:04 -08001256 * @zid: zone id of the accounted pages
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001257 * @nr_pages: positive when adding or negative when removing
Johannes Weiner925b7672012-01-12 17:18:15 -08001258 *
Hugh Dickinsca707232016-05-19 17:12:35 -07001259 * This function must be called under lru_lock, just before a page is added
1260 * to or just after a page is removed from an lru list (that ordering being
1261 * so as to allow it to check that lru_size 0 is consistent with list_empty).
Johannes Weiner925b7672012-01-12 17:18:15 -08001262 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001263void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
Michal Hockob4536f0c82017-01-10 16:58:04 -08001264 int zid, int nr_pages)
Johannes Weiner925b7672012-01-12 17:18:15 -08001265{
Mel Gormanef8f2322016-07-28 15:46:05 -07001266 struct mem_cgroup_per_node *mz;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001267 unsigned long *lru_size;
Hugh Dickinsca707232016-05-19 17:12:35 -07001268 long size;
Johannes Weiner925b7672012-01-12 17:18:15 -08001269
1270 if (mem_cgroup_disabled())
1271 return;
1272
Mel Gormanef8f2322016-07-28 15:46:05 -07001273 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
Michal Hockob4536f0c82017-01-10 16:58:04 -08001274 lru_size = &mz->lru_zone_size[zid][lru];
Hugh Dickinsca707232016-05-19 17:12:35 -07001275
1276 if (nr_pages < 0)
1277 *lru_size += nr_pages;
1278
1279 size = *lru_size;
Michal Hockob4536f0c82017-01-10 16:58:04 -08001280 if (WARN_ONCE(size < 0,
1281 "%s(%p, %d, %d): lru_size %ld\n",
1282 __func__, lruvec, lru, nr_pages, size)) {
Hugh Dickinsca707232016-05-19 17:12:35 -07001283 VM_BUG_ON(1);
1284 *lru_size = 0;
1285 }
1286
1287 if (nr_pages > 0)
1288 *lru_size += nr_pages;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001289}
KAMEZAWA Hiroyuki544122e2009-01-07 18:08:34 -08001290
Johannes Weiner19942822011-02-01 15:52:43 -08001291/**
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001292 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
Wanpeng Lidad75572012-06-20 12:53:01 -07001293 * @memcg: the memory cgroup
Johannes Weiner19942822011-02-01 15:52:43 -08001294 *
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001295 * Returns the maximum amount of memory @mem can be charged with, in
Johannes Weiner7ec99d62011-03-23 16:42:36 -07001296 * pages.
Johannes Weiner19942822011-02-01 15:52:43 -08001297 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001298static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
Johannes Weiner19942822011-02-01 15:52:43 -08001299{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001300 unsigned long margin = 0;
1301 unsigned long count;
1302 unsigned long limit;
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001303
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001304 count = page_counter_read(&memcg->memory);
Roman Gushchinbbec2e12018-06-07 17:06:18 -07001305 limit = READ_ONCE(memcg->memory.max);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001306 if (count < limit)
1307 margin = limit - count;
1308
Johannes Weiner7941d212016-01-14 15:21:23 -08001309 if (do_memsw_account()) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001310 count = page_counter_read(&memcg->memsw);
Roman Gushchinbbec2e12018-06-07 17:06:18 -07001311 limit = READ_ONCE(memcg->memsw.max);
Kaixu Xia1c4448e2020-06-01 21:49:36 -07001312 if (count < limit)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001313 margin = min(margin, limit - count);
Li RongQingcbedbac2016-05-27 14:27:43 -07001314 else
1315 margin = 0;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001316 }
1317
1318 return margin;
Johannes Weiner19942822011-02-01 15:52:43 -08001319}
1320
KAMEZAWA Hiroyuki619d0942012-03-21 16:34:23 -07001321/*
Qiang Huangbdcbb652014-06-04 16:08:21 -07001322 * A routine for checking "mem" is under move_account() or not.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001323 *
Qiang Huangbdcbb652014-06-04 16:08:21 -07001324 * Checking a cgroup is mc.from or mc.to or under hierarchy of
1325 * moving cgroups. This is for waiting at high-memory pressure
1326 * caused by "move".
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07001327 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001328static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001329{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001330 struct mem_cgroup *from;
1331 struct mem_cgroup *to;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001332 bool ret = false;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001333 /*
1334 * Unlike task_move routines, we access mc.to, mc.from not under
1335 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1336 */
1337 spin_lock(&mc.lock);
1338 from = mc.from;
1339 to = mc.to;
1340 if (!from)
1341 goto unlock;
Michal Hocko3e920412011-07-26 16:08:29 -07001342
Johannes Weiner2314b422014-12-10 15:44:33 -08001343 ret = mem_cgroup_is_descendant(from, memcg) ||
1344 mem_cgroup_is_descendant(to, memcg);
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07001345unlock:
1346 spin_unlock(&mc.lock);
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001347 return ret;
1348}
1349
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001350static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001351{
1352 if (mc.moving_task && current != mc.moving_task) {
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001353 if (mem_cgroup_under_move(memcg)) {
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07001354 DEFINE_WAIT(wait);
1355 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1356 /* moving charge context might have finished. */
1357 if (mc.moving_task)
1358 schedule();
1359 finish_wait(&mc.waitq, &wait);
1360 return true;
1361 }
1362 }
1363 return false;
1364}
1365
Muchun Song5f9a4f42020-10-13 16:52:59 -07001366struct memory_stat {
1367 const char *name;
Muchun Song5f9a4f42020-10-13 16:52:59 -07001368 unsigned int idx;
1369};
1370
Muchun Song57b28472021-02-24 12:03:31 -08001371static const struct memory_stat memory_stats[] = {
Muchun Songfff66b72021-02-24 12:03:43 -08001372 { "anon", NR_ANON_MAPPED },
1373 { "file", NR_FILE_PAGES },
1374 { "kernel_stack", NR_KERNEL_STACK_KB },
1375 { "pagetables", NR_PAGETABLE },
1376 { "percpu", MEMCG_PERCPU_B },
1377 { "sock", MEMCG_SOCK },
Shakeel Butt4e5aa1f2022-01-14 14:05:45 -08001378 { "vmalloc", MEMCG_VMALLOC },
Muchun Songfff66b72021-02-24 12:03:43 -08001379 { "shmem", NR_SHMEM },
1380 { "file_mapped", NR_FILE_MAPPED },
1381 { "file_dirty", NR_FILE_DIRTY },
1382 { "file_writeback", NR_WRITEBACK },
Shakeel Buttb6038942021-02-24 12:03:55 -08001383#ifdef CONFIG_SWAP
1384 { "swapcached", NR_SWAPCACHE },
1385#endif
Muchun Song5f9a4f42020-10-13 16:52:59 -07001386#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Muchun Songfff66b72021-02-24 12:03:43 -08001387 { "anon_thp", NR_ANON_THPS },
1388 { "file_thp", NR_FILE_THPS },
1389 { "shmem_thp", NR_SHMEM_THPS },
Muchun Song5f9a4f42020-10-13 16:52:59 -07001390#endif
Muchun Songfff66b72021-02-24 12:03:43 -08001391 { "inactive_anon", NR_INACTIVE_ANON },
1392 { "active_anon", NR_ACTIVE_ANON },
1393 { "inactive_file", NR_INACTIVE_FILE },
1394 { "active_file", NR_ACTIVE_FILE },
1395 { "unevictable", NR_UNEVICTABLE },
1396 { "slab_reclaimable", NR_SLAB_RECLAIMABLE_B },
1397 { "slab_unreclaimable", NR_SLAB_UNRECLAIMABLE_B },
Muchun Song5f9a4f42020-10-13 16:52:59 -07001398
1399 /* The memory events */
Muchun Songfff66b72021-02-24 12:03:43 -08001400 { "workingset_refault_anon", WORKINGSET_REFAULT_ANON },
1401 { "workingset_refault_file", WORKINGSET_REFAULT_FILE },
1402 { "workingset_activate_anon", WORKINGSET_ACTIVATE_ANON },
1403 { "workingset_activate_file", WORKINGSET_ACTIVATE_FILE },
1404 { "workingset_restore_anon", WORKINGSET_RESTORE_ANON },
1405 { "workingset_restore_file", WORKINGSET_RESTORE_FILE },
1406 { "workingset_nodereclaim", WORKINGSET_NODERECLAIM },
Muchun Song5f9a4f42020-10-13 16:52:59 -07001407};
1408
Muchun Songfff66b72021-02-24 12:03:43 -08001409/* Translate stat items to the correct unit for memory.stat output */
1410static int memcg_page_state_unit(int item)
1411{
1412 switch (item) {
1413 case MEMCG_PERCPU_B:
1414 case NR_SLAB_RECLAIMABLE_B:
1415 case NR_SLAB_UNRECLAIMABLE_B:
1416 case WORKINGSET_REFAULT_ANON:
1417 case WORKINGSET_REFAULT_FILE:
1418 case WORKINGSET_ACTIVATE_ANON:
1419 case WORKINGSET_ACTIVATE_FILE:
1420 case WORKINGSET_RESTORE_ANON:
1421 case WORKINGSET_RESTORE_FILE:
1422 case WORKINGSET_NODERECLAIM:
1423 return 1;
1424 case NR_KERNEL_STACK_KB:
1425 return SZ_1K;
1426 default:
1427 return PAGE_SIZE;
1428 }
1429}
1430
1431static inline unsigned long memcg_page_state_output(struct mem_cgroup *memcg,
1432 int item)
1433{
1434 return memcg_page_state(memcg, item) * memcg_page_state_unit(item);
1435}
1436
Johannes Weinerc8713d02019-07-11 20:55:59 -07001437static char *memory_stat_format(struct mem_cgroup *memcg)
1438{
1439 struct seq_buf s;
1440 int i;
Johannes Weiner71cd3112017-05-03 14:55:13 -07001441
Johannes Weinerc8713d02019-07-11 20:55:59 -07001442 seq_buf_init(&s, kmalloc(PAGE_SIZE, GFP_KERNEL), PAGE_SIZE);
1443 if (!s.buffer)
1444 return NULL;
1445
1446 /*
1447 * Provide statistics on the state of the memory subsystem as
1448 * well as cumulative event counters that show past behavior.
1449 *
1450 * This list is ordered following a combination of these gradients:
1451 * 1) generic big picture -> specifics and details
1452 * 2) reflecting userspace activity -> reflecting kernel heuristics
1453 *
1454 * Current memory state:
1455 */
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07001456 mem_cgroup_flush_stats();
Johannes Weinerc8713d02019-07-11 20:55:59 -07001457
Muchun Song5f9a4f42020-10-13 16:52:59 -07001458 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
1459 u64 size;
Johannes Weinerc8713d02019-07-11 20:55:59 -07001460
Muchun Songfff66b72021-02-24 12:03:43 -08001461 size = memcg_page_state_output(memcg, memory_stats[i].idx);
Muchun Song5f9a4f42020-10-13 16:52:59 -07001462 seq_buf_printf(&s, "%s %llu\n", memory_stats[i].name, size);
Johannes Weinerc8713d02019-07-11 20:55:59 -07001463
Muchun Song5f9a4f42020-10-13 16:52:59 -07001464 if (unlikely(memory_stats[i].idx == NR_SLAB_UNRECLAIMABLE_B)) {
Muchun Songfff66b72021-02-24 12:03:43 -08001465 size += memcg_page_state_output(memcg,
1466 NR_SLAB_RECLAIMABLE_B);
Muchun Song5f9a4f42020-10-13 16:52:59 -07001467 seq_buf_printf(&s, "slab %llu\n", size);
1468 }
1469 }
Johannes Weinerc8713d02019-07-11 20:55:59 -07001470
1471 /* Accumulated memory events */
1472
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08001473 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGFAULT),
1474 memcg_events(memcg, PGFAULT));
1475 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGMAJFAULT),
1476 memcg_events(memcg, PGMAJFAULT));
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08001477 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGREFILL),
1478 memcg_events(memcg, PGREFILL));
Johannes Weinerc8713d02019-07-11 20:55:59 -07001479 seq_buf_printf(&s, "pgscan %lu\n",
1480 memcg_events(memcg, PGSCAN_KSWAPD) +
1481 memcg_events(memcg, PGSCAN_DIRECT));
1482 seq_buf_printf(&s, "pgsteal %lu\n",
1483 memcg_events(memcg, PGSTEAL_KSWAPD) +
1484 memcg_events(memcg, PGSTEAL_DIRECT));
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08001485 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGACTIVATE),
1486 memcg_events(memcg, PGACTIVATE));
1487 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGDEACTIVATE),
1488 memcg_events(memcg, PGDEACTIVATE));
1489 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGLAZYFREE),
1490 memcg_events(memcg, PGLAZYFREE));
1491 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGLAZYFREED),
1492 memcg_events(memcg, PGLAZYFREED));
Johannes Weinerc8713d02019-07-11 20:55:59 -07001493
1494#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08001495 seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_FAULT_ALLOC),
Johannes Weinerc8713d02019-07-11 20:55:59 -07001496 memcg_events(memcg, THP_FAULT_ALLOC));
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08001497 seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_COLLAPSE_ALLOC),
Johannes Weinerc8713d02019-07-11 20:55:59 -07001498 memcg_events(memcg, THP_COLLAPSE_ALLOC));
1499#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1500
1501 /* The above should easily fit into one page */
1502 WARN_ON_ONCE(seq_buf_has_overflowed(&s));
1503
1504 return s.buffer;
1505}
Johannes Weiner71cd3112017-05-03 14:55:13 -07001506
Sha Zhengju58cf1882013-02-22 16:32:05 -08001507#define K(x) ((x) << (PAGE_SHIFT-10))
Balbir Singhe2224322009-04-02 16:57:39 -07001508/**
yuzhoujianf0c867d2018-12-28 00:36:10 -08001509 * mem_cgroup_print_oom_context: Print OOM information relevant to
1510 * memory controller.
Balbir Singhe2224322009-04-02 16:57:39 -07001511 * @memcg: The memory cgroup that went over limit
1512 * @p: Task that is going to be killed
1513 *
1514 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1515 * enabled
1516 */
yuzhoujianf0c867d2018-12-28 00:36:10 -08001517void mem_cgroup_print_oom_context(struct mem_cgroup *memcg, struct task_struct *p)
1518{
1519 rcu_read_lock();
1520
1521 if (memcg) {
1522 pr_cont(",oom_memcg=");
1523 pr_cont_cgroup_path(memcg->css.cgroup);
1524 } else
1525 pr_cont(",global_oom");
1526 if (p) {
1527 pr_cont(",task_memcg=");
1528 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1529 }
1530 rcu_read_unlock();
1531}
1532
1533/**
1534 * mem_cgroup_print_oom_meminfo: Print OOM memory information relevant to
1535 * memory controller.
1536 * @memcg: The memory cgroup that went over limit
1537 */
1538void mem_cgroup_print_oom_meminfo(struct mem_cgroup *memcg)
Balbir Singhe2224322009-04-02 16:57:39 -07001539{
Johannes Weinerc8713d02019-07-11 20:55:59 -07001540 char *buf;
Balbir Singhe2224322009-04-02 16:57:39 -07001541
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001542 pr_info("memory: usage %llukB, limit %llukB, failcnt %lu\n",
1543 K((u64)page_counter_read(&memcg->memory)),
Chris Down15b42562020-04-01 21:07:20 -07001544 K((u64)READ_ONCE(memcg->memory.max)), memcg->memory.failcnt);
Johannes Weinerc8713d02019-07-11 20:55:59 -07001545 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
1546 pr_info("swap: usage %llukB, limit %llukB, failcnt %lu\n",
1547 K((u64)page_counter_read(&memcg->swap)),
Chris Down32d087c2020-04-01 21:07:30 -07001548 K((u64)READ_ONCE(memcg->swap.max)), memcg->swap.failcnt);
Johannes Weinerc8713d02019-07-11 20:55:59 -07001549 else {
1550 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %lu\n",
1551 K((u64)page_counter_read(&memcg->memsw)),
1552 K((u64)memcg->memsw.max), memcg->memsw.failcnt);
1553 pr_info("kmem: usage %llukB, limit %llukB, failcnt %lu\n",
1554 K((u64)page_counter_read(&memcg->kmem)),
1555 K((u64)memcg->kmem.max), memcg->kmem.failcnt);
Sha Zhengju58cf1882013-02-22 16:32:05 -08001556 }
Johannes Weinerc8713d02019-07-11 20:55:59 -07001557
1558 pr_info("Memory cgroup stats for ");
1559 pr_cont_cgroup_path(memcg->css.cgroup);
1560 pr_cont(":");
1561 buf = memory_stat_format(memcg);
1562 if (!buf)
1563 return;
1564 pr_info("%s", buf);
1565 kfree(buf);
Balbir Singhe2224322009-04-02 16:57:39 -07001566}
1567
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07001568/*
David Rientjesa63d83f2010-08-09 17:19:46 -07001569 * Return the memory (and swap, if configured) limit for a memcg.
1570 */
Roman Gushchinbbec2e12018-06-07 17:06:18 -07001571unsigned long mem_cgroup_get_max(struct mem_cgroup *memcg)
David Rientjesa63d83f2010-08-09 17:19:46 -07001572{
Waiman Long8d387a52020-10-13 16:52:52 -07001573 unsigned long max = READ_ONCE(memcg->memory.max);
David Rientjesa63d83f2010-08-09 17:19:46 -07001574
Waiman Long8d387a52020-10-13 16:52:52 -07001575 if (cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
1576 if (mem_cgroup_swappiness(memcg))
1577 max += min(READ_ONCE(memcg->swap.max),
1578 (unsigned long)total_swap_pages);
1579 } else { /* v1 */
1580 if (mem_cgroup_swappiness(memcg)) {
1581 /* Calculate swap excess capacity from memsw limit */
1582 unsigned long swap = READ_ONCE(memcg->memsw.max) - max;
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001583
Waiman Long8d387a52020-10-13 16:52:52 -07001584 max += min(swap, (unsigned long)total_swap_pages);
1585 }
Michal Hocko9a5a8f12012-11-16 14:14:49 -08001586 }
Roman Gushchinbbec2e12018-06-07 17:06:18 -07001587 return max;
David Rientjesa63d83f2010-08-09 17:19:46 -07001588}
1589
Chris Down9783aa92019-10-06 17:58:32 -07001590unsigned long mem_cgroup_size(struct mem_cgroup *memcg)
1591{
1592 return page_counter_read(&memcg->memory);
1593}
1594
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07001595static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
David Rientjes19965462012-12-11 16:00:26 -08001596 int order)
David Rientjes9cbb78b2012-07-31 16:43:44 -07001597{
David Rientjes6e0fc462015-09-08 15:00:36 -07001598 struct oom_control oc = {
1599 .zonelist = NULL,
1600 .nodemask = NULL,
Vladimir Davydov2a966b72016-07-26 15:22:33 -07001601 .memcg = memcg,
David Rientjes6e0fc462015-09-08 15:00:36 -07001602 .gfp_mask = gfp_mask,
1603 .order = order,
David Rientjes6e0fc462015-09-08 15:00:36 -07001604 };
Yafang Shao1378b372020-08-06 23:22:08 -07001605 bool ret = true;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001606
Tetsuo Handa7775fac2019-03-05 15:46:47 -08001607 if (mutex_lock_killable(&oom_lock))
1608 return true;
Yafang Shao1378b372020-08-06 23:22:08 -07001609
1610 if (mem_cgroup_margin(memcg) >= (1 << order))
1611 goto unlock;
1612
Tetsuo Handa7775fac2019-03-05 15:46:47 -08001613 /*
1614 * A few threads which were not waiting at mutex_lock_killable() can
1615 * fail to bail out. Therefore, check again after holding oom_lock.
1616 */
Vasily Averina4ebf1b2021-11-05 13:38:09 -07001617 ret = task_is_dying() || out_of_memory(&oc);
Yafang Shao1378b372020-08-06 23:22:08 -07001618
1619unlock:
Johannes Weinerdc564012015-06-24 16:57:19 -07001620 mutex_unlock(&oom_lock);
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -07001621 return ret;
David Rientjes9cbb78b2012-07-31 16:43:44 -07001622}
1623
Andrew Morton0608f432013-09-24 15:27:41 -07001624static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
Mel Gormanef8f2322016-07-28 15:46:05 -07001625 pg_data_t *pgdat,
Andrew Morton0608f432013-09-24 15:27:41 -07001626 gfp_t gfp_mask,
1627 unsigned long *total_scanned)
Balbir Singh6d61ef42009-01-07 18:08:06 -08001628{
Andrew Morton0608f432013-09-24 15:27:41 -07001629 struct mem_cgroup *victim = NULL;
1630 int total = 0;
1631 int loop = 0;
1632 unsigned long excess;
1633 unsigned long nr_scanned;
1634 struct mem_cgroup_reclaim_cookie reclaim = {
Mel Gormanef8f2322016-07-28 15:46:05 -07001635 .pgdat = pgdat,
Andrew Morton0608f432013-09-24 15:27:41 -07001636 };
Johannes Weiner9d11ea92011-03-23 16:42:21 -07001637
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001638 excess = soft_limit_excess(root_memcg);
Balbir Singh6d61ef42009-01-07 18:08:06 -08001639
Andrew Morton0608f432013-09-24 15:27:41 -07001640 while (1) {
1641 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1642 if (!victim) {
1643 loop++;
1644 if (loop >= 2) {
1645 /*
1646 * If we have not been able to reclaim
1647 * anything, it might because there are
1648 * no reclaimable pages under this hierarchy
1649 */
1650 if (!total)
1651 break;
1652 /*
1653 * We want to do more targeted reclaim.
1654 * excess >> 2 is not to excessive so as to
1655 * reclaim too much, nor too less that we keep
1656 * coming back to reclaim from this cgroup
1657 */
1658 if (total >= (excess >> 2) ||
1659 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
1660 break;
1661 }
1662 continue;
1663 }
Mel Gormana9dd0a82016-07-28 15:46:02 -07001664 total += mem_cgroup_shrink_node(victim, gfp_mask, false,
Mel Gormanef8f2322016-07-28 15:46:05 -07001665 pgdat, &nr_scanned);
Andrew Morton0608f432013-09-24 15:27:41 -07001666 *total_scanned += nr_scanned;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08001667 if (!soft_limit_excess(root_memcg))
Andrew Morton0608f432013-09-24 15:27:41 -07001668 break;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001669 }
Andrew Morton0608f432013-09-24 15:27:41 -07001670 mem_cgroup_iter_break(root_memcg, victim);
1671 return total;
Balbir Singh6d61ef42009-01-07 18:08:06 -08001672}
1673
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001674#ifdef CONFIG_LOCKDEP
1675static struct lockdep_map memcg_oom_lock_dep_map = {
1676 .name = "memcg_oom_lock",
1677};
1678#endif
1679
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001680static DEFINE_SPINLOCK(memcg_oom_lock);
1681
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001682/*
1683 * Check OOM-Killer is already running under our hierarchy.
1684 * If someone is running, return false.
1685 */
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001686static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001687{
Michal Hocko79dfdac2011-07-26 16:08:23 -07001688 struct mem_cgroup *iter, *failed = NULL;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001689
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001690 spin_lock(&memcg_oom_lock);
1691
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001692 for_each_mem_cgroup_tree(iter, memcg) {
Johannes Weiner23751be2011-08-25 15:59:16 -07001693 if (iter->oom_lock) {
Michal Hocko79dfdac2011-07-26 16:08:23 -07001694 /*
1695 * this subtree of our hierarchy is already locked
1696 * so we cannot give a lock.
1697 */
Michal Hocko79dfdac2011-07-26 16:08:23 -07001698 failed = iter;
Johannes Weiner9f3a0d02012-01-12 17:17:48 -08001699 mem_cgroup_iter_break(memcg, iter);
1700 break;
Johannes Weiner23751be2011-08-25 15:59:16 -07001701 } else
1702 iter->oom_lock = true;
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001703 }
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001704
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001705 if (failed) {
1706 /*
1707 * OK, we failed to lock the whole subtree so we have
1708 * to clean up what we set up to the failing subtree
1709 */
1710 for_each_mem_cgroup_tree(iter, memcg) {
1711 if (iter == failed) {
1712 mem_cgroup_iter_break(memcg, iter);
1713 break;
1714 }
1715 iter->oom_lock = false;
Michal Hocko79dfdac2011-07-26 16:08:23 -07001716 }
Johannes Weiner0056f4e2013-10-31 16:34:14 -07001717 } else
1718 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001719
1720 spin_unlock(&memcg_oom_lock);
1721
1722 return !failed;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08001723}
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001724
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001725static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001726{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07001727 struct mem_cgroup *iter;
1728
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001729 spin_lock(&memcg_oom_lock);
Qian Cai5facae42019-09-19 12:09:40 -04001730 mutex_release(&memcg_oom_lock_dep_map, _RET_IP_);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001731 for_each_mem_cgroup_tree(iter, memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001732 iter->oom_lock = false;
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001733 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001734}
1735
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001736static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001737{
1738 struct mem_cgroup *iter;
1739
Tejun Heoc2b42d32015-06-24 16:58:23 -07001740 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001741 for_each_mem_cgroup_tree(iter, memcg)
Tejun Heoc2b42d32015-06-24 16:58:23 -07001742 iter->under_oom++;
1743 spin_unlock(&memcg_oom_lock);
Michal Hocko79dfdac2011-07-26 16:08:23 -07001744}
1745
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001746static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
Michal Hocko79dfdac2011-07-26 16:08:23 -07001747{
1748 struct mem_cgroup *iter;
1749
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001750 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07001751 * Be careful about under_oom underflows because a child memcg
Miaohe Lin7a52d4d82020-10-13 16:53:05 -07001752 * could have been added after mem_cgroup_mark_under_oom.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001753 */
Tejun Heoc2b42d32015-06-24 16:58:23 -07001754 spin_lock(&memcg_oom_lock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001755 for_each_mem_cgroup_tree(iter, memcg)
Tejun Heoc2b42d32015-06-24 16:58:23 -07001756 if (iter->under_oom > 0)
1757 iter->under_oom--;
1758 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001759}
1760
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001761static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1762
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001763struct oom_wait_info {
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001764 struct mem_cgroup *memcg;
Ingo Molnarac6424b2017-06-20 12:06:13 +02001765 wait_queue_entry_t wait;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001766};
1767
Ingo Molnarac6424b2017-06-20 12:06:13 +02001768static int memcg_oom_wake_function(wait_queue_entry_t *wait,
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001769 unsigned mode, int sync, void *arg)
1770{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001771 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1772 struct mem_cgroup *oom_wait_memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001773 struct oom_wait_info *oom_wait_info;
1774
1775 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07001776 oom_wait_memcg = oom_wait_info->memcg;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001777
Johannes Weiner2314b422014-12-10 15:44:33 -08001778 if (!mem_cgroup_is_descendant(wake_memcg, oom_wait_memcg) &&
1779 !mem_cgroup_is_descendant(oom_wait_memcg, wake_memcg))
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001780 return 0;
KAMEZAWA Hiroyukidc98df52010-05-26 14:42:36 -07001781 return autoremove_wake_function(wait, mode, sync, arg);
1782}
1783
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001784static void memcg_oom_recover(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001785{
Tejun Heoc2b42d32015-06-24 16:58:23 -07001786 /*
1787 * For the following lockless ->under_oom test, the only required
1788 * guarantee is that it must see the state asserted by an OOM when
1789 * this function is called as a result of userland actions
1790 * triggered by the notification of the OOM. This is trivially
1791 * achieved by invoking mem_cgroup_mark_under_oom() before
1792 * triggering notification.
1793 */
1794 if (memcg && memcg->under_oom)
Tejun Heof4b90b702015-06-24 16:58:21 -07001795 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001796}
1797
Michal Hocko29ef6802018-08-17 15:47:11 -07001798enum oom_status {
1799 OOM_SUCCESS,
1800 OOM_FAILED,
1801 OOM_ASYNC,
1802 OOM_SKIPPED
1803};
1804
1805static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001806{
Michal Hocko7056d3a2018-12-28 00:39:57 -08001807 enum oom_status ret;
1808 bool locked;
1809
Michal Hocko29ef6802018-08-17 15:47:11 -07001810 if (order > PAGE_ALLOC_COSTLY_ORDER)
1811 return OOM_SKIPPED;
1812
Roman Gushchin7a1adfd2018-10-26 15:09:48 -07001813 memcg_memory_event(memcg, MEMCG_OOM);
1814
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001815 /*
Johannes Weiner49426422013-10-16 13:46:59 -07001816 * We are in the middle of the charge context here, so we
1817 * don't want to block when potentially sitting on a callstack
1818 * that holds all kinds of filesystem and mm locks.
1819 *
Michal Hocko29ef6802018-08-17 15:47:11 -07001820 * cgroup1 allows disabling the OOM killer and waiting for outside
1821 * handling until the charge can succeed; remember the context and put
1822 * the task to sleep at the end of the page fault when all locks are
1823 * released.
Johannes Weiner49426422013-10-16 13:46:59 -07001824 *
Michal Hocko29ef6802018-08-17 15:47:11 -07001825 * On the other hand, in-kernel OOM killer allows for an async victim
1826 * memory reclaim (oom_reaper) and that means that we are not solely
1827 * relying on the oom victim to make a forward progress and we can
1828 * invoke the oom killer here.
1829 *
1830 * Please note that mem_cgroup_out_of_memory might fail to find a
1831 * victim and then we have to bail out from the charge path.
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001832 */
Michal Hocko29ef6802018-08-17 15:47:11 -07001833 if (memcg->oom_kill_disable) {
1834 if (!current->in_user_fault)
1835 return OOM_SKIPPED;
1836 css_get(&memcg->css);
1837 current->memcg_in_oom = memcg;
1838 current->memcg_oom_gfp_mask = mask;
1839 current->memcg_oom_order = order;
1840
1841 return OOM_ASYNC;
1842 }
1843
Michal Hocko7056d3a2018-12-28 00:39:57 -08001844 mem_cgroup_mark_under_oom(memcg);
Michal Hocko29ef6802018-08-17 15:47:11 -07001845
Michal Hocko7056d3a2018-12-28 00:39:57 -08001846 locked = mem_cgroup_oom_trylock(memcg);
1847
1848 if (locked)
1849 mem_cgroup_oom_notify(memcg);
1850
1851 mem_cgroup_unmark_under_oom(memcg);
1852 if (mem_cgroup_out_of_memory(memcg, mask, order))
1853 ret = OOM_SUCCESS;
1854 else
1855 ret = OOM_FAILED;
1856
1857 if (locked)
1858 mem_cgroup_oom_unlock(memcg);
1859
1860 return ret;
Johannes Weiner49426422013-10-16 13:46:59 -07001861}
1862
1863/**
1864 * mem_cgroup_oom_synchronize - complete memcg OOM handling
1865 * @handle: actually kill/wait or just clean up the OOM state
1866 *
1867 * This has to be called at the end of a page fault if the memcg OOM
1868 * handler was enabled.
1869 *
1870 * Memcg supports userspace OOM handling where failed allocations must
1871 * sleep on a waitqueue until the userspace task resolves the
1872 * situation. Sleeping directly in the charge context with all kinds
1873 * of locks held is not a good idea, instead we remember an OOM state
1874 * in the task and mem_cgroup_oom_synchronize() has to be called at
1875 * the end of the page fault to complete the OOM handling.
1876 *
1877 * Returns %true if an ongoing memcg OOM situation was detected and
1878 * completed, %false otherwise.
1879 */
1880bool mem_cgroup_oom_synchronize(bool handle)
1881{
Tejun Heo626ebc42015-11-05 18:46:09 -08001882 struct mem_cgroup *memcg = current->memcg_in_oom;
Johannes Weiner49426422013-10-16 13:46:59 -07001883 struct oom_wait_info owait;
1884 bool locked;
1885
1886 /* OOM is global, do not handle */
1887 if (!memcg)
1888 return false;
1889
Vladimir Davydov7c5f64f2016-10-07 16:57:23 -07001890 if (!handle)
Johannes Weiner49426422013-10-16 13:46:59 -07001891 goto cleanup;
1892
1893 owait.memcg = memcg;
1894 owait.wait.flags = 0;
1895 owait.wait.func = memcg_oom_wake_function;
1896 owait.wait.private = current;
Ingo Molnar2055da92017-06-20 12:06:46 +02001897 INIT_LIST_HEAD(&owait.wait.entry);
Johannes Weiner49426422013-10-16 13:46:59 -07001898
1899 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001900 mem_cgroup_mark_under_oom(memcg);
1901
1902 locked = mem_cgroup_oom_trylock(memcg);
1903
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001904 if (locked)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07001905 mem_cgroup_oom_notify(memcg);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001906
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001907 if (locked && !memcg->oom_kill_disable) {
1908 mem_cgroup_unmark_under_oom(memcg);
Johannes Weiner49426422013-10-16 13:46:59 -07001909 finish_wait(&memcg_oom_waitq, &owait.wait);
Tejun Heo626ebc42015-11-05 18:46:09 -08001910 mem_cgroup_out_of_memory(memcg, current->memcg_oom_gfp_mask,
1911 current->memcg_oom_order);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07001912 } else {
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001913 schedule();
Johannes Weiner49426422013-10-16 13:46:59 -07001914 mem_cgroup_unmark_under_oom(memcg);
1915 finish_wait(&memcg_oom_waitq, &owait.wait);
1916 }
1917
1918 if (locked) {
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001919 mem_cgroup_oom_unlock(memcg);
1920 /*
1921 * There is no guarantee that an OOM-lock contender
1922 * sees the wakeups triggered by the OOM kill
Ingo Molnarf0953a12021-05-06 18:06:47 -07001923 * uncharges. Wake any sleepers explicitly.
Johannes Weinerfb2a6fc2013-09-12 15:13:43 -07001924 */
1925 memcg_oom_recover(memcg);
1926 }
Johannes Weiner49426422013-10-16 13:46:59 -07001927cleanup:
Tejun Heo626ebc42015-11-05 18:46:09 -08001928 current->memcg_in_oom = NULL;
Johannes Weiner3812c8c2013-09-12 15:13:44 -07001929 css_put(&memcg->css);
KAMEZAWA Hiroyuki867578c2010-03-10 15:22:39 -08001930 return true;
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07001931}
1932
Johannes Weinerd7365e72014-10-29 14:50:48 -07001933/**
Roman Gushchin3d8b38e2018-08-21 21:53:54 -07001934 * mem_cgroup_get_oom_group - get a memory cgroup to clean up after OOM
1935 * @victim: task to be killed by the OOM killer
1936 * @oom_domain: memcg in case of memcg OOM, NULL in case of system-wide OOM
1937 *
1938 * Returns a pointer to a memory cgroup, which has to be cleaned up
1939 * by killing all belonging OOM-killable tasks.
1940 *
1941 * Caller has to call mem_cgroup_put() on the returned non-NULL memcg.
1942 */
1943struct mem_cgroup *mem_cgroup_get_oom_group(struct task_struct *victim,
1944 struct mem_cgroup *oom_domain)
1945{
1946 struct mem_cgroup *oom_group = NULL;
1947 struct mem_cgroup *memcg;
1948
1949 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
1950 return NULL;
1951
1952 if (!oom_domain)
1953 oom_domain = root_mem_cgroup;
1954
1955 rcu_read_lock();
1956
1957 memcg = mem_cgroup_from_task(victim);
1958 if (memcg == root_mem_cgroup)
1959 goto out;
1960
1961 /*
Roman Gushchin48fe2672020-04-01 21:07:39 -07001962 * If the victim task has been asynchronously moved to a different
1963 * memory cgroup, we might end up killing tasks outside oom_domain.
1964 * In this case it's better to ignore memory.group.oom.
1965 */
1966 if (unlikely(!mem_cgroup_is_descendant(memcg, oom_domain)))
1967 goto out;
1968
1969 /*
Roman Gushchin3d8b38e2018-08-21 21:53:54 -07001970 * Traverse the memory cgroup hierarchy from the victim task's
1971 * cgroup up to the OOMing cgroup (or root) to find the
1972 * highest-level memory cgroup with oom.group set.
1973 */
1974 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
1975 if (memcg->oom_group)
1976 oom_group = memcg;
1977
1978 if (memcg == oom_domain)
1979 break;
1980 }
1981
1982 if (oom_group)
1983 css_get(&oom_group->css);
1984out:
1985 rcu_read_unlock();
1986
1987 return oom_group;
1988}
1989
1990void mem_cgroup_print_oom_group(struct mem_cgroup *memcg)
1991{
1992 pr_info("Tasks in ");
1993 pr_cont_cgroup_path(memcg->css.cgroup);
1994 pr_cont(" are going to be killed due to memory.oom.group set\n");
1995}
1996
1997/**
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04001998 * folio_memcg_lock - Bind a folio to its memcg.
1999 * @folio: The folio.
KAMEZAWA Hiroyuki32047e22010-10-27 15:33:40 -07002000 *
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002001 * This function prevents unlocked LRU folios from being moved to
Johannes Weiner739f79f2017-08-18 15:15:48 -07002002 * another cgroup.
2003 *
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002004 * It ensures lifetime of the bound memcg. The caller is responsible
2005 * for the lifetime of the folio.
Balbir Singhd69b0422009-06-17 16:26:34 -07002006 */
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002007void folio_memcg_lock(struct folio *folio)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002008{
2009 struct mem_cgroup *memcg;
Johannes Weiner6de22612015-02-11 15:25:01 -08002010 unsigned long flags;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002011
Johannes Weiner6de22612015-02-11 15:25:01 -08002012 /*
2013 * The RCU lock is held throughout the transaction. The fast
2014 * path can get away without acquiring the memcg->move_lock
2015 * because page moving starts with an RCU grace period.
Johannes Weiner739f79f2017-08-18 15:15:48 -07002016 */
Johannes Weinerd7365e72014-10-29 14:50:48 -07002017 rcu_read_lock();
2018
2019 if (mem_cgroup_disabled())
Johannes Weiner1c824a62021-04-29 22:55:32 -07002020 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002021again:
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002022 memcg = folio_memcg(folio);
Johannes Weiner29833312014-12-10 15:44:02 -08002023 if (unlikely(!memcg))
Johannes Weiner1c824a62021-04-29 22:55:32 -07002024 return;
Johannes Weinerd7365e72014-10-29 14:50:48 -07002025
Alex Shi20ad50d2020-12-15 12:33:51 -08002026#ifdef CONFIG_PROVE_LOCKING
2027 local_irq_save(flags);
2028 might_lock(&memcg->move_lock);
2029 local_irq_restore(flags);
2030#endif
2031
Qiang Huangbdcbb652014-06-04 16:08:21 -07002032 if (atomic_read(&memcg->moving_account) <= 0)
Johannes Weiner1c824a62021-04-29 22:55:32 -07002033 return;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002034
Johannes Weiner6de22612015-02-11 15:25:01 -08002035 spin_lock_irqsave(&memcg->move_lock, flags);
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002036 if (memcg != folio_memcg(folio)) {
Johannes Weiner6de22612015-02-11 15:25:01 -08002037 spin_unlock_irqrestore(&memcg->move_lock, flags);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002038 goto again;
2039 }
Johannes Weiner6de22612015-02-11 15:25:01 -08002040
2041 /*
Johannes Weiner1c824a62021-04-29 22:55:32 -07002042 * When charge migration first begins, we can have multiple
2043 * critical sections holding the fast-path RCU lock and one
2044 * holding the slowpath move_lock. Track the task who has the
2045 * move_lock for unlock_page_memcg().
Johannes Weiner6de22612015-02-11 15:25:01 -08002046 */
2047 memcg->move_lock_task = current;
2048 memcg->move_lock_flags = flags;
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002049}
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002050
2051void lock_page_memcg(struct page *page)
2052{
2053 folio_memcg_lock(page_folio(page));
2054}
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002055
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002056static void __folio_memcg_unlock(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002057{
Johannes Weiner6de22612015-02-11 15:25:01 -08002058 if (memcg && memcg->move_lock_task == current) {
2059 unsigned long flags = memcg->move_lock_flags;
2060
2061 memcg->move_lock_task = NULL;
2062 memcg->move_lock_flags = 0;
2063
2064 spin_unlock_irqrestore(&memcg->move_lock, flags);
2065 }
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002066
Johannes Weinerd7365e72014-10-29 14:50:48 -07002067 rcu_read_unlock();
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002068}
Johannes Weiner739f79f2017-08-18 15:15:48 -07002069
2070/**
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002071 * folio_memcg_unlock - Release the binding between a folio and its memcg.
2072 * @folio: The folio.
2073 *
2074 * This releases the binding created by folio_memcg_lock(). This does
2075 * not change the accounting of this folio to its memcg, but it does
2076 * permit others to change it.
Johannes Weiner739f79f2017-08-18 15:15:48 -07002077 */
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002078void folio_memcg_unlock(struct folio *folio)
2079{
2080 __folio_memcg_unlock(folio_memcg(folio));
2081}
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002082
Johannes Weiner739f79f2017-08-18 15:15:48 -07002083void unlock_page_memcg(struct page *page)
2084{
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04002085 folio_memcg_unlock(page_folio(page));
Johannes Weiner739f79f2017-08-18 15:15:48 -07002086}
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07002087
Waiman Long55927112021-06-28 19:37:30 -07002088struct obj_stock {
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002089#ifdef CONFIG_MEMCG_KMEM
2090 struct obj_cgroup *cached_objcg;
Waiman Long68ac5b32021-06-28 19:37:23 -07002091 struct pglist_data *cached_pgdat;
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002092 unsigned int nr_bytes;
Waiman Long68ac5b32021-06-28 19:37:23 -07002093 int nr_slab_reclaimable_b;
2094 int nr_slab_unreclaimable_b;
Waiman Long55927112021-06-28 19:37:30 -07002095#else
2096 int dummy[0];
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002097#endif
Waiman Long55927112021-06-28 19:37:30 -07002098};
2099
2100struct memcg_stock_pcp {
2101 struct mem_cgroup *cached; /* this never be root cgroup */
2102 unsigned int nr_pages;
2103 struct obj_stock task_obj;
2104 struct obj_stock irq_obj;
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002105
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002106 struct work_struct work;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002107 unsigned long flags;
Kirill A. Shutemova0db00f2012-05-29 15:06:56 -07002108#define FLUSHING_CACHED_CHARGE 0
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002109};
2110static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
Michal Hocko9f50fad2011-08-09 11:56:26 +02002111static DEFINE_MUTEX(percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002112
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002113#ifdef CONFIG_MEMCG_KMEM
Waiman Long55927112021-06-28 19:37:30 -07002114static void drain_obj_stock(struct obj_stock *stock);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002115static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2116 struct mem_cgroup *root_memcg);
2117
2118#else
Waiman Long55927112021-06-28 19:37:30 -07002119static inline void drain_obj_stock(struct obj_stock *stock)
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002120{
2121}
2122static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2123 struct mem_cgroup *root_memcg)
2124{
2125 return false;
2126}
2127#endif
2128
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002129/**
2130 * consume_stock: Try to consume stocked charge on this cpu.
2131 * @memcg: memcg to consume from.
2132 * @nr_pages: how many pages to charge.
2133 *
2134 * The charges will only happen if @memcg matches the current cpu's memcg
2135 * stock, and at least @nr_pages are available in that stock. Failure to
2136 * service an allocation will refill the stock.
2137 *
2138 * returns true if successful, false otherwise.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002139 */
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002140static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002141{
2142 struct memcg_stock_pcp *stock;
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002143 unsigned long flags;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002144 bool ret = false;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002145
Johannes Weinera983b5e2018-01-31 16:16:45 -08002146 if (nr_pages > MEMCG_CHARGE_BATCH)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002147 return ret;
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002148
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002149 local_irq_save(flags);
2150
2151 stock = this_cpu_ptr(&memcg_stock);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002152 if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
Suleiman Souhlala0956d52012-12-18 14:21:36 -08002153 stock->nr_pages -= nr_pages;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002154 ret = true;
2155 }
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002156
2157 local_irq_restore(flags);
2158
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002159 return ret;
2160}
2161
2162/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002163 * Returns stocks cached in percpu and reset cached information.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002164 */
2165static void drain_stock(struct memcg_stock_pcp *stock)
2166{
2167 struct mem_cgroup *old = stock->cached;
2168
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07002169 if (!old)
2170 return;
2171
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002172 if (stock->nr_pages) {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002173 page_counter_uncharge(&old->memory, stock->nr_pages);
Johannes Weiner7941d212016-01-14 15:21:23 -08002174 if (do_memsw_account())
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002175 page_counter_uncharge(&old->memsw, stock->nr_pages);
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002176 stock->nr_pages = 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002177 }
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07002178
2179 css_put(&old->css);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002180 stock->cached = NULL;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002181}
2182
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002183static void drain_local_stock(struct work_struct *dummy)
2184{
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002185 struct memcg_stock_pcp *stock;
2186 unsigned long flags;
2187
Michal Hocko72f01842017-10-03 16:14:53 -07002188 /*
Michal Hocko5c49cf92021-09-02 14:56:02 -07002189 * The only protection from cpu hotplug (memcg_hotplug_cpu_dead) vs.
2190 * drain_stock races is that we always operate on local CPU stock
2191 * here with IRQ disabled
Michal Hocko72f01842017-10-03 16:14:53 -07002192 */
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002193 local_irq_save(flags);
2194
2195 stock = this_cpu_ptr(&memcg_stock);
Waiman Long55927112021-06-28 19:37:30 -07002196 drain_obj_stock(&stock->irq_obj);
2197 if (in_task())
2198 drain_obj_stock(&stock->task_obj);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002199 drain_stock(stock);
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002200 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002201
2202 local_irq_restore(flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002203}
2204
2205/*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002206 * Cache charges(val) to local per_cpu area.
Greg Thelen320cc512010-03-15 15:27:28 +01002207 * This will be consumed by consume_stock() function, later.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002208 */
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002209static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002210{
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002211 struct memcg_stock_pcp *stock;
2212 unsigned long flags;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002213
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002214 local_irq_save(flags);
2215
2216 stock = this_cpu_ptr(&memcg_stock);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002217 if (stock->cached != memcg) { /* reset if necessary */
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002218 drain_stock(stock);
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07002219 css_get(&memcg->css);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002220 stock->cached = memcg;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002221 }
Johannes Weiner11c9ea42011-03-23 16:42:34 -07002222 stock->nr_pages += nr_pages;
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002223
Johannes Weinera983b5e2018-01-31 16:16:45 -08002224 if (stock->nr_pages > MEMCG_CHARGE_BATCH)
Roman Gushchin475d0482017-09-08 16:13:09 -07002225 drain_stock(stock);
2226
Johannes Weinerdb2ba40c2016-09-19 14:44:36 -07002227 local_irq_restore(flags);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002228}
2229
2230/*
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002231 * Drains all per-CPU charge caches for given root_memcg resp. subtree
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08002232 * of the hierarchy under it.
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002233 */
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08002234static void drain_all_stock(struct mem_cgroup *root_memcg)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002235{
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002236 int cpu, curcpu;
Michal Hockod38144b2011-07-26 16:08:28 -07002237
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08002238 /* If someone's already draining, avoid adding running more workers. */
2239 if (!mutex_trylock(&percpu_charge_mutex))
2240 return;
Michal Hocko72f01842017-10-03 16:14:53 -07002241 /*
2242 * Notify other cpus that system-wide "drain" is running
2243 * We do not care about races with the cpu hotplug because cpu down
2244 * as well as workers from this path always operate on the local
2245 * per-cpu data. CPU up doesn't touch memcg_stock at all.
2246 */
Johannes Weiner5af12d02011-08-25 15:59:07 -07002247 curcpu = get_cpu();
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002248 for_each_online_cpu(cpu) {
2249 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002250 struct mem_cgroup *memcg;
Roman Gushchine1a366b2019-09-23 15:34:58 -07002251 bool flush = false;
KAMEZAWA Hiroyuki26fe6162011-06-15 15:08:45 -07002252
Roman Gushchine1a366b2019-09-23 15:34:58 -07002253 rcu_read_lock();
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07002254 memcg = stock->cached;
Roman Gushchine1a366b2019-09-23 15:34:58 -07002255 if (memcg && stock->nr_pages &&
2256 mem_cgroup_is_descendant(memcg, root_memcg))
2257 flush = true;
Miaohe Lin27fb0952021-09-02 14:55:59 -07002258 else if (obj_stock_flush_required(stock, root_memcg))
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002259 flush = true;
Roman Gushchine1a366b2019-09-23 15:34:58 -07002260 rcu_read_unlock();
2261
2262 if (flush &&
2263 !test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
Michal Hockod1a05b62011-07-26 16:08:27 -07002264 if (cpu == curcpu)
2265 drain_local_stock(&stock->work);
2266 else
2267 schedule_work_on(cpu, &stock->work);
2268 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002269 }
Johannes Weiner5af12d02011-08-25 15:59:07 -07002270 put_cpu();
Michal Hocko9f50fad2011-08-09 11:56:26 +02002271 mutex_unlock(&percpu_charge_mutex);
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002272}
2273
Sebastian Andrzej Siewior308167f2016-11-03 15:49:59 +01002274static int memcg_hotplug_cpu_dead(unsigned int cpu)
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002275{
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002276 struct memcg_stock_pcp *stock;
2277
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002278 stock = &per_cpu(memcg_stock, cpu);
2279 drain_stock(stock);
Johannes Weinera983b5e2018-01-31 16:16:45 -08002280
Sebastian Andrzej Siewior308167f2016-11-03 15:49:59 +01002281 return 0;
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002282}
2283
Chris Downb3ff9292020-08-06 23:21:54 -07002284static unsigned long reclaim_high(struct mem_cgroup *memcg,
2285 unsigned int nr_pages,
2286 gfp_t gfp_mask)
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002287{
Chris Downb3ff9292020-08-06 23:21:54 -07002288 unsigned long nr_reclaimed = 0;
2289
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002290 do {
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002291 unsigned long pflags;
2292
Jakub Kicinskid1663a92020-06-01 21:49:49 -07002293 if (page_counter_read(&memcg->memory) <=
2294 READ_ONCE(memcg->memory.high))
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002295 continue;
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002296
Johannes Weinere27be242018-04-10 16:29:45 -07002297 memcg_memory_event(memcg, MEMCG_HIGH);
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002298
2299 psi_memstall_enter(&pflags);
Chris Downb3ff9292020-08-06 23:21:54 -07002300 nr_reclaimed += try_to_free_mem_cgroup_pages(memcg, nr_pages,
2301 gfp_mask, true);
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002302 psi_memstall_leave(&pflags);
Chris Down4bf17302020-04-06 20:03:30 -07002303 } while ((memcg = parent_mem_cgroup(memcg)) &&
2304 !mem_cgroup_is_root(memcg));
Chris Downb3ff9292020-08-06 23:21:54 -07002305
2306 return nr_reclaimed;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002307}
2308
2309static void high_work_func(struct work_struct *work)
2310{
2311 struct mem_cgroup *memcg;
2312
2313 memcg = container_of(work, struct mem_cgroup, high_work);
Johannes Weinera983b5e2018-01-31 16:16:45 -08002314 reclaim_high(memcg, MEMCG_CHARGE_BATCH, GFP_KERNEL);
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002315}
2316
Tejun Heob23afb92015-11-05 18:46:11 -08002317/*
Chris Down0e4b01d2019-09-23 15:34:55 -07002318 * Clamp the maximum sleep time per allocation batch to 2 seconds. This is
2319 * enough to still cause a significant slowdown in most cases, while still
2320 * allowing diagnostics and tracing to proceed without becoming stuck.
2321 */
2322#define MEMCG_MAX_HIGH_DELAY_JIFFIES (2UL*HZ)
2323
2324/*
2325 * When calculating the delay, we use these either side of the exponentiation to
2326 * maintain precision and scale to a reasonable number of jiffies (see the table
2327 * below.
2328 *
2329 * - MEMCG_DELAY_PRECISION_SHIFT: Extra precision bits while translating the
2330 * overage ratio to a delay.
Randy Dunlapac5ddd02020-08-11 18:33:02 -07002331 * - MEMCG_DELAY_SCALING_SHIFT: The number of bits to scale down the
Chris Down0e4b01d2019-09-23 15:34:55 -07002332 * proposed penalty in order to reduce to a reasonable number of jiffies, and
2333 * to produce a reasonable delay curve.
2334 *
2335 * MEMCG_DELAY_SCALING_SHIFT just happens to be a number that produces a
2336 * reasonable delay curve compared to precision-adjusted overage, not
2337 * penalising heavily at first, but still making sure that growth beyond the
2338 * limit penalises misbehaviour cgroups by slowing them down exponentially. For
2339 * example, with a high of 100 megabytes:
2340 *
2341 * +-------+------------------------+
2342 * | usage | time to allocate in ms |
2343 * +-------+------------------------+
2344 * | 100M | 0 |
2345 * | 101M | 6 |
2346 * | 102M | 25 |
2347 * | 103M | 57 |
2348 * | 104M | 102 |
2349 * | 105M | 159 |
2350 * | 106M | 230 |
2351 * | 107M | 313 |
2352 * | 108M | 409 |
2353 * | 109M | 518 |
2354 * | 110M | 639 |
2355 * | 111M | 774 |
2356 * | 112M | 921 |
2357 * | 113M | 1081 |
2358 * | 114M | 1254 |
2359 * | 115M | 1439 |
2360 * | 116M | 1638 |
2361 * | 117M | 1849 |
2362 * | 118M | 2000 |
2363 * | 119M | 2000 |
2364 * | 120M | 2000 |
2365 * +-------+------------------------+
2366 */
2367 #define MEMCG_DELAY_PRECISION_SHIFT 20
2368 #define MEMCG_DELAY_SCALING_SHIFT 14
2369
Jakub Kicinski8a5dbc62020-06-01 21:49:42 -07002370static u64 calculate_overage(unsigned long usage, unsigned long high)
2371{
2372 u64 overage;
2373
2374 if (usage <= high)
2375 return 0;
2376
2377 /*
2378 * Prevent division by 0 in overage calculation by acting as if
2379 * it was a threshold of 1 page
2380 */
2381 high = max(high, 1UL);
2382
2383 overage = usage - high;
2384 overage <<= MEMCG_DELAY_PRECISION_SHIFT;
2385 return div64_u64(overage, high);
2386}
2387
2388static u64 mem_find_max_overage(struct mem_cgroup *memcg)
2389{
2390 u64 overage, max_overage = 0;
2391
2392 do {
2393 overage = calculate_overage(page_counter_read(&memcg->memory),
Jakub Kicinskid1663a92020-06-01 21:49:49 -07002394 READ_ONCE(memcg->memory.high));
Jakub Kicinski8a5dbc62020-06-01 21:49:42 -07002395 max_overage = max(overage, max_overage);
2396 } while ((memcg = parent_mem_cgroup(memcg)) &&
2397 !mem_cgroup_is_root(memcg));
2398
2399 return max_overage;
2400}
2401
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07002402static u64 swap_find_max_overage(struct mem_cgroup *memcg)
2403{
2404 u64 overage, max_overage = 0;
2405
2406 do {
2407 overage = calculate_overage(page_counter_read(&memcg->swap),
2408 READ_ONCE(memcg->swap.high));
2409 if (overage)
2410 memcg_memory_event(memcg, MEMCG_SWAP_HIGH);
2411 max_overage = max(overage, max_overage);
2412 } while ((memcg = parent_mem_cgroup(memcg)) &&
2413 !mem_cgroup_is_root(memcg));
2414
2415 return max_overage;
2416}
2417
Chris Down0e4b01d2019-09-23 15:34:55 -07002418/*
Chris Downe26733e2020-03-21 18:22:23 -07002419 * Get the number of jiffies that we should penalise a mischievous cgroup which
2420 * is exceeding its memory.high by checking both it and its ancestors.
Tejun Heob23afb92015-11-05 18:46:11 -08002421 */
Chris Downe26733e2020-03-21 18:22:23 -07002422static unsigned long calculate_high_delay(struct mem_cgroup *memcg,
Jakub Kicinski8a5dbc62020-06-01 21:49:42 -07002423 unsigned int nr_pages,
2424 u64 max_overage)
Tejun Heob23afb92015-11-05 18:46:11 -08002425{
Chris Downe26733e2020-03-21 18:22:23 -07002426 unsigned long penalty_jiffies;
Chris Downe26733e2020-03-21 18:22:23 -07002427
2428 if (!max_overage)
2429 return 0;
Chris Down0e4b01d2019-09-23 15:34:55 -07002430
2431 /*
Chris Down0e4b01d2019-09-23 15:34:55 -07002432 * We use overage compared to memory.high to calculate the number of
2433 * jiffies to sleep (penalty_jiffies). Ideally this value should be
2434 * fairly lenient on small overages, and increasingly harsh when the
2435 * memcg in question makes it clear that it has no intention of stopping
2436 * its crazy behaviour, so we exponentially increase the delay based on
2437 * overage amount.
2438 */
Chris Downe26733e2020-03-21 18:22:23 -07002439 penalty_jiffies = max_overage * max_overage * HZ;
2440 penalty_jiffies >>= MEMCG_DELAY_PRECISION_SHIFT;
2441 penalty_jiffies >>= MEMCG_DELAY_SCALING_SHIFT;
Chris Down0e4b01d2019-09-23 15:34:55 -07002442
2443 /*
2444 * Factor in the task's own contribution to the overage, such that four
2445 * N-sized allocations are throttled approximately the same as one
2446 * 4N-sized allocation.
2447 *
2448 * MEMCG_CHARGE_BATCH pages is nominal, so work out how much smaller or
2449 * larger the current charge patch is than that.
2450 */
Jakub Kicinskiff144e62020-06-01 21:49:45 -07002451 return penalty_jiffies * nr_pages / MEMCG_CHARGE_BATCH;
Chris Downe26733e2020-03-21 18:22:23 -07002452}
2453
2454/*
2455 * Scheduled by try_charge() to be executed from the userland return path
2456 * and reclaims memory over the high limit.
2457 */
2458void mem_cgroup_handle_over_high(void)
2459{
2460 unsigned long penalty_jiffies;
2461 unsigned long pflags;
Chris Downb3ff9292020-08-06 23:21:54 -07002462 unsigned long nr_reclaimed;
Chris Downe26733e2020-03-21 18:22:23 -07002463 unsigned int nr_pages = current->memcg_nr_pages_over_high;
Chris Downd977aa92020-08-06 23:21:58 -07002464 int nr_retries = MAX_RECLAIM_RETRIES;
Chris Downe26733e2020-03-21 18:22:23 -07002465 struct mem_cgroup *memcg;
Chris Downb3ff9292020-08-06 23:21:54 -07002466 bool in_retry = false;
Chris Downe26733e2020-03-21 18:22:23 -07002467
2468 if (likely(!nr_pages))
2469 return;
2470
2471 memcg = get_mem_cgroup_from_mm(current->mm);
Chris Downe26733e2020-03-21 18:22:23 -07002472 current->memcg_nr_pages_over_high = 0;
2473
Chris Downb3ff9292020-08-06 23:21:54 -07002474retry_reclaim:
2475 /*
2476 * The allocating task should reclaim at least the batch size, but for
2477 * subsequent retries we only want to do what's necessary to prevent oom
2478 * or breaching resource isolation.
2479 *
2480 * This is distinct from memory.max or page allocator behaviour because
2481 * memory.high is currently batched, whereas memory.max and the page
2482 * allocator run every time an allocation is made.
2483 */
2484 nr_reclaimed = reclaim_high(memcg,
2485 in_retry ? SWAP_CLUSTER_MAX : nr_pages,
2486 GFP_KERNEL);
2487
Chris Downe26733e2020-03-21 18:22:23 -07002488 /*
2489 * memory.high is breached and reclaim is unable to keep up. Throttle
2490 * allocators proactively to slow down excessive growth.
2491 */
Jakub Kicinski8a5dbc62020-06-01 21:49:42 -07002492 penalty_jiffies = calculate_high_delay(memcg, nr_pages,
2493 mem_find_max_overage(memcg));
Chris Down0e4b01d2019-09-23 15:34:55 -07002494
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07002495 penalty_jiffies += calculate_high_delay(memcg, nr_pages,
2496 swap_find_max_overage(memcg));
2497
Chris Down0e4b01d2019-09-23 15:34:55 -07002498 /*
Jakub Kicinskiff144e62020-06-01 21:49:45 -07002499 * Clamp the max delay per usermode return so as to still keep the
2500 * application moving forwards and also permit diagnostics, albeit
2501 * extremely slowly.
2502 */
2503 penalty_jiffies = min(penalty_jiffies, MEMCG_MAX_HIGH_DELAY_JIFFIES);
2504
2505 /*
Chris Down0e4b01d2019-09-23 15:34:55 -07002506 * Don't sleep if the amount of jiffies this memcg owes us is so low
2507 * that it's not even worth doing, in an attempt to be nice to those who
2508 * go only a small amount over their memory.high value and maybe haven't
2509 * been aggressively reclaimed enough yet.
2510 */
2511 if (penalty_jiffies <= HZ / 100)
2512 goto out;
2513
2514 /*
Chris Downb3ff9292020-08-06 23:21:54 -07002515 * If reclaim is making forward progress but we're still over
2516 * memory.high, we want to encourage that rather than doing allocator
2517 * throttling.
2518 */
2519 if (nr_reclaimed || nr_retries--) {
2520 in_retry = true;
2521 goto retry_reclaim;
2522 }
2523
2524 /*
Chris Down0e4b01d2019-09-23 15:34:55 -07002525 * If we exit early, we're guaranteed to die (since
2526 * schedule_timeout_killable sets TASK_KILLABLE). This means we don't
2527 * need to account for any ill-begotten jiffies to pay them off later.
2528 */
2529 psi_memstall_enter(&pflags);
2530 schedule_timeout_killable(penalty_jiffies);
2531 psi_memstall_leave(&pflags);
2532
2533out:
2534 css_put(&memcg->css);
Tejun Heob23afb92015-11-05 18:46:11 -08002535}
2536
Muchun Songc5c8b162021-06-28 19:37:44 -07002537static int try_charge_memcg(struct mem_cgroup *memcg, gfp_t gfp_mask,
2538 unsigned int nr_pages)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002539{
Johannes Weinera983b5e2018-01-31 16:16:45 -08002540 unsigned int batch = max(MEMCG_CHARGE_BATCH, nr_pages);
Chris Downd977aa92020-08-06 23:21:58 -07002541 int nr_retries = MAX_RECLAIM_RETRIES;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002542 struct mem_cgroup *mem_over_limit;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002543 struct page_counter *counter;
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002544 enum oom_status oom_status;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002545 unsigned long nr_reclaimed;
Vasily Averina4ebf1b2021-11-05 13:38:09 -07002546 bool passed_oom = false;
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002547 bool may_swap = true;
2548 bool drained = false;
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002549 unsigned long pflags;
KAMEZAWA Hiroyukia636b322009-01-07 18:08:08 -08002550
Johannes Weiner6539cc02014-08-06 16:05:42 -07002551retry:
Michal Hockob6b6cc72014-04-07 15:37:44 -07002552 if (consume_stock(memcg, nr_pages))
Tejun Heo10d53c72015-11-05 18:46:17 -08002553 return 0;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002554
Johannes Weiner7941d212016-01-14 15:21:23 -08002555 if (!do_memsw_account() ||
Johannes Weiner6071ca52015-11-05 18:50:26 -08002556 page_counter_try_charge(&memcg->memsw, batch, &counter)) {
2557 if (page_counter_try_charge(&memcg->memory, batch, &counter))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002558 goto done_restock;
Johannes Weiner7941d212016-01-14 15:21:23 -08002559 if (do_memsw_account())
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002560 page_counter_uncharge(&memcg->memsw, batch);
2561 mem_over_limit = mem_cgroup_from_counter(counter, memory);
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002562 } else {
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002563 mem_over_limit = mem_cgroup_from_counter(counter, memsw);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002564 may_swap = false;
Johannes Weiner3fbe7242014-10-09 15:28:54 -07002565 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002566
Johannes Weiner6539cc02014-08-06 16:05:42 -07002567 if (batch > nr_pages) {
2568 batch = nr_pages;
2569 goto retry;
2570 }
KAMEZAWA Hiroyukicdec2e42009-12-15 16:47:08 -08002571
Johannes Weiner06b078f2014-08-06 16:05:44 -07002572 /*
Johannes Weiner869712f2019-11-05 21:17:13 -08002573 * Memcg doesn't have a dedicated reserve for atomic
2574 * allocations. But like the global atomic pool, we need to
2575 * put the burden of reclaim on regular allocation requests
2576 * and let these go through as privileged allocations.
2577 */
2578 if (gfp_mask & __GFP_ATOMIC)
2579 goto force;
2580
2581 /*
Johannes Weiner89a28482016-10-27 17:46:56 -07002582 * Prevent unbounded recursion when reclaim operations need to
2583 * allocate memory. This might exceed the limits temporarily,
2584 * but we prefer facilitating memory reclaim and getting back
2585 * under the limit over triggering OOM kills in these cases.
2586 */
2587 if (unlikely(current->flags & PF_MEMALLOC))
2588 goto force;
2589
Johannes Weiner06b078f2014-08-06 16:05:44 -07002590 if (unlikely(task_in_memcg_oom(current)))
2591 goto nomem;
2592
Mel Gormand0164ad2015-11-06 16:28:21 -08002593 if (!gfpflags_allow_blocking(gfp_mask))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002594 goto nomem;
KAMEZAWA Hiroyuki4b534332010-08-10 18:02:57 -07002595
Johannes Weinere27be242018-04-10 16:29:45 -07002596 memcg_memory_event(mem_over_limit, MEMCG_MAX);
Johannes Weiner241994ed2015-02-11 15:26:06 -08002597
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002598 psi_memstall_enter(&pflags);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002599 nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2600 gfp_mask, may_swap);
Johannes Weinere22c6ed2020-08-06 23:22:15 -07002601 psi_memstall_leave(&pflags);
Johannes Weiner6539cc02014-08-06 16:05:42 -07002602
Johannes Weiner61e02c72014-08-06 16:08:16 -07002603 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
Johannes Weiner6539cc02014-08-06 16:05:42 -07002604 goto retry;
Johannes Weiner28c34c22014-08-06 16:05:47 -07002605
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002606 if (!drained) {
Johannes Weiner6d3d6aa2014-12-10 15:42:50 -08002607 drain_all_stock(mem_over_limit);
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002608 drained = true;
2609 goto retry;
2610 }
2611
Johannes Weiner28c34c22014-08-06 16:05:47 -07002612 if (gfp_mask & __GFP_NORETRY)
2613 goto nomem;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002614 /*
2615 * Even though the limit is exceeded at this point, reclaim
2616 * may have been able to free some pages. Retry the charge
2617 * before killing the task.
2618 *
2619 * Only for regular pages, though: huge pages are rather
2620 * unlikely to succeed so close to the limit, and we fall back
2621 * to regular pages anyway in case of failure.
2622 */
Johannes Weiner61e02c72014-08-06 16:08:16 -07002623 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
Johannes Weiner6539cc02014-08-06 16:05:42 -07002624 goto retry;
2625 /*
2626 * At task move, charge accounts can be doubly counted. So, it's
2627 * better to wait until the end of task_move if something is going on.
2628 */
2629 if (mem_cgroup_wait_acct_move(mem_over_limit))
2630 goto retry;
2631
Johannes Weiner9b130612014-08-06 16:05:51 -07002632 if (nr_retries--)
2633 goto retry;
2634
Shakeel Butt38d38492019-07-11 20:55:48 -07002635 if (gfp_mask & __GFP_RETRY_MAYFAIL)
Michal Hocko29ef6802018-08-17 15:47:11 -07002636 goto nomem;
2637
Vasily Averina4ebf1b2021-11-05 13:38:09 -07002638 /* Avoid endless loop for tasks bypassed by the oom killer */
2639 if (passed_oom && task_is_dying())
2640 goto nomem;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002641
Michal Hocko29ef6802018-08-17 15:47:11 -07002642 /*
2643 * keep retrying as long as the memcg oom killer is able to make
2644 * a forward progress or bypass the charge if the oom killer
2645 * couldn't make any progress.
2646 */
2647 oom_status = mem_cgroup_oom(mem_over_limit, gfp_mask,
Jerome Marchand3608de02015-11-05 18:47:29 -08002648 get_order(nr_pages * PAGE_SIZE));
Vasily Averina4ebf1b2021-11-05 13:38:09 -07002649 if (oom_status == OOM_SUCCESS) {
2650 passed_oom = true;
Chris Downd977aa92020-08-06 23:21:58 -07002651 nr_retries = MAX_RECLAIM_RETRIES;
Michal Hocko29ef6802018-08-17 15:47:11 -07002652 goto retry;
Michal Hocko29ef6802018-08-17 15:47:11 -07002653 }
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002654nomem:
Johannes Weiner6d1fdc42014-04-07 15:37:45 -07002655 if (!(gfp_mask & __GFP_NOFAIL))
Johannes Weiner3168ecb2013-10-31 16:34:13 -07002656 return -ENOMEM;
Tejun Heo10d53c72015-11-05 18:46:17 -08002657force:
2658 /*
2659 * The allocation either can't fail or will lead to more memory
2660 * being freed very soon. Allow memory usage go over the limit
2661 * temporarily by force charging it.
2662 */
2663 page_counter_charge(&memcg->memory, nr_pages);
Johannes Weiner7941d212016-01-14 15:21:23 -08002664 if (do_memsw_account())
Tejun Heo10d53c72015-11-05 18:46:17 -08002665 page_counter_charge(&memcg->memsw, nr_pages);
Tejun Heo10d53c72015-11-05 18:46:17 -08002666
2667 return 0;
Johannes Weiner6539cc02014-08-06 16:05:42 -07002668
2669done_restock:
2670 if (batch > nr_pages)
2671 refill_stock(memcg, batch - nr_pages);
Tejun Heob23afb92015-11-05 18:46:11 -08002672
Johannes Weiner241994ed2015-02-11 15:26:06 -08002673 /*
Tejun Heob23afb92015-11-05 18:46:11 -08002674 * If the hierarchy is above the normal consumption range, schedule
2675 * reclaim on returning to userland. We can perform reclaim here
Mel Gorman71baba42015-11-06 16:28:28 -08002676 * if __GFP_RECLAIM but let's always punt for simplicity and so that
Tejun Heob23afb92015-11-05 18:46:11 -08002677 * GFP_KERNEL can consistently be used during reclaim. @memcg is
2678 * not recorded as it most likely matches current's and won't
2679 * change in the meantime. As high limit is checked again before
2680 * reclaim, the cost of mismatch is negligible.
Johannes Weiner241994ed2015-02-11 15:26:06 -08002681 */
2682 do {
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07002683 bool mem_high, swap_high;
2684
2685 mem_high = page_counter_read(&memcg->memory) >
2686 READ_ONCE(memcg->memory.high);
2687 swap_high = page_counter_read(&memcg->swap) >
2688 READ_ONCE(memcg->swap.high);
2689
2690 /* Don't bother a random interrupted task */
2691 if (in_interrupt()) {
2692 if (mem_high) {
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08002693 schedule_work(&memcg->high_work);
2694 break;
2695 }
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07002696 continue;
2697 }
2698
2699 if (mem_high || swap_high) {
2700 /*
2701 * The allocating tasks in this cgroup will need to do
2702 * reclaim or be throttled to prevent further growth
2703 * of the memory or swap footprints.
2704 *
2705 * Target some best-effort fairness between the tasks,
2706 * and distribute reclaim work and delay penalties
2707 * based on how much each task is actually allocating.
2708 */
Vladimir Davydov9516a182015-12-11 13:40:24 -08002709 current->memcg_nr_pages_over_high += batch;
Tejun Heob23afb92015-11-05 18:46:11 -08002710 set_notify_resume(current);
2711 break;
2712 }
Johannes Weiner241994ed2015-02-11 15:26:06 -08002713 } while ((memcg = parent_mem_cgroup(memcg)));
Tejun Heo10d53c72015-11-05 18:46:17 -08002714
2715 return 0;
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -08002716}
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002717
Muchun Songc5c8b162021-06-28 19:37:44 -07002718static inline int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
2719 unsigned int nr_pages)
2720{
2721 if (mem_cgroup_is_root(memcg))
2722 return 0;
2723
2724 return try_charge_memcg(memcg, gfp_mask, nr_pages);
2725}
2726
Shakeel Butt58056f72021-11-05 13:37:44 -07002727static inline void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
Daisuke Nishimuraa3032a22009-12-15 16:47:10 -08002728{
Johannes Weinerce00a962014-09-05 08:43:57 -04002729 if (mem_cgroup_is_root(memcg))
2730 return;
2731
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002732 page_counter_uncharge(&memcg->memory, nr_pages);
Johannes Weiner7941d212016-01-14 15:21:23 -08002733 if (do_memsw_account())
Johannes Weiner3e32cb22014-12-10 15:42:31 -08002734 page_counter_uncharge(&memcg->memsw, nr_pages);
KAMEZAWA Hiroyukid01dd172012-05-29 15:07:03 -07002735}
2736
Matthew Wilcox (Oracle)118f2872021-04-29 14:07:12 -04002737static void commit_charge(struct folio *folio, struct mem_cgroup *memcg)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002738{
Matthew Wilcox (Oracle)118f2872021-04-29 14:07:12 -04002739 VM_BUG_ON_FOLIO(folio_memcg(folio), folio);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002740 /*
Alex Shia5eb0112020-12-14 19:06:42 -08002741 * Any of the following ensures page's memcg stability:
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002742 *
Johannes Weinera0b5b412020-06-03 16:02:27 -07002743 * - the page lock
2744 * - LRU isolation
2745 * - lock_page_memcg()
2746 * - exclusive reference
Johannes Weiner0a31bc92014-08-08 14:19:22 -07002747 */
Matthew Wilcox (Oracle)118f2872021-04-29 14:07:12 -04002748 folio->memcg_data = (unsigned long)memcg;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08002749}
2750
Muchun Songe74d2252021-04-29 22:56:42 -07002751static struct mem_cgroup *get_mem_cgroup_from_objcg(struct obj_cgroup *objcg)
2752{
2753 struct mem_cgroup *memcg;
2754
2755 rcu_read_lock();
2756retry:
2757 memcg = obj_cgroup_memcg(objcg);
2758 if (unlikely(!css_tryget(&memcg->css)))
2759 goto retry;
2760 rcu_read_unlock();
2761
2762 return memcg;
2763}
2764
Kirill Tkhai84c07d12018-08-17 15:47:25 -07002765#ifdef CONFIG_MEMCG_KMEM
Waiman Long41eb5df2021-06-28 19:37:34 -07002766/*
2767 * The allocated objcg pointers array is not accounted directly.
2768 * Moreover, it should not come from DMA buffer and is not readily
2769 * reclaimable. So those GFP bits should be masked off.
2770 */
2771#define OBJCGS_CLEAR_MASK (__GFP_DMA | __GFP_RECLAIMABLE | __GFP_ACCOUNT)
2772
Waiman Longa7ebf562021-12-10 14:47:05 -08002773/*
2774 * Most kmem_cache_alloc() calls are from user context. The irq disable/enable
2775 * sequence used in this case to access content from object stock is slow.
2776 * To optimize for user context access, there are now two object stocks for
2777 * task context and interrupt context access respectively.
2778 *
2779 * The task context object stock can be accessed by disabling preemption only
2780 * which is cheap in non-preempt kernel. The interrupt context object stock
2781 * can only be accessed after disabling interrupt. User context code can
2782 * access interrupt object stock, but not vice versa.
2783 */
2784static inline struct obj_stock *get_obj_stock(unsigned long *pflags)
2785{
2786 struct memcg_stock_pcp *stock;
2787
2788 if (likely(in_task())) {
2789 *pflags = 0UL;
2790 preempt_disable();
2791 stock = this_cpu_ptr(&memcg_stock);
2792 return &stock->task_obj;
2793 }
2794
2795 local_irq_save(*pflags);
2796 stock = this_cpu_ptr(&memcg_stock);
2797 return &stock->irq_obj;
2798}
2799
2800static inline void put_obj_stock(unsigned long flags)
2801{
2802 if (likely(in_task()))
2803 preempt_enable();
2804 else
2805 local_irq_restore(flags);
2806}
2807
2808/*
2809 * mod_objcg_mlstate() may be called with irq enabled, so
2810 * mod_memcg_lruvec_state() should be used.
2811 */
2812static inline void mod_objcg_mlstate(struct obj_cgroup *objcg,
2813 struct pglist_data *pgdat,
2814 enum node_stat_item idx, int nr)
2815{
2816 struct mem_cgroup *memcg;
2817 struct lruvec *lruvec;
2818
2819 rcu_read_lock();
2820 memcg = obj_cgroup_memcg(objcg);
2821 lruvec = mem_cgroup_lruvec(memcg, pgdat);
2822 mod_memcg_lruvec_state(lruvec, idx, nr);
2823 rcu_read_unlock();
2824}
2825
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002826int memcg_alloc_slab_cgroups(struct slab *slab, struct kmem_cache *s,
2827 gfp_t gfp, bool new_slab)
Roman Gushchin10befea2020-08-06 23:21:27 -07002828{
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002829 unsigned int objects = objs_per_slab(s, slab);
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002830 unsigned long memcg_data;
Roman Gushchin10befea2020-08-06 23:21:27 -07002831 void *vec;
2832
Waiman Long41eb5df2021-06-28 19:37:34 -07002833 gfp &= ~OBJCGS_CLEAR_MASK;
Roman Gushchin10befea2020-08-06 23:21:27 -07002834 vec = kcalloc_node(objects, sizeof(struct obj_cgroup *), gfp,
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002835 slab_nid(slab));
Roman Gushchin10befea2020-08-06 23:21:27 -07002836 if (!vec)
2837 return -ENOMEM;
2838
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002839 memcg_data = (unsigned long) vec | MEMCG_DATA_OBJCGS;
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002840 if (new_slab) {
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002841 /*
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002842 * If the slab is brand new and nobody can yet access its
2843 * memcg_data, no synchronization is required and memcg_data can
2844 * be simply assigned.
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002845 */
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002846 slab->memcg_data = memcg_data;
2847 } else if (cmpxchg(&slab->memcg_data, 0, memcg_data)) {
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002848 /*
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002849 * If the slab is already in use, somebody can allocate and
2850 * assign obj_cgroups in parallel. In this case the existing
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002851 * objcg vector should be reused.
2852 */
Roman Gushchin10befea2020-08-06 23:21:27 -07002853 kfree(vec);
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002854 return 0;
2855 }
Roman Gushchin10befea2020-08-06 23:21:27 -07002856
Roman Gushchin2e9bd482021-02-24 12:03:11 -08002857 kmemleak_not_leak(vec);
Roman Gushchin10befea2020-08-06 23:21:27 -07002858 return 0;
2859}
2860
Roman Gushchin8380ce42020-03-28 19:17:25 -07002861/*
2862 * Returns a pointer to the memory cgroup to which the kernel object is charged.
2863 *
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08002864 * A passed kernel object can be a slab object or a generic kernel page, so
2865 * different mechanisms for getting the memory cgroup pointer should be used.
2866 * In certain cases (e.g. kernel stacks or large kmallocs with SLUB) the caller
2867 * can not know for sure how the kernel object is implemented.
2868 * mem_cgroup_from_obj() can be safely used in such cases.
2869 *
Roman Gushchin8380ce42020-03-28 19:17:25 -07002870 * The caller must ensure the memcg lifetime, e.g. by taking rcu_read_lock(),
2871 * cgroup_mutex, etc.
2872 */
2873struct mem_cgroup *mem_cgroup_from_obj(void *p)
2874{
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002875 struct folio *folio;
Roman Gushchin8380ce42020-03-28 19:17:25 -07002876
2877 if (mem_cgroup_disabled())
2878 return NULL;
2879
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002880 folio = virt_to_folio(p);
Roman Gushchin8380ce42020-03-28 19:17:25 -07002881
2882 /*
Roman Gushchin98556092020-08-06 23:21:10 -07002883 * Slab objects are accounted individually, not per-page.
2884 * Memcg membership data for each individual object is saved in
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002885 * slab->memcg_data.
Roman Gushchin8380ce42020-03-28 19:17:25 -07002886 */
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002887 if (folio_test_slab(folio)) {
2888 struct obj_cgroup **objcgs;
2889 struct slab *slab;
Roman Gushchin98556092020-08-06 23:21:10 -07002890 unsigned int off;
2891
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002892 slab = folio_slab(folio);
2893 objcgs = slab_objcgs(slab);
2894 if (!objcgs)
2895 return NULL;
2896
2897 off = obj_to_index(slab->slab_cache, slab, p);
2898 if (objcgs[off])
2899 return obj_cgroup_memcg(objcgs[off]);
Roman Gushchin10befea2020-08-06 23:21:27 -07002900
2901 return NULL;
Roman Gushchin98556092020-08-06 23:21:10 -07002902 }
Roman Gushchin8380ce42020-03-28 19:17:25 -07002903
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08002904 /*
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002905 * page_memcg_check() is used here, because in theory we can encounter
2906 * a folio where the slab flag has been cleared already, but
2907 * slab->memcg_data has not been freed yet
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08002908 * page_memcg_check(page) will guarantee that a proper memory
2909 * cgroup pointer or NULL will be returned.
2910 */
Vlastimil Babka4b5f8d9a2021-11-02 22:42:04 +01002911 return page_memcg_check(folio_page(folio, 0));
Roman Gushchin8380ce42020-03-28 19:17:25 -07002912}
2913
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002914__always_inline struct obj_cgroup *get_obj_cgroup_from_current(void)
2915{
2916 struct obj_cgroup *objcg = NULL;
2917 struct mem_cgroup *memcg;
2918
Roman Gushchin279c3392020-10-17 16:13:44 -07002919 if (memcg_kmem_bypass())
2920 return NULL;
2921
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002922 rcu_read_lock();
Roman Gushchin37d59852020-10-17 16:13:50 -07002923 if (unlikely(active_memcg()))
2924 memcg = active_memcg();
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002925 else
2926 memcg = mem_cgroup_from_task(current);
2927
2928 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
2929 objcg = rcu_dereference(memcg->objcg);
2930 if (objcg && obj_cgroup_tryget(objcg))
2931 break;
Muchun Song2f7659a2020-12-14 19:06:31 -08002932 objcg = NULL;
Roman Gushchinbf4f0592020-08-06 23:20:49 -07002933 }
2934 rcu_read_unlock();
2935
2936 return objcg;
2937}
2938
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002939static int memcg_alloc_cache_id(void)
Glauber Costa55007d82012-12-18 14:22:38 -08002940{
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002941 int id, size;
2942 int err;
Glauber Costa55007d82012-12-18 14:22:38 -08002943
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002944 id = ida_simple_get(&memcg_cache_ida,
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002945 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2946 if (id < 0)
2947 return id;
2948
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002949 if (id < memcg_nr_cache_ids)
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002950 return id;
2951
2952 /*
2953 * There's no space for the new id in memcg_caches arrays,
2954 * so we have to grow them.
2955 */
Vladimir Davydov05257a12015-02-12 14:59:01 -08002956 down_write(&memcg_cache_ids_sem);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002957
2958 size = 2 * (id + 1);
Glauber Costa55007d82012-12-18 14:22:38 -08002959 if (size < MEMCG_CACHES_MIN_SIZE)
2960 size = MEMCG_CACHES_MIN_SIZE;
2961 else if (size > MEMCG_CACHES_MAX_SIZE)
2962 size = MEMCG_CACHES_MAX_SIZE;
2963
Roman Gushchin98556092020-08-06 23:21:10 -07002964 err = memcg_update_all_list_lrus(size);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -08002965 if (!err)
Vladimir Davydov05257a12015-02-12 14:59:01 -08002966 memcg_nr_cache_ids = size;
2967
2968 up_write(&memcg_cache_ids_sem);
2969
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002970 if (err) {
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002971 ida_simple_remove(&memcg_cache_ida, id);
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07002972 return err;
2973 }
2974 return id;
2975}
2976
2977static void memcg_free_cache_id(int id)
2978{
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -08002979 ida_simple_remove(&memcg_cache_ida, id);
Glauber Costa55007d82012-12-18 14:22:38 -08002980}
2981
Muchun Songf1286fa2021-04-29 22:56:55 -07002982/*
2983 * obj_cgroup_uncharge_pages: uncharge a number of kernel pages from a objcg
2984 * @objcg: object cgroup to uncharge
2985 * @nr_pages: number of pages to uncharge
2986 */
Muchun Songe74d2252021-04-29 22:56:42 -07002987static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
2988 unsigned int nr_pages)
2989{
2990 struct mem_cgroup *memcg;
2991
2992 memcg = get_mem_cgroup_from_objcg(objcg);
Muchun Songf1286fa2021-04-29 22:56:55 -07002993
2994 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
2995 page_counter_uncharge(&memcg->kmem, nr_pages);
2996 refill_stock(memcg, nr_pages);
2997
Muchun Songe74d2252021-04-29 22:56:42 -07002998 css_put(&memcg->css);
2999}
3000
Muchun Songf1286fa2021-04-29 22:56:55 -07003001/*
3002 * obj_cgroup_charge_pages: charge a number of kernel pages to a objcg
3003 * @objcg: object cgroup to charge
Vladimir Davydov45264772016-07-26 15:24:21 -07003004 * @gfp: reclaim mode
Roman Gushchin92d0510c2020-04-01 21:06:49 -07003005 * @nr_pages: number of pages to charge
Vladimir Davydov45264772016-07-26 15:24:21 -07003006 *
3007 * Returns 0 on success, an error code on failure.
3008 */
Muchun Songf1286fa2021-04-29 22:56:55 -07003009static int obj_cgroup_charge_pages(struct obj_cgroup *objcg, gfp_t gfp,
3010 unsigned int nr_pages)
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08003011{
Muchun Songf1286fa2021-04-29 22:56:55 -07003012 struct mem_cgroup *memcg;
Johannes Weiner6071ca52015-11-05 18:50:26 -08003013 int ret;
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08003014
Muchun Songf1286fa2021-04-29 22:56:55 -07003015 memcg = get_mem_cgroup_from_objcg(objcg);
3016
Muchun Songc5c8b162021-06-28 19:37:44 -07003017 ret = try_charge_memcg(memcg, gfp, nr_pages);
Johannes Weiner52c29b02016-01-20 15:02:35 -08003018 if (ret)
Muchun Songf1286fa2021-04-29 22:56:55 -07003019 goto out;
Johannes Weiner52c29b02016-01-20 15:02:35 -08003020
Shakeel Butt58056f72021-11-05 13:37:44 -07003021 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
3022 page_counter_charge(&memcg->kmem, nr_pages);
Muchun Songf1286fa2021-04-29 22:56:55 -07003023out:
3024 css_put(&memcg->css);
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08003025
Muchun Songf1286fa2021-04-29 22:56:55 -07003026 return ret;
Roman Gushchin4b13f642020-04-01 21:06:56 -07003027}
3028
3029/**
Roman Gushchinf4b00ea2020-04-01 21:06:46 -07003030 * __memcg_kmem_charge_page: charge a kmem page to the current memory cgroup
Vladimir Davydov45264772016-07-26 15:24:21 -07003031 * @page: page to charge
3032 * @gfp: reclaim mode
3033 * @order: allocation order
3034 *
3035 * Returns 0 on success, an error code on failure.
3036 */
Roman Gushchinf4b00ea2020-04-01 21:06:46 -07003037int __memcg_kmem_charge_page(struct page *page, gfp_t gfp, int order)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003038{
Muchun Songb4e0b682021-04-29 22:56:52 -07003039 struct obj_cgroup *objcg;
Vladimir Davydovfcff7d72016-03-17 14:17:29 -07003040 int ret = 0;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003041
Muchun Songb4e0b682021-04-29 22:56:52 -07003042 objcg = get_obj_cgroup_from_current();
3043 if (objcg) {
3044 ret = obj_cgroup_charge_pages(objcg, gfp, 1 << order);
Roman Gushchin4d96ba32019-07-11 20:56:31 -07003045 if (!ret) {
Muchun Songb4e0b682021-04-29 22:56:52 -07003046 page->memcg_data = (unsigned long)objcg |
Roman Gushchin18b2db32020-12-01 13:58:30 -08003047 MEMCG_DATA_KMEM;
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07003048 return 0;
Roman Gushchin4d96ba32019-07-11 20:56:31 -07003049 }
Muchun Songb4e0b682021-04-29 22:56:52 -07003050 obj_cgroup_put(objcg);
Vladimir Davydovc4159a72016-08-08 23:03:12 +03003051 }
Vladimir Davydovd05e83a2015-11-05 18:48:59 -08003052 return ret;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003053}
Roman Gushchin49a18ea2019-07-11 20:56:13 -07003054
3055/**
Roman Gushchinf4b00ea2020-04-01 21:06:46 -07003056 * __memcg_kmem_uncharge_page: uncharge a kmem page
Vladimir Davydov45264772016-07-26 15:24:21 -07003057 * @page: page to uncharge
3058 * @order: allocation order
3059 */
Roman Gushchinf4b00ea2020-04-01 21:06:46 -07003060void __memcg_kmem_uncharge_page(struct page *page, int order)
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003061{
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003062 struct folio *folio = page_folio(page);
Muchun Songb4e0b682021-04-29 22:56:52 -07003063 struct obj_cgroup *objcg;
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08003064 unsigned int nr_pages = 1 << order;
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003065
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003066 if (!folio_memcg_kmem(folio))
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003067 return;
3068
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003069 objcg = __folio_objcg(folio);
Muchun Songb4e0b682021-04-29 22:56:52 -07003070 obj_cgroup_uncharge_pages(objcg, nr_pages);
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003071 folio->memcg_data = 0;
Muchun Songb4e0b682021-04-29 22:56:52 -07003072 obj_cgroup_put(objcg);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -08003073}
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003074
Waiman Long68ac5b32021-06-28 19:37:23 -07003075void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat,
3076 enum node_stat_item idx, int nr)
3077{
Waiman Long68ac5b32021-06-28 19:37:23 -07003078 unsigned long flags;
Waiman Long55927112021-06-28 19:37:30 -07003079 struct obj_stock *stock = get_obj_stock(&flags);
Waiman Long68ac5b32021-06-28 19:37:23 -07003080 int *bytes;
3081
Waiman Long68ac5b32021-06-28 19:37:23 -07003082 /*
3083 * Save vmstat data in stock and skip vmstat array update unless
3084 * accumulating over a page of vmstat data or when pgdat or idx
3085 * changes.
3086 */
3087 if (stock->cached_objcg != objcg) {
3088 drain_obj_stock(stock);
3089 obj_cgroup_get(objcg);
3090 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3091 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3092 stock->cached_objcg = objcg;
3093 stock->cached_pgdat = pgdat;
3094 } else if (stock->cached_pgdat != pgdat) {
3095 /* Flush the existing cached vmstat data */
Waiman Long7fa0dac2021-08-13 16:54:41 -07003096 struct pglist_data *oldpg = stock->cached_pgdat;
3097
Waiman Long68ac5b32021-06-28 19:37:23 -07003098 if (stock->nr_slab_reclaimable_b) {
Waiman Long7fa0dac2021-08-13 16:54:41 -07003099 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_RECLAIMABLE_B,
Waiman Long68ac5b32021-06-28 19:37:23 -07003100 stock->nr_slab_reclaimable_b);
3101 stock->nr_slab_reclaimable_b = 0;
3102 }
3103 if (stock->nr_slab_unreclaimable_b) {
Waiman Long7fa0dac2021-08-13 16:54:41 -07003104 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_UNRECLAIMABLE_B,
Waiman Long68ac5b32021-06-28 19:37:23 -07003105 stock->nr_slab_unreclaimable_b);
3106 stock->nr_slab_unreclaimable_b = 0;
3107 }
3108 stock->cached_pgdat = pgdat;
3109 }
3110
3111 bytes = (idx == NR_SLAB_RECLAIMABLE_B) ? &stock->nr_slab_reclaimable_b
3112 : &stock->nr_slab_unreclaimable_b;
3113 /*
3114 * Even for large object >= PAGE_SIZE, the vmstat data will still be
3115 * cached locally at least once before pushing it out.
3116 */
3117 if (!*bytes) {
3118 *bytes = nr;
3119 nr = 0;
3120 } else {
3121 *bytes += nr;
3122 if (abs(*bytes) > PAGE_SIZE) {
3123 nr = *bytes;
3124 *bytes = 0;
3125 } else {
3126 nr = 0;
3127 }
3128 }
3129 if (nr)
3130 mod_objcg_mlstate(objcg, pgdat, idx, nr);
3131
Waiman Long55927112021-06-28 19:37:30 -07003132 put_obj_stock(flags);
Waiman Long68ac5b32021-06-28 19:37:23 -07003133}
3134
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003135static bool consume_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes)
3136{
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003137 unsigned long flags;
Waiman Long55927112021-06-28 19:37:30 -07003138 struct obj_stock *stock = get_obj_stock(&flags);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003139 bool ret = false;
3140
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003141 if (objcg == stock->cached_objcg && stock->nr_bytes >= nr_bytes) {
3142 stock->nr_bytes -= nr_bytes;
3143 ret = true;
3144 }
3145
Waiman Long55927112021-06-28 19:37:30 -07003146 put_obj_stock(flags);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003147
3148 return ret;
3149}
3150
Waiman Long55927112021-06-28 19:37:30 -07003151static void drain_obj_stock(struct obj_stock *stock)
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003152{
3153 struct obj_cgroup *old = stock->cached_objcg;
3154
3155 if (!old)
3156 return;
3157
3158 if (stock->nr_bytes) {
3159 unsigned int nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3160 unsigned int nr_bytes = stock->nr_bytes & (PAGE_SIZE - 1);
3161
Muchun Songe74d2252021-04-29 22:56:42 -07003162 if (nr_pages)
3163 obj_cgroup_uncharge_pages(old, nr_pages);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003164
3165 /*
3166 * The leftover is flushed to the centralized per-memcg value.
3167 * On the next attempt to refill obj stock it will be moved
3168 * to a per-cpu stock (probably, on an other CPU), see
3169 * refill_obj_stock().
3170 *
3171 * How often it's flushed is a trade-off between the memory
3172 * limit enforcement accuracy and potential CPU contention,
3173 * so it might be changed in the future.
3174 */
3175 atomic_add(nr_bytes, &old->nr_charged_bytes);
3176 stock->nr_bytes = 0;
3177 }
3178
Waiman Long68ac5b32021-06-28 19:37:23 -07003179 /*
3180 * Flush the vmstat data in current stock
3181 */
3182 if (stock->nr_slab_reclaimable_b || stock->nr_slab_unreclaimable_b) {
3183 if (stock->nr_slab_reclaimable_b) {
3184 mod_objcg_mlstate(old, stock->cached_pgdat,
3185 NR_SLAB_RECLAIMABLE_B,
3186 stock->nr_slab_reclaimable_b);
3187 stock->nr_slab_reclaimable_b = 0;
3188 }
3189 if (stock->nr_slab_unreclaimable_b) {
3190 mod_objcg_mlstate(old, stock->cached_pgdat,
3191 NR_SLAB_UNRECLAIMABLE_B,
3192 stock->nr_slab_unreclaimable_b);
3193 stock->nr_slab_unreclaimable_b = 0;
3194 }
3195 stock->cached_pgdat = NULL;
3196 }
3197
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003198 obj_cgroup_put(old);
3199 stock->cached_objcg = NULL;
3200}
3201
3202static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
3203 struct mem_cgroup *root_memcg)
3204{
3205 struct mem_cgroup *memcg;
3206
Waiman Long55927112021-06-28 19:37:30 -07003207 if (in_task() && stock->task_obj.cached_objcg) {
3208 memcg = obj_cgroup_memcg(stock->task_obj.cached_objcg);
3209 if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3210 return true;
3211 }
3212 if (stock->irq_obj.cached_objcg) {
3213 memcg = obj_cgroup_memcg(stock->irq_obj.cached_objcg);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003214 if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3215 return true;
3216 }
3217
3218 return false;
3219}
3220
Waiman Long5387c902021-06-28 19:37:27 -07003221static void refill_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes,
3222 bool allow_uncharge)
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003223{
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003224 unsigned long flags;
Waiman Long55927112021-06-28 19:37:30 -07003225 struct obj_stock *stock = get_obj_stock(&flags);
Waiman Long5387c902021-06-28 19:37:27 -07003226 unsigned int nr_pages = 0;
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003227
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003228 if (stock->cached_objcg != objcg) { /* reset if necessary */
3229 drain_obj_stock(stock);
3230 obj_cgroup_get(objcg);
3231 stock->cached_objcg = objcg;
Waiman Long5387c902021-06-28 19:37:27 -07003232 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3233 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3234 allow_uncharge = true; /* Allow uncharge when objcg changes */
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003235 }
3236 stock->nr_bytes += nr_bytes;
3237
Waiman Long5387c902021-06-28 19:37:27 -07003238 if (allow_uncharge && (stock->nr_bytes > PAGE_SIZE)) {
3239 nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3240 stock->nr_bytes &= (PAGE_SIZE - 1);
3241 }
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003242
Waiman Long55927112021-06-28 19:37:30 -07003243 put_obj_stock(flags);
Waiman Long5387c902021-06-28 19:37:27 -07003244
3245 if (nr_pages)
3246 obj_cgroup_uncharge_pages(objcg, nr_pages);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003247}
3248
3249int obj_cgroup_charge(struct obj_cgroup *objcg, gfp_t gfp, size_t size)
3250{
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003251 unsigned int nr_pages, nr_bytes;
3252 int ret;
3253
3254 if (consume_obj_stock(objcg, size))
3255 return 0;
3256
3257 /*
Waiman Long5387c902021-06-28 19:37:27 -07003258 * In theory, objcg->nr_charged_bytes can have enough
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003259 * pre-charged bytes to satisfy the allocation. However,
Waiman Long5387c902021-06-28 19:37:27 -07003260 * flushing objcg->nr_charged_bytes requires two atomic
3261 * operations, and objcg->nr_charged_bytes can't be big.
3262 * The shared objcg->nr_charged_bytes can also become a
3263 * performance bottleneck if all tasks of the same memcg are
3264 * trying to update it. So it's better to ignore it and try
3265 * grab some new pages. The stock's nr_bytes will be flushed to
3266 * objcg->nr_charged_bytes later on when objcg changes.
3267 *
3268 * The stock's nr_bytes may contain enough pre-charged bytes
3269 * to allow one less page from being charged, but we can't rely
3270 * on the pre-charged bytes not being changed outside of
3271 * consume_obj_stock() or refill_obj_stock(). So ignore those
3272 * pre-charged bytes as well when charging pages. To avoid a
3273 * page uncharge right after a page charge, we set the
3274 * allow_uncharge flag to false when calling refill_obj_stock()
3275 * to temporarily allow the pre-charged bytes to exceed the page
3276 * size limit. The maximum reachable value of the pre-charged
3277 * bytes is (sizeof(object) + PAGE_SIZE - 2) if there is no data
3278 * race.
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003279 */
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003280 nr_pages = size >> PAGE_SHIFT;
3281 nr_bytes = size & (PAGE_SIZE - 1);
3282
3283 if (nr_bytes)
3284 nr_pages += 1;
3285
Muchun Songe74d2252021-04-29 22:56:42 -07003286 ret = obj_cgroup_charge_pages(objcg, gfp, nr_pages);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003287 if (!ret && nr_bytes)
Waiman Long5387c902021-06-28 19:37:27 -07003288 refill_obj_stock(objcg, PAGE_SIZE - nr_bytes, false);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003289
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003290 return ret;
3291}
3292
3293void obj_cgroup_uncharge(struct obj_cgroup *objcg, size_t size)
3294{
Waiman Long5387c902021-06-28 19:37:27 -07003295 refill_obj_stock(objcg, size, true);
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003296}
3297
Kirill Tkhai84c07d12018-08-17 15:47:25 -07003298#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa7ae1e1d2012-12-18 14:21:56 -08003299
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003300/*
Zhou Guanghuibe6c8982021-03-12 21:08:30 -08003301 * Because page_memcg(head) is not set on tails, set it now.
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003302 */
Zhou Guanghuibe6c8982021-03-12 21:08:30 -08003303void split_page_memcg(struct page *head, unsigned int nr)
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003304{
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003305 struct folio *folio = page_folio(head);
3306 struct mem_cgroup *memcg = folio_memcg(folio);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08003307 int i;
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003308
Zhou Guanghuibe6c8982021-03-12 21:08:30 -08003309 if (mem_cgroup_disabled() || !memcg)
KAMEZAWA Hiroyuki3d37c4a2011-01-25 15:07:28 -08003310 return;
David Rientjesb070e652013-05-07 16:18:09 -07003311
Zhou Guanghuibe6c8982021-03-12 21:08:30 -08003312 for (i = 1; i < nr; i++)
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003313 folio_page(folio, i)->memcg_data = folio->memcg_data;
Muchun Songb4e0b682021-04-29 22:56:52 -07003314
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04003315 if (folio_memcg_kmem(folio))
3316 obj_cgroup_get_many(__folio_objcg(folio), nr - 1);
Muchun Songb4e0b682021-04-29 22:56:52 -07003317 else
3318 css_get_many(&memcg->css, nr - 1);
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003319}
KAMEZAWA Hiroyukica3e0212011-01-20 14:44:24 -08003320
Andrew Mortonc255a452012-07-31 16:43:02 -07003321#ifdef CONFIG_MEMCG_SWAP
Daisuke Nishimura02491442010-03-10 15:22:17 -08003322/**
3323 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3324 * @entry: swap entry to be moved
3325 * @from: mem_cgroup which the entry is moved from
3326 * @to: mem_cgroup which the entry is moved to
3327 *
3328 * It succeeds only when the swap_cgroup's record for this entry is the same
3329 * as the mem_cgroup's id of @from.
3330 *
3331 * Returns 0 on success, -EINVAL on failure.
3332 *
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003333 * The caller must have charged to @to, IOW, called page_counter_charge() about
Daisuke Nishimura02491442010-03-10 15:22:17 -08003334 * both res and memsw, and called css_get().
3335 */
3336static int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003337 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003338{
3339 unsigned short old_id, new_id;
3340
Li Zefan34c00c32013-09-23 16:56:01 +08003341 old_id = mem_cgroup_id(from);
3342 new_id = mem_cgroup_id(to);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003343
3344 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
Johannes Weinerc9019e92018-01-31 16:16:37 -08003345 mod_memcg_state(from, MEMCG_SWAP, -1);
3346 mod_memcg_state(to, MEMCG_SWAP, 1);
Daisuke Nishimura02491442010-03-10 15:22:17 -08003347 return 0;
3348 }
3349 return -EINVAL;
3350}
3351#else
3352static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
Hugh Dickinse91cbb42012-05-29 15:06:51 -07003353 struct mem_cgroup *from, struct mem_cgroup *to)
Daisuke Nishimura02491442010-03-10 15:22:17 -08003354{
3355 return -EINVAL;
3356}
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003357#endif
3358
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003359static DEFINE_MUTEX(memcg_max_mutex);
Daisuke Nishimuraf212ad72011-03-23 16:42:25 -07003360
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003361static int mem_cgroup_resize_max(struct mem_cgroup *memcg,
3362 unsigned long max, bool memsw)
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003363{
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003364 bool enlarge = false;
Shakeel Buttbb4a7ea2018-06-07 17:07:27 -07003365 bool drained = false;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003366 int ret;
Yu Zhaoc054a782018-01-31 16:20:02 -08003367 bool limits_invariant;
3368 struct page_counter *counter = memsw ? &memcg->memsw : &memcg->memory;
KAMEZAWA Hiroyuki81d39c22009-04-02 16:57:36 -07003369
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003370 do {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003371 if (signal_pending(current)) {
3372 ret = -EINTR;
3373 break;
3374 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003375
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003376 mutex_lock(&memcg_max_mutex);
Yu Zhaoc054a782018-01-31 16:20:02 -08003377 /*
3378 * Make sure that the new limit (memsw or memory limit) doesn't
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003379 * break our basic invariant rule memory.max <= memsw.max.
Yu Zhaoc054a782018-01-31 16:20:02 -08003380 */
Chris Down15b42562020-04-01 21:07:20 -07003381 limits_invariant = memsw ? max >= READ_ONCE(memcg->memory.max) :
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003382 max <= memcg->memsw.max;
Yu Zhaoc054a782018-01-31 16:20:02 -08003383 if (!limits_invariant) {
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003384 mutex_unlock(&memcg_max_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003385 ret = -EINVAL;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003386 break;
3387 }
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003388 if (max > counter->max)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003389 enlarge = true;
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003390 ret = page_counter_set_max(counter, max);
3391 mutex_unlock(&memcg_max_mutex);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003392
3393 if (!ret)
3394 break;
3395
Shakeel Buttbb4a7ea2018-06-07 17:07:27 -07003396 if (!drained) {
3397 drain_all_stock(memcg);
3398 drained = true;
3399 continue;
3400 }
3401
Andrey Ryabinin1ab5c052018-01-31 16:20:37 -08003402 if (!try_to_free_mem_cgroup_pages(memcg, 1,
3403 GFP_KERNEL, !memsw)) {
3404 ret = -EBUSY;
3405 break;
3406 }
3407 } while (true);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003408
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07003409 if (!ret && enlarge)
3410 memcg_oom_recover(memcg);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003411
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003412 return ret;
3413}
3414
Mel Gormanef8f2322016-07-28 15:46:05 -07003415unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
Andrew Morton0608f432013-09-24 15:27:41 -07003416 gfp_t gfp_mask,
3417 unsigned long *total_scanned)
3418{
3419 unsigned long nr_reclaimed = 0;
Mel Gormanef8f2322016-07-28 15:46:05 -07003420 struct mem_cgroup_per_node *mz, *next_mz = NULL;
Andrew Morton0608f432013-09-24 15:27:41 -07003421 unsigned long reclaimed;
3422 int loop = 0;
Mel Gormanef8f2322016-07-28 15:46:05 -07003423 struct mem_cgroup_tree_per_node *mctz;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003424 unsigned long excess;
Andrew Morton0608f432013-09-24 15:27:41 -07003425 unsigned long nr_scanned;
3426
3427 if (order > 0)
3428 return 0;
3429
Matthew Wilcox (Oracle)2ab082b2021-06-25 08:57:02 -04003430 mctz = soft_limit_tree.rb_tree_per_node[pgdat->node_id];
Michal Hockod6507ff2016-08-02 14:02:37 -07003431
3432 /*
3433 * Do not even bother to check the largest node if the root
3434 * is empty. Do it lockless to prevent lock bouncing. Races
3435 * are acceptable as soft limit is best effort anyway.
3436 */
Laurent Dufourbfc72282017-03-09 16:17:06 -08003437 if (!mctz || RB_EMPTY_ROOT(&mctz->rb_root))
Michal Hockod6507ff2016-08-02 14:02:37 -07003438 return 0;
3439
Andrew Morton0608f432013-09-24 15:27:41 -07003440 /*
3441 * This loop can run a while, specially if mem_cgroup's continuously
3442 * keep exceeding their soft limit and putting the system under
3443 * pressure
3444 */
3445 do {
3446 if (next_mz)
3447 mz = next_mz;
3448 else
3449 mz = mem_cgroup_largest_soft_limit_node(mctz);
3450 if (!mz)
3451 break;
3452
3453 nr_scanned = 0;
Mel Gormanef8f2322016-07-28 15:46:05 -07003454 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, pgdat,
Andrew Morton0608f432013-09-24 15:27:41 -07003455 gfp_mask, &nr_scanned);
3456 nr_reclaimed += reclaimed;
3457 *total_scanned += nr_scanned;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003458 spin_lock_irq(&mctz->lock);
Vladimir Davydovbc2f2e72014-12-10 15:43:40 -08003459 __mem_cgroup_remove_exceeded(mz, mctz);
Andrew Morton0608f432013-09-24 15:27:41 -07003460
3461 /*
3462 * If we failed to reclaim anything from this memory cgroup
3463 * it is time to move on to the next cgroup
3464 */
3465 next_mz = NULL;
Vladimir Davydovbc2f2e72014-12-10 15:43:40 -08003466 if (!reclaimed)
3467 next_mz = __mem_cgroup_largest_soft_limit_node(mctz);
3468
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003469 excess = soft_limit_excess(mz->memcg);
Andrew Morton0608f432013-09-24 15:27:41 -07003470 /*
3471 * One school of thought says that we should not add
3472 * back the node to the tree if reclaim returns 0.
3473 * But our reclaim could return 0, simply because due
3474 * to priority we are exposing a smaller subset of
3475 * memory to reclaim from. Consider this as a longer
3476 * term TODO.
3477 */
3478 /* If excess == 0, no tree ops */
Johannes Weinercf2c8122014-06-06 14:38:21 -07003479 __mem_cgroup_insert_exceeded(mz, mctz, excess);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07003480 spin_unlock_irq(&mctz->lock);
Andrew Morton0608f432013-09-24 15:27:41 -07003481 css_put(&mz->memcg->css);
3482 loop++;
3483 /*
3484 * Could not reclaim anything and there are no more
3485 * mem cgroups to try or we seem to be looping without
3486 * reclaiming anything.
3487 */
3488 if (!nr_reclaimed &&
3489 (next_mz == NULL ||
3490 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3491 break;
3492 } while (!nr_reclaimed);
3493 if (next_mz)
3494 css_put(&next_mz->memcg->css);
3495 return nr_reclaimed;
3496}
3497
Tejun Heoea280e72014-05-16 13:22:48 -04003498/*
Greg Thelen51038172016-05-20 16:58:18 -07003499 * Reclaims as many pages from the given memcg as possible.
Michal Hockoc26251f2012-10-26 13:37:28 +02003500 *
3501 * Caller is responsible for holding css reference for memcg.
3502 */
3503static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3504{
Chris Downd977aa92020-08-06 23:21:58 -07003505 int nr_retries = MAX_RECLAIM_RETRIES;
Michal Hockoc26251f2012-10-26 13:37:28 +02003506
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003507 /* we call try-to-free pages for make this cgroup empty */
3508 lru_add_drain_all();
Junaid Shahidd12c60f2018-06-07 17:07:31 -07003509
3510 drain_all_stock(memcg);
3511
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003512 /* try to free all pages in this cgroup */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003513 while (nr_retries && page_counter_read(&memcg->memory)) {
Michal Hockoc26251f2012-10-26 13:37:28 +02003514 if (signal_pending(current))
3515 return -EINTR;
3516
Mel Gorman69392a42021-11-05 13:42:32 -07003517 if (!try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true))
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003518 nr_retries--;
KAMEZAWA Hiroyukif817ed42009-01-07 18:07:53 -08003519 }
Michal Hockoab5196c2012-10-26 13:37:32 +02003520
3521 return 0;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -08003522}
3523
Tejun Heo6770c642014-05-13 12:16:21 -04003524static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3525 char *buf, size_t nbytes,
3526 loff_t off)
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003527{
Tejun Heo6770c642014-05-13 12:16:21 -04003528 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Michal Hockoc26251f2012-10-26 13:37:28 +02003529
Michal Hockod8423012012-10-26 13:37:29 +02003530 if (mem_cgroup_is_root(memcg))
3531 return -EINVAL;
Tejun Heo6770c642014-05-13 12:16:21 -04003532 return mem_cgroup_force_empty(memcg) ?: nbytes;
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08003533}
3534
Tejun Heo182446d2013-08-08 20:11:24 -04003535static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3536 struct cftype *cft)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003537{
Roman Gushchinbef86202020-12-14 19:06:49 -08003538 return 1;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003539}
3540
Tejun Heo182446d2013-08-08 20:11:24 -04003541static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3542 struct cftype *cft, u64 val)
Balbir Singh18f59ea2009-01-07 18:08:07 -08003543{
Roman Gushchinbef86202020-12-14 19:06:49 -08003544 if (val == 1)
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08003545 return 0;
Glauber Costa567fb432012-07-31 16:43:07 -07003546
Roman Gushchinbef86202020-12-14 19:06:49 -08003547 pr_warn_once("Non-hierarchical mode is deprecated. "
3548 "Please report your usecase to linux-mm@kvack.org if you "
3549 "depend on this functionality.\n");
Glauber Costa567fb432012-07-31 16:43:07 -07003550
Roman Gushchinbef86202020-12-14 19:06:49 -08003551 return -EINVAL;
Balbir Singh18f59ea2009-01-07 18:08:07 -08003552}
3553
Andrew Morton6f646152015-11-06 16:28:58 -08003554static unsigned long mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
Johannes Weinerce00a962014-09-05 08:43:57 -04003555{
Johannes Weiner42a30032019-05-14 15:47:12 -07003556 unsigned long val;
Johannes Weinerce00a962014-09-05 08:43:57 -04003557
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003558 if (mem_cgroup_is_root(memcg)) {
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07003559 mem_cgroup_flush_stats();
Johannes Weiner0d1c2072020-06-03 16:01:54 -07003560 val = memcg_page_state(memcg, NR_FILE_PAGES) +
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07003561 memcg_page_state(memcg, NR_ANON_MAPPED);
Johannes Weiner42a30032019-05-14 15:47:12 -07003562 if (swap)
3563 val += memcg_page_state(memcg, MEMCG_SWAP);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003564 } else {
Johannes Weinerce00a962014-09-05 08:43:57 -04003565 if (!swap)
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003566 val = page_counter_read(&memcg->memory);
Johannes Weinerce00a962014-09-05 08:43:57 -04003567 else
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003568 val = page_counter_read(&memcg->memsw);
Johannes Weinerce00a962014-09-05 08:43:57 -04003569 }
Michal Hockoc12176d2015-11-05 18:50:29 -08003570 return val;
Johannes Weinerce00a962014-09-05 08:43:57 -04003571}
3572
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003573enum {
3574 RES_USAGE,
3575 RES_LIMIT,
3576 RES_MAX_USAGE,
3577 RES_FAILCNT,
3578 RES_SOFT_LIMIT,
3579};
Johannes Weinerce00a962014-09-05 08:43:57 -04003580
Tejun Heo791badb2013-12-05 12:28:02 -05003581static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
Johannes Weiner05b84302014-08-06 16:05:59 -07003582 struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003583{
Tejun Heo182446d2013-08-08 20:11:24 -04003584 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003585 struct page_counter *counter;
Tejun Heoaf36f902012-04-01 12:09:55 -07003586
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003587 switch (MEMFILE_TYPE(cft->private)) {
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003588 case _MEM:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003589 counter = &memcg->memory;
Glauber Costa510fc4e2012-12-18 14:21:47 -08003590 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003591 case _MEMSWAP:
3592 counter = &memcg->memsw;
3593 break;
3594 case _KMEM:
3595 counter = &memcg->kmem;
3596 break;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003597 case _TCP:
Johannes Weiner0db15292016-01-20 15:02:50 -08003598 counter = &memcg->tcpmem;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003599 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003600 default:
3601 BUG();
3602 }
3603
3604 switch (MEMFILE_ATTR(cft->private)) {
3605 case RES_USAGE:
3606 if (counter == &memcg->memory)
Michal Hockoc12176d2015-11-05 18:50:29 -08003607 return (u64)mem_cgroup_usage(memcg, false) * PAGE_SIZE;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003608 if (counter == &memcg->memsw)
Michal Hockoc12176d2015-11-05 18:50:29 -08003609 return (u64)mem_cgroup_usage(memcg, true) * PAGE_SIZE;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003610 return (u64)page_counter_read(counter) * PAGE_SIZE;
3611 case RES_LIMIT:
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003612 return (u64)counter->max * PAGE_SIZE;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003613 case RES_MAX_USAGE:
3614 return (u64)counter->watermark * PAGE_SIZE;
3615 case RES_FAILCNT:
3616 return counter->failcnt;
3617 case RES_SOFT_LIMIT:
3618 return (u64)memcg->soft_limit * PAGE_SIZE;
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003619 default:
3620 BUG();
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003621 }
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003622}
Glauber Costa510fc4e2012-12-18 14:21:47 -08003623
Kirill Tkhai84c07d12018-08-17 15:47:25 -07003624#ifdef CONFIG_MEMCG_KMEM
Johannes Weiner567e9ab2016-01-20 15:02:24 -08003625static int memcg_online_kmem(struct mem_cgroup *memcg)
Vladimir Davydovd6441632014-01-23 15:53:09 -08003626{
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003627 struct obj_cgroup *objcg;
Vladimir Davydovd6441632014-01-23 15:53:09 -08003628 int memcg_id;
3629
Vladimir Davydovb313aee2016-03-17 14:18:27 -07003630 if (cgroup_memory_nokmem)
3631 return 0;
3632
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -08003633 BUG_ON(memcg->kmemcg_id >= 0);
Vladimir Davydovd6441632014-01-23 15:53:09 -08003634
Vladimir Davydovf3bb3042014-10-09 15:28:45 -07003635 memcg_id = memcg_alloc_cache_id();
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08003636 if (memcg_id < 0)
3637 return memcg_id;
Vladimir Davydovd6441632014-01-23 15:53:09 -08003638
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003639 objcg = obj_cgroup_alloc();
3640 if (!objcg) {
3641 memcg_free_cache_id(memcg_id);
3642 return -ENOMEM;
3643 }
3644 objcg->memcg = memcg;
3645 rcu_assign_pointer(memcg->objcg, objcg);
3646
Roman Gushchind648bcc2020-08-06 23:20:28 -07003647 static_branch_enable(&memcg_kmem_enabled_key);
3648
Vladimir Davydov900a38f2014-12-12 16:55:10 -08003649 memcg->kmemcg_id = memcg_id;
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08003650
3651 return 0;
Vladimir Davydovd6441632014-01-23 15:53:09 -08003652}
3653
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003654static void memcg_offline_kmem(struct mem_cgroup *memcg)
3655{
Muchun Song64268862021-11-05 13:37:53 -07003656 struct mem_cgroup *parent;
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003657 int kmemcg_id;
3658
Muchun Songe80216d2021-11-05 13:37:56 -07003659 if (memcg->kmemcg_id == -1)
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003660 return;
Roman Gushchin98556092020-08-06 23:21:10 -07003661
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003662 parent = parent_mem_cgroup(memcg);
3663 if (!parent)
3664 parent = root_mem_cgroup;
3665
Roman Gushchinbf4f0592020-08-06 23:20:49 -07003666 memcg_reparent_objcgs(memcg, parent);
Roman Gushchinfb2f2b02019-07-11 20:56:34 -07003667
3668 kmemcg_id = memcg->kmemcg_id;
3669 BUG_ON(kmemcg_id < 0);
3670
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003671 /*
Muchun Song64268862021-11-05 13:37:53 -07003672 * After we have finished memcg_reparent_objcgs(), all list_lrus
3673 * corresponding to this cgroup are guaranteed to remain empty.
3674 * The ordering is imposed by list_lru_node->lock taken by
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003675 * memcg_drain_all_list_lrus().
3676 */
Kirill Tkhai9bec5c32018-08-17 15:47:58 -07003677 memcg_drain_all_list_lrus(kmemcg_id, parent);
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003678
3679 memcg_free_cache_id(kmemcg_id);
Muchun Songe80216d2021-11-05 13:37:56 -07003680 memcg->kmemcg_id = -1;
Johannes Weiner8e0a8912016-01-20 15:02:26 -08003681}
Vladimir Davydovd6441632014-01-23 15:53:09 -08003682#else
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08003683static int memcg_online_kmem(struct mem_cgroup *memcg)
Johannes Weiner127424c2016-01-20 15:02:32 -08003684{
3685 return 0;
3686}
3687static void memcg_offline_kmem(struct mem_cgroup *memcg)
3688{
3689}
Kirill Tkhai84c07d12018-08-17 15:47:25 -07003690#endif /* CONFIG_MEMCG_KMEM */
Johannes Weiner127424c2016-01-20 15:02:32 -08003691
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003692static int memcg_update_tcp_max(struct mem_cgroup *memcg, unsigned long max)
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003693{
3694 int ret;
3695
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003696 mutex_lock(&memcg_max_mutex);
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003697
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003698 ret = page_counter_set_max(&memcg->tcpmem, max);
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003699 if (ret)
3700 goto out;
3701
Johannes Weiner0db15292016-01-20 15:02:50 -08003702 if (!memcg->tcpmem_active) {
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003703 /*
3704 * The active flag needs to be written after the static_key
3705 * update. This is what guarantees that the socket activation
Johannes Weiner2d758072016-10-07 17:00:58 -07003706 * function is the last one to run. See mem_cgroup_sk_alloc()
3707 * for details, and note that we don't mark any socket as
3708 * belonging to this memcg until that flag is up.
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003709 *
3710 * We need to do this, because static_keys will span multiple
3711 * sites, but we can't control their order. If we mark a socket
3712 * as accounted, but the accounting functions are not patched in
3713 * yet, we'll lose accounting.
3714 *
Johannes Weiner2d758072016-10-07 17:00:58 -07003715 * We never race with the readers in mem_cgroup_sk_alloc(),
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003716 * because when this value change, the code to process it is not
3717 * patched in yet.
3718 */
3719 static_branch_inc(&memcg_sockets_enabled_key);
Johannes Weiner0db15292016-01-20 15:02:50 -08003720 memcg->tcpmem_active = true;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003721 }
3722out:
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003723 mutex_unlock(&memcg_max_mutex);
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003724 return ret;
3725}
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003726
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003727/*
3728 * The user of this function is...
3729 * RES_LIMIT.
3730 */
Tejun Heo451af502014-05-13 12:16:21 -04003731static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
3732 char *buf, size_t nbytes, loff_t off)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003733{
Tejun Heo451af502014-05-13 12:16:21 -04003734 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003735 unsigned long nr_pages;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003736 int ret;
3737
Tejun Heo451af502014-05-13 12:16:21 -04003738 buf = strstrip(buf);
Johannes Weiner650c5e52015-02-11 15:26:03 -08003739 ret = page_counter_memparse(buf, "-1", &nr_pages);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003740 if (ret)
3741 return ret;
Tejun Heoaf36f902012-04-01 12:09:55 -07003742
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003743 switch (MEMFILE_ATTR(of_cft(of)->private)) {
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003744 case RES_LIMIT:
Balbir Singh4b3bde42009-09-23 15:56:32 -07003745 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3746 ret = -EINVAL;
3747 break;
3748 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003749 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3750 case _MEM:
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003751 ret = mem_cgroup_resize_max(memcg, nr_pages, false);
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08003752 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003753 case _MEMSWAP:
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003754 ret = mem_cgroup_resize_max(memcg, nr_pages, true);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003755 break;
3756 case _KMEM:
Shakeel Butt58056f72021-11-05 13:37:44 -07003757 /* kmem.limit_in_bytes is deprecated. */
3758 ret = -EOPNOTSUPP;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003759 break;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003760 case _TCP:
Roman Gushchinbbec2e12018-06-07 17:06:18 -07003761 ret = memcg_update_tcp_max(memcg, nr_pages);
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003762 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003763 }
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003764 break;
Balbir Singh296c81d2009-09-23 15:56:36 -07003765 case RES_SOFT_LIMIT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003766 memcg->soft_limit = nr_pages;
3767 ret = 0;
KAMEZAWA Hiroyuki628f4232008-07-25 01:47:20 -07003768 break;
3769 }
Tejun Heo451af502014-05-13 12:16:21 -04003770 return ret ?: nbytes;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08003771}
3772
Tejun Heo6770c642014-05-13 12:16:21 -04003773static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
3774 size_t nbytes, loff_t off)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003775{
Tejun Heo6770c642014-05-13 12:16:21 -04003776 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003777 struct page_counter *counter;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003778
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003779 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3780 case _MEM:
3781 counter = &memcg->memory;
3782 break;
3783 case _MEMSWAP:
3784 counter = &memcg->memsw;
3785 break;
3786 case _KMEM:
3787 counter = &memcg->kmem;
3788 break;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003789 case _TCP:
Johannes Weiner0db15292016-01-20 15:02:50 -08003790 counter = &memcg->tcpmem;
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08003791 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003792 default:
3793 BUG();
3794 }
Tejun Heoaf36f902012-04-01 12:09:55 -07003795
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003796 switch (MEMFILE_ATTR(of_cft(of)->private)) {
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003797 case RES_MAX_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003798 page_counter_reset_watermark(counter);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003799 break;
3800 case RES_FAILCNT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003801 counter->failcnt = 0;
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003802 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003803 default:
3804 BUG();
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -07003805 }
Balbir Singhf64c3f52009-09-23 15:56:37 -07003806
Tejun Heo6770c642014-05-13 12:16:21 -04003807 return nbytes;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07003808}
3809
Tejun Heo182446d2013-08-08 20:11:24 -04003810static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003811 struct cftype *cft)
3812{
Tejun Heo182446d2013-08-08 20:11:24 -04003813 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003814}
3815
Daisuke Nishimura02491442010-03-10 15:22:17 -08003816#ifdef CONFIG_MMU
Tejun Heo182446d2013-08-08 20:11:24 -04003817static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003818 struct cftype *cft, u64 val)
3819{
Tejun Heo182446d2013-08-08 20:11:24 -04003820 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003821
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08003822 if (val & ~MOVE_MASK)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003823 return -EINVAL;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003824
Glauber Costaee5e8472013-02-22 16:34:50 -08003825 /*
3826 * No kind of locking is needed in here, because ->can_attach() will
3827 * check this value once in the beginning of the process, and then carry
3828 * on with stale data. This means that changes to this value will only
3829 * affect task migrations starting after the change.
3830 */
3831 memcg->move_charge_at_immigrate = val;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003832 return 0;
3833}
Daisuke Nishimura02491442010-03-10 15:22:17 -08003834#else
Tejun Heo182446d2013-08-08 20:11:24 -04003835static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
Daisuke Nishimura02491442010-03-10 15:22:17 -08003836 struct cftype *cft, u64 val)
3837{
3838 return -ENOSYS;
3839}
3840#endif
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08003841
Ying Han406eb0c2011-05-26 16:25:37 -07003842#ifdef CONFIG_NUMA
Johannes Weiner113b7df2019-05-13 17:18:11 -07003843
3844#define LRU_ALL_FILE (BIT(LRU_INACTIVE_FILE) | BIT(LRU_ACTIVE_FILE))
3845#define LRU_ALL_ANON (BIT(LRU_INACTIVE_ANON) | BIT(LRU_ACTIVE_ANON))
3846#define LRU_ALL ((1 << NR_LRU_LISTS) - 1)
3847
3848static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003849 int nid, unsigned int lru_mask, bool tree)
Johannes Weiner113b7df2019-05-13 17:18:11 -07003850{
Johannes Weiner867e5e12019-11-30 17:55:34 -08003851 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
Johannes Weiner113b7df2019-05-13 17:18:11 -07003852 unsigned long nr = 0;
3853 enum lru_list lru;
3854
3855 VM_BUG_ON((unsigned)nid >= nr_node_ids);
3856
3857 for_each_lru(lru) {
3858 if (!(BIT(lru) & lru_mask))
3859 continue;
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003860 if (tree)
3861 nr += lruvec_page_state(lruvec, NR_LRU_BASE + lru);
3862 else
3863 nr += lruvec_page_state_local(lruvec, NR_LRU_BASE + lru);
Johannes Weiner113b7df2019-05-13 17:18:11 -07003864 }
3865 return nr;
3866}
3867
3868static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003869 unsigned int lru_mask,
3870 bool tree)
Johannes Weiner113b7df2019-05-13 17:18:11 -07003871{
3872 unsigned long nr = 0;
3873 enum lru_list lru;
3874
3875 for_each_lru(lru) {
3876 if (!(BIT(lru) & lru_mask))
3877 continue;
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003878 if (tree)
3879 nr += memcg_page_state(memcg, NR_LRU_BASE + lru);
3880 else
3881 nr += memcg_page_state_local(memcg, NR_LRU_BASE + lru);
Johannes Weiner113b7df2019-05-13 17:18:11 -07003882 }
3883 return nr;
3884}
3885
Tejun Heo2da8ca82013-12-05 12:28:04 -05003886static int memcg_numa_stat_show(struct seq_file *m, void *v)
Ying Han406eb0c2011-05-26 16:25:37 -07003887{
Greg Thelen25485de2013-11-12 15:07:40 -08003888 struct numa_stat {
3889 const char *name;
3890 unsigned int lru_mask;
3891 };
3892
3893 static const struct numa_stat stats[] = {
3894 { "total", LRU_ALL },
3895 { "file", LRU_ALL_FILE },
3896 { "anon", LRU_ALL_ANON },
3897 { "unevictable", BIT(LRU_UNEVICTABLE) },
3898 };
3899 const struct numa_stat *stat;
Ying Han406eb0c2011-05-26 16:25:37 -07003900 int nid;
Chris Downaa9694b2019-03-05 15:45:52 -08003901 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Ying Han406eb0c2011-05-26 16:25:37 -07003902
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07003903 mem_cgroup_flush_stats();
Johannes Weiner2d146aa2021-04-29 22:56:26 -07003904
Greg Thelen25485de2013-11-12 15:07:40 -08003905 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003906 seq_printf(m, "%s=%lu", stat->name,
3907 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3908 false));
3909 for_each_node_state(nid, N_MEMORY)
3910 seq_printf(m, " N%d=%lu", nid,
3911 mem_cgroup_node_nr_lru_pages(memcg, nid,
3912 stat->lru_mask, false));
Greg Thelen25485de2013-11-12 15:07:40 -08003913 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07003914 }
Ying Han406eb0c2011-05-26 16:25:37 -07003915
Ying Han071aee12013-11-12 15:07:41 -08003916 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
Ying Han406eb0c2011-05-26 16:25:37 -07003917
Shakeel Buttdd8657b2020-06-03 15:56:24 -07003918 seq_printf(m, "hierarchical_%s=%lu", stat->name,
3919 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3920 true));
3921 for_each_node_state(nid, N_MEMORY)
3922 seq_printf(m, " N%d=%lu", nid,
3923 mem_cgroup_node_nr_lru_pages(memcg, nid,
3924 stat->lru_mask, true));
Ying Han071aee12013-11-12 15:07:41 -08003925 seq_putc(m, '\n');
Ying Han406eb0c2011-05-26 16:25:37 -07003926 }
Ying Han406eb0c2011-05-26 16:25:37 -07003927
Ying Han406eb0c2011-05-26 16:25:37 -07003928 return 0;
3929}
3930#endif /* CONFIG_NUMA */
3931
Johannes Weinerc8713d02019-07-11 20:55:59 -07003932static const unsigned int memcg1_stats[] = {
Johannes Weiner0d1c2072020-06-03 16:01:54 -07003933 NR_FILE_PAGES,
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07003934 NR_ANON_MAPPED,
Johannes Weiner468c3982020-06-03 16:02:01 -07003935#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3936 NR_ANON_THPS,
3937#endif
Johannes Weinerc8713d02019-07-11 20:55:59 -07003938 NR_SHMEM,
3939 NR_FILE_MAPPED,
3940 NR_FILE_DIRTY,
3941 NR_WRITEBACK,
3942 MEMCG_SWAP,
3943};
3944
3945static const char *const memcg1_stat_names[] = {
3946 "cache",
3947 "rss",
Johannes Weiner468c3982020-06-03 16:02:01 -07003948#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Johannes Weinerc8713d02019-07-11 20:55:59 -07003949 "rss_huge",
Johannes Weiner468c3982020-06-03 16:02:01 -07003950#endif
Johannes Weinerc8713d02019-07-11 20:55:59 -07003951 "shmem",
3952 "mapped_file",
3953 "dirty",
3954 "writeback",
3955 "swap",
3956};
3957
Johannes Weinerdf0e53d2017-05-03 14:55:10 -07003958/* Universal VM events cgroup1 shows, original sort order */
Greg Thelen8dd53fd2018-06-07 17:07:23 -07003959static const unsigned int memcg1_events[] = {
Johannes Weinerdf0e53d2017-05-03 14:55:10 -07003960 PGPGIN,
3961 PGPGOUT,
3962 PGFAULT,
3963 PGMAJFAULT,
3964};
3965
Tejun Heo2da8ca82013-12-05 12:28:04 -05003966static int memcg_stat_show(struct seq_file *m, void *v)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08003967{
Chris Downaa9694b2019-03-05 15:45:52 -08003968 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003969 unsigned long memory, memsw;
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003970 struct mem_cgroup *mi;
3971 unsigned int i;
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08003972
Johannes Weiner71cd3112017-05-03 14:55:13 -07003973 BUILD_BUG_ON(ARRAY_SIZE(memcg1_stat_names) != ARRAY_SIZE(memcg1_stats));
Rickard Strandqvist70bc0682014-12-12 16:56:41 -08003974
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07003975 mem_cgroup_flush_stats();
Johannes Weiner2d146aa2021-04-29 22:56:26 -07003976
Johannes Weiner71cd3112017-05-03 14:55:13 -07003977 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
Johannes Weiner468c3982020-06-03 16:02:01 -07003978 unsigned long nr;
3979
Johannes Weiner71cd3112017-05-03 14:55:13 -07003980 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003981 continue;
Johannes Weiner468c3982020-06-03 16:02:01 -07003982 nr = memcg_page_state_local(memcg, memcg1_stats[i]);
Johannes Weiner468c3982020-06-03 16:02:01 -07003983 seq_printf(m, "%s %lu\n", memcg1_stat_names[i], nr * PAGE_SIZE);
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07003984 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08003985
Johannes Weinerdf0e53d2017-05-03 14:55:10 -07003986 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08003987 seq_printf(m, "%s %lu\n", vm_event_name(memcg1_events[i]),
Johannes Weiner205b20c2019-05-14 15:47:06 -07003988 memcg_events_local(memcg, memcg1_events[i]));
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003989
3990 for (i = 0; i < NR_LRU_LISTS; i++)
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08003991 seq_printf(m, "%s %lu\n", lru_list_name(i),
Johannes Weiner205b20c2019-05-14 15:47:06 -07003992 memcg_page_state_local(memcg, NR_LRU_BASE + i) *
Johannes Weiner21d89d12019-05-13 17:18:08 -07003993 PAGE_SIZE);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07003994
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07003995 /* Hierarchical information */
Johannes Weiner3e32cb22014-12-10 15:42:31 -08003996 memory = memsw = PAGE_COUNTER_MAX;
3997 for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
Chris Down15b42562020-04-01 21:07:20 -07003998 memory = min(memory, READ_ONCE(mi->memory.max));
3999 memsw = min(memsw, READ_ONCE(mi->memsw.max));
KAMEZAWA Hiroyukifee7b542009-01-07 18:08:26 -08004000 }
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004001 seq_printf(m, "hierarchical_memory_limit %llu\n",
4002 (u64)memory * PAGE_SIZE);
Johannes Weiner7941d212016-01-14 15:21:23 -08004003 if (do_memsw_account())
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004004 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4005 (u64)memsw * PAGE_SIZE);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004006
Shakeel Butt8de7ecc62018-08-21 21:53:17 -07004007 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
zhongjiang-ali7de2e9f2020-11-01 17:07:30 -08004008 unsigned long nr;
4009
Johannes Weiner71cd3112017-05-03 14:55:13 -07004010 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
Daisuke Nishimura1dd3a272009-09-23 15:56:43 -07004011 continue;
zhongjiang-ali7de2e9f2020-11-01 17:07:30 -08004012 nr = memcg_page_state(memcg, memcg1_stats[i]);
Shakeel Butt8de7ecc62018-08-21 21:53:17 -07004013 seq_printf(m, "total_%s %llu\n", memcg1_stat_names[i],
zhongjiang-ali7de2e9f2020-11-01 17:07:30 -08004014 (u64)nr * PAGE_SIZE);
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004015 }
4016
Shakeel Butt8de7ecc62018-08-21 21:53:17 -07004017 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08004018 seq_printf(m, "total_%s %llu\n",
4019 vm_event_name(memcg1_events[i]),
Yafang Shaodd923992019-07-11 20:52:11 -07004020 (u64)memcg_events(memcg, memcg1_events[i]));
Johannes Weineraf7c4b02012-05-29 15:07:08 -07004021
Shakeel Butt8de7ecc62018-08-21 21:53:17 -07004022 for (i = 0; i < NR_LRU_LISTS; i++)
Konstantin Khlebnikovebc5d83d2019-12-04 16:49:53 -08004023 seq_printf(m, "total_%s %llu\n", lru_list_name(i),
Johannes Weiner42a30032019-05-14 15:47:12 -07004024 (u64)memcg_page_state(memcg, NR_LRU_BASE + i) *
4025 PAGE_SIZE);
KAMEZAWA Hiroyuki14067bb2009-04-02 16:57:35 -07004026
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004027#ifdef CONFIG_DEBUG_VM
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004028 {
Mel Gormanef8f2322016-07-28 15:46:05 -07004029 pg_data_t *pgdat;
4030 struct mem_cgroup_per_node *mz;
Johannes Weiner1431d4d2020-06-03 16:02:53 -07004031 unsigned long anon_cost = 0;
4032 unsigned long file_cost = 0;
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004033
Mel Gormanef8f2322016-07-28 15:46:05 -07004034 for_each_online_pgdat(pgdat) {
Johannes Weinera3747b52021-04-29 22:56:14 -07004035 mz = memcg->nodeinfo[pgdat->node_id];
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004036
Johannes Weiner1431d4d2020-06-03 16:02:53 -07004037 anon_cost += mz->lruvec.anon_cost;
4038 file_cost += mz->lruvec.file_cost;
Mel Gormanef8f2322016-07-28 15:46:05 -07004039 }
Johannes Weiner1431d4d2020-06-03 16:02:53 -07004040 seq_printf(m, "anon_cost %lu\n", anon_cost);
4041 seq_printf(m, "file_cost %lu\n", file_cost);
KOSAKI Motohiro7f016ee2009-01-07 18:08:22 -08004042 }
4043#endif
4044
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004045 return 0;
4046}
4047
Tejun Heo182446d2013-08-08 20:11:24 -04004048static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4049 struct cftype *cft)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004050{
Tejun Heo182446d2013-08-08 20:11:24 -04004051 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004052
KAMEZAWA Hiroyuki1f4c0252011-07-26 16:08:21 -07004053 return mem_cgroup_swappiness(memcg);
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004054}
4055
Tejun Heo182446d2013-08-08 20:11:24 -04004056static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4057 struct cftype *cft, u64 val)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004058{
Tejun Heo182446d2013-08-08 20:11:24 -04004059 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Li Zefan068b38c2009-01-15 13:51:26 -08004060
Baolin Wang37bc3cb2021-09-02 14:55:53 -07004061 if (val > 200)
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004062 return -EINVAL;
4063
Shakeel Butta4792032021-04-29 22:56:05 -07004064 if (!mem_cgroup_is_root(memcg))
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004065 memcg->swappiness = val;
4066 else
4067 vm_swappiness = val;
Li Zefan068b38c2009-01-15 13:51:26 -08004068
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004069 return 0;
4070}
4071
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004072static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4073{
4074 struct mem_cgroup_threshold_ary *t;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004075 unsigned long usage;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004076 int i;
4077
4078 rcu_read_lock();
4079 if (!swap)
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004080 t = rcu_dereference(memcg->thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004081 else
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004082 t = rcu_dereference(memcg->memsw_thresholds.primary);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004083
4084 if (!t)
4085 goto unlock;
4086
Johannes Weinerce00a962014-09-05 08:43:57 -04004087 usage = mem_cgroup_usage(memcg, swap);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004088
4089 /*
Sha Zhengju748dad32012-05-29 15:06:57 -07004090 * current_threshold points to threshold just below or equal to usage.
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004091 * If it's not true, a threshold was crossed after last
4092 * call of __mem_cgroup_threshold().
4093 */
Phil Carmody5407a562010-05-26 14:42:42 -07004094 i = t->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004095
4096 /*
4097 * Iterate backward over array of thresholds starting from
4098 * current_threshold and check if a threshold is crossed.
4099 * If none of thresholds below usage is crossed, we read
4100 * only one element of the array here.
4101 */
4102 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4103 eventfd_signal(t->entries[i].eventfd, 1);
4104
4105 /* i = current_threshold + 1 */
4106 i++;
4107
4108 /*
4109 * Iterate forward over array of thresholds starting from
4110 * current_threshold+1 and check if a threshold is crossed.
4111 * If none of thresholds above usage is crossed, we read
4112 * only one element of the array here.
4113 */
4114 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4115 eventfd_signal(t->entries[i].eventfd, 1);
4116
4117 /* Update current_threshold */
Phil Carmody5407a562010-05-26 14:42:42 -07004118 t->current_threshold = i - 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004119unlock:
4120 rcu_read_unlock();
4121}
4122
4123static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4124{
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004125 while (memcg) {
4126 __mem_cgroup_threshold(memcg, false);
Johannes Weiner7941d212016-01-14 15:21:23 -08004127 if (do_memsw_account())
Kirill A. Shutemovad4ca5f2010-10-07 12:59:27 -07004128 __mem_cgroup_threshold(memcg, true);
4129
4130 memcg = parent_mem_cgroup(memcg);
4131 }
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004132}
4133
4134static int compare_thresholds(const void *a, const void *b)
4135{
4136 const struct mem_cgroup_threshold *_a = a;
4137 const struct mem_cgroup_threshold *_b = b;
4138
Greg Thelen2bff24a2013-09-11 14:23:08 -07004139 if (_a->threshold > _b->threshold)
4140 return 1;
4141
4142 if (_a->threshold < _b->threshold)
4143 return -1;
4144
4145 return 0;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004146}
4147
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004148static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004149{
4150 struct mem_cgroup_eventfd_list *ev;
4151
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004152 spin_lock(&memcg_oom_lock);
4153
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004154 list_for_each_entry(ev, &memcg->oom_notify, list)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004155 eventfd_signal(ev->eventfd, 1);
Michal Hocko2bcf2e92014-07-30 16:08:33 -07004156
4157 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004158 return 0;
4159}
4160
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004161static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004162{
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004163 struct mem_cgroup *iter;
4164
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004165 for_each_mem_cgroup_tree(iter, memcg)
KAMEZAWA Hiroyuki7d74b062010-10-27 15:33:41 -07004166 mem_cgroup_oom_notify_cb(iter);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004167}
4168
Tejun Heo59b6f872013-11-22 18:20:43 -05004169static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004170 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004171{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004172 struct mem_cgroup_thresholds *thresholds;
4173 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004174 unsigned long threshold;
4175 unsigned long usage;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004176 int i, size, ret;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004177
Johannes Weiner650c5e52015-02-11 15:26:03 -08004178 ret = page_counter_memparse(args, "-1", &threshold);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004179 if (ret)
4180 return ret;
4181
4182 mutex_lock(&memcg->thresholds_lock);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004183
Johannes Weiner05b84302014-08-06 16:05:59 -07004184 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004185 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004186 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004187 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004188 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004189 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004190 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004191 BUG();
4192
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004193 /* Check if a threshold crossed before adding a new one */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004194 if (thresholds->primary)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004195 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4196
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004197 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004198
4199 /* Allocate memory for new array of thresholds */
Gustavo A. R. Silva67b80462019-03-05 15:44:05 -08004200 new = kmalloc(struct_size(new, entries, size), GFP_KERNEL);
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004201 if (!new) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004202 ret = -ENOMEM;
4203 goto unlock;
4204 }
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004205 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004206
4207 /* Copy thresholds (if any) to new array */
Gustavo A. R. Silvae90342e2020-10-13 16:52:36 -07004208 if (thresholds->primary)
4209 memcpy(new->entries, thresholds->primary->entries,
4210 flex_array_size(new, entries, size - 1));
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004211
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004212 /* Add new threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004213 new->entries[size - 1].eventfd = eventfd;
4214 new->entries[size - 1].threshold = threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004215
4216 /* Sort thresholds. Registering of new threshold isn't time-critical */
Gustavo A. R. Silva61e604e62020-10-13 16:52:39 -07004217 sort(new->entries, size, sizeof(*new->entries),
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004218 compare_thresholds, NULL);
4219
4220 /* Find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004221 new->current_threshold = -1;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004222 for (i = 0; i < size; i++) {
Sha Zhengju748dad32012-05-29 15:06:57 -07004223 if (new->entries[i].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004224 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004225 * new->current_threshold will not be used until
4226 * rcu_assign_pointer(), so it's safe to increment
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004227 * it here.
4228 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004229 ++new->current_threshold;
Sha Zhengju748dad32012-05-29 15:06:57 -07004230 } else
4231 break;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004232 }
4233
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004234 /* Free old spare buffer and save old primary buffer as spare */
4235 kfree(thresholds->spare);
4236 thresholds->spare = thresholds->primary;
4237
4238 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004239
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004240 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004241 synchronize_rcu();
4242
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004243unlock:
4244 mutex_unlock(&memcg->thresholds_lock);
4245
4246 return ret;
4247}
4248
Tejun Heo59b6f872013-11-22 18:20:43 -05004249static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004250 struct eventfd_ctx *eventfd, const char *args)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004251{
Tejun Heo59b6f872013-11-22 18:20:43 -05004252 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004253}
4254
Tejun Heo59b6f872013-11-22 18:20:43 -05004255static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004256 struct eventfd_ctx *eventfd, const char *args)
4257{
Tejun Heo59b6f872013-11-22 18:20:43 -05004258 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004259}
4260
Tejun Heo59b6f872013-11-22 18:20:43 -05004261static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004262 struct eventfd_ctx *eventfd, enum res_type type)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004263{
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004264 struct mem_cgroup_thresholds *thresholds;
4265 struct mem_cgroup_threshold_ary *new;
Johannes Weiner3e32cb22014-12-10 15:42:31 -08004266 unsigned long usage;
Chunguang Xu7d366652020-03-21 18:22:10 -07004267 int i, j, size, entries;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004268
4269 mutex_lock(&memcg->thresholds_lock);
Johannes Weiner05b84302014-08-06 16:05:59 -07004270
4271 if (type == _MEM) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004272 thresholds = &memcg->thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004273 usage = mem_cgroup_usage(memcg, false);
Johannes Weiner05b84302014-08-06 16:05:59 -07004274 } else if (type == _MEMSWAP) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004275 thresholds = &memcg->memsw_thresholds;
Johannes Weinerce00a962014-09-05 08:43:57 -04004276 usage = mem_cgroup_usage(memcg, true);
Johannes Weiner05b84302014-08-06 16:05:59 -07004277 } else
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004278 BUG();
4279
Anton Vorontsov371528c2012-02-24 05:14:46 +04004280 if (!thresholds->primary)
4281 goto unlock;
4282
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004283 /* Check if a threshold crossed before removing */
4284 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4285
4286 /* Calculate new number of threshold */
Chunguang Xu7d366652020-03-21 18:22:10 -07004287 size = entries = 0;
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004288 for (i = 0; i < thresholds->primary->size; i++) {
4289 if (thresholds->primary->entries[i].eventfd != eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004290 size++;
Chunguang Xu7d366652020-03-21 18:22:10 -07004291 else
4292 entries++;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004293 }
4294
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004295 new = thresholds->spare;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004296
Chunguang Xu7d366652020-03-21 18:22:10 -07004297 /* If no items related to eventfd have been cleared, nothing to do */
4298 if (!entries)
4299 goto unlock;
4300
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004301 /* Set thresholds array to NULL if we don't have thresholds */
4302 if (!size) {
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004303 kfree(new);
4304 new = NULL;
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004305 goto swap_buffers;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004306 }
4307
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004308 new->size = size;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004309
4310 /* Copy thresholds and find current threshold */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004311 new->current_threshold = -1;
4312 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4313 if (thresholds->primary->entries[i].eventfd == eventfd)
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004314 continue;
4315
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004316 new->entries[j] = thresholds->primary->entries[i];
Sha Zhengju748dad32012-05-29 15:06:57 -07004317 if (new->entries[j].threshold <= usage) {
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004318 /*
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004319 * new->current_threshold will not be used
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004320 * until rcu_assign_pointer(), so it's safe to increment
4321 * it here.
4322 */
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004323 ++new->current_threshold;
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004324 }
4325 j++;
4326 }
4327
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004328swap_buffers:
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004329 /* Swap primary and spare array */
4330 thresholds->spare = thresholds->primary;
Sha Zhengju8c757762012-05-10 13:01:45 -07004331
Kirill A. Shutemov2c488db2010-05-26 14:42:47 -07004332 rcu_assign_pointer(thresholds->primary, new);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004333
Kirill A. Shutemov907860e2010-05-26 14:42:46 -07004334 /* To be sure that nobody uses thresholds */
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004335 synchronize_rcu();
Martijn Coenen6611d8d2016-01-15 16:57:49 -08004336
4337 /* If all events are unregistered, free the spare array */
4338 if (!new) {
4339 kfree(thresholds->spare);
4340 thresholds->spare = NULL;
4341 }
Anton Vorontsov371528c2012-02-24 05:14:46 +04004342unlock:
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004343 mutex_unlock(&memcg->thresholds_lock);
Kirill A. Shutemov2e72b632010-03-10 15:22:24 -08004344}
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004345
Tejun Heo59b6f872013-11-22 18:20:43 -05004346static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004347 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004348{
Tejun Heo59b6f872013-11-22 18:20:43 -05004349 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
Tejun Heo347c4a82013-11-22 18:20:43 -05004350}
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004351
Tejun Heo59b6f872013-11-22 18:20:43 -05004352static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004353 struct eventfd_ctx *eventfd)
4354{
Tejun Heo59b6f872013-11-22 18:20:43 -05004355 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
Tejun Heo347c4a82013-11-22 18:20:43 -05004356}
4357
Tejun Heo59b6f872013-11-22 18:20:43 -05004358static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004359 struct eventfd_ctx *eventfd, const char *args)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004360{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004361 struct mem_cgroup_eventfd_list *event;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004362
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004363 event = kmalloc(sizeof(*event), GFP_KERNEL);
4364 if (!event)
4365 return -ENOMEM;
4366
Michal Hocko1af8efe2011-07-26 16:08:24 -07004367 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004368
4369 event->eventfd = eventfd;
4370 list_add(&event->list, &memcg->oom_notify);
4371
4372 /* already in OOM ? */
Tejun Heoc2b42d32015-06-24 16:58:23 -07004373 if (memcg->under_oom)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004374 eventfd_signal(eventfd, 1);
Michal Hocko1af8efe2011-07-26 16:08:24 -07004375 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004376
4377 return 0;
4378}
4379
Tejun Heo59b6f872013-11-22 18:20:43 -05004380static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
Tejun Heo347c4a82013-11-22 18:20:43 -05004381 struct eventfd_ctx *eventfd)
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004382{
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004383 struct mem_cgroup_eventfd_list *ev, *tmp;
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004384
Michal Hocko1af8efe2011-07-26 16:08:24 -07004385 spin_lock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004386
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004387 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004388 if (ev->eventfd == eventfd) {
4389 list_del(&ev->list);
4390 kfree(ev);
4391 }
4392 }
4393
Michal Hocko1af8efe2011-07-26 16:08:24 -07004394 spin_unlock(&memcg_oom_lock);
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004395}
4396
Tejun Heo2da8ca82013-12-05 12:28:04 -05004397static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004398{
Chris Downaa9694b2019-03-05 15:45:52 -08004399 struct mem_cgroup *memcg = mem_cgroup_from_seq(sf);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004400
Tejun Heo791badb2013-12-05 12:28:02 -05004401 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
Tejun Heoc2b42d32015-06-24 16:58:23 -07004402 seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom);
Roman Gushchinfe6bdfc2018-06-14 15:28:05 -07004403 seq_printf(sf, "oom_kill %lu\n",
4404 atomic_long_read(&memcg->memory_events[MEMCG_OOM_KILL]));
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004405 return 0;
4406}
4407
Tejun Heo182446d2013-08-08 20:11:24 -04004408static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004409 struct cftype *cft, u64 val)
4410{
Tejun Heo182446d2013-08-08 20:11:24 -04004411 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004412
4413 /* cannot set to root cgroup and only 0 and 1 are allowed */
Shakeel Butta4792032021-04-29 22:56:05 -07004414 if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1)))
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004415 return -EINVAL;
4416
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004417 memcg->oom_kill_disable = val;
KAMEZAWA Hiroyuki4d845eb2010-06-29 15:05:18 -07004418 if (!val)
Raghavendra K Tc0ff4b82011-11-02 13:38:15 -07004419 memcg_oom_recover(memcg);
Johannes Weiner3dae7fe2014-06-04 16:07:01 -07004420
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004421 return 0;
4422}
4423
Tejun Heo52ebea72015-05-22 17:13:37 -04004424#ifdef CONFIG_CGROUP_WRITEBACK
4425
Tejun Heo3a8e9ac2019-08-29 15:47:19 -07004426#include <trace/events/writeback.h>
4427
Tejun Heo841710a2015-05-22 18:23:33 -04004428static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4429{
4430 return wb_domain_init(&memcg->cgwb_domain, gfp);
4431}
4432
4433static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4434{
4435 wb_domain_exit(&memcg->cgwb_domain);
4436}
4437
Tejun Heo2529bb32015-05-22 18:23:34 -04004438static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4439{
4440 wb_domain_size_changed(&memcg->cgwb_domain);
4441}
4442
Tejun Heo841710a2015-05-22 18:23:33 -04004443struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
4444{
4445 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4446
4447 if (!memcg->css.parent)
4448 return NULL;
4449
4450 return &memcg->cgwb_domain;
4451}
4452
Tejun Heoc2aa7232015-05-22 18:23:35 -04004453/**
4454 * mem_cgroup_wb_stats - retrieve writeback related stats from its memcg
4455 * @wb: bdi_writeback in question
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004456 * @pfilepages: out parameter for number of file pages
4457 * @pheadroom: out parameter for number of allocatable pages according to memcg
Tejun Heoc2aa7232015-05-22 18:23:35 -04004458 * @pdirty: out parameter for number of dirty pages
4459 * @pwriteback: out parameter for number of pages under writeback
4460 *
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004461 * Determine the numbers of file, headroom, dirty, and writeback pages in
4462 * @wb's memcg. File, dirty and writeback are self-explanatory. Headroom
4463 * is a bit more involved.
Tejun Heoc2aa7232015-05-22 18:23:35 -04004464 *
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004465 * A memcg's headroom is "min(max, high) - used". In the hierarchy, the
4466 * headroom is calculated as the lowest headroom of itself and the
4467 * ancestors. Note that this doesn't consider the actual amount of
4468 * available memory in the system. The caller should further cap
4469 * *@pheadroom accordingly.
Tejun Heoc2aa7232015-05-22 18:23:35 -04004470 */
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004471void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
4472 unsigned long *pheadroom, unsigned long *pdirty,
4473 unsigned long *pwriteback)
Tejun Heoc2aa7232015-05-22 18:23:35 -04004474{
4475 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4476 struct mem_cgroup *parent;
Tejun Heoc2aa7232015-05-22 18:23:35 -04004477
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07004478 mem_cgroup_flush_stats();
Tejun Heoc2aa7232015-05-22 18:23:35 -04004479
Johannes Weiner2d146aa2021-04-29 22:56:26 -07004480 *pdirty = memcg_page_state(memcg, NR_FILE_DIRTY);
4481 *pwriteback = memcg_page_state(memcg, NR_WRITEBACK);
4482 *pfilepages = memcg_page_state(memcg, NR_INACTIVE_FILE) +
4483 memcg_page_state(memcg, NR_ACTIVE_FILE);
4484
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004485 *pheadroom = PAGE_COUNTER_MAX;
Tejun Heoc2aa7232015-05-22 18:23:35 -04004486 while ((parent = parent_mem_cgroup(memcg))) {
Chris Down15b42562020-04-01 21:07:20 -07004487 unsigned long ceiling = min(READ_ONCE(memcg->memory.max),
Jakub Kicinskid1663a92020-06-01 21:49:49 -07004488 READ_ONCE(memcg->memory.high));
Tejun Heoc2aa7232015-05-22 18:23:35 -04004489 unsigned long used = page_counter_read(&memcg->memory);
4490
Tejun Heoc5edf9c2015-09-29 13:04:26 -04004491 *pheadroom = min(*pheadroom, ceiling - min(ceiling, used));
Tejun Heoc2aa7232015-05-22 18:23:35 -04004492 memcg = parent;
4493 }
Tejun Heoc2aa7232015-05-22 18:23:35 -04004494}
4495
Tejun Heo97b27822019-08-26 09:06:56 -07004496/*
4497 * Foreign dirty flushing
4498 *
4499 * There's an inherent mismatch between memcg and writeback. The former
Ingo Molnarf0953a12021-05-06 18:06:47 -07004500 * tracks ownership per-page while the latter per-inode. This was a
Tejun Heo97b27822019-08-26 09:06:56 -07004501 * deliberate design decision because honoring per-page ownership in the
4502 * writeback path is complicated, may lead to higher CPU and IO overheads
4503 * and deemed unnecessary given that write-sharing an inode across
4504 * different cgroups isn't a common use-case.
4505 *
4506 * Combined with inode majority-writer ownership switching, this works well
4507 * enough in most cases but there are some pathological cases. For
4508 * example, let's say there are two cgroups A and B which keep writing to
4509 * different but confined parts of the same inode. B owns the inode and
4510 * A's memory is limited far below B's. A's dirty ratio can rise enough to
4511 * trigger balance_dirty_pages() sleeps but B's can be low enough to avoid
4512 * triggering background writeback. A will be slowed down without a way to
4513 * make writeback of the dirty pages happen.
4514 *
Ingo Molnarf0953a12021-05-06 18:06:47 -07004515 * Conditions like the above can lead to a cgroup getting repeatedly and
Tejun Heo97b27822019-08-26 09:06:56 -07004516 * severely throttled after making some progress after each
Ingo Molnarf0953a12021-05-06 18:06:47 -07004517 * dirty_expire_interval while the underlying IO device is almost
Tejun Heo97b27822019-08-26 09:06:56 -07004518 * completely idle.
4519 *
4520 * Solving this problem completely requires matching the ownership tracking
4521 * granularities between memcg and writeback in either direction. However,
4522 * the more egregious behaviors can be avoided by simply remembering the
4523 * most recent foreign dirtying events and initiating remote flushes on
4524 * them when local writeback isn't enough to keep the memory clean enough.
4525 *
4526 * The following two functions implement such mechanism. When a foreign
4527 * page - a page whose memcg and writeback ownerships don't match - is
4528 * dirtied, mem_cgroup_track_foreign_dirty() records the inode owning
4529 * bdi_writeback on the page owning memcg. When balance_dirty_pages()
4530 * decides that the memcg needs to sleep due to high dirty ratio, it calls
4531 * mem_cgroup_flush_foreign() which queues writeback on the recorded
4532 * foreign bdi_writebacks which haven't expired. Both the numbers of
4533 * recorded bdi_writebacks and concurrent in-flight foreign writebacks are
4534 * limited to MEMCG_CGWB_FRN_CNT.
4535 *
4536 * The mechanism only remembers IDs and doesn't hold any object references.
4537 * As being wrong occasionally doesn't matter, updates and accesses to the
4538 * records are lockless and racy.
4539 */
Matthew Wilcox (Oracle)9d8053f2021-05-04 11:43:01 -04004540void mem_cgroup_track_foreign_dirty_slowpath(struct folio *folio,
Tejun Heo97b27822019-08-26 09:06:56 -07004541 struct bdi_writeback *wb)
4542{
Matthew Wilcox (Oracle)9d8053f2021-05-04 11:43:01 -04004543 struct mem_cgroup *memcg = folio_memcg(folio);
Tejun Heo97b27822019-08-26 09:06:56 -07004544 struct memcg_cgwb_frn *frn;
4545 u64 now = get_jiffies_64();
4546 u64 oldest_at = now;
4547 int oldest = -1;
4548 int i;
4549
Matthew Wilcox (Oracle)9d8053f2021-05-04 11:43:01 -04004550 trace_track_foreign_dirty(folio, wb);
Tejun Heo3a8e9ac2019-08-29 15:47:19 -07004551
Tejun Heo97b27822019-08-26 09:06:56 -07004552 /*
4553 * Pick the slot to use. If there is already a slot for @wb, keep
4554 * using it. If not replace the oldest one which isn't being
4555 * written out.
4556 */
4557 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4558 frn = &memcg->cgwb_frn[i];
4559 if (frn->bdi_id == wb->bdi->id &&
4560 frn->memcg_id == wb->memcg_css->id)
4561 break;
4562 if (time_before64(frn->at, oldest_at) &&
4563 atomic_read(&frn->done.cnt) == 1) {
4564 oldest = i;
4565 oldest_at = frn->at;
4566 }
4567 }
4568
4569 if (i < MEMCG_CGWB_FRN_CNT) {
4570 /*
4571 * Re-using an existing one. Update timestamp lazily to
4572 * avoid making the cacheline hot. We want them to be
4573 * reasonably up-to-date and significantly shorter than
4574 * dirty_expire_interval as that's what expires the record.
4575 * Use the shorter of 1s and dirty_expire_interval / 8.
4576 */
4577 unsigned long update_intv =
4578 min_t(unsigned long, HZ,
4579 msecs_to_jiffies(dirty_expire_interval * 10) / 8);
4580
4581 if (time_before64(frn->at, now - update_intv))
4582 frn->at = now;
4583 } else if (oldest >= 0) {
4584 /* replace the oldest free one */
4585 frn = &memcg->cgwb_frn[oldest];
4586 frn->bdi_id = wb->bdi->id;
4587 frn->memcg_id = wb->memcg_css->id;
4588 frn->at = now;
4589 }
4590}
4591
4592/* issue foreign writeback flushes for recorded foreign dirtying events */
4593void mem_cgroup_flush_foreign(struct bdi_writeback *wb)
4594{
4595 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4596 unsigned long intv = msecs_to_jiffies(dirty_expire_interval * 10);
4597 u64 now = jiffies_64;
4598 int i;
4599
4600 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4601 struct memcg_cgwb_frn *frn = &memcg->cgwb_frn[i];
4602
4603 /*
4604 * If the record is older than dirty_expire_interval,
4605 * writeback on it has already started. No need to kick it
4606 * off again. Also, don't start a new one if there's
4607 * already one in flight.
4608 */
4609 if (time_after64(frn->at, now - intv) &&
4610 atomic_read(&frn->done.cnt) == 1) {
4611 frn->at = 0;
Tejun Heo3a8e9ac2019-08-29 15:47:19 -07004612 trace_flush_foreign(wb, frn->bdi_id, frn->memcg_id);
Shakeel Butt7490a2d2021-09-02 14:53:27 -07004613 cgroup_writeback_by_id(frn->bdi_id, frn->memcg_id,
Tejun Heo97b27822019-08-26 09:06:56 -07004614 WB_REASON_FOREIGN_FLUSH,
4615 &frn->done);
4616 }
4617 }
4618}
4619
Tejun Heo841710a2015-05-22 18:23:33 -04004620#else /* CONFIG_CGROUP_WRITEBACK */
4621
4622static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4623{
4624 return 0;
4625}
4626
4627static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4628{
4629}
4630
Tejun Heo2529bb32015-05-22 18:23:34 -04004631static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4632{
4633}
4634
Tejun Heo52ebea72015-05-22 17:13:37 -04004635#endif /* CONFIG_CGROUP_WRITEBACK */
4636
Tejun Heo79bd9812013-11-22 18:20:42 -05004637/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004638 * DO NOT USE IN NEW FILES.
4639 *
4640 * "cgroup.event_control" implementation.
4641 *
4642 * This is way over-engineered. It tries to support fully configurable
4643 * events for each user. Such level of flexibility is completely
4644 * unnecessary especially in the light of the planned unified hierarchy.
4645 *
4646 * Please deprecate this and replace with something simpler if at all
4647 * possible.
4648 */
4649
4650/*
Tejun Heo79bd9812013-11-22 18:20:42 -05004651 * Unregister event and free resources.
4652 *
4653 * Gets called from workqueue.
4654 */
Tejun Heo3bc942f2013-11-22 18:20:44 -05004655static void memcg_event_remove(struct work_struct *work)
Tejun Heo79bd9812013-11-22 18:20:42 -05004656{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004657 struct mem_cgroup_event *event =
4658 container_of(work, struct mem_cgroup_event, remove);
Tejun Heo59b6f872013-11-22 18:20:43 -05004659 struct mem_cgroup *memcg = event->memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004660
4661 remove_wait_queue(event->wqh, &event->wait);
4662
Tejun Heo59b6f872013-11-22 18:20:43 -05004663 event->unregister_event(memcg, event->eventfd);
Tejun Heo79bd9812013-11-22 18:20:42 -05004664
4665 /* Notify userspace the event is going away. */
4666 eventfd_signal(event->eventfd, 1);
4667
4668 eventfd_ctx_put(event->eventfd);
4669 kfree(event);
Tejun Heo59b6f872013-11-22 18:20:43 -05004670 css_put(&memcg->css);
Tejun Heo79bd9812013-11-22 18:20:42 -05004671}
4672
4673/*
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004674 * Gets called on EPOLLHUP on eventfd when user closes it.
Tejun Heo79bd9812013-11-22 18:20:42 -05004675 *
4676 * Called with wqh->lock held and interrupts disabled.
4677 */
Ingo Molnarac6424b2017-06-20 12:06:13 +02004678static int memcg_event_wake(wait_queue_entry_t *wait, unsigned mode,
Tejun Heo3bc942f2013-11-22 18:20:44 -05004679 int sync, void *key)
Tejun Heo79bd9812013-11-22 18:20:42 -05004680{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004681 struct mem_cgroup_event *event =
4682 container_of(wait, struct mem_cgroup_event, wait);
Tejun Heo59b6f872013-11-22 18:20:43 -05004683 struct mem_cgroup *memcg = event->memcg;
Al Viro3ad6f932017-07-03 20:14:56 -04004684 __poll_t flags = key_to_poll(key);
Tejun Heo79bd9812013-11-22 18:20:42 -05004685
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004686 if (flags & EPOLLHUP) {
Tejun Heo79bd9812013-11-22 18:20:42 -05004687 /*
4688 * If the event has been detached at cgroup removal, we
4689 * can simply return knowing the other side will cleanup
4690 * for us.
4691 *
4692 * We can't race against event freeing since the other
4693 * side will require wqh->lock via remove_wait_queue(),
4694 * which we hold.
4695 */
Tejun Heofba94802013-11-22 18:20:43 -05004696 spin_lock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004697 if (!list_empty(&event->list)) {
4698 list_del_init(&event->list);
4699 /*
4700 * We are in atomic context, but cgroup_event_remove()
4701 * may sleep, so we have to call it in workqueue.
4702 */
4703 schedule_work(&event->remove);
4704 }
Tejun Heofba94802013-11-22 18:20:43 -05004705 spin_unlock(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004706 }
4707
4708 return 0;
4709}
4710
Tejun Heo3bc942f2013-11-22 18:20:44 -05004711static void memcg_event_ptable_queue_proc(struct file *file,
Tejun Heo79bd9812013-11-22 18:20:42 -05004712 wait_queue_head_t *wqh, poll_table *pt)
4713{
Tejun Heo3bc942f2013-11-22 18:20:44 -05004714 struct mem_cgroup_event *event =
4715 container_of(pt, struct mem_cgroup_event, pt);
Tejun Heo79bd9812013-11-22 18:20:42 -05004716
4717 event->wqh = wqh;
4718 add_wait_queue(wqh, &event->wait);
4719}
4720
4721/*
Tejun Heo3bc942f2013-11-22 18:20:44 -05004722 * DO NOT USE IN NEW FILES.
4723 *
Tejun Heo79bd9812013-11-22 18:20:42 -05004724 * Parse input and register new cgroup event handler.
4725 *
4726 * Input must be in format '<event_fd> <control_fd> <args>'.
4727 * Interpretation of args is defined by control file implementation.
4728 */
Tejun Heo451af502014-05-13 12:16:21 -04004729static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
4730 char *buf, size_t nbytes, loff_t off)
Tejun Heo79bd9812013-11-22 18:20:42 -05004731{
Tejun Heo451af502014-05-13 12:16:21 -04004732 struct cgroup_subsys_state *css = of_css(of);
Tejun Heofba94802013-11-22 18:20:43 -05004733 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05004734 struct mem_cgroup_event *event;
Tejun Heo79bd9812013-11-22 18:20:42 -05004735 struct cgroup_subsys_state *cfile_css;
4736 unsigned int efd, cfd;
4737 struct fd efile;
4738 struct fd cfile;
Tejun Heofba94802013-11-22 18:20:43 -05004739 const char *name;
Tejun Heo79bd9812013-11-22 18:20:42 -05004740 char *endp;
4741 int ret;
4742
Tejun Heo451af502014-05-13 12:16:21 -04004743 buf = strstrip(buf);
4744
4745 efd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05004746 if (*endp != ' ')
4747 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04004748 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05004749
Tejun Heo451af502014-05-13 12:16:21 -04004750 cfd = simple_strtoul(buf, &endp, 10);
Tejun Heo79bd9812013-11-22 18:20:42 -05004751 if ((*endp != ' ') && (*endp != '\0'))
4752 return -EINVAL;
Tejun Heo451af502014-05-13 12:16:21 -04004753 buf = endp + 1;
Tejun Heo79bd9812013-11-22 18:20:42 -05004754
4755 event = kzalloc(sizeof(*event), GFP_KERNEL);
4756 if (!event)
4757 return -ENOMEM;
4758
Tejun Heo59b6f872013-11-22 18:20:43 -05004759 event->memcg = memcg;
Tejun Heo79bd9812013-11-22 18:20:42 -05004760 INIT_LIST_HEAD(&event->list);
Tejun Heo3bc942f2013-11-22 18:20:44 -05004761 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
4762 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
4763 INIT_WORK(&event->remove, memcg_event_remove);
Tejun Heo79bd9812013-11-22 18:20:42 -05004764
4765 efile = fdget(efd);
4766 if (!efile.file) {
4767 ret = -EBADF;
4768 goto out_kfree;
4769 }
4770
4771 event->eventfd = eventfd_ctx_fileget(efile.file);
4772 if (IS_ERR(event->eventfd)) {
4773 ret = PTR_ERR(event->eventfd);
4774 goto out_put_efile;
4775 }
4776
4777 cfile = fdget(cfd);
4778 if (!cfile.file) {
4779 ret = -EBADF;
4780 goto out_put_eventfd;
4781 }
4782
4783 /* the process need read permission on control file */
4784 /* AV: shouldn't we check that it's been opened for read instead? */
Christian Brauner02f92b32021-01-21 14:19:22 +01004785 ret = file_permission(cfile.file, MAY_READ);
Tejun Heo79bd9812013-11-22 18:20:42 -05004786 if (ret < 0)
4787 goto out_put_cfile;
4788
Tejun Heo79bd9812013-11-22 18:20:42 -05004789 /*
Tejun Heofba94802013-11-22 18:20:43 -05004790 * Determine the event callbacks and set them in @event. This used
4791 * to be done via struct cftype but cgroup core no longer knows
4792 * about these events. The following is crude but the whole thing
4793 * is for compatibility anyway.
Tejun Heo3bc942f2013-11-22 18:20:44 -05004794 *
4795 * DO NOT ADD NEW FILES.
Tejun Heofba94802013-11-22 18:20:43 -05004796 */
Al Virob5830432014-10-31 01:22:04 -04004797 name = cfile.file->f_path.dentry->d_name.name;
Tejun Heofba94802013-11-22 18:20:43 -05004798
4799 if (!strcmp(name, "memory.usage_in_bytes")) {
4800 event->register_event = mem_cgroup_usage_register_event;
4801 event->unregister_event = mem_cgroup_usage_unregister_event;
4802 } else if (!strcmp(name, "memory.oom_control")) {
4803 event->register_event = mem_cgroup_oom_register_event;
4804 event->unregister_event = mem_cgroup_oom_unregister_event;
4805 } else if (!strcmp(name, "memory.pressure_level")) {
4806 event->register_event = vmpressure_register_event;
4807 event->unregister_event = vmpressure_unregister_event;
4808 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
Tejun Heo347c4a82013-11-22 18:20:43 -05004809 event->register_event = memsw_cgroup_usage_register_event;
4810 event->unregister_event = memsw_cgroup_usage_unregister_event;
Tejun Heofba94802013-11-22 18:20:43 -05004811 } else {
4812 ret = -EINVAL;
4813 goto out_put_cfile;
4814 }
4815
4816 /*
Tejun Heob5557c42013-11-22 18:20:42 -05004817 * Verify @cfile should belong to @css. Also, remaining events are
4818 * automatically removed on cgroup destruction but the removal is
4819 * asynchronous, so take an extra ref on @css.
Tejun Heo79bd9812013-11-22 18:20:42 -05004820 */
Al Virob5830432014-10-31 01:22:04 -04004821 cfile_css = css_tryget_online_from_dir(cfile.file->f_path.dentry->d_parent,
Tejun Heoec903c02014-05-13 12:11:01 -04004822 &memory_cgrp_subsys);
Tejun Heo79bd9812013-11-22 18:20:42 -05004823 ret = -EINVAL;
Tejun Heo5a17f542014-02-11 11:52:47 -05004824 if (IS_ERR(cfile_css))
Tejun Heo79bd9812013-11-22 18:20:42 -05004825 goto out_put_cfile;
Tejun Heo5a17f542014-02-11 11:52:47 -05004826 if (cfile_css != css) {
4827 css_put(cfile_css);
4828 goto out_put_cfile;
4829 }
Tejun Heo79bd9812013-11-22 18:20:42 -05004830
Tejun Heo451af502014-05-13 12:16:21 -04004831 ret = event->register_event(memcg, event->eventfd, buf);
Tejun Heo79bd9812013-11-22 18:20:42 -05004832 if (ret)
4833 goto out_put_css;
4834
Christoph Hellwig9965ed172018-03-05 07:26:05 -08004835 vfs_poll(efile.file, &event->pt);
Tejun Heo79bd9812013-11-22 18:20:42 -05004836
Shakeel Butt4ba95152021-09-02 14:56:05 -07004837 spin_lock_irq(&memcg->event_list_lock);
Tejun Heofba94802013-11-22 18:20:43 -05004838 list_add(&event->list, &memcg->event_list);
Shakeel Butt4ba95152021-09-02 14:56:05 -07004839 spin_unlock_irq(&memcg->event_list_lock);
Tejun Heo79bd9812013-11-22 18:20:42 -05004840
4841 fdput(cfile);
4842 fdput(efile);
4843
Tejun Heo451af502014-05-13 12:16:21 -04004844 return nbytes;
Tejun Heo79bd9812013-11-22 18:20:42 -05004845
4846out_put_css:
Tejun Heob5557c42013-11-22 18:20:42 -05004847 css_put(css);
Tejun Heo79bd9812013-11-22 18:20:42 -05004848out_put_cfile:
4849 fdput(cfile);
4850out_put_eventfd:
4851 eventfd_ctx_put(event->eventfd);
4852out_put_efile:
4853 fdput(efile);
4854out_kfree:
4855 kfree(event);
4856
4857 return ret;
4858}
4859
Muchun Songc29b5b32022-01-14 14:04:01 -08004860#if defined(CONFIG_MEMCG_KMEM) && (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4861static int mem_cgroup_slab_show(struct seq_file *m, void *p)
4862{
4863 /*
4864 * Deprecated.
4865 * Please, take a look at tools/cgroup/slabinfo.py .
4866 */
4867 return 0;
4868}
4869#endif
4870
Johannes Weiner241994ed2015-02-11 15:26:06 -08004871static struct cftype mem_cgroup_legacy_files[] = {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004872 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004873 .name = "usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004874 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05004875 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004876 },
4877 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004878 .name = "max_usage_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004879 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04004880 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004881 .read_u64 = mem_cgroup_read_u64,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -07004882 },
4883 {
Balbir Singh0eea1032008-02-07 00:13:57 -08004884 .name = "limit_in_bytes",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004885 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004886 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004887 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004888 },
4889 {
Balbir Singh296c81d2009-09-23 15:56:36 -07004890 .name = "soft_limit_in_bytes",
4891 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004892 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004893 .read_u64 = mem_cgroup_read_u64,
Balbir Singh296c81d2009-09-23 15:56:36 -07004894 },
4895 {
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004896 .name = "failcnt",
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004897 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04004898 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004899 .read_u64 = mem_cgroup_read_u64,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08004900 },
Balbir Singh8697d332008-02-07 00:13:59 -08004901 {
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004902 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004903 .seq_show = memcg_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -08004904 },
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004905 {
4906 .name = "force_empty",
Tejun Heo6770c642014-05-13 12:16:21 -04004907 .write = mem_cgroup_force_empty_write,
KAMEZAWA Hiroyukic1e862c2009-01-07 18:07:55 -08004908 },
Balbir Singh18f59ea2009-01-07 18:08:07 -08004909 {
4910 .name = "use_hierarchy",
4911 .write_u64 = mem_cgroup_hierarchy_write,
4912 .read_u64 = mem_cgroup_hierarchy_read,
4913 },
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004914 {
Tejun Heo3bc942f2013-11-22 18:20:44 -05004915 .name = "cgroup.event_control", /* XXX: for compat */
Tejun Heo451af502014-05-13 12:16:21 -04004916 .write = memcg_write_event_control,
Tejun Heo7dbdb192015-09-18 17:54:23 -04004917 .flags = CFTYPE_NO_PREFIX | CFTYPE_WORLD_WRITABLE,
Tejun Heo79bd9812013-11-22 18:20:42 -05004918 },
4919 {
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08004920 .name = "swappiness",
4921 .read_u64 = mem_cgroup_swappiness_read,
4922 .write_u64 = mem_cgroup_swappiness_write,
4923 },
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08004924 {
4925 .name = "move_charge_at_immigrate",
4926 .read_u64 = mem_cgroup_move_charge_read,
4927 .write_u64 = mem_cgroup_move_charge_write,
4928 },
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004929 {
4930 .name = "oom_control",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004931 .seq_show = mem_cgroup_oom_control_read,
KAMEZAWA Hiroyuki3c11ecf2010-05-26 14:42:37 -07004932 .write_u64 = mem_cgroup_oom_control_write,
KAMEZAWA Hiroyuki9490ff22010-05-26 14:42:36 -07004933 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4934 },
Anton Vorontsov70ddf632013-04-29 15:08:31 -07004935 {
4936 .name = "pressure_level",
Anton Vorontsov70ddf632013-04-29 15:08:31 -07004937 },
Ying Han406eb0c2011-05-26 16:25:37 -07004938#ifdef CONFIG_NUMA
4939 {
4940 .name = "numa_stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05004941 .seq_show = memcg_numa_stat_show,
Ying Han406eb0c2011-05-26 16:25:37 -07004942 },
4943#endif
Glauber Costa510fc4e2012-12-18 14:21:47 -08004944 {
4945 .name = "kmem.limit_in_bytes",
4946 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
Tejun Heo451af502014-05-13 12:16:21 -04004947 .write = mem_cgroup_write,
Tejun Heo791badb2013-12-05 12:28:02 -05004948 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004949 },
4950 {
4951 .name = "kmem.usage_in_bytes",
4952 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
Tejun Heo791badb2013-12-05 12:28:02 -05004953 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004954 },
4955 {
4956 .name = "kmem.failcnt",
4957 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
Tejun Heo6770c642014-05-13 12:16:21 -04004958 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004959 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004960 },
4961 {
4962 .name = "kmem.max_usage_in_bytes",
4963 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
Tejun Heo6770c642014-05-13 12:16:21 -04004964 .write = mem_cgroup_reset,
Tejun Heo791badb2013-12-05 12:28:02 -05004965 .read_u64 = mem_cgroup_read_u64,
Glauber Costa510fc4e2012-12-18 14:21:47 -08004966 },
Yafang Shaoa87425a2020-04-01 21:06:30 -07004967#if defined(CONFIG_MEMCG_KMEM) && \
4968 (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
Glauber Costa749c5412012-12-18 14:23:01 -08004969 {
4970 .name = "kmem.slabinfo",
Muchun Songc29b5b32022-01-14 14:04:01 -08004971 .seq_show = mem_cgroup_slab_show,
Glauber Costa749c5412012-12-18 14:23:01 -08004972 },
4973#endif
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08004974 {
4975 .name = "kmem.tcp.limit_in_bytes",
4976 .private = MEMFILE_PRIVATE(_TCP, RES_LIMIT),
4977 .write = mem_cgroup_write,
4978 .read_u64 = mem_cgroup_read_u64,
4979 },
4980 {
4981 .name = "kmem.tcp.usage_in_bytes",
4982 .private = MEMFILE_PRIVATE(_TCP, RES_USAGE),
4983 .read_u64 = mem_cgroup_read_u64,
4984 },
4985 {
4986 .name = "kmem.tcp.failcnt",
4987 .private = MEMFILE_PRIVATE(_TCP, RES_FAILCNT),
4988 .write = mem_cgroup_reset,
4989 .read_u64 = mem_cgroup_read_u64,
4990 },
4991 {
4992 .name = "kmem.tcp.max_usage_in_bytes",
4993 .private = MEMFILE_PRIVATE(_TCP, RES_MAX_USAGE),
4994 .write = mem_cgroup_reset,
4995 .read_u64 = mem_cgroup_read_u64,
4996 },
Tejun Heo6bc10342012-04-01 12:09:55 -07004997 { }, /* terminate */
Tejun Heoaf36f902012-04-01 12:09:55 -07004998};
KAMEZAWA Hiroyuki8c7c6e342009-01-07 18:08:00 -08004999
Johannes Weiner73f576c2016-07-20 15:44:57 -07005000/*
5001 * Private memory cgroup IDR
5002 *
5003 * Swap-out records and page cache shadow entries need to store memcg
5004 * references in constrained space, so we maintain an ID space that is
5005 * limited to 16 bit (MEM_CGROUP_ID_MAX), limiting the total number of
5006 * memory-controlled cgroups to 64k.
5007 *
Ethon Paulb8f29352020-06-04 16:49:28 -07005008 * However, there usually are many references to the offline CSS after
Johannes Weiner73f576c2016-07-20 15:44:57 -07005009 * the cgroup has been destroyed, such as page cache or reclaimable
5010 * slab objects, that don't need to hang on to the ID. We want to keep
5011 * those dead CSS from occupying IDs, or we might quickly exhaust the
5012 * relatively small ID space and prevent the creation of new cgroups
5013 * even when there are much fewer than 64k cgroups - possibly none.
5014 *
5015 * Maintain a private 16-bit ID space for memcg, and allow the ID to
5016 * be freed and recycled when it's no longer needed, which is usually
5017 * when the CSS is offlined.
5018 *
5019 * The only exception to that are records of swapped out tmpfs/shmem
5020 * pages that need to be attributed to live ancestors on swapin. But
5021 * those references are manageable from userspace.
5022 */
5023
5024static DEFINE_IDR(mem_cgroup_idr);
5025
Kirill Tkhai7e97de02018-08-02 15:36:01 -07005026static void mem_cgroup_id_remove(struct mem_cgroup *memcg)
5027{
5028 if (memcg->id.id > 0) {
5029 idr_remove(&mem_cgroup_idr, memcg->id.id);
5030 memcg->id.id = 0;
5031 }
5032}
5033
Vincenzo Frascinoc1514c02020-04-01 21:07:13 -07005034static void __maybe_unused mem_cgroup_id_get_many(struct mem_cgroup *memcg,
5035 unsigned int n)
Johannes Weiner73f576c2016-07-20 15:44:57 -07005036{
Kirill Tkhai1c2d4792018-10-26 15:09:28 -07005037 refcount_add(n, &memcg->id.ref);
Johannes Weiner73f576c2016-07-20 15:44:57 -07005038}
5039
Vladimir Davydov615d66c2016-08-11 15:33:03 -07005040static void mem_cgroup_id_put_many(struct mem_cgroup *memcg, unsigned int n)
Johannes Weiner73f576c2016-07-20 15:44:57 -07005041{
Kirill Tkhai1c2d4792018-10-26 15:09:28 -07005042 if (refcount_sub_and_test(n, &memcg->id.ref)) {
Kirill Tkhai7e97de02018-08-02 15:36:01 -07005043 mem_cgroup_id_remove(memcg);
Johannes Weiner73f576c2016-07-20 15:44:57 -07005044
5045 /* Memcg ID pins CSS */
5046 css_put(&memcg->css);
5047 }
5048}
5049
Vladimir Davydov615d66c2016-08-11 15:33:03 -07005050static inline void mem_cgroup_id_put(struct mem_cgroup *memcg)
5051{
5052 mem_cgroup_id_put_many(memcg, 1);
5053}
5054
Johannes Weiner73f576c2016-07-20 15:44:57 -07005055/**
5056 * mem_cgroup_from_id - look up a memcg from a memcg id
5057 * @id: the memcg id to look up
5058 *
5059 * Caller must hold rcu_read_lock().
5060 */
5061struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
5062{
5063 WARN_ON_ONCE(!rcu_read_lock_held());
5064 return idr_find(&mem_cgroup_idr, id);
5065}
5066
Mel Gormanef8f2322016-07-28 15:46:05 -07005067static int alloc_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005068{
5069 struct mem_cgroup_per_node *pn;
Mel Gormanef8f2322016-07-28 15:46:05 -07005070 int tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005071 /*
5072 * This routine is called against possible nodes.
5073 * But it's BUG to call kmalloc() against offline node.
5074 *
5075 * TODO: this routine can waste much memory for nodes which will
5076 * never be onlined. It's better to use memory hotplug callback
5077 * function.
5078 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -07005079 if (!node_state(node, N_NORMAL_MEMORY))
5080 tmp = -1;
Jesper Juhl17295c82011-01-13 15:47:42 -08005081 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005082 if (!pn)
5083 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005084
Shakeel Butt7e1c0d62021-09-02 14:55:00 -07005085 pn->lruvec_stats_percpu = alloc_percpu_gfp(struct lruvec_stats_percpu,
5086 GFP_KERNEL_ACCOUNT);
5087 if (!pn->lruvec_stats_percpu) {
Johannes Weiner00f3ca22017-07-06 15:40:52 -07005088 kfree(pn);
5089 return 1;
5090 }
5091
Mel Gormanef8f2322016-07-28 15:46:05 -07005092 lruvec_init(&pn->lruvec);
5093 pn->usage_in_excess = 0;
5094 pn->on_tree = false;
5095 pn->memcg = memcg;
5096
Johannes Weiner54f72fe2013-07-08 15:59:49 -07005097 memcg->nodeinfo[node] = pn;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08005098 return 0;
5099}
5100
Mel Gormanef8f2322016-07-28 15:46:05 -07005101static void free_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005102{
Johannes Weiner00f3ca22017-07-06 15:40:52 -07005103 struct mem_cgroup_per_node *pn = memcg->nodeinfo[node];
5104
Michal Hocko4eaf4312018-04-10 16:29:52 -07005105 if (!pn)
5106 return;
5107
Shakeel Butt7e1c0d62021-09-02 14:55:00 -07005108 free_percpu(pn->lruvec_stats_percpu);
Johannes Weiner00f3ca22017-07-06 15:40:52 -07005109 kfree(pn);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08005110}
5111
Tahsin Erdogan40e952f2017-03-09 16:17:26 -08005112static void __mem_cgroup_free(struct mem_cgroup *memcg)
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005113{
5114 int node;
5115
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005116 for_each_node(node)
Mel Gormanef8f2322016-07-28 15:46:05 -07005117 free_mem_cgroup_per_node_info(memcg, node);
Chris Down871789d2019-05-14 15:46:57 -07005118 free_percpu(memcg->vmstats_percpu);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005119 kfree(memcg);
5120}
5121
Tahsin Erdogan40e952f2017-03-09 16:17:26 -08005122static void mem_cgroup_free(struct mem_cgroup *memcg)
5123{
5124 memcg_wb_domain_exit(memcg);
5125 __mem_cgroup_free(memcg);
5126}
5127
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005128static struct mem_cgroup *mem_cgroup_alloc(void)
5129{
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005130 struct mem_cgroup *memcg;
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005131 int node;
Tejun Heo97b27822019-08-26 09:06:56 -07005132 int __maybe_unused i;
Yafang Shao11d67612020-05-07 18:35:43 -07005133 long error = -ENOMEM;
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07005134
Wang Weiyang06b2c3b2022-01-14 14:05:42 -08005135 memcg = kzalloc(struct_size(memcg, nodeinfo, nr_node_ids), GFP_KERNEL);
Hugh Dickinsd79154b2012-03-21 16:34:18 -07005136 if (!memcg)
Yafang Shao11d67612020-05-07 18:35:43 -07005137 return ERR_PTR(error);
Dan Carpentere7bbcdf2010-03-23 13:35:12 -07005138
Johannes Weiner73f576c2016-07-20 15:44:57 -07005139 memcg->id.id = idr_alloc(&mem_cgroup_idr, NULL,
5140 1, MEM_CGROUP_ID_MAX,
5141 GFP_KERNEL);
Yafang Shao11d67612020-05-07 18:35:43 -07005142 if (memcg->id.id < 0) {
5143 error = memcg->id.id;
Johannes Weiner73f576c2016-07-20 15:44:57 -07005144 goto fail;
Yafang Shao11d67612020-05-07 18:35:43 -07005145 }
Johannes Weiner73f576c2016-07-20 15:44:57 -07005146
Roman Gushchin3e38e0a2020-08-11 18:30:25 -07005147 memcg->vmstats_percpu = alloc_percpu_gfp(struct memcg_vmstats_percpu,
5148 GFP_KERNEL_ACCOUNT);
Chris Down871789d2019-05-14 15:46:57 -07005149 if (!memcg->vmstats_percpu)
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005150 goto fail;
Pavel Emelianov78fb7462008-02-07 00:13:51 -08005151
Bob Liu3ed28fa2012-01-12 17:19:04 -08005152 for_each_node(node)
Mel Gormanef8f2322016-07-28 15:46:05 -07005153 if (alloc_mem_cgroup_per_node_info(memcg, node))
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005154 goto fail;
Balbir Singhf64c3f52009-09-23 15:56:37 -07005155
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005156 if (memcg_wb_domain_init(memcg, GFP_KERNEL))
5157 goto fail;
Balbir Singh28dbc4b2009-01-07 18:08:05 -08005158
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08005159 INIT_WORK(&memcg->high_work, high_work_func);
Glauber Costad142e3e2013-02-22 16:34:52 -08005160 INIT_LIST_HEAD(&memcg->oom_notify);
Glauber Costad142e3e2013-02-22 16:34:52 -08005161 mutex_init(&memcg->thresholds_lock);
5162 spin_lock_init(&memcg->move_lock);
Anton Vorontsov70ddf632013-04-29 15:08:31 -07005163 vmpressure_init(&memcg->vmpressure);
Tejun Heofba94802013-11-22 18:20:43 -05005164 INIT_LIST_HEAD(&memcg->event_list);
5165 spin_lock_init(&memcg->event_list_lock);
Johannes Weinerd886f4e2016-01-20 15:02:47 -08005166 memcg->socket_pressure = jiffies;
Kirill Tkhai84c07d12018-08-17 15:47:25 -07005167#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov900a38f2014-12-12 16:55:10 -08005168 memcg->kmemcg_id = -1;
Roman Gushchinbf4f0592020-08-06 23:20:49 -07005169 INIT_LIST_HEAD(&memcg->objcg_list);
Vladimir Davydov900a38f2014-12-12 16:55:10 -08005170#endif
Tejun Heo52ebea72015-05-22 17:13:37 -04005171#ifdef CONFIG_CGROUP_WRITEBACK
5172 INIT_LIST_HEAD(&memcg->cgwb_list);
Tejun Heo97b27822019-08-26 09:06:56 -07005173 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5174 memcg->cgwb_frn[i].done =
5175 __WB_COMPLETION_INIT(&memcg_cgwb_frn_waitq);
Tejun Heo52ebea72015-05-22 17:13:37 -04005176#endif
Yang Shi87eaceb2019-09-23 15:38:15 -07005177#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5178 spin_lock_init(&memcg->deferred_split_queue.split_queue_lock);
5179 INIT_LIST_HEAD(&memcg->deferred_split_queue.split_queue);
5180 memcg->deferred_split_queue.split_queue_len = 0;
5181#endif
Johannes Weiner73f576c2016-07-20 15:44:57 -07005182 idr_replace(&mem_cgroup_idr, memcg, memcg->id.id);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005183 return memcg;
5184fail:
Kirill Tkhai7e97de02018-08-02 15:36:01 -07005185 mem_cgroup_id_remove(memcg);
Tahsin Erdogan40e952f2017-03-09 16:17:26 -08005186 __mem_cgroup_free(memcg);
Yafang Shao11d67612020-05-07 18:35:43 -07005187 return ERR_PTR(error);
Glauber Costad142e3e2013-02-22 16:34:52 -08005188}
5189
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005190static struct cgroup_subsys_state * __ref
5191mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Glauber Costad142e3e2013-02-22 16:34:52 -08005192{
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005193 struct mem_cgroup *parent = mem_cgroup_from_css(parent_css);
Roman Gushchinb87d8ce2020-10-17 16:13:40 -07005194 struct mem_cgroup *memcg, *old_memcg;
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005195 long error = -ENOMEM;
Glauber Costad142e3e2013-02-22 16:34:52 -08005196
Roman Gushchinb87d8ce2020-10-17 16:13:40 -07005197 old_memcg = set_active_memcg(parent);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005198 memcg = mem_cgroup_alloc();
Roman Gushchinb87d8ce2020-10-17 16:13:40 -07005199 set_active_memcg(old_memcg);
Yafang Shao11d67612020-05-07 18:35:43 -07005200 if (IS_ERR(memcg))
5201 return ERR_CAST(memcg);
Li Zefan4219b2d2013-09-23 16:56:29 +08005202
Jakub Kicinskid1663a92020-06-01 21:49:49 -07005203 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005204 memcg->soft_limit = PAGE_COUNTER_MAX;
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07005205 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005206 if (parent) {
5207 memcg->swappiness = mem_cgroup_swappiness(parent);
5208 memcg->oom_kill_disable = parent->oom_kill_disable;
Roman Gushchinbef86202020-12-14 19:06:49 -08005209
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005210 page_counter_init(&memcg->memory, &parent->memory);
Vladimir Davydov37e84352016-01-20 15:02:56 -08005211 page_counter_init(&memcg->swap, &parent->swap);
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005212 page_counter_init(&memcg->kmem, &parent->kmem);
Johannes Weiner0db15292016-01-20 15:02:50 -08005213 page_counter_init(&memcg->tcpmem, &parent->tcpmem);
Balbir Singh18f59ea2009-01-07 18:08:07 -08005214 } else {
Roman Gushchinbef86202020-12-14 19:06:49 -08005215 page_counter_init(&memcg->memory, NULL);
5216 page_counter_init(&memcg->swap, NULL);
5217 page_counter_init(&memcg->kmem, NULL);
5218 page_counter_init(&memcg->tcpmem, NULL);
Vladimir Davydovd6441632014-01-23 15:53:09 -08005219
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005220 root_mem_cgroup = memcg;
5221 return &memcg->css;
5222 }
5223
Roman Gushchinbef86202020-12-14 19:06:49 -08005224 /* The following stuff does not apply to the root */
Vladimir Davydovb313aee2016-03-17 14:18:27 -07005225 error = memcg_online_kmem(memcg);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005226 if (error)
5227 goto fail;
Johannes Weiner127424c2016-01-20 15:02:32 -08005228
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08005229 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
Johannes Weineref129472016-01-14 15:21:34 -08005230 static_branch_inc(&memcg_sockets_enabled_key);
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08005231
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005232 return &memcg->css;
5233fail:
Kirill Tkhai7e97de02018-08-02 15:36:01 -07005234 mem_cgroup_id_remove(memcg);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005235 mem_cgroup_free(memcg);
Yafang Shao11d67612020-05-07 18:35:43 -07005236 return ERR_PTR(error);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005237}
5238
Johannes Weiner73f576c2016-07-20 15:44:57 -07005239static int mem_cgroup_css_online(struct cgroup_subsys_state *css)
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005240{
Vladimir Davydov58fa2a52016-10-07 16:57:29 -07005241 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5242
Kirill Tkhai0a4465d2018-08-17 15:47:37 -07005243 /*
Yang Shie4262c42021-05-04 18:36:23 -07005244 * A memcg must be visible for expand_shrinker_info()
Kirill Tkhai0a4465d2018-08-17 15:47:37 -07005245 * by the time the maps are allocated. So, we allocate maps
5246 * here, when for_each_mem_cgroup() can't skip it.
5247 */
Yang Shie4262c42021-05-04 18:36:23 -07005248 if (alloc_shrinker_info(memcg)) {
Kirill Tkhai0a4465d2018-08-17 15:47:37 -07005249 mem_cgroup_id_remove(memcg);
5250 return -ENOMEM;
5251 }
5252
Johannes Weiner73f576c2016-07-20 15:44:57 -07005253 /* Online state pins memcg ID, memcg ID pins CSS */
Kirill Tkhai1c2d4792018-10-26 15:09:28 -07005254 refcount_set(&memcg->id.ref, 1);
Johannes Weiner73f576c2016-07-20 15:44:57 -07005255 css_get(css);
Shakeel Buttaa48e472021-09-02 14:55:04 -07005256
5257 if (unlikely(mem_cgroup_is_root(memcg)))
5258 queue_delayed_work(system_unbound_wq, &stats_flush_dwork,
5259 2UL*HZ);
Johannes Weiner2f7dd7a2014-10-02 16:16:57 -07005260 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005261}
5262
Tejun Heoeb954192013-08-08 20:11:23 -04005263static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005264{
Tejun Heoeb954192013-08-08 20:11:23 -04005265 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo3bc942f2013-11-22 18:20:44 -05005266 struct mem_cgroup_event *event, *tmp;
Tejun Heo79bd9812013-11-22 18:20:42 -05005267
5268 /*
5269 * Unregister events and notify userspace.
5270 * Notify userspace about cgroup removing only after rmdir of cgroup
5271 * directory to avoid race between userspace and kernelspace.
5272 */
Shakeel Butt4ba95152021-09-02 14:56:05 -07005273 spin_lock_irq(&memcg->event_list_lock);
Tejun Heofba94802013-11-22 18:20:43 -05005274 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
Tejun Heo79bd9812013-11-22 18:20:42 -05005275 list_del_init(&event->list);
5276 schedule_work(&event->remove);
5277 }
Shakeel Butt4ba95152021-09-02 14:56:05 -07005278 spin_unlock_irq(&memcg->event_list_lock);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005279
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07005280 page_counter_set_min(&memcg->memory, 0);
Roman Gushchin23067152018-06-07 17:06:22 -07005281 page_counter_set_low(&memcg->memory, 0);
Roman Gushchin63677c742017-09-06 16:21:47 -07005282
Johannes Weiner567e9ab2016-01-20 15:02:24 -08005283 memcg_offline_kmem(memcg);
Yang Shia1780152021-05-04 18:36:42 -07005284 reparent_shrinker_deferred(memcg);
Tejun Heo52ebea72015-05-22 17:13:37 -04005285 wb_memcg_offline(memcg);
Johannes Weiner73f576c2016-07-20 15:44:57 -07005286
Roman Gushchin591edfb2018-10-26 15:03:23 -07005287 drain_all_stock(memcg);
5288
Johannes Weiner73f576c2016-07-20 15:44:57 -07005289 mem_cgroup_id_put(memcg);
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08005290}
5291
Vladimir Davydov6df38682015-12-29 14:54:10 -08005292static void mem_cgroup_css_released(struct cgroup_subsys_state *css)
5293{
5294 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5295
5296 invalidate_reclaim_iterators(memcg);
5297}
5298
Tejun Heoeb954192013-08-08 20:11:23 -04005299static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005300{
Tejun Heoeb954192013-08-08 20:11:23 -04005301 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Tejun Heo97b27822019-08-26 09:06:56 -07005302 int __maybe_unused i;
Daisuke Nishimurac268e992009-01-15 13:51:13 -08005303
Tejun Heo97b27822019-08-26 09:06:56 -07005304#ifdef CONFIG_CGROUP_WRITEBACK
5305 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5306 wb_wait_for_completion(&memcg->cgwb_frn[i].done);
5307#endif
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08005308 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
Johannes Weineref129472016-01-14 15:21:34 -08005309 static_branch_dec(&memcg_sockets_enabled_key);
Johannes Weiner3893e302016-01-20 15:02:29 -08005310
Johannes Weiner0db15292016-01-20 15:02:50 -08005311 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_active)
Vladimir Davydovd55f90b2016-01-20 15:02:44 -08005312 static_branch_dec(&memcg_sockets_enabled_key);
Johannes Weiner3893e302016-01-20 15:02:29 -08005313
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005314 vmpressure_cleanup(&memcg->vmpressure);
5315 cancel_work_sync(&memcg->high_work);
5316 mem_cgroup_remove_from_trees(memcg);
Yang Shie4262c42021-05-04 18:36:23 -07005317 free_shrinker_info(memcg);
Waiman Long38d4ef42021-11-05 13:37:37 -07005318
5319 /* Need to offline kmem if online_css() fails */
5320 memcg_offline_kmem(memcg);
Johannes Weiner0b8f73e2016-01-20 15:02:53 -08005321 mem_cgroup_free(memcg);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08005322}
5323
Tejun Heo1ced9532014-07-08 18:02:57 -04005324/**
5325 * mem_cgroup_css_reset - reset the states of a mem_cgroup
5326 * @css: the target css
5327 *
5328 * Reset the states of the mem_cgroup associated with @css. This is
5329 * invoked when the userland requests disabling on the default hierarchy
5330 * but the memcg is pinned through dependency. The memcg should stop
5331 * applying policies and should revert to the vanilla state as it may be
5332 * made visible again.
5333 *
5334 * The current implementation only resets the essential configurations.
5335 * This needs to be expanded to cover all the visible parts.
5336 */
5337static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5338{
5339 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5340
Roman Gushchinbbec2e12018-06-07 17:06:18 -07005341 page_counter_set_max(&memcg->memory, PAGE_COUNTER_MAX);
5342 page_counter_set_max(&memcg->swap, PAGE_COUNTER_MAX);
Roman Gushchinbbec2e12018-06-07 17:06:18 -07005343 page_counter_set_max(&memcg->kmem, PAGE_COUNTER_MAX);
5344 page_counter_set_max(&memcg->tcpmem, PAGE_COUNTER_MAX);
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07005345 page_counter_set_min(&memcg->memory, 0);
Roman Gushchin23067152018-06-07 17:06:22 -07005346 page_counter_set_low(&memcg->memory, 0);
Jakub Kicinskid1663a92020-06-01 21:49:49 -07005347 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
Johannes Weiner24d404d2015-01-08 14:32:35 -08005348 memcg->soft_limit = PAGE_COUNTER_MAX;
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07005349 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
Tejun Heo2529bb32015-05-22 18:23:34 -04005350 memcg_wb_domain_size_changed(memcg);
Tejun Heo1ced9532014-07-08 18:02:57 -04005351}
5352
Johannes Weiner2d146aa2021-04-29 22:56:26 -07005353static void mem_cgroup_css_rstat_flush(struct cgroup_subsys_state *css, int cpu)
5354{
5355 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5356 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5357 struct memcg_vmstats_percpu *statc;
5358 long delta, v;
Shakeel Butt7e1c0d62021-09-02 14:55:00 -07005359 int i, nid;
Johannes Weiner2d146aa2021-04-29 22:56:26 -07005360
5361 statc = per_cpu_ptr(memcg->vmstats_percpu, cpu);
5362
5363 for (i = 0; i < MEMCG_NR_STAT; i++) {
5364 /*
5365 * Collect the aggregated propagation counts of groups
5366 * below us. We're in a per-cpu loop here and this is
5367 * a global counter, so the first cycle will get them.
5368 */
5369 delta = memcg->vmstats.state_pending[i];
5370 if (delta)
5371 memcg->vmstats.state_pending[i] = 0;
5372
5373 /* Add CPU changes on this level since the last flush */
5374 v = READ_ONCE(statc->state[i]);
5375 if (v != statc->state_prev[i]) {
5376 delta += v - statc->state_prev[i];
5377 statc->state_prev[i] = v;
5378 }
5379
5380 if (!delta)
5381 continue;
5382
5383 /* Aggregate counts on this level and propagate upwards */
5384 memcg->vmstats.state[i] += delta;
5385 if (parent)
5386 parent->vmstats.state_pending[i] += delta;
5387 }
5388
5389 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
5390 delta = memcg->vmstats.events_pending[i];
5391 if (delta)
5392 memcg->vmstats.events_pending[i] = 0;
5393
5394 v = READ_ONCE(statc->events[i]);
5395 if (v != statc->events_prev[i]) {
5396 delta += v - statc->events_prev[i];
5397 statc->events_prev[i] = v;
5398 }
5399
5400 if (!delta)
5401 continue;
5402
5403 memcg->vmstats.events[i] += delta;
5404 if (parent)
5405 parent->vmstats.events_pending[i] += delta;
5406 }
Shakeel Butt7e1c0d62021-09-02 14:55:00 -07005407
5408 for_each_node_state(nid, N_MEMORY) {
5409 struct mem_cgroup_per_node *pn = memcg->nodeinfo[nid];
5410 struct mem_cgroup_per_node *ppn = NULL;
5411 struct lruvec_stats_percpu *lstatc;
5412
5413 if (parent)
5414 ppn = parent->nodeinfo[nid];
5415
5416 lstatc = per_cpu_ptr(pn->lruvec_stats_percpu, cpu);
5417
5418 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
5419 delta = pn->lruvec_stats.state_pending[i];
5420 if (delta)
5421 pn->lruvec_stats.state_pending[i] = 0;
5422
5423 v = READ_ONCE(lstatc->state[i]);
5424 if (v != lstatc->state_prev[i]) {
5425 delta += v - lstatc->state_prev[i];
5426 lstatc->state_prev[i] = v;
5427 }
5428
5429 if (!delta)
5430 continue;
5431
5432 pn->lruvec_stats.state[i] += delta;
5433 if (ppn)
5434 ppn->lruvec_stats.state_pending[i] += delta;
5435 }
5436 }
Johannes Weiner2d146aa2021-04-29 22:56:26 -07005437}
5438
Daisuke Nishimura02491442010-03-10 15:22:17 -08005439#ifdef CONFIG_MMU
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005440/* Handlers for move charge at task migration. */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005441static int mem_cgroup_do_precharge(unsigned long count)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005442{
Johannes Weiner05b84302014-08-06 16:05:59 -07005443 int ret;
Johannes Weiner9476db92014-08-06 16:05:55 -07005444
Mel Gormand0164ad2015-11-06 16:28:21 -08005445 /* Try a single bulk charge without reclaim first, kswapd may wake */
5446 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_DIRECT_RECLAIM, count);
Johannes Weiner9476db92014-08-06 16:05:55 -07005447 if (!ret) {
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005448 mc.precharge += count;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005449 return ret;
5450 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005451
David Rientjes36745342017-01-24 15:18:10 -08005452 /* Try charges one by one with reclaim, but do not retry */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005453 while (count--) {
David Rientjes36745342017-01-24 15:18:10 -08005454 ret = try_charge(mc.to, GFP_KERNEL | __GFP_NORETRY, 1);
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005455 if (ret)
KAMEZAWA Hiroyuki38c5d722012-01-12 17:19:01 -08005456 return ret;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005457 mc.precharge++;
Johannes Weiner9476db92014-08-06 16:05:55 -07005458 cond_resched();
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005459 }
Johannes Weiner9476db92014-08-06 16:05:55 -07005460 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005461}
5462
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005463union mc_target {
5464 struct page *page;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005465 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005466};
5467
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005468enum mc_target_type {
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005469 MC_TARGET_NONE = 0,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005470 MC_TARGET_PAGE,
Daisuke Nishimura02491442010-03-10 15:22:17 -08005471 MC_TARGET_SWAP,
Jérôme Glissec733a822017-09-08 16:11:54 -07005472 MC_TARGET_DEVICE,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005473};
5474
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005475static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5476 unsigned long addr, pte_t ptent)
5477{
Christoph Hellwig25b29952019-06-13 22:50:49 +02005478 struct page *page = vm_normal_page(vma, addr, ptent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005479
5480 if (!page || !page_mapped(page))
5481 return NULL;
5482 if (PageAnon(page)) {
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08005483 if (!(mc.flags & MOVE_ANON))
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005484 return NULL;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08005485 } else {
5486 if (!(mc.flags & MOVE_FILE))
5487 return NULL;
5488 }
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005489 if (!get_page_unless_zero(page))
5490 return NULL;
5491
5492 return page;
5493}
5494
Jérôme Glissec733a822017-09-08 16:11:54 -07005495#if defined(CONFIG_SWAP) || defined(CONFIG_DEVICE_PRIVATE)
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005496static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
Li RongQing48406ef2016-07-26 15:22:14 -07005497 pte_t ptent, swp_entry_t *entry)
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005498{
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005499 struct page *page = NULL;
5500 swp_entry_t ent = pte_to_swp_entry(ptent);
5501
Ralph Campbell9a137152020-10-13 16:53:13 -07005502 if (!(mc.flags & MOVE_ANON))
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005503 return NULL;
Jérôme Glissec733a822017-09-08 16:11:54 -07005504
5505 /*
5506 * Handle MEMORY_DEVICE_PRIVATE which are ZONE_DEVICE page belonging to
5507 * a device and because they are not accessible by CPU they are store
5508 * as special swap entry in the CPU page table.
5509 */
5510 if (is_device_private_entry(ent)) {
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -07005511 page = pfn_swap_entry_to_page(ent);
Jérôme Glissec733a822017-09-08 16:11:54 -07005512 /*
5513 * MEMORY_DEVICE_PRIVATE means ZONE_DEVICE page and which have
5514 * a refcount of 1 when free (unlike normal page)
5515 */
5516 if (!page_ref_add_unless(page, 1, 1))
5517 return NULL;
5518 return page;
5519 }
5520
Ralph Campbell9a137152020-10-13 16:53:13 -07005521 if (non_swap_entry(ent))
5522 return NULL;
5523
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005524 /*
5525 * Because lookup_swap_cache() updates some statistics counter,
5526 * we call find_get_page() with swapper_space directly.
5527 */
Huang Yingf6ab1f72016-10-07 17:00:21 -07005528 page = find_get_page(swap_address_space(ent), swp_offset(ent));
Johannes Weiner2d1c4982020-06-03 16:02:14 -07005529 entry->val = ent.val;
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005530
5531 return page;
5532}
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005533#else
5534static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
Li RongQing48406ef2016-07-26 15:22:14 -07005535 pte_t ptent, swp_entry_t *entry)
KAMEZAWA Hiroyuki4b913552012-05-29 15:06:51 -07005536{
5537 return NULL;
5538}
5539#endif
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005540
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005541static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
Peter Xu48384b02021-11-05 13:37:28 -07005542 unsigned long addr, pte_t ptent)
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005543{
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005544 if (!vma->vm_file) /* anonymous vma */
5545 return NULL;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08005546 if (!(mc.flags & MOVE_FILE))
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005547 return NULL;
5548
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005549 /* page is moved even if it's not RSS of this task(page-faulted). */
Hugh Dickinsaa3b1892011-08-03 16:21:24 -07005550 /* shmem/tmpfs may report page out on swap: account for that too. */
Matthew Wilcox (Oracle)f5df8632020-10-13 16:51:21 -07005551 return find_get_incore_page(vma->vm_file->f_mapping,
5552 linear_page_index(vma, addr));
Daisuke Nishimura87946a72010-05-26 14:42:39 -07005553}
5554
Chen Gangb1b0dea2015-04-14 15:47:35 -07005555/**
5556 * mem_cgroup_move_account - move account of the page
5557 * @page: the page
Li RongQing25843c22016-07-26 15:26:56 -07005558 * @compound: charge the page as compound or small page
Chen Gangb1b0dea2015-04-14 15:47:35 -07005559 * @from: mem_cgroup which the page is moved from.
5560 * @to: mem_cgroup which the page is moved to. @from != @to.
5561 *
Kirill A. Shutemov3ac808f2016-01-15 16:53:07 -08005562 * The caller must make sure the page is not on LRU (isolate_page() is useful.)
Chen Gangb1b0dea2015-04-14 15:47:35 -07005563 *
5564 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
5565 * from old cgroup.
5566 */
5567static int mem_cgroup_move_account(struct page *page,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08005568 bool compound,
Chen Gangb1b0dea2015-04-14 15:47:35 -07005569 struct mem_cgroup *from,
5570 struct mem_cgroup *to)
5571{
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005572 struct folio *folio = page_folio(page);
Konstantin Khlebnikovae8af432019-10-18 20:20:11 -07005573 struct lruvec *from_vec, *to_vec;
5574 struct pglist_data *pgdat;
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005575 unsigned int nr_pages = compound ? folio_nr_pages(folio) : 1;
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04005576 int nid, ret;
Chen Gangb1b0dea2015-04-14 15:47:35 -07005577
5578 VM_BUG_ON(from == to);
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005579 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
Matthew Wilcox (Oracle)9c325212021-11-16 21:17:14 -05005580 VM_BUG_ON(compound && !folio_test_large(folio));
Chen Gangb1b0dea2015-04-14 15:47:35 -07005581
5582 /*
Johannes Weiner6a93ca82016-03-15 14:57:19 -07005583 * Prevent mem_cgroup_migrate() from looking at
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005584 * page's memory cgroup of its source page while we change it.
Chen Gangb1b0dea2015-04-14 15:47:35 -07005585 */
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08005586 ret = -EBUSY;
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005587 if (!folio_trylock(folio))
Chen Gangb1b0dea2015-04-14 15:47:35 -07005588 goto out;
5589
5590 ret = -EINVAL;
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005591 if (folio_memcg(folio) != from)
Chen Gangb1b0dea2015-04-14 15:47:35 -07005592 goto out_unlock;
5593
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005594 pgdat = folio_pgdat(folio);
Johannes Weiner867e5e12019-11-30 17:55:34 -08005595 from_vec = mem_cgroup_lruvec(from, pgdat);
5596 to_vec = mem_cgroup_lruvec(to, pgdat);
Konstantin Khlebnikovae8af432019-10-18 20:20:11 -07005597
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005598 folio_memcg_lock(folio);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005599
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005600 if (folio_test_anon(folio)) {
5601 if (folio_mapped(folio)) {
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07005602 __mod_lruvec_state(from_vec, NR_ANON_MAPPED, -nr_pages);
5603 __mod_lruvec_state(to_vec, NR_ANON_MAPPED, nr_pages);
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005604 if (folio_test_transhuge(folio)) {
Muchun Song69473e52021-02-24 12:03:23 -08005605 __mod_lruvec_state(from_vec, NR_ANON_THPS,
5606 -nr_pages);
5607 __mod_lruvec_state(to_vec, NR_ANON_THPS,
5608 nr_pages);
Johannes Weiner468c3982020-06-03 16:02:01 -07005609 }
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07005610 }
5611 } else {
Johannes Weiner0d1c2072020-06-03 16:01:54 -07005612 __mod_lruvec_state(from_vec, NR_FILE_PAGES, -nr_pages);
5613 __mod_lruvec_state(to_vec, NR_FILE_PAGES, nr_pages);
5614
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005615 if (folio_test_swapbacked(folio)) {
Johannes Weiner0d1c2072020-06-03 16:01:54 -07005616 __mod_lruvec_state(from_vec, NR_SHMEM, -nr_pages);
5617 __mod_lruvec_state(to_vec, NR_SHMEM, nr_pages);
5618 }
5619
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005620 if (folio_mapped(folio)) {
Johannes Weiner49e50d22020-06-03 16:01:47 -07005621 __mod_lruvec_state(from_vec, NR_FILE_MAPPED, -nr_pages);
5622 __mod_lruvec_state(to_vec, NR_FILE_MAPPED, nr_pages);
5623 }
Chen Gangb1b0dea2015-04-14 15:47:35 -07005624
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005625 if (folio_test_dirty(folio)) {
5626 struct address_space *mapping = folio_mapping(folio);
Greg Thelenc4843a72015-05-22 17:13:16 -04005627
Christoph Hellwigf56753a2020-09-24 08:51:40 +02005628 if (mapping_can_writeback(mapping)) {
Johannes Weiner49e50d22020-06-03 16:01:47 -07005629 __mod_lruvec_state(from_vec, NR_FILE_DIRTY,
5630 -nr_pages);
5631 __mod_lruvec_state(to_vec, NR_FILE_DIRTY,
5632 nr_pages);
5633 }
Greg Thelenc4843a72015-05-22 17:13:16 -04005634 }
5635 }
5636
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005637 if (folio_test_writeback(folio)) {
Konstantin Khlebnikovae8af432019-10-18 20:20:11 -07005638 __mod_lruvec_state(from_vec, NR_WRITEBACK, -nr_pages);
5639 __mod_lruvec_state(to_vec, NR_WRITEBACK, nr_pages);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005640 }
5641
5642 /*
Johannes Weinerabb242f2020-06-03 16:01:28 -07005643 * All state has been migrated, let's switch to the new memcg.
5644 *
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005645 * It is safe to change page's memcg here because the page
Johannes Weinerabb242f2020-06-03 16:01:28 -07005646 * is referenced, charged, isolated, and locked: we can't race
5647 * with (un)charging, migration, LRU putback, or anything else
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005648 * that would rely on a stable page's memory cgroup.
Johannes Weinerabb242f2020-06-03 16:01:28 -07005649 *
5650 * Note that lock_page_memcg is a memcg lock, not a page lock,
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005651 * to save space. As soon as we switch page's memory cgroup to a
Johannes Weinerabb242f2020-06-03 16:01:28 -07005652 * new memcg that isn't locked, the above state can change
5653 * concurrently again. Make sure we're truly done with it.
Chen Gangb1b0dea2015-04-14 15:47:35 -07005654 */
Johannes Weinerabb242f2020-06-03 16:01:28 -07005655 smp_mb();
Chen Gangb1b0dea2015-04-14 15:47:35 -07005656
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07005657 css_get(&to->css);
5658 css_put(&from->css);
5659
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005660 folio->memcg_data = (unsigned long)to;
Yang Shi87eaceb2019-09-23 15:38:15 -07005661
Matthew Wilcox (Oracle)f70ad442021-06-28 17:26:00 -04005662 __folio_memcg_unlock(from);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005663
5664 ret = 0;
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005665 nid = folio_nid(folio);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005666
5667 local_irq_disable();
Matthew Wilcox (Oracle)6e0110c2021-04-29 13:40:11 -04005668 mem_cgroup_charge_statistics(to, nr_pages);
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04005669 memcg_check_events(to, nid);
Matthew Wilcox (Oracle)6e0110c2021-04-29 13:40:11 -04005670 mem_cgroup_charge_statistics(from, -nr_pages);
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04005671 memcg_check_events(from, nid);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005672 local_irq_enable();
5673out_unlock:
Matthew Wilcox (Oracle)fcce4672021-03-01 16:34:06 -05005674 folio_unlock(folio);
Chen Gangb1b0dea2015-04-14 15:47:35 -07005675out:
5676 return ret;
5677}
5678
Li RongQing7cf78062016-05-27 14:27:46 -07005679/**
5680 * get_mctgt_type - get target type of moving charge
5681 * @vma: the vma the pte to be checked belongs
5682 * @addr: the address corresponding to the pte to be checked
5683 * @ptent: the pte to be checked
5684 * @target: the pointer the target page or swap ent will be stored(can be NULL)
5685 *
5686 * Returns
5687 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5688 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5689 * move charge. if @target is not NULL, the page is stored in target->page
5690 * with extra refcnt got(Callers should handle it).
5691 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5692 * target for charge migration. if @target is not NULL, the entry is stored
5693 * in target->ent.
Christoph Hellwig25b29952019-06-13 22:50:49 +02005694 * 3(MC_TARGET_DEVICE): like MC_TARGET_PAGE but page is MEMORY_DEVICE_PRIVATE
5695 * (so ZONE_DEVICE page and thus not on the lru).
Jérôme Glissedf6ad692017-09-08 16:12:24 -07005696 * For now we such page is charge like a regular page would be as for all
5697 * intent and purposes it is just special memory taking the place of a
5698 * regular page.
Jérôme Glissec733a822017-09-08 16:11:54 -07005699 *
5700 * See Documentations/vm/hmm.txt and include/linux/hmm.h
Li RongQing7cf78062016-05-27 14:27:46 -07005701 *
5702 * Called with pte lock held.
5703 */
5704
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005705static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005706 unsigned long addr, pte_t ptent, union mc_target *target)
5707{
Daisuke Nishimura02491442010-03-10 15:22:17 -08005708 struct page *page = NULL;
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005709 enum mc_target_type ret = MC_TARGET_NONE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005710 swp_entry_t ent = { .val = 0 };
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005711
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005712 if (pte_present(ptent))
5713 page = mc_handle_present_pte(vma, addr, ptent);
5714 else if (is_swap_pte(ptent))
Li RongQing48406ef2016-07-26 15:22:14 -07005715 page = mc_handle_swap_pte(vma, ptent, &ent);
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08005716 else if (pte_none(ptent))
Peter Xu48384b02021-11-05 13:37:28 -07005717 page = mc_handle_file_pte(vma, addr, ptent);
Daisuke Nishimura90254a62010-05-26 14:42:38 -07005718
5719 if (!page && !ent.val)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005720 return ret;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005721 if (page) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005722 /*
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005723 * Do only loose check w/o serialization.
Johannes Weiner1306a852014-12-10 15:44:52 -08005724 * mem_cgroup_move_account() checks the page is valid or
Johannes Weiner0a31bc92014-08-08 14:19:22 -07005725 * not under LRU exclusion.
Daisuke Nishimura02491442010-03-10 15:22:17 -08005726 */
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005727 if (page_memcg(page) == mc.from) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08005728 ret = MC_TARGET_PAGE;
Christoph Hellwig25b29952019-06-13 22:50:49 +02005729 if (is_device_private_page(page))
Jérôme Glissec733a822017-09-08 16:11:54 -07005730 ret = MC_TARGET_DEVICE;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005731 if (target)
5732 target->page = page;
5733 }
5734 if (!ret || !target)
5735 put_page(page);
5736 }
Huang Ying3e14a572017-09-06 16:22:37 -07005737 /*
5738 * There is a swap entry and a page doesn't exist or isn't charged.
5739 * But we cannot move a tail-page in a THP.
5740 */
5741 if (ent.val && !ret && (!page || !PageTransCompound(page)) &&
Li Zefan34c00c32013-09-23 16:56:01 +08005742 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005743 ret = MC_TARGET_SWAP;
5744 if (target)
5745 target->ent = ent;
Daisuke Nishimura02491442010-03-10 15:22:17 -08005746 }
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005747 return ret;
5748}
5749
Naoya Horiguchi12724852012-03-21 16:34:28 -07005750#ifdef CONFIG_TRANSPARENT_HUGEPAGE
5751/*
Huang Yingd6810d72017-09-06 16:22:45 -07005752 * We don't consider PMD mapped swapping or file mapped pages because THP does
5753 * not support them for now.
Naoya Horiguchi12724852012-03-21 16:34:28 -07005754 * Caller should make sure that pmd_trans_huge(pmd) is true.
5755 */
5756static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5757 unsigned long addr, pmd_t pmd, union mc_target *target)
5758{
5759 struct page *page = NULL;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005760 enum mc_target_type ret = MC_TARGET_NONE;
5761
Zi Yan84c3fc42017-09-08 16:11:01 -07005762 if (unlikely(is_swap_pmd(pmd))) {
5763 VM_BUG_ON(thp_migration_supported() &&
5764 !is_pmd_migration_entry(pmd));
5765 return ret;
5766 }
Naoya Horiguchi12724852012-03-21 16:34:28 -07005767 page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08005768 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08005769 if (!(mc.flags & MOVE_ANON))
Naoya Horiguchi12724852012-03-21 16:34:28 -07005770 return ret;
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08005771 if (page_memcg(page) == mc.from) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07005772 ret = MC_TARGET_PAGE;
5773 if (target) {
5774 get_page(page);
5775 target->page = page;
5776 }
5777 }
5778 return ret;
5779}
5780#else
5781static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5782 unsigned long addr, pmd_t pmd, union mc_target *target)
5783{
5784 return MC_TARGET_NONE;
5785}
5786#endif
5787
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005788static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5789 unsigned long addr, unsigned long end,
5790 struct mm_walk *walk)
5791{
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08005792 struct vm_area_struct *vma = walk->vma;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005793 pte_t *pte;
5794 spinlock_t *ptl;
5795
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08005796 ptl = pmd_trans_huge_lock(pmd, vma);
5797 if (ptl) {
Jérôme Glissec733a822017-09-08 16:11:54 -07005798 /*
5799 * Note their can not be MC_TARGET_DEVICE for now as we do not
Christoph Hellwig25b29952019-06-13 22:50:49 +02005800 * support transparent huge page with MEMORY_DEVICE_PRIVATE but
5801 * this might change.
Jérôme Glissec733a822017-09-08 16:11:54 -07005802 */
Naoya Horiguchi12724852012-03-21 16:34:28 -07005803 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5804 mc.precharge += HPAGE_PMD_NR;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005805 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07005806 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005807 }
Dave Hansen03319322011-03-22 16:32:56 -07005808
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07005809 if (pmd_trans_unstable(pmd))
5810 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005811 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5812 for (; addr != end; pte++, addr += PAGE_SIZE)
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07005813 if (get_mctgt_type(vma, addr, *pte, NULL))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005814 mc.precharge++; /* increment precharge temporarily */
5815 pte_unmap_unlock(pte - 1, ptl);
5816 cond_resched();
5817
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005818 return 0;
5819}
5820
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02005821static const struct mm_walk_ops precharge_walk_ops = {
5822 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5823};
5824
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005825static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5826{
5827 unsigned long precharge;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005828
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07005829 mmap_read_lock(mm);
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02005830 walk_page_range(mm, 0, mm->highest_vm_end, &precharge_walk_ops, NULL);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07005831 mmap_read_unlock(mm);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005832
5833 precharge = mc.precharge;
5834 mc.precharge = 0;
5835
5836 return precharge;
5837}
5838
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005839static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5840{
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005841 unsigned long precharge = mem_cgroup_count_precharge(mm);
5842
5843 VM_BUG_ON(mc.moving_task);
5844 mc.moving_task = current;
5845 return mem_cgroup_do_precharge(precharge);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005846}
5847
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005848/* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5849static void __mem_cgroup_clear_mc(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005850{
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005851 struct mem_cgroup *from = mc.from;
5852 struct mem_cgroup *to = mc.to;
5853
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005854 /* we must uncharge all the leftover precharges from mc.to */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005855 if (mc.precharge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005856 cancel_charge(mc.to, mc.precharge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005857 mc.precharge = 0;
5858 }
5859 /*
5860 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5861 * we must uncharge here.
5862 */
5863 if (mc.moved_charge) {
Johannes Weiner00501b52014-08-08 14:19:20 -07005864 cancel_charge(mc.from, mc.moved_charge);
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08005865 mc.moved_charge = 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005866 }
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005867 /* we must fixup refcnts and charges */
5868 if (mc.moved_swap) {
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005869 /* uncharge swap account from the old cgroup */
Johannes Weinerce00a962014-09-05 08:43:57 -04005870 if (!mem_cgroup_is_root(mc.from))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005871 page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005872
Vladimir Davydov615d66c2016-08-11 15:33:03 -07005873 mem_cgroup_id_put_many(mc.from, mc.moved_swap);
5874
Johannes Weiner05b84302014-08-06 16:05:59 -07005875 /*
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005876 * we charged both to->memory and to->memsw, so we
5877 * should uncharge to->memory.
Johannes Weiner05b84302014-08-06 16:05:59 -07005878 */
Johannes Weinerce00a962014-09-05 08:43:57 -04005879 if (!mem_cgroup_is_root(mc.to))
Johannes Weiner3e32cb22014-12-10 15:42:31 -08005880 page_counter_uncharge(&mc.to->memory, mc.moved_swap);
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005881
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08005882 mc.moved_swap = 0;
5883 }
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005884 memcg_oom_recover(from);
5885 memcg_oom_recover(to);
5886 wake_up_all(&mc.waitq);
5887}
5888
5889static void mem_cgroup_clear_mc(void)
5890{
Tejun Heo264a0ae2016-04-21 19:09:02 -04005891 struct mm_struct *mm = mc.mm;
5892
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08005893 /*
5894 * we must clear moving_task before waking up waiters at the end of
5895 * task migration.
5896 */
5897 mc.moving_task = NULL;
5898 __mem_cgroup_clear_mc();
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005899 spin_lock(&mc.lock);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005900 mc.from = NULL;
5901 mc.to = NULL;
Tejun Heo264a0ae2016-04-21 19:09:02 -04005902 mc.mm = NULL;
KAMEZAWA Hiroyuki2bd9bb22010-08-10 18:02:58 -07005903 spin_unlock(&mc.lock);
Tejun Heo264a0ae2016-04-21 19:09:02 -04005904
5905 mmput(mm);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005906}
5907
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005908static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005909{
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005910 struct cgroup_subsys_state *css;
Ross Zwislereed67d72015-12-23 14:53:27 -07005911 struct mem_cgroup *memcg = NULL; /* unneeded init to make gcc happy */
Tejun Heo9f2115f2015-09-08 15:01:10 -07005912 struct mem_cgroup *from;
Tejun Heo4530edd2015-09-11 15:00:19 -04005913 struct task_struct *leader, *p;
Tejun Heo9f2115f2015-09-08 15:01:10 -07005914 struct mm_struct *mm;
Johannes Weiner1dfab5a2015-02-11 15:26:09 -08005915 unsigned long move_flags;
Tejun Heo9f2115f2015-09-08 15:01:10 -07005916 int ret = 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005917
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005918 /* charge immigration isn't supported on the default hierarchy */
5919 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
Tejun Heo9f2115f2015-09-08 15:01:10 -07005920 return 0;
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005921
Tejun Heo4530edd2015-09-11 15:00:19 -04005922 /*
5923 * Multi-process migrations only happen on the default hierarchy
5924 * where charge immigration is not used. Perform charge
5925 * immigration if @tset contains a leader and whine if there are
5926 * multiple.
5927 */
5928 p = NULL;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005929 cgroup_taskset_for_each_leader(leader, css, tset) {
Tejun Heo4530edd2015-09-11 15:00:19 -04005930 WARN_ON_ONCE(p);
5931 p = leader;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005932 memcg = mem_cgroup_from_css(css);
Tejun Heo4530edd2015-09-11 15:00:19 -04005933 }
5934 if (!p)
5935 return 0;
5936
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005937 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07005938 * We are now committed to this value whatever it is. Changes in this
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005939 * tunable will only affect upcoming migrations, not the current one.
5940 * So we need to save it, and keep it going.
5941 */
5942 move_flags = READ_ONCE(memcg->move_charge_at_immigrate);
5943 if (!move_flags)
5944 return 0;
5945
Tejun Heo9f2115f2015-09-08 15:01:10 -07005946 from = mem_cgroup_from_task(p);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005947
Tejun Heo9f2115f2015-09-08 15:01:10 -07005948 VM_BUG_ON(from == memcg);
Johannes Weiner247b1442014-12-10 15:44:11 -08005949
Tejun Heo9f2115f2015-09-08 15:01:10 -07005950 mm = get_task_mm(p);
5951 if (!mm)
5952 return 0;
5953 /* We move charges only when we move a owner of the mm */
5954 if (mm->owner == p) {
5955 VM_BUG_ON(mc.from);
5956 VM_BUG_ON(mc.to);
5957 VM_BUG_ON(mc.precharge);
5958 VM_BUG_ON(mc.moved_charge);
5959 VM_BUG_ON(mc.moved_swap);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005960
Tejun Heo9f2115f2015-09-08 15:01:10 -07005961 spin_lock(&mc.lock);
Tejun Heo264a0ae2016-04-21 19:09:02 -04005962 mc.mm = mm;
Tejun Heo9f2115f2015-09-08 15:01:10 -07005963 mc.from = from;
5964 mc.to = memcg;
5965 mc.flags = move_flags;
5966 spin_unlock(&mc.lock);
5967 /* We set mc.moving_task later */
5968
5969 ret = mem_cgroup_precharge_mc(mm);
5970 if (ret)
5971 mem_cgroup_clear_mc();
Tejun Heo264a0ae2016-04-21 19:09:02 -04005972 } else {
5973 mmput(mm);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005974 }
5975 return ret;
5976}
5977
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05005978static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005979{
Johannes Weiner4e2f2452014-12-10 15:44:08 -08005980 if (mc.to)
5981 mem_cgroup_clear_mc();
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005982}
5983
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005984static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5985 unsigned long addr, unsigned long end,
5986 struct mm_walk *walk)
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08005987{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005988 int ret = 0;
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08005989 struct vm_area_struct *vma = walk->vma;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005990 pte_t *pte;
5991 spinlock_t *ptl;
Naoya Horiguchi12724852012-03-21 16:34:28 -07005992 enum mc_target_type target_type;
5993 union mc_target target;
5994 struct page *page;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08005995
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08005996 ptl = pmd_trans_huge_lock(pmd, vma);
5997 if (ptl) {
Hugh Dickins62ade862012-05-18 11:28:34 -07005998 if (mc.precharge < HPAGE_PMD_NR) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08005999 spin_unlock(ptl);
Naoya Horiguchi12724852012-03-21 16:34:28 -07006000 return 0;
6001 }
6002 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6003 if (target_type == MC_TARGET_PAGE) {
6004 page = target.page;
6005 if (!isolate_lru_page(page)) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08006006 if (!mem_cgroup_move_account(page, true,
Johannes Weiner1306a852014-12-10 15:44:52 -08006007 mc.from, mc.to)) {
Naoya Horiguchi12724852012-03-21 16:34:28 -07006008 mc.precharge -= HPAGE_PMD_NR;
6009 mc.moved_charge += HPAGE_PMD_NR;
6010 }
6011 putback_lru_page(page);
6012 }
6013 put_page(page);
Jérôme Glissec733a822017-09-08 16:11:54 -07006014 } else if (target_type == MC_TARGET_DEVICE) {
6015 page = target.page;
6016 if (!mem_cgroup_move_account(page, true,
6017 mc.from, mc.to)) {
6018 mc.precharge -= HPAGE_PMD_NR;
6019 mc.moved_charge += HPAGE_PMD_NR;
6020 }
6021 put_page(page);
Naoya Horiguchi12724852012-03-21 16:34:28 -07006022 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08006023 spin_unlock(ptl);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07006024 return 0;
Naoya Horiguchi12724852012-03-21 16:34:28 -07006025 }
6026
Andrea Arcangeli45f83ce2012-03-28 14:42:40 -07006027 if (pmd_trans_unstable(pmd))
6028 return 0;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006029retry:
6030 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6031 for (; addr != end; addr += PAGE_SIZE) {
6032 pte_t ptent = *(pte++);
Jérôme Glissec733a822017-09-08 16:11:54 -07006033 bool device = false;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006034 swp_entry_t ent;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006035
6036 if (!mc.precharge)
6037 break;
6038
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006039 switch (get_mctgt_type(vma, addr, ptent, &target)) {
Jérôme Glissec733a822017-09-08 16:11:54 -07006040 case MC_TARGET_DEVICE:
6041 device = true;
Joe Perchese4a9bc52020-04-06 20:08:39 -07006042 fallthrough;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006043 case MC_TARGET_PAGE:
6044 page = target.page;
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08006045 /*
6046 * We can have a part of the split pmd here. Moving it
6047 * can be done but it would be too convoluted so simply
6048 * ignore such a partial THP and keep it in original
6049 * memcg. There should be somebody mapping the head.
6050 */
6051 if (PageTransCompound(page))
6052 goto put;
Jérôme Glissec733a822017-09-08 16:11:54 -07006053 if (!device && isolate_lru_page(page))
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006054 goto put;
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08006055 if (!mem_cgroup_move_account(page, false,
6056 mc.from, mc.to)) {
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006057 mc.precharge--;
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006058 /* we uncharge from mc.from later. */
6059 mc.moved_charge++;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006060 }
Jérôme Glissec733a822017-09-08 16:11:54 -07006061 if (!device)
6062 putback_lru_page(page);
Naoya Horiguchi8d32ff82012-03-21 16:34:27 -07006063put: /* get_mctgt_type() gets the page */
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006064 put_page(page);
6065 break;
Daisuke Nishimura02491442010-03-10 15:22:17 -08006066 case MC_TARGET_SWAP:
6067 ent = target.ent;
Hugh Dickinse91cbb42012-05-29 15:06:51 -07006068 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
Daisuke Nishimura02491442010-03-10 15:22:17 -08006069 mc.precharge--;
Hugh Dickins8d22a932020-07-23 21:15:24 -07006070 mem_cgroup_id_get_many(mc.to, 1);
6071 /* we fixup other refcnts and charges later. */
Daisuke Nishimura483c30b2010-03-10 15:22:18 -08006072 mc.moved_swap++;
6073 }
Daisuke Nishimura02491442010-03-10 15:22:17 -08006074 break;
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006075 default:
6076 break;
6077 }
6078 }
6079 pte_unmap_unlock(pte - 1, ptl);
6080 cond_resched();
6081
6082 if (addr != end) {
6083 /*
6084 * We have consumed all precharges we got in can_attach().
6085 * We try charge one by one, but don't do any additional
6086 * charges to mc.to if we have failed in charge once in attach()
6087 * phase.
6088 */
Daisuke Nishimura854ffa82010-03-10 15:22:15 -08006089 ret = mem_cgroup_do_precharge(1);
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006090 if (!ret)
6091 goto retry;
6092 }
6093
6094 return ret;
6095}
6096
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02006097static const struct mm_walk_ops charge_walk_ops = {
6098 .pmd_entry = mem_cgroup_move_charge_pte_range,
6099};
6100
Tejun Heo264a0ae2016-04-21 19:09:02 -04006101static void mem_cgroup_move_charge(void)
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006102{
Daisuke Nishimura4ffef5f2010-03-10 15:22:14 -08006103 lru_add_drain_all();
Johannes Weiner312722c2014-12-10 15:44:25 -08006104 /*
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07006105 * Signal lock_page_memcg() to take the memcg's move_lock
6106 * while we're moving its pages to another memcg. Then wait
6107 * for already started RCU-only updates to finish.
Johannes Weiner312722c2014-12-10 15:44:25 -08006108 */
6109 atomic_inc(&mc.from->moving_account);
6110 synchronize_rcu();
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006111retry:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07006112 if (unlikely(!mmap_read_trylock(mc.mm))) {
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006113 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07006114 * Someone who are holding the mmap_lock might be waiting in
Daisuke Nishimuradfe076b2011-01-13 15:47:41 -08006115 * waitq. So we cancel all extra charges, wake up all waiters,
6116 * and retry. Because we cancel precharges, we might not be able
6117 * to move enough charges, but moving charge is a best-effort
6118 * feature anyway, so it wouldn't be a big problem.
6119 */
6120 __mem_cgroup_clear_mc();
6121 cond_resched();
6122 goto retry;
6123 }
Naoya Horiguchi26bcd642015-02-11 15:27:57 -08006124 /*
6125 * When we have consumed all precharges and failed in doing
6126 * additional charge, the page walk just aborts.
6127 */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02006128 walk_page_range(mc.mm, 0, mc.mm->highest_vm_end, &charge_walk_ops,
6129 NULL);
James Morse0247f3f2016-10-07 17:00:12 -07006130
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07006131 mmap_read_unlock(mc.mm);
Johannes Weiner312722c2014-12-10 15:44:25 -08006132 atomic_dec(&mc.from->moving_account);
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006133}
6134
Tejun Heo264a0ae2016-04-21 19:09:02 -04006135static void mem_cgroup_move_task(void)
Balbir Singh67e465a2008-02-07 00:13:54 -08006136{
Tejun Heo264a0ae2016-04-21 19:09:02 -04006137 if (mc.to) {
6138 mem_cgroup_move_charge();
KOSAKI Motohiroa4336582011-06-15 15:08:13 -07006139 mem_cgroup_clear_mc();
Tejun Heo264a0ae2016-04-21 19:09:02 -04006140 }
Balbir Singh67e465a2008-02-07 00:13:54 -08006141}
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006142#else /* !CONFIG_MMU */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05006143static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006144{
6145 return 0;
6146}
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05006147static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006148{
6149}
Tejun Heo264a0ae2016-04-21 19:09:02 -04006150static void mem_cgroup_move_task(void)
Daisuke Nishimura5cfb80a2010-03-23 13:35:11 -07006151{
6152}
6153#endif
Balbir Singh67e465a2008-02-07 00:13:54 -08006154
Chris Down677dc972019-03-05 15:45:55 -08006155static int seq_puts_memcg_tunable(struct seq_file *m, unsigned long value)
6156{
6157 if (value == PAGE_COUNTER_MAX)
6158 seq_puts(m, "max\n");
6159 else
6160 seq_printf(m, "%llu\n", (u64)value * PAGE_SIZE);
6161
6162 return 0;
6163}
6164
Johannes Weiner241994ed2015-02-11 15:26:06 -08006165static u64 memory_current_read(struct cgroup_subsys_state *css,
6166 struct cftype *cft)
6167{
Johannes Weinerf5fc3c5d2015-11-05 18:50:23 -08006168 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6169
6170 return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE;
Johannes Weiner241994ed2015-02-11 15:26:06 -08006171}
6172
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006173static int memory_min_show(struct seq_file *m, void *v)
6174{
Chris Down677dc972019-03-05 15:45:55 -08006175 return seq_puts_memcg_tunable(m,
6176 READ_ONCE(mem_cgroup_from_seq(m)->memory.min));
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006177}
6178
6179static ssize_t memory_min_write(struct kernfs_open_file *of,
6180 char *buf, size_t nbytes, loff_t off)
6181{
6182 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6183 unsigned long min;
6184 int err;
6185
6186 buf = strstrip(buf);
6187 err = page_counter_memparse(buf, "max", &min);
6188 if (err)
6189 return err;
6190
6191 page_counter_set_min(&memcg->memory, min);
6192
6193 return nbytes;
6194}
6195
Johannes Weiner241994ed2015-02-11 15:26:06 -08006196static int memory_low_show(struct seq_file *m, void *v)
6197{
Chris Down677dc972019-03-05 15:45:55 -08006198 return seq_puts_memcg_tunable(m,
6199 READ_ONCE(mem_cgroup_from_seq(m)->memory.low));
Johannes Weiner241994ed2015-02-11 15:26:06 -08006200}
6201
6202static ssize_t memory_low_write(struct kernfs_open_file *of,
6203 char *buf, size_t nbytes, loff_t off)
6204{
6205 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6206 unsigned long low;
6207 int err;
6208
6209 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08006210 err = page_counter_memparse(buf, "max", &low);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006211 if (err)
6212 return err;
6213
Roman Gushchin23067152018-06-07 17:06:22 -07006214 page_counter_set_low(&memcg->memory, low);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006215
6216 return nbytes;
6217}
6218
6219static int memory_high_show(struct seq_file *m, void *v)
6220{
Jakub Kicinskid1663a92020-06-01 21:49:49 -07006221 return seq_puts_memcg_tunable(m,
6222 READ_ONCE(mem_cgroup_from_seq(m)->memory.high));
Johannes Weiner241994ed2015-02-11 15:26:06 -08006223}
6224
6225static ssize_t memory_high_write(struct kernfs_open_file *of,
6226 char *buf, size_t nbytes, loff_t off)
6227{
6228 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Chris Downd977aa92020-08-06 23:21:58 -07006229 unsigned int nr_retries = MAX_RECLAIM_RETRIES;
Johannes Weiner8c8c3832019-11-30 17:50:09 -08006230 bool drained = false;
Johannes Weiner241994ed2015-02-11 15:26:06 -08006231 unsigned long high;
6232 int err;
6233
6234 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08006235 err = page_counter_memparse(buf, "max", &high);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006236 if (err)
6237 return err;
6238
Johannes Weinere82553c2021-02-09 13:42:28 -08006239 page_counter_set_high(&memcg->memory, high);
6240
Johannes Weiner8c8c3832019-11-30 17:50:09 -08006241 for (;;) {
6242 unsigned long nr_pages = page_counter_read(&memcg->memory);
6243 unsigned long reclaimed;
Johannes Weiner588083b2016-03-17 14:20:25 -07006244
Johannes Weiner8c8c3832019-11-30 17:50:09 -08006245 if (nr_pages <= high)
6246 break;
6247
6248 if (signal_pending(current))
6249 break;
6250
6251 if (!drained) {
6252 drain_all_stock(memcg);
6253 drained = true;
6254 continue;
6255 }
6256
6257 reclaimed = try_to_free_mem_cgroup_pages(memcg, nr_pages - high,
6258 GFP_KERNEL, true);
6259
6260 if (!reclaimed && !nr_retries--)
6261 break;
6262 }
6263
Johannes Weiner19ce33a2020-08-06 23:22:12 -07006264 memcg_wb_domain_size_changed(memcg);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006265 return nbytes;
6266}
6267
6268static int memory_max_show(struct seq_file *m, void *v)
6269{
Chris Down677dc972019-03-05 15:45:55 -08006270 return seq_puts_memcg_tunable(m,
6271 READ_ONCE(mem_cgroup_from_seq(m)->memory.max));
Johannes Weiner241994ed2015-02-11 15:26:06 -08006272}
6273
6274static ssize_t memory_max_write(struct kernfs_open_file *of,
6275 char *buf, size_t nbytes, loff_t off)
6276{
6277 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Chris Downd977aa92020-08-06 23:21:58 -07006278 unsigned int nr_reclaims = MAX_RECLAIM_RETRIES;
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07006279 bool drained = false;
Johannes Weiner241994ed2015-02-11 15:26:06 -08006280 unsigned long max;
6281 int err;
6282
6283 buf = strstrip(buf);
Johannes Weinerd2973692015-02-27 15:52:04 -08006284 err = page_counter_memparse(buf, "max", &max);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006285 if (err)
6286 return err;
6287
Roman Gushchinbbec2e12018-06-07 17:06:18 -07006288 xchg(&memcg->memory.max, max);
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07006289
6290 for (;;) {
6291 unsigned long nr_pages = page_counter_read(&memcg->memory);
6292
6293 if (nr_pages <= max)
6294 break;
6295
Johannes Weiner7249c9f2019-11-30 17:50:06 -08006296 if (signal_pending(current))
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07006297 break;
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07006298
6299 if (!drained) {
6300 drain_all_stock(memcg);
6301 drained = true;
6302 continue;
6303 }
6304
6305 if (nr_reclaims) {
6306 if (!try_to_free_mem_cgroup_pages(memcg, nr_pages - max,
6307 GFP_KERNEL, true))
6308 nr_reclaims--;
6309 continue;
6310 }
6311
Johannes Weinere27be242018-04-10 16:29:45 -07006312 memcg_memory_event(memcg, MEMCG_OOM);
Johannes Weinerb6e6edc2016-03-17 14:20:28 -07006313 if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0))
6314 break;
6315 }
Johannes Weiner241994ed2015-02-11 15:26:06 -08006316
Tejun Heo2529bb32015-05-22 18:23:34 -04006317 memcg_wb_domain_size_changed(memcg);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006318 return nbytes;
6319}
6320
Shakeel Butt1e577f92019-07-11 20:55:55 -07006321static void __memory_events_show(struct seq_file *m, atomic_long_t *events)
6322{
6323 seq_printf(m, "low %lu\n", atomic_long_read(&events[MEMCG_LOW]));
6324 seq_printf(m, "high %lu\n", atomic_long_read(&events[MEMCG_HIGH]));
6325 seq_printf(m, "max %lu\n", atomic_long_read(&events[MEMCG_MAX]));
6326 seq_printf(m, "oom %lu\n", atomic_long_read(&events[MEMCG_OOM]));
6327 seq_printf(m, "oom_kill %lu\n",
6328 atomic_long_read(&events[MEMCG_OOM_KILL]));
Dan Schatzbergb6bf9ab2022-01-14 14:05:35 -08006329 seq_printf(m, "oom_group_kill %lu\n",
6330 atomic_long_read(&events[MEMCG_OOM_GROUP_KILL]));
Shakeel Butt1e577f92019-07-11 20:55:55 -07006331}
6332
Johannes Weiner241994ed2015-02-11 15:26:06 -08006333static int memory_events_show(struct seq_file *m, void *v)
6334{
Chris Downaa9694b2019-03-05 15:45:52 -08006335 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006336
Shakeel Butt1e577f92019-07-11 20:55:55 -07006337 __memory_events_show(m, memcg->memory_events);
6338 return 0;
6339}
Johannes Weiner241994ed2015-02-11 15:26:06 -08006340
Shakeel Butt1e577f92019-07-11 20:55:55 -07006341static int memory_events_local_show(struct seq_file *m, void *v)
6342{
6343 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6344
6345 __memory_events_show(m, memcg->memory_events_local);
Johannes Weiner241994ed2015-02-11 15:26:06 -08006346 return 0;
6347}
6348
Johannes Weiner587d9f72016-01-20 15:03:19 -08006349static int memory_stat_show(struct seq_file *m, void *v)
6350{
Chris Downaa9694b2019-03-05 15:45:52 -08006351 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Johannes Weinerc8713d02019-07-11 20:55:59 -07006352 char *buf;
Johannes Weiner587d9f72016-01-20 15:03:19 -08006353
Johannes Weinerc8713d02019-07-11 20:55:59 -07006354 buf = memory_stat_format(memcg);
6355 if (!buf)
6356 return -ENOMEM;
6357 seq_puts(m, buf);
6358 kfree(buf);
Johannes Weiner587d9f72016-01-20 15:03:19 -08006359 return 0;
6360}
6361
Muchun Song5f9a4f42020-10-13 16:52:59 -07006362#ifdef CONFIG_NUMA
Muchun Songfff66b72021-02-24 12:03:43 -08006363static inline unsigned long lruvec_page_state_output(struct lruvec *lruvec,
6364 int item)
6365{
6366 return lruvec_page_state(lruvec, item) * memcg_page_state_unit(item);
6367}
6368
Muchun Song5f9a4f42020-10-13 16:52:59 -07006369static int memory_numa_stat_show(struct seq_file *m, void *v)
6370{
6371 int i;
6372 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6373
Shakeel Buttfd25a9e2021-11-05 13:37:34 -07006374 mem_cgroup_flush_stats();
Shakeel Butt7e1c0d62021-09-02 14:55:00 -07006375
Muchun Song5f9a4f42020-10-13 16:52:59 -07006376 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
6377 int nid;
6378
6379 if (memory_stats[i].idx >= NR_VM_NODE_STAT_ITEMS)
6380 continue;
6381
6382 seq_printf(m, "%s", memory_stats[i].name);
6383 for_each_node_state(nid, N_MEMORY) {
6384 u64 size;
6385 struct lruvec *lruvec;
6386
6387 lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
Muchun Songfff66b72021-02-24 12:03:43 -08006388 size = lruvec_page_state_output(lruvec,
6389 memory_stats[i].idx);
Muchun Song5f9a4f42020-10-13 16:52:59 -07006390 seq_printf(m, " N%d=%llu", nid, size);
6391 }
6392 seq_putc(m, '\n');
6393 }
6394
6395 return 0;
6396}
6397#endif
6398
Roman Gushchin3d8b38e2018-08-21 21:53:54 -07006399static int memory_oom_group_show(struct seq_file *m, void *v)
6400{
Chris Downaa9694b2019-03-05 15:45:52 -08006401 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Roman Gushchin3d8b38e2018-08-21 21:53:54 -07006402
6403 seq_printf(m, "%d\n", memcg->oom_group);
6404
6405 return 0;
6406}
6407
6408static ssize_t memory_oom_group_write(struct kernfs_open_file *of,
6409 char *buf, size_t nbytes, loff_t off)
6410{
6411 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6412 int ret, oom_group;
6413
6414 buf = strstrip(buf);
6415 if (!buf)
6416 return -EINVAL;
6417
6418 ret = kstrtoint(buf, 0, &oom_group);
6419 if (ret)
6420 return ret;
6421
6422 if (oom_group != 0 && oom_group != 1)
6423 return -EINVAL;
6424
6425 memcg->oom_group = oom_group;
6426
6427 return nbytes;
6428}
6429
Johannes Weiner241994ed2015-02-11 15:26:06 -08006430static struct cftype memory_files[] = {
6431 {
6432 .name = "current",
Johannes Weinerf5fc3c5d2015-11-05 18:50:23 -08006433 .flags = CFTYPE_NOT_ON_ROOT,
Johannes Weiner241994ed2015-02-11 15:26:06 -08006434 .read_u64 = memory_current_read,
6435 },
6436 {
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006437 .name = "min",
6438 .flags = CFTYPE_NOT_ON_ROOT,
6439 .seq_show = memory_min_show,
6440 .write = memory_min_write,
6441 },
6442 {
Johannes Weiner241994ed2015-02-11 15:26:06 -08006443 .name = "low",
6444 .flags = CFTYPE_NOT_ON_ROOT,
6445 .seq_show = memory_low_show,
6446 .write = memory_low_write,
6447 },
6448 {
6449 .name = "high",
6450 .flags = CFTYPE_NOT_ON_ROOT,
6451 .seq_show = memory_high_show,
6452 .write = memory_high_write,
6453 },
6454 {
6455 .name = "max",
6456 .flags = CFTYPE_NOT_ON_ROOT,
6457 .seq_show = memory_max_show,
6458 .write = memory_max_write,
6459 },
6460 {
6461 .name = "events",
6462 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo472912a2015-09-18 18:01:59 -04006463 .file_offset = offsetof(struct mem_cgroup, events_file),
Johannes Weiner241994ed2015-02-11 15:26:06 -08006464 .seq_show = memory_events_show,
6465 },
Johannes Weiner587d9f72016-01-20 15:03:19 -08006466 {
Shakeel Butt1e577f92019-07-11 20:55:55 -07006467 .name = "events.local",
6468 .flags = CFTYPE_NOT_ON_ROOT,
6469 .file_offset = offsetof(struct mem_cgroup, events_local_file),
6470 .seq_show = memory_events_local_show,
6471 },
6472 {
Johannes Weiner587d9f72016-01-20 15:03:19 -08006473 .name = "stat",
Johannes Weiner587d9f72016-01-20 15:03:19 -08006474 .seq_show = memory_stat_show,
6475 },
Muchun Song5f9a4f42020-10-13 16:52:59 -07006476#ifdef CONFIG_NUMA
6477 {
6478 .name = "numa_stat",
6479 .seq_show = memory_numa_stat_show,
6480 },
6481#endif
Roman Gushchin3d8b38e2018-08-21 21:53:54 -07006482 {
6483 .name = "oom.group",
6484 .flags = CFTYPE_NOT_ON_ROOT | CFTYPE_NS_DELEGATABLE,
6485 .seq_show = memory_oom_group_show,
6486 .write = memory_oom_group_write,
6487 },
Johannes Weiner241994ed2015-02-11 15:26:06 -08006488 { } /* terminate */
6489};
6490
Tejun Heo073219e2014-02-08 10:36:58 -05006491struct cgroup_subsys memory_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006492 .css_alloc = mem_cgroup_css_alloc,
Glauber Costad142e3e2013-02-22 16:34:52 -08006493 .css_online = mem_cgroup_css_online,
Tejun Heo92fb9742012-11-19 08:13:38 -08006494 .css_offline = mem_cgroup_css_offline,
Vladimir Davydov6df38682015-12-29 14:54:10 -08006495 .css_released = mem_cgroup_css_released,
Tejun Heo92fb9742012-11-19 08:13:38 -08006496 .css_free = mem_cgroup_css_free,
Tejun Heo1ced9532014-07-08 18:02:57 -04006497 .css_reset = mem_cgroup_css_reset,
Johannes Weiner2d146aa2021-04-29 22:56:26 -07006498 .css_rstat_flush = mem_cgroup_css_rstat_flush,
Daisuke Nishimura7dc74be2010-03-10 15:22:13 -08006499 .can_attach = mem_cgroup_can_attach,
6500 .cancel_attach = mem_cgroup_cancel_attach,
Tejun Heo264a0ae2016-04-21 19:09:02 -04006501 .post_attach = mem_cgroup_move_task,
Johannes Weiner241994ed2015-02-11 15:26:06 -08006502 .dfl_cftypes = memory_files,
6503 .legacy_cftypes = mem_cgroup_legacy_files,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08006504 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08006505};
KAMEZAWA Hiroyukic0777192009-01-07 18:07:57 -08006506
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006507/*
6508 * This function calculates an individual cgroup's effective
6509 * protection which is derived from its own memory.min/low, its
6510 * parent's and siblings' settings, as well as the actual memory
6511 * distribution in the tree.
6512 *
6513 * The following rules apply to the effective protection values:
6514 *
6515 * 1. At the first level of reclaim, effective protection is equal to
6516 * the declared protection in memory.min and memory.low.
6517 *
6518 * 2. To enable safe delegation of the protection configuration, at
6519 * subsequent levels the effective protection is capped to the
6520 * parent's effective protection.
6521 *
6522 * 3. To make complex and dynamic subtrees easier to configure, the
6523 * user is allowed to overcommit the declared protection at a given
6524 * level. If that is the case, the parent's effective protection is
6525 * distributed to the children in proportion to how much protection
6526 * they have declared and how much of it they are utilizing.
6527 *
6528 * This makes distribution proportional, but also work-conserving:
6529 * if one cgroup claims much more protection than it uses memory,
6530 * the unused remainder is available to its siblings.
6531 *
6532 * 4. Conversely, when the declared protection is undercommitted at a
6533 * given level, the distribution of the larger parental protection
6534 * budget is NOT proportional. A cgroup's protection from a sibling
6535 * is capped to its own memory.min/low setting.
6536 *
Johannes Weiner8a931f82020-04-01 21:07:07 -07006537 * 5. However, to allow protecting recursive subtrees from each other
6538 * without having to declare each individual cgroup's fixed share
6539 * of the ancestor's claim to protection, any unutilized -
6540 * "floating" - protection from up the tree is distributed in
6541 * proportion to each cgroup's *usage*. This makes the protection
6542 * neutral wrt sibling cgroups and lets them compete freely over
6543 * the shared parental protection budget, but it protects the
6544 * subtree as a whole from neighboring subtrees.
6545 *
6546 * Note that 4. and 5. are not in conflict: 4. is about protecting
6547 * against immediate siblings whereas 5. is about protecting against
6548 * neighboring subtrees.
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006549 */
6550static unsigned long effective_protection(unsigned long usage,
Johannes Weiner8a931f82020-04-01 21:07:07 -07006551 unsigned long parent_usage,
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006552 unsigned long setting,
6553 unsigned long parent_effective,
6554 unsigned long siblings_protected)
6555{
6556 unsigned long protected;
Johannes Weiner8a931f82020-04-01 21:07:07 -07006557 unsigned long ep;
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006558
6559 protected = min(usage, setting);
6560 /*
6561 * If all cgroups at this level combined claim and use more
6562 * protection then what the parent affords them, distribute
6563 * shares in proportion to utilization.
6564 *
6565 * We are using actual utilization rather than the statically
6566 * claimed protection in order to be work-conserving: claimed
6567 * but unused protection is available to siblings that would
6568 * otherwise get a smaller chunk than what they claimed.
6569 */
6570 if (siblings_protected > parent_effective)
6571 return protected * parent_effective / siblings_protected;
6572
6573 /*
6574 * Ok, utilized protection of all children is within what the
6575 * parent affords them, so we know whatever this child claims
6576 * and utilizes is effectively protected.
6577 *
6578 * If there is unprotected usage beyond this value, reclaim
6579 * will apply pressure in proportion to that amount.
6580 *
6581 * If there is unutilized protection, the cgroup will be fully
6582 * shielded from reclaim, but we do return a smaller value for
6583 * protection than what the group could enjoy in theory. This
6584 * is okay. With the overcommit distribution above, effective
6585 * protection is always dependent on how memory is actually
6586 * consumed among the siblings anyway.
6587 */
Johannes Weiner8a931f82020-04-01 21:07:07 -07006588 ep = protected;
6589
6590 /*
6591 * If the children aren't claiming (all of) the protection
6592 * afforded to them by the parent, distribute the remainder in
6593 * proportion to the (unprotected) memory of each cgroup. That
6594 * way, cgroups that aren't explicitly prioritized wrt each
6595 * other compete freely over the allowance, but they are
6596 * collectively protected from neighboring trees.
6597 *
6598 * We're using unprotected memory for the weight so that if
6599 * some cgroups DO claim explicit protection, we don't protect
6600 * the same bytes twice.
Johannes Weinercd324ed2020-06-25 20:30:16 -07006601 *
6602 * Check both usage and parent_usage against the respective
6603 * protected values. One should imply the other, but they
6604 * aren't read atomically - make sure the division is sane.
Johannes Weiner8a931f82020-04-01 21:07:07 -07006605 */
6606 if (!(cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT))
6607 return ep;
Johannes Weinercd324ed2020-06-25 20:30:16 -07006608 if (parent_effective > siblings_protected &&
6609 parent_usage > siblings_protected &&
6610 usage > protected) {
Johannes Weiner8a931f82020-04-01 21:07:07 -07006611 unsigned long unclaimed;
6612
6613 unclaimed = parent_effective - siblings_protected;
6614 unclaimed *= usage - protected;
6615 unclaimed /= parent_usage - siblings_protected;
6616
6617 ep += unclaimed;
6618 }
6619
6620 return ep;
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006621}
6622
Johannes Weiner241994ed2015-02-11 15:26:06 -08006623/**
Mel Gorman05395712021-06-30 18:53:32 -07006624 * mem_cgroup_calculate_protection - check if memory consumption is in the normal range
Sean Christopherson34c81052017-07-10 15:48:05 -07006625 * @root: the top ancestor of the sub-tree being checked
Johannes Weiner241994ed2015-02-11 15:26:06 -08006626 * @memcg: the memory cgroup to check
6627 *
Roman Gushchin23067152018-06-07 17:06:22 -07006628 * WARNING: This function is not stateless! It can only be used as part
6629 * of a top-down tree iteration, not for isolated queries.
Johannes Weiner241994ed2015-02-11 15:26:06 -08006630 */
Chris Down45c7f7e2020-08-06 23:22:05 -07006631void mem_cgroup_calculate_protection(struct mem_cgroup *root,
6632 struct mem_cgroup *memcg)
Johannes Weiner241994ed2015-02-11 15:26:06 -08006633{
Johannes Weiner8a931f82020-04-01 21:07:07 -07006634 unsigned long usage, parent_usage;
Roman Gushchin23067152018-06-07 17:06:22 -07006635 struct mem_cgroup *parent;
6636
Johannes Weiner241994ed2015-02-11 15:26:06 -08006637 if (mem_cgroup_disabled())
Chris Down45c7f7e2020-08-06 23:22:05 -07006638 return;
Johannes Weiner241994ed2015-02-11 15:26:06 -08006639
Sean Christopherson34c81052017-07-10 15:48:05 -07006640 if (!root)
6641 root = root_mem_cgroup;
Yafang Shao22f74962020-08-06 23:22:01 -07006642
6643 /*
6644 * Effective values of the reclaim targets are ignored so they
6645 * can be stale. Have a look at mem_cgroup_protection for more
6646 * details.
6647 * TODO: calculation should be more robust so that we do not need
6648 * that special casing.
6649 */
Sean Christopherson34c81052017-07-10 15:48:05 -07006650 if (memcg == root)
Chris Down45c7f7e2020-08-06 23:22:05 -07006651 return;
Johannes Weiner241994ed2015-02-11 15:26:06 -08006652
Roman Gushchin23067152018-06-07 17:06:22 -07006653 usage = page_counter_read(&memcg->memory);
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006654 if (!usage)
Chris Down45c7f7e2020-08-06 23:22:05 -07006655 return;
Sean Christopherson34c81052017-07-10 15:48:05 -07006656
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006657 parent = parent_mem_cgroup(memcg);
Roman Gushchindf2a4192018-06-14 15:26:17 -07006658 /* No parent means a non-hierarchical mode on v1 memcg */
6659 if (!parent)
Chris Down45c7f7e2020-08-06 23:22:05 -07006660 return;
Roman Gushchindf2a4192018-06-14 15:26:17 -07006661
Johannes Weinerbc50bcc2020-04-01 21:07:03 -07006662 if (parent == root) {
Chris Downc3d53202020-04-01 21:07:27 -07006663 memcg->memory.emin = READ_ONCE(memcg->memory.min);
Chris Down03960e32020-06-25 20:30:22 -07006664 memcg->memory.elow = READ_ONCE(memcg->memory.low);
Chris Down45c7f7e2020-08-06 23:22:05 -07006665 return;
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07006666 }
6667
Johannes Weiner8a931f82020-04-01 21:07:07 -07006668 parent_usage = page_counter_read(&parent->memory);
6669
Chris Downb3a78222020-04-01 21:07:33 -07006670 WRITE_ONCE(memcg->memory.emin, effective_protection(usage, parent_usage,
Chris Downc3d53202020-04-01 21:07:27 -07006671 READ_ONCE(memcg->memory.min),
6672 READ_ONCE(parent->memory.emin),
Chris Downb3a78222020-04-01 21:07:33 -07006673 atomic_long_read(&parent->memory.children_min_usage)));
Roman Gushchin23067152018-06-07 17:06:22 -07006674
Chris Downb3a78222020-04-01 21:07:33 -07006675 WRITE_ONCE(memcg->memory.elow, effective_protection(usage, parent_usage,
Chris Down03960e32020-06-25 20:30:22 -07006676 READ_ONCE(memcg->memory.low),
6677 READ_ONCE(parent->memory.elow),
Chris Downb3a78222020-04-01 21:07:33 -07006678 atomic_long_read(&parent->memory.children_low_usage)));
Johannes Weiner241994ed2015-02-11 15:26:06 -08006679}
6680
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006681static int charge_memcg(struct folio *folio, struct mem_cgroup *memcg,
6682 gfp_t gfp)
Shakeel Butt0add0c72021-04-29 22:56:36 -07006683{
Matthew Wilcox (Oracle)118f2872021-04-29 14:07:12 -04006684 long nr_pages = folio_nr_pages(folio);
Shakeel Butt0add0c72021-04-29 22:56:36 -07006685 int ret;
6686
6687 ret = try_charge(memcg, gfp, nr_pages);
6688 if (ret)
6689 goto out;
6690
6691 css_get(&memcg->css);
Matthew Wilcox (Oracle)118f2872021-04-29 14:07:12 -04006692 commit_charge(folio, memcg);
Shakeel Butt0add0c72021-04-29 22:56:36 -07006693
6694 local_irq_disable();
Matthew Wilcox (Oracle)6e0110c2021-04-29 13:40:11 -04006695 mem_cgroup_charge_statistics(memcg, nr_pages);
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006696 memcg_check_events(memcg, folio_nid(folio));
Shakeel Butt0add0c72021-04-29 22:56:36 -07006697 local_irq_enable();
6698out:
6699 return ret;
6700}
6701
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006702int __mem_cgroup_charge(struct folio *folio, struct mm_struct *mm, gfp_t gfp)
Johannes Weiner00501b52014-08-08 14:19:20 -07006703{
Shakeel Butt0add0c72021-04-29 22:56:36 -07006704 struct mem_cgroup *memcg;
6705 int ret;
Johannes Weiner00501b52014-08-08 14:19:20 -07006706
Shakeel Butt0add0c72021-04-29 22:56:36 -07006707 memcg = get_mem_cgroup_from_mm(mm);
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006708 ret = charge_memcg(folio, memcg, gfp);
Shakeel Butt0add0c72021-04-29 22:56:36 -07006709 css_put(&memcg->css);
Johannes Weiner2d1c4982020-06-03 16:02:14 -07006710
Shakeel Butt0add0c72021-04-29 22:56:36 -07006711 return ret;
6712}
Vladimir Davydove993d902015-09-09 15:35:35 -07006713
Shakeel Butt0add0c72021-04-29 22:56:36 -07006714/**
6715 * mem_cgroup_swapin_charge_page - charge a newly allocated page for swapin
6716 * @page: page to charge
6717 * @mm: mm context of the victim
6718 * @gfp: reclaim mode
6719 * @entry: swap entry for which the page is allocated
6720 *
6721 * This function charges a page allocated for swapin. Please call this before
6722 * adding the page to the swapcache.
6723 *
6724 * Returns 0 on success. Otherwise, an error code is returned.
6725 */
6726int mem_cgroup_swapin_charge_page(struct page *page, struct mm_struct *mm,
6727 gfp_t gfp, swp_entry_t entry)
6728{
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006729 struct folio *folio = page_folio(page);
Shakeel Butt0add0c72021-04-29 22:56:36 -07006730 struct mem_cgroup *memcg;
6731 unsigned short id;
6732 int ret;
Johannes Weiner00501b52014-08-08 14:19:20 -07006733
Shakeel Butt0add0c72021-04-29 22:56:36 -07006734 if (mem_cgroup_disabled())
6735 return 0;
6736
6737 id = lookup_swap_cgroup_id(entry);
6738 rcu_read_lock();
6739 memcg = mem_cgroup_from_id(id);
6740 if (!memcg || !css_tryget_online(&memcg->css))
Johannes Weiner00501b52014-08-08 14:19:20 -07006741 memcg = get_mem_cgroup_from_mm(mm);
Shakeel Butt0add0c72021-04-29 22:56:36 -07006742 rcu_read_unlock();
Johannes Weiner00501b52014-08-08 14:19:20 -07006743
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04006744 ret = charge_memcg(folio, memcg, gfp);
Johannes Weiner00501b52014-08-08 14:19:20 -07006745
Shakeel Butt0add0c72021-04-29 22:56:36 -07006746 css_put(&memcg->css);
6747 return ret;
6748}
Johannes Weiner6abb5a82014-08-08 14:19:33 -07006749
Shakeel Butt0add0c72021-04-29 22:56:36 -07006750/*
6751 * mem_cgroup_swapin_uncharge_swap - uncharge swap slot
6752 * @entry: swap entry for which the page is charged
6753 *
6754 * Call this function after successfully adding the charged page to swapcache.
6755 *
6756 * Note: This function assumes the page for which swap slot is being uncharged
6757 * is order 0 page.
6758 */
6759void mem_cgroup_swapin_uncharge_swap(swp_entry_t entry)
6760{
Muchun Songcae3af62021-02-24 12:04:19 -08006761 /*
6762 * Cgroup1's unified memory+swap counter has been charged with the
6763 * new swapcache page, finish the transfer by uncharging the swap
6764 * slot. The swap slot would also get uncharged when it dies, but
6765 * it can stick around indefinitely and we'd count the page twice
6766 * the entire time.
6767 *
6768 * Cgroup2 has separate resource counters for memory and swap,
6769 * so this is a non-issue here. Memory and swap charge lifetimes
6770 * correspond 1:1 to page and swap slot lifetimes: we charge the
6771 * page to memory here, and uncharge swap when the slot is freed.
6772 */
Shakeel Butt0add0c72021-04-29 22:56:36 -07006773 if (!mem_cgroup_disabled() && do_memsw_account()) {
Johannes Weiner00501b52014-08-08 14:19:20 -07006774 /*
6775 * The swap entry might not get freed for a long time,
6776 * let's not wait for it. The page already received a
6777 * memory+swap charge, drop the swap entry duplicate.
6778 */
Shakeel Butt0add0c72021-04-29 22:56:36 -07006779 mem_cgroup_uncharge_swap(entry, 1);
Johannes Weiner00501b52014-08-08 14:19:20 -07006780 }
Johannes Weiner3fea5a42020-06-03 16:01:41 -07006781}
6782
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006783struct uncharge_gather {
6784 struct mem_cgroup *memcg;
Muchun Songb4e0b682021-04-29 22:56:52 -07006785 unsigned long nr_memory;
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006786 unsigned long pgpgout;
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006787 unsigned long nr_kmem;
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04006788 int nid;
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006789};
6790
6791static inline void uncharge_gather_clear(struct uncharge_gather *ug)
Johannes Weiner747db952014-08-08 14:19:24 -07006792{
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006793 memset(ug, 0, sizeof(*ug));
6794}
6795
6796static void uncharge_batch(const struct uncharge_gather *ug)
6797{
Johannes Weiner747db952014-08-08 14:19:24 -07006798 unsigned long flags;
6799
Muchun Songb4e0b682021-04-29 22:56:52 -07006800 if (ug->nr_memory) {
6801 page_counter_uncharge(&ug->memcg->memory, ug->nr_memory);
Johannes Weiner7941d212016-01-14 15:21:23 -08006802 if (do_memsw_account())
Muchun Songb4e0b682021-04-29 22:56:52 -07006803 page_counter_uncharge(&ug->memcg->memsw, ug->nr_memory);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006804 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && ug->nr_kmem)
6805 page_counter_uncharge(&ug->memcg->kmem, ug->nr_kmem);
6806 memcg_oom_recover(ug->memcg);
Johannes Weinerce00a962014-09-05 08:43:57 -04006807 }
Johannes Weiner747db952014-08-08 14:19:24 -07006808
6809 local_irq_save(flags);
Johannes Weinerc9019e92018-01-31 16:16:37 -08006810 __count_memcg_events(ug->memcg, PGPGOUT, ug->pgpgout);
Muchun Songb4e0b682021-04-29 22:56:52 -07006811 __this_cpu_add(ug->memcg->vmstats_percpu->nr_page_events, ug->nr_memory);
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04006812 memcg_check_events(ug->memcg, ug->nid);
Johannes Weiner747db952014-08-08 14:19:24 -07006813 local_irq_restore(flags);
Michal Hockof1796542020-09-04 16:35:24 -07006814
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006815 /* drop reference from uncharge_folio */
Michal Hockof1796542020-09-04 16:35:24 -07006816 css_put(&ug->memcg->css);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006817}
6818
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006819static void uncharge_folio(struct folio *folio, struct uncharge_gather *ug)
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006820{
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006821 long nr_pages;
Muchun Songb4e0b682021-04-29 22:56:52 -07006822 struct mem_cgroup *memcg;
6823 struct obj_cgroup *objcg;
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006824 bool use_objcg = folio_memcg_kmem(folio);
Johannes Weiner9f762db2020-06-03 16:01:44 -07006825
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006826 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006827
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006828 /*
6829 * Nobody should be changing or seriously looking at
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006830 * folio memcg or objcg at this point, we have fully
6831 * exclusive access to the folio.
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006832 */
Waiman Long55927112021-06-28 19:37:30 -07006833 if (use_objcg) {
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04006834 objcg = __folio_objcg(folio);
Muchun Songb4e0b682021-04-29 22:56:52 -07006835 /*
6836 * This get matches the put at the end of the function and
6837 * kmem pages do not hold memcg references anymore.
6838 */
6839 memcg = get_mem_cgroup_from_objcg(objcg);
6840 } else {
Matthew Wilcox (Oracle)1b7e4462021-06-28 14:59:26 -04006841 memcg = __folio_memcg(folio);
Muchun Songb4e0b682021-04-29 22:56:52 -07006842 }
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006843
Muchun Songb4e0b682021-04-29 22:56:52 -07006844 if (!memcg)
6845 return;
6846
6847 if (ug->memcg != memcg) {
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006848 if (ug->memcg) {
6849 uncharge_batch(ug);
6850 uncharge_gather_clear(ug);
6851 }
Muchun Songb4e0b682021-04-29 22:56:52 -07006852 ug->memcg = memcg;
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006853 ug->nid = folio_nid(folio);
Michal Hockof1796542020-09-04 16:35:24 -07006854
6855 /* pairs with css_put in uncharge_batch */
Muchun Songb4e0b682021-04-29 22:56:52 -07006856 css_get(&memcg->css);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006857 }
6858
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006859 nr_pages = folio_nr_pages(folio);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006860
Waiman Long55927112021-06-28 19:37:30 -07006861 if (use_objcg) {
Muchun Songb4e0b682021-04-29 22:56:52 -07006862 ug->nr_memory += nr_pages;
Johannes Weiner9f762db2020-06-03 16:01:44 -07006863 ug->nr_kmem += nr_pages;
Muchun Songb4e0b682021-04-29 22:56:52 -07006864
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006865 folio->memcg_data = 0;
Muchun Songb4e0b682021-04-29 22:56:52 -07006866 obj_cgroup_put(objcg);
6867 } else {
6868 /* LRU pages aren't accounted at the root level */
6869 if (!mem_cgroup_is_root(memcg))
6870 ug->nr_memory += nr_pages;
Roman Gushchin18b2db32020-12-01 13:58:30 -08006871 ug->pgpgout++;
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006872
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006873 folio->memcg_data = 0;
Muchun Songb4e0b682021-04-29 22:56:52 -07006874 }
6875
6876 css_put(&memcg->css);
Johannes Weiner747db952014-08-08 14:19:24 -07006877}
6878
Matthew Wilcox (Oracle)bbc6b702021-05-01 20:42:23 -04006879void __mem_cgroup_uncharge(struct folio *folio)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006880{
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006881 struct uncharge_gather ug;
6882
Matthew Wilcox (Oracle)bbc6b702021-05-01 20:42:23 -04006883 /* Don't touch folio->lru of any random page, pre-check: */
6884 if (!folio_memcg(folio))
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006885 return;
6886
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006887 uncharge_gather_clear(&ug);
Matthew Wilcox (Oracle)bbc6b702021-05-01 20:42:23 -04006888 uncharge_folio(folio, &ug);
Jérôme Glissea9d5ade2017-09-08 16:11:50 -07006889 uncharge_batch(&ug);
Johannes Weiner747db952014-08-08 14:19:24 -07006890}
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006891
Johannes Weiner747db952014-08-08 14:19:24 -07006892/**
Suren Baghdasaryan2c8d8f92021-09-02 14:54:50 -07006893 * __mem_cgroup_uncharge_list - uncharge a list of page
Johannes Weiner747db952014-08-08 14:19:24 -07006894 * @page_list: list of pages to uncharge
6895 *
6896 * Uncharge a list of pages previously charged with
Suren Baghdasaryan2c8d8f92021-09-02 14:54:50 -07006897 * __mem_cgroup_charge().
Johannes Weiner747db952014-08-08 14:19:24 -07006898 */
Suren Baghdasaryan2c8d8f92021-09-02 14:54:50 -07006899void __mem_cgroup_uncharge_list(struct list_head *page_list)
Johannes Weiner747db952014-08-08 14:19:24 -07006900{
Muchun Songc41a40b2021-02-24 12:04:08 -08006901 struct uncharge_gather ug;
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006902 struct folio *folio;
Muchun Songc41a40b2021-02-24 12:04:08 -08006903
Muchun Songc41a40b2021-02-24 12:04:08 -08006904 uncharge_gather_clear(&ug);
Matthew Wilcox (Oracle)c4ed6eb2021-06-29 21:47:12 -04006905 list_for_each_entry(folio, page_list, lru)
6906 uncharge_folio(folio, &ug);
Muchun Songc41a40b2021-02-24 12:04:08 -08006907 if (ug.memcg)
6908 uncharge_batch(&ug);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006909}
6910
6911/**
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006912 * mem_cgroup_migrate - Charge a folio's replacement.
6913 * @old: Currently circulating folio.
6914 * @new: Replacement folio.
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006915 *
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006916 * Charge @new as a replacement folio for @old. @old will
Johannes Weiner6a93ca82016-03-15 14:57:19 -07006917 * be uncharged upon free.
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006918 *
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006919 * Both folios must be locked, @new->mapping must be set up.
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006920 */
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006921void mem_cgroup_migrate(struct folio *old, struct folio *new)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006922{
Johannes Weiner29833312014-12-10 15:44:02 -08006923 struct mem_cgroup *memcg;
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006924 long nr_pages = folio_nr_pages(new);
Tejun Heod93c4132016-06-24 14:49:54 -07006925 unsigned long flags;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006926
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006927 VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
6928 VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
6929 VM_BUG_ON_FOLIO(folio_test_anon(old) != folio_test_anon(new), new);
6930 VM_BUG_ON_FOLIO(folio_nr_pages(old) != nr_pages, new);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006931
6932 if (mem_cgroup_disabled())
6933 return;
6934
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006935 /* Page cache replacement: new folio already charged? */
6936 if (folio_memcg(new))
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006937 return;
6938
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006939 memcg = folio_memcg(old);
6940 VM_WARN_ON_ONCE_FOLIO(!memcg, old);
Johannes Weiner29833312014-12-10 15:44:02 -08006941 if (!memcg)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006942 return;
6943
Johannes Weiner44b7a8d2016-01-20 15:03:16 -08006944 /* Force-charge the new page. The old one will be freed soon */
Muchun Song8dc87c72021-06-28 19:37:47 -07006945 if (!mem_cgroup_is_root(memcg)) {
6946 page_counter_charge(&memcg->memory, nr_pages);
6947 if (do_memsw_account())
6948 page_counter_charge(&memcg->memsw, nr_pages);
6949 }
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006950
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07006951 css_get(&memcg->css);
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006952 commit_charge(new, memcg);
Johannes Weiner44b7a8d2016-01-20 15:03:16 -08006953
Tejun Heod93c4132016-06-24 14:49:54 -07006954 local_irq_save(flags);
Matthew Wilcox (Oracle)6e0110c2021-04-29 13:40:11 -04006955 mem_cgroup_charge_statistics(memcg, nr_pages);
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -04006956 memcg_check_events(memcg, folio_nid(new));
Tejun Heod93c4132016-06-24 14:49:54 -07006957 local_irq_restore(flags);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07006958}
6959
Johannes Weineref129472016-01-14 15:21:34 -08006960DEFINE_STATIC_KEY_FALSE(memcg_sockets_enabled_key);
Johannes Weiner11092082016-01-14 15:21:26 -08006961EXPORT_SYMBOL(memcg_sockets_enabled_key);
6962
Johannes Weiner2d758072016-10-07 17:00:58 -07006963void mem_cgroup_sk_alloc(struct sock *sk)
Johannes Weiner11092082016-01-14 15:21:26 -08006964{
6965 struct mem_cgroup *memcg;
6966
Johannes Weiner2d758072016-10-07 17:00:58 -07006967 if (!mem_cgroup_sockets_enabled)
6968 return;
6969
Shakeel Butte876ecc2020-03-09 22:16:05 -07006970 /* Do not associate the sock with unrelated interrupted task's memcg. */
6971 if (in_interrupt())
6972 return;
6973
Johannes Weiner11092082016-01-14 15:21:26 -08006974 rcu_read_lock();
6975 memcg = mem_cgroup_from_task(current);
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08006976 if (memcg == root_mem_cgroup)
6977 goto out;
Johannes Weiner0db15292016-01-20 15:02:50 -08006978 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && !memcg->tcpmem_active)
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08006979 goto out;
Shakeel Butt8965aa22020-04-01 21:07:10 -07006980 if (css_tryget(&memcg->css))
Johannes Weiner11092082016-01-14 15:21:26 -08006981 sk->sk_memcg = memcg;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08006982out:
Johannes Weiner11092082016-01-14 15:21:26 -08006983 rcu_read_unlock();
6984}
Johannes Weiner11092082016-01-14 15:21:26 -08006985
Johannes Weiner2d758072016-10-07 17:00:58 -07006986void mem_cgroup_sk_free(struct sock *sk)
Johannes Weiner11092082016-01-14 15:21:26 -08006987{
Johannes Weiner2d758072016-10-07 17:00:58 -07006988 if (sk->sk_memcg)
6989 css_put(&sk->sk_memcg->css);
Johannes Weiner11092082016-01-14 15:21:26 -08006990}
6991
6992/**
6993 * mem_cgroup_charge_skmem - charge socket memory
6994 * @memcg: memcg to charge
6995 * @nr_pages: number of pages to charge
Wei Wang4b1327b2021-08-17 12:40:03 -07006996 * @gfp_mask: reclaim mode
Johannes Weiner11092082016-01-14 15:21:26 -08006997 *
6998 * Charges @nr_pages to @memcg. Returns %true if the charge fit within
Wei Wang4b1327b2021-08-17 12:40:03 -07006999 * @memcg's configured limit, %false if it doesn't.
Johannes Weiner11092082016-01-14 15:21:26 -08007000 */
Wei Wang4b1327b2021-08-17 12:40:03 -07007001bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages,
7002 gfp_t gfp_mask)
Johannes Weiner11092082016-01-14 15:21:26 -08007003{
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007004 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
Johannes Weiner0db15292016-01-20 15:02:50 -08007005 struct page_counter *fail;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007006
Johannes Weiner0db15292016-01-20 15:02:50 -08007007 if (page_counter_try_charge(&memcg->tcpmem, nr_pages, &fail)) {
7008 memcg->tcpmem_pressure = 0;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007009 return true;
7010 }
Johannes Weiner0db15292016-01-20 15:02:50 -08007011 memcg->tcpmem_pressure = 1;
Wei Wang4b1327b2021-08-17 12:40:03 -07007012 if (gfp_mask & __GFP_NOFAIL) {
7013 page_counter_charge(&memcg->tcpmem, nr_pages);
7014 return true;
7015 }
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007016 return false;
Johannes Weiner11092082016-01-14 15:21:26 -08007017 }
Johannes Weinerd886f4e2016-01-20 15:02:47 -08007018
Wei Wang4b1327b2021-08-17 12:40:03 -07007019 if (try_charge(memcg, gfp_mask, nr_pages) == 0) {
7020 mod_memcg_state(memcg, MEMCG_SOCK, nr_pages);
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007021 return true;
Wei Wang4b1327b2021-08-17 12:40:03 -07007022 }
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007023
Johannes Weiner11092082016-01-14 15:21:26 -08007024 return false;
7025}
7026
7027/**
7028 * mem_cgroup_uncharge_skmem - uncharge socket memory
Mike Rapoportb7701a52018-02-06 15:42:13 -08007029 * @memcg: memcg to uncharge
7030 * @nr_pages: number of pages to uncharge
Johannes Weiner11092082016-01-14 15:21:26 -08007031 */
7032void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages)
7033{
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007034 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
Johannes Weiner0db15292016-01-20 15:02:50 -08007035 page_counter_uncharge(&memcg->tcpmem, nr_pages);
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007036 return;
7037 }
Johannes Weinerd886f4e2016-01-20 15:02:47 -08007038
Johannes Weinerc9019e92018-01-31 16:16:37 -08007039 mod_memcg_state(memcg, MEMCG_SOCK, -nr_pages);
Johannes Weinerb2807f02016-01-20 15:03:22 -08007040
Roman Gushchin475d0482017-09-08 16:13:09 -07007041 refill_stock(memcg, nr_pages);
Johannes Weiner11092082016-01-14 15:21:26 -08007042}
7043
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007044static int __init cgroup_memory(char *s)
7045{
7046 char *token;
7047
7048 while ((token = strsep(&s, ",")) != NULL) {
7049 if (!*token)
7050 continue;
7051 if (!strcmp(token, "nosocket"))
7052 cgroup_memory_nosocket = true;
Vladimir Davydov04823c82016-01-20 15:02:38 -08007053 if (!strcmp(token, "nokmem"))
7054 cgroup_memory_nokmem = true;
Johannes Weinerf7e1cb62016-01-14 15:21:29 -08007055 }
7056 return 0;
7057}
7058__setup("cgroup.memory=", cgroup_memory);
Johannes Weiner11092082016-01-14 15:21:26 -08007059
Michal Hocko2d110852013-02-22 16:34:43 -08007060/*
Michal Hocko10813122013-02-22 16:35:41 -08007061 * subsys_initcall() for memory controller.
7062 *
Sebastian Andrzej Siewior308167f2016-11-03 15:49:59 +01007063 * Some parts like memcg_hotplug_cpu_dead() have to be initialized from this
7064 * context because of lock dependencies (cgroup_lock -> cpu hotplug) but
7065 * basically everything that doesn't depend on a specific mem_cgroup structure
7066 * should be initialized from here.
Michal Hocko2d110852013-02-22 16:34:43 -08007067 */
7068static int __init mem_cgroup_init(void)
7069{
Johannes Weiner95a045f2015-02-11 15:26:33 -08007070 int cpu, node;
7071
Muchun Songf3344ad2021-02-24 12:03:15 -08007072 /*
7073 * Currently s32 type (can refer to struct batched_lruvec_stat) is
7074 * used for per-memcg-per-cpu caching of per-node statistics. In order
7075 * to work fine, we should make sure that the overfill threshold can't
7076 * exceed S32_MAX / PAGE_SIZE.
7077 */
7078 BUILD_BUG_ON(MEMCG_CHARGE_BATCH > S32_MAX / PAGE_SIZE);
7079
Sebastian Andrzej Siewior308167f2016-11-03 15:49:59 +01007080 cpuhp_setup_state_nocalls(CPUHP_MM_MEMCQ_DEAD, "mm/memctrl:dead", NULL,
7081 memcg_hotplug_cpu_dead);
Johannes Weiner95a045f2015-02-11 15:26:33 -08007082
7083 for_each_possible_cpu(cpu)
7084 INIT_WORK(&per_cpu_ptr(&memcg_stock, cpu)->work,
7085 drain_local_stock);
7086
7087 for_each_node(node) {
7088 struct mem_cgroup_tree_per_node *rtpn;
Johannes Weiner95a045f2015-02-11 15:26:33 -08007089
7090 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
7091 node_online(node) ? node : NUMA_NO_NODE);
7092
Mel Gormanef8f2322016-07-28 15:46:05 -07007093 rtpn->rb_root = RB_ROOT;
Davidlohr Buesofa90b2f2017-09-08 16:15:21 -07007094 rtpn->rb_rightmost = NULL;
Mel Gormanef8f2322016-07-28 15:46:05 -07007095 spin_lock_init(&rtpn->lock);
Johannes Weiner95a045f2015-02-11 15:26:33 -08007096 soft_limit_tree.rb_tree_per_node[node] = rtpn;
7097 }
7098
Michal Hocko2d110852013-02-22 16:34:43 -08007099 return 0;
7100}
7101subsys_initcall(mem_cgroup_init);
Johannes Weiner21afa382015-02-11 15:26:36 -08007102
7103#ifdef CONFIG_MEMCG_SWAP
Arnd Bergmann358c07f2016-08-25 15:17:08 -07007104static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg)
7105{
Kirill Tkhai1c2d4792018-10-26 15:09:28 -07007106 while (!refcount_inc_not_zero(&memcg->id.ref)) {
Arnd Bergmann358c07f2016-08-25 15:17:08 -07007107 /*
7108 * The root cgroup cannot be destroyed, so it's refcount must
7109 * always be >= 1.
7110 */
7111 if (WARN_ON_ONCE(memcg == root_mem_cgroup)) {
7112 VM_BUG_ON(1);
7113 break;
7114 }
7115 memcg = parent_mem_cgroup(memcg);
7116 if (!memcg)
7117 memcg = root_mem_cgroup;
7118 }
7119 return memcg;
7120}
7121
Johannes Weiner21afa382015-02-11 15:26:36 -08007122/**
7123 * mem_cgroup_swapout - transfer a memsw charge to swap
7124 * @page: page whose memsw charge to transfer
7125 * @entry: swap entry to move the charge to
7126 *
7127 * Transfer the memsw charge of @page to @entry.
7128 */
7129void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
7130{
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007131 struct mem_cgroup *memcg, *swap_memcg;
Huang Yingd6810d72017-09-06 16:22:45 -07007132 unsigned int nr_entries;
Johannes Weiner21afa382015-02-11 15:26:36 -08007133 unsigned short oldid;
7134
7135 VM_BUG_ON_PAGE(PageLRU(page), page);
7136 VM_BUG_ON_PAGE(page_count(page), page);
7137
Alex Shi76358ab2020-12-18 14:01:28 -08007138 if (mem_cgroup_disabled())
7139 return;
7140
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007141 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
Johannes Weiner21afa382015-02-11 15:26:36 -08007142 return;
7143
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08007144 memcg = page_memcg(page);
Johannes Weiner21afa382015-02-11 15:26:36 -08007145
Alex Shia4055882020-12-18 14:01:31 -08007146 VM_WARN_ON_ONCE_PAGE(!memcg, page);
Johannes Weiner21afa382015-02-11 15:26:36 -08007147 if (!memcg)
7148 return;
7149
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007150 /*
7151 * In case the memcg owning these pages has been offlined and doesn't
7152 * have an ID allocated to it anymore, charge the closest online
7153 * ancestor for the swap instead and transfer the memory+swap charge.
7154 */
7155 swap_memcg = mem_cgroup_id_get_online(memcg);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07007156 nr_entries = thp_nr_pages(page);
Huang Yingd6810d72017-09-06 16:22:45 -07007157 /* Get references for the tail pages, too */
7158 if (nr_entries > 1)
7159 mem_cgroup_id_get_many(swap_memcg, nr_entries - 1);
7160 oldid = swap_cgroup_record(entry, mem_cgroup_id(swap_memcg),
7161 nr_entries);
Johannes Weiner21afa382015-02-11 15:26:36 -08007162 VM_BUG_ON_PAGE(oldid, page);
Johannes Weinerc9019e92018-01-31 16:16:37 -08007163 mod_memcg_state(swap_memcg, MEMCG_SWAP, nr_entries);
Johannes Weiner21afa382015-02-11 15:26:36 -08007164
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08007165 page->memcg_data = 0;
Johannes Weiner21afa382015-02-11 15:26:36 -08007166
7167 if (!mem_cgroup_is_root(memcg))
Huang Yingd6810d72017-09-06 16:22:45 -07007168 page_counter_uncharge(&memcg->memory, nr_entries);
Johannes Weiner21afa382015-02-11 15:26:36 -08007169
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007170 if (!cgroup_memory_noswap && memcg != swap_memcg) {
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007171 if (!mem_cgroup_is_root(swap_memcg))
Huang Yingd6810d72017-09-06 16:22:45 -07007172 page_counter_charge(&swap_memcg->memsw, nr_entries);
7173 page_counter_uncharge(&memcg->memsw, nr_entries);
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007174 }
7175
Sebastian Andrzej Siewiorce9ce662015-09-04 15:47:50 -07007176 /*
7177 * Interrupts should be disabled here because the caller holds the
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07007178 * i_pages lock which is taken with interrupts-off. It is
Sebastian Andrzej Siewiorce9ce662015-09-04 15:47:50 -07007179 * important here to have the interrupts disabled because it is the
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07007180 * only synchronisation we have for updating the per-CPU variables.
Sebastian Andrzej Siewiorce9ce662015-09-04 15:47:50 -07007181 */
7182 VM_BUG_ON(!irqs_disabled());
Matthew Wilcox (Oracle)6e0110c2021-04-29 13:40:11 -04007183 mem_cgroup_charge_statistics(memcg, -nr_entries);
Matthew Wilcox (Oracle)8e88bd22021-06-25 09:05:47 -04007184 memcg_check_events(memcg, page_to_nid(page));
Johannes Weiner73f576c2016-07-20 15:44:57 -07007185
Johannes Weiner1a3e1f42020-08-06 23:20:45 -07007186 css_put(&memcg->css);
Johannes Weiner21afa382015-02-11 15:26:36 -08007187}
7188
Huang Ying38d8b4e2017-07-06 15:37:18 -07007189/**
Suren Baghdasaryan01c4b282021-09-02 14:54:54 -07007190 * __mem_cgroup_try_charge_swap - try charging swap space for a page
Vladimir Davydov37e84352016-01-20 15:02:56 -08007191 * @page: page being added to swap
7192 * @entry: swap entry to charge
7193 *
Huang Ying38d8b4e2017-07-06 15:37:18 -07007194 * Try to charge @page's memcg for the swap space at @entry.
Vladimir Davydov37e84352016-01-20 15:02:56 -08007195 *
7196 * Returns 0 on success, -ENOMEM on failure.
7197 */
Suren Baghdasaryan01c4b282021-09-02 14:54:54 -07007198int __mem_cgroup_try_charge_swap(struct page *page, swp_entry_t entry)
Vladimir Davydov37e84352016-01-20 15:02:56 -08007199{
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07007200 unsigned int nr_pages = thp_nr_pages(page);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007201 struct page_counter *counter;
Huang Ying38d8b4e2017-07-06 15:37:18 -07007202 struct mem_cgroup *memcg;
Vladimir Davydov37e84352016-01-20 15:02:56 -08007203 unsigned short oldid;
7204
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007205 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
Vladimir Davydov37e84352016-01-20 15:02:56 -08007206 return 0;
7207
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08007208 memcg = page_memcg(page);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007209
Alex Shia4055882020-12-18 14:01:31 -08007210 VM_WARN_ON_ONCE_PAGE(!memcg, page);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007211 if (!memcg)
7212 return 0;
7213
Tejun Heof3a53a32018-06-07 17:05:35 -07007214 if (!entry.val) {
7215 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
Tejun Heobb98f2c2018-06-07 17:05:31 -07007216 return 0;
Tejun Heof3a53a32018-06-07 17:05:35 -07007217 }
Tejun Heobb98f2c2018-06-07 17:05:31 -07007218
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007219 memcg = mem_cgroup_id_get_online(memcg);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007220
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007221 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg) &&
Huang Ying38d8b4e2017-07-06 15:37:18 -07007222 !page_counter_try_charge(&memcg->swap, nr_pages, &counter)) {
Tejun Heof3a53a32018-06-07 17:05:35 -07007223 memcg_memory_event(memcg, MEMCG_SWAP_MAX);
7224 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
Vladimir Davydov1f47b612016-08-11 15:33:00 -07007225 mem_cgroup_id_put(memcg);
7226 return -ENOMEM;
7227 }
7228
Huang Ying38d8b4e2017-07-06 15:37:18 -07007229 /* Get references for the tail pages, too */
7230 if (nr_pages > 1)
7231 mem_cgroup_id_get_many(memcg, nr_pages - 1);
7232 oldid = swap_cgroup_record(entry, mem_cgroup_id(memcg), nr_pages);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007233 VM_BUG_ON_PAGE(oldid, page);
Johannes Weinerc9019e92018-01-31 16:16:37 -08007234 mod_memcg_state(memcg, MEMCG_SWAP, nr_pages);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007235
Vladimir Davydov37e84352016-01-20 15:02:56 -08007236 return 0;
7237}
7238
Johannes Weiner21afa382015-02-11 15:26:36 -08007239/**
Suren Baghdasaryan01c4b282021-09-02 14:54:54 -07007240 * __mem_cgroup_uncharge_swap - uncharge swap space
Johannes Weiner21afa382015-02-11 15:26:36 -08007241 * @entry: swap entry to uncharge
Huang Ying38d8b4e2017-07-06 15:37:18 -07007242 * @nr_pages: the amount of swap space to uncharge
Johannes Weiner21afa382015-02-11 15:26:36 -08007243 */
Suren Baghdasaryan01c4b282021-09-02 14:54:54 -07007244void __mem_cgroup_uncharge_swap(swp_entry_t entry, unsigned int nr_pages)
Johannes Weiner21afa382015-02-11 15:26:36 -08007245{
7246 struct mem_cgroup *memcg;
7247 unsigned short id;
7248
Huang Ying38d8b4e2017-07-06 15:37:18 -07007249 id = swap_cgroup_record(entry, 0, nr_pages);
Johannes Weiner21afa382015-02-11 15:26:36 -08007250 rcu_read_lock();
Vladimir Davydovadbe4272015-04-15 16:13:00 -07007251 memcg = mem_cgroup_from_id(id);
Johannes Weiner21afa382015-02-11 15:26:36 -08007252 if (memcg) {
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007253 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg)) {
Vladimir Davydov37e84352016-01-20 15:02:56 -08007254 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
Huang Ying38d8b4e2017-07-06 15:37:18 -07007255 page_counter_uncharge(&memcg->swap, nr_pages);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007256 else
Huang Ying38d8b4e2017-07-06 15:37:18 -07007257 page_counter_uncharge(&memcg->memsw, nr_pages);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007258 }
Johannes Weinerc9019e92018-01-31 16:16:37 -08007259 mod_memcg_state(memcg, MEMCG_SWAP, -nr_pages);
Huang Ying38d8b4e2017-07-06 15:37:18 -07007260 mem_cgroup_id_put_many(memcg, nr_pages);
Johannes Weiner21afa382015-02-11 15:26:36 -08007261 }
7262 rcu_read_unlock();
7263}
7264
Vladimir Davydovd8b38432016-01-20 15:03:07 -08007265long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
7266{
7267 long nr_swap_pages = get_nr_swap_pages();
7268
Johannes Weinereccb52e2020-06-03 16:02:11 -07007269 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
Vladimir Davydovd8b38432016-01-20 15:03:07 -08007270 return nr_swap_pages;
7271 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg))
7272 nr_swap_pages = min_t(long, nr_swap_pages,
Roman Gushchinbbec2e12018-06-07 17:06:18 -07007273 READ_ONCE(memcg->swap.max) -
Vladimir Davydovd8b38432016-01-20 15:03:07 -08007274 page_counter_read(&memcg->swap));
7275 return nr_swap_pages;
7276}
7277
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08007278bool mem_cgroup_swap_full(struct page *page)
7279{
7280 struct mem_cgroup *memcg;
7281
7282 VM_BUG_ON_PAGE(!PageLocked(page), page);
7283
7284 if (vm_swap_full())
7285 return true;
Johannes Weinereccb52e2020-06-03 16:02:11 -07007286 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08007287 return false;
7288
Roman Gushchinbcfe06b2020-12-01 13:58:27 -08007289 memcg = page_memcg(page);
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08007290 if (!memcg)
7291 return false;
7292
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07007293 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
7294 unsigned long usage = page_counter_read(&memcg->swap);
7295
7296 if (usage * 2 >= READ_ONCE(memcg->swap.high) ||
7297 usage * 2 >= READ_ONCE(memcg->swap.max))
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08007298 return true;
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07007299 }
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08007300
7301 return false;
7302}
7303
Johannes Weinereccb52e2020-06-03 16:02:11 -07007304static int __init setup_swap_account(char *s)
Johannes Weiner21afa382015-02-11 15:26:36 -08007305{
7306 if (!strcmp(s, "1"))
Kaixu Xia5ab92902020-12-14 19:07:07 -08007307 cgroup_memory_noswap = false;
Johannes Weiner21afa382015-02-11 15:26:36 -08007308 else if (!strcmp(s, "0"))
Kaixu Xia5ab92902020-12-14 19:07:07 -08007309 cgroup_memory_noswap = true;
Johannes Weiner21afa382015-02-11 15:26:36 -08007310 return 1;
7311}
Johannes Weinereccb52e2020-06-03 16:02:11 -07007312__setup("swapaccount=", setup_swap_account);
Johannes Weiner21afa382015-02-11 15:26:36 -08007313
Vladimir Davydov37e84352016-01-20 15:02:56 -08007314static u64 swap_current_read(struct cgroup_subsys_state *css,
7315 struct cftype *cft)
7316{
7317 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
7318
7319 return (u64)page_counter_read(&memcg->swap) * PAGE_SIZE;
7320}
7321
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07007322static int swap_high_show(struct seq_file *m, void *v)
7323{
7324 return seq_puts_memcg_tunable(m,
7325 READ_ONCE(mem_cgroup_from_seq(m)->swap.high));
7326}
7327
7328static ssize_t swap_high_write(struct kernfs_open_file *of,
7329 char *buf, size_t nbytes, loff_t off)
7330{
7331 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7332 unsigned long high;
7333 int err;
7334
7335 buf = strstrip(buf);
7336 err = page_counter_memparse(buf, "max", &high);
7337 if (err)
7338 return err;
7339
7340 page_counter_set_high(&memcg->swap, high);
7341
7342 return nbytes;
7343}
7344
Vladimir Davydov37e84352016-01-20 15:02:56 -08007345static int swap_max_show(struct seq_file *m, void *v)
7346{
Chris Down677dc972019-03-05 15:45:55 -08007347 return seq_puts_memcg_tunable(m,
7348 READ_ONCE(mem_cgroup_from_seq(m)->swap.max));
Vladimir Davydov37e84352016-01-20 15:02:56 -08007349}
7350
7351static ssize_t swap_max_write(struct kernfs_open_file *of,
7352 char *buf, size_t nbytes, loff_t off)
7353{
7354 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7355 unsigned long max;
7356 int err;
7357
7358 buf = strstrip(buf);
7359 err = page_counter_memparse(buf, "max", &max);
7360 if (err)
7361 return err;
7362
Tejun Heobe091022018-06-07 17:09:21 -07007363 xchg(&memcg->swap.max, max);
Vladimir Davydov37e84352016-01-20 15:02:56 -08007364
7365 return nbytes;
7366}
7367
Tejun Heof3a53a32018-06-07 17:05:35 -07007368static int swap_events_show(struct seq_file *m, void *v)
7369{
Chris Downaa9694b2019-03-05 15:45:52 -08007370 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
Tejun Heof3a53a32018-06-07 17:05:35 -07007371
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07007372 seq_printf(m, "high %lu\n",
7373 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_HIGH]));
Tejun Heof3a53a32018-06-07 17:05:35 -07007374 seq_printf(m, "max %lu\n",
7375 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_MAX]));
7376 seq_printf(m, "fail %lu\n",
7377 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_FAIL]));
7378
7379 return 0;
7380}
7381
Vladimir Davydov37e84352016-01-20 15:02:56 -08007382static struct cftype swap_files[] = {
7383 {
7384 .name = "swap.current",
7385 .flags = CFTYPE_NOT_ON_ROOT,
7386 .read_u64 = swap_current_read,
7387 },
7388 {
Jakub Kicinski4b82ab42020-06-01 21:49:52 -07007389 .name = "swap.high",
7390 .flags = CFTYPE_NOT_ON_ROOT,
7391 .seq_show = swap_high_show,
7392 .write = swap_high_write,
7393 },
7394 {
Vladimir Davydov37e84352016-01-20 15:02:56 -08007395 .name = "swap.max",
7396 .flags = CFTYPE_NOT_ON_ROOT,
7397 .seq_show = swap_max_show,
7398 .write = swap_max_write,
7399 },
Tejun Heof3a53a32018-06-07 17:05:35 -07007400 {
7401 .name = "swap.events",
7402 .flags = CFTYPE_NOT_ON_ROOT,
7403 .file_offset = offsetof(struct mem_cgroup, swap_events_file),
7404 .seq_show = swap_events_show,
7405 },
Vladimir Davydov37e84352016-01-20 15:02:56 -08007406 { } /* terminate */
7407};
7408
Johannes Weinereccb52e2020-06-03 16:02:11 -07007409static struct cftype memsw_files[] = {
Johannes Weiner21afa382015-02-11 15:26:36 -08007410 {
7411 .name = "memsw.usage_in_bytes",
7412 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
7413 .read_u64 = mem_cgroup_read_u64,
7414 },
7415 {
7416 .name = "memsw.max_usage_in_bytes",
7417 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
7418 .write = mem_cgroup_reset,
7419 .read_u64 = mem_cgroup_read_u64,
7420 },
7421 {
7422 .name = "memsw.limit_in_bytes",
7423 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
7424 .write = mem_cgroup_write,
7425 .read_u64 = mem_cgroup_read_u64,
7426 },
7427 {
7428 .name = "memsw.failcnt",
7429 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
7430 .write = mem_cgroup_reset,
7431 .read_u64 = mem_cgroup_read_u64,
7432 },
7433 { }, /* terminate */
7434};
7435
Bhupesh Sharma82ff1652020-07-23 21:15:21 -07007436/*
7437 * If mem_cgroup_swap_init() is implemented as a subsys_initcall()
7438 * instead of a core_initcall(), this could mean cgroup_memory_noswap still
7439 * remains set to false even when memcg is disabled via "cgroup_disable=memory"
7440 * boot parameter. This may result in premature OOPS inside
7441 * mem_cgroup_get_nr_swap_pages() function in corner cases.
7442 */
Johannes Weiner21afa382015-02-11 15:26:36 -08007443static int __init mem_cgroup_swap_init(void)
7444{
Johannes Weiner2d1c4982020-06-03 16:02:14 -07007445 /* No memory control -> no swap control */
7446 if (mem_cgroup_disabled())
7447 cgroup_memory_noswap = true;
7448
7449 if (cgroup_memory_noswap)
Johannes Weinereccb52e2020-06-03 16:02:11 -07007450 return 0;
7451
7452 WARN_ON(cgroup_add_dfl_cftypes(&memory_cgrp_subsys, swap_files));
7453 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys, memsw_files));
7454
Johannes Weiner21afa382015-02-11 15:26:36 -08007455 return 0;
7456}
Bhupesh Sharma82ff1652020-07-23 21:15:21 -07007457core_initcall(mem_cgroup_swap_init);
Johannes Weiner21afa382015-02-11 15:26:36 -08007458
7459#endif /* CONFIG_MEMCG_SWAP */