xref: /linux/mm/memcontrol.c (revision c9fdc4d5487a16bd1f003fc8b66e91f88efb50e6)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* memcontrol.c - Memory Controller
3  *
4  * Copyright IBM Corporation, 2007
5  * Author Balbir Singh <balbir@linux.vnet.ibm.com>
6  *
7  * Copyright 2007 OpenVZ SWsoft Inc
8  * Author: Pavel Emelianov <xemul@openvz.org>
9  *
10  * Memory thresholds
11  * Copyright (C) 2009 Nokia Corporation
12  * Author: Kirill A. Shutemov
13  *
14  * Kernel Memory Controller
15  * Copyright (C) 2012 Parallels Inc. and Google Inc.
16  * Authors: Glauber Costa and Suleiman Souhlal
17  *
18  * 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
23  *
24  * Per memcg lru locking
25  * Copyright (C) 2020 Alibaba, Inc, Alex Shi
26  */
27 
28 #include <linux/page_counter.h>
29 #include <linux/memcontrol.h>
30 #include <linux/cgroup.h>
31 #include <linux/pagewalk.h>
32 #include <linux/sched/mm.h>
33 #include <linux/shmem_fs.h>
34 #include <linux/hugetlb.h>
35 #include <linux/pagemap.h>
36 #include <linux/vm_event_item.h>
37 #include <linux/smp.h>
38 #include <linux/page-flags.h>
39 #include <linux/backing-dev.h>
40 #include <linux/bit_spinlock.h>
41 #include <linux/rcupdate.h>
42 #include <linux/limits.h>
43 #include <linux/export.h>
44 #include <linux/mutex.h>
45 #include <linux/rbtree.h>
46 #include <linux/slab.h>
47 #include <linux/swap.h>
48 #include <linux/swapops.h>
49 #include <linux/spinlock.h>
50 #include <linux/eventfd.h>
51 #include <linux/poll.h>
52 #include <linux/sort.h>
53 #include <linux/fs.h>
54 #include <linux/seq_file.h>
55 #include <linux/vmpressure.h>
56 #include <linux/mm_inline.h>
57 #include <linux/swap_cgroup.h>
58 #include <linux/cpu.h>
59 #include <linux/oom.h>
60 #include <linux/lockdep.h>
61 #include <linux/file.h>
62 #include <linux/tracehook.h>
63 #include <linux/psi.h>
64 #include <linux/seq_buf.h>
65 #include "internal.h"
66 #include <net/sock.h>
67 #include <net/ip.h>
68 #include "slab.h"
69 
70 #include <linux/uaccess.h>
71 
72 #include <trace/events/vmscan.h>
73 
74 struct cgroup_subsys memory_cgrp_subsys __read_mostly;
75 EXPORT_SYMBOL(memory_cgrp_subsys);
76 
77 struct mem_cgroup *root_mem_cgroup __read_mostly;
78 
79 /* Active memory cgroup to use from an interrupt context */
80 DEFINE_PER_CPU(struct mem_cgroup *, int_active_memcg);
81 EXPORT_PER_CPU_SYMBOL_GPL(int_active_memcg);
82 
83 /* Socket memory accounting disabled? */
84 static bool cgroup_memory_nosocket __ro_after_init;
85 
86 /* Kernel memory accounting disabled? */
87 static bool cgroup_memory_nokmem __ro_after_init;
88 
89 /* Whether the swap controller is active */
90 #ifdef CONFIG_MEMCG_SWAP
91 bool cgroup_memory_noswap __ro_after_init;
92 #else
93 #define cgroup_memory_noswap		1
94 #endif
95 
96 #ifdef CONFIG_CGROUP_WRITEBACK
97 static DECLARE_WAIT_QUEUE_HEAD(memcg_cgwb_frn_waitq);
98 #endif
99 
100 /* Whether legacy memory+swap accounting is active */
101 static bool do_memsw_account(void)
102 {
103 	return !cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_noswap;
104 }
105 
106 #define THRESHOLDS_EVENTS_TARGET 128
107 #define SOFTLIMIT_EVENTS_TARGET 1024
108 
109 /*
110  * Cgroups above their limits are maintained in a RB-Tree, independent of
111  * their hierarchy representation
112  */
113 
114 struct mem_cgroup_tree_per_node {
115 	struct rb_root rb_root;
116 	struct rb_node *rb_rightmost;
117 	spinlock_t lock;
118 };
119 
120 struct mem_cgroup_tree {
121 	struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
122 };
123 
124 static struct mem_cgroup_tree soft_limit_tree __read_mostly;
125 
126 /* for OOM */
127 struct mem_cgroup_eventfd_list {
128 	struct list_head list;
129 	struct eventfd_ctx *eventfd;
130 };
131 
132 /*
133  * cgroup_event represents events which userspace want to receive.
134  */
135 struct mem_cgroup_event {
136 	/*
137 	 * memcg which the event belongs to.
138 	 */
139 	struct mem_cgroup *memcg;
140 	/*
141 	 * 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 	/*
149 	 * 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 	 */
153 	int (*register_event)(struct mem_cgroup *memcg,
154 			      struct eventfd_ctx *eventfd, const char *args);
155 	/*
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 	 */
160 	void (*unregister_event)(struct mem_cgroup *memcg,
161 				 struct eventfd_ctx *eventfd);
162 	/*
163 	 * All fields below needed to unregister event when
164 	 * userspace closes eventfd.
165 	 */
166 	poll_table pt;
167 	wait_queue_head_t *wqh;
168 	wait_queue_entry_t wait;
169 	struct work_struct remove;
170 };
171 
172 static void mem_cgroup_threshold(struct mem_cgroup *memcg);
173 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
174 
175 /* Stuffs for move charges at task migration. */
176 /*
177  * Types of charges to be moved.
178  */
179 #define MOVE_ANON	0x1U
180 #define MOVE_FILE	0x2U
181 #define MOVE_MASK	(MOVE_ANON | MOVE_FILE)
182 
183 /* "mc" and its members are protected by cgroup_mutex */
184 static struct move_charge_struct {
185 	spinlock_t	  lock; /* for from, to */
186 	struct mm_struct  *mm;
187 	struct mem_cgroup *from;
188 	struct mem_cgroup *to;
189 	unsigned long flags;
190 	unsigned long precharge;
191 	unsigned long moved_charge;
192 	unsigned long moved_swap;
193 	struct task_struct *moving_task;	/* a task moving charges */
194 	wait_queue_head_t waitq;		/* a waitq for other context */
195 } mc = {
196 	.lock = __SPIN_LOCK_UNLOCKED(mc.lock),
197 	.waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
198 };
199 
200 /*
201  * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
202  * limit reclaim to prevent infinite loops, if they ever occur.
203  */
204 #define	MEM_CGROUP_MAX_RECLAIM_LOOPS		100
205 #define	MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS	2
206 
207 /* for encoding cft->private value on file */
208 enum res_type {
209 	_MEM,
210 	_MEMSWAP,
211 	_OOM_TYPE,
212 	_KMEM,
213 	_TCP,
214 };
215 
216 #define MEMFILE_PRIVATE(x, val)	((x) << 16 | (val))
217 #define MEMFILE_TYPE(val)	((val) >> 16 & 0xffff)
218 #define MEMFILE_ATTR(val)	((val) & 0xffff)
219 /* Used for OOM notifier */
220 #define OOM_CONTROL		(0)
221 
222 /*
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 
237 static inline bool task_is_dying(void)
238 {
239 	return tsk_is_oom_victim(current) || fatal_signal_pending(current) ||
240 		(current->flags & PF_EXITING);
241 }
242 
243 /* Some nice accessors for the vmpressure. */
244 struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
245 {
246 	if (!memcg)
247 		memcg = root_mem_cgroup;
248 	return &memcg->vmpressure;
249 }
250 
251 struct mem_cgroup *vmpressure_to_memcg(struct vmpressure *vmpr)
252 {
253 	return container_of(vmpr, struct mem_cgroup, vmpressure);
254 }
255 
256 #ifdef CONFIG_MEMCG_KMEM
257 extern spinlock_t css_set_lock;
258 
259 bool mem_cgroup_kmem_disabled(void)
260 {
261 	return cgroup_memory_nokmem;
262 }
263 
264 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
265 				      unsigned int nr_pages);
266 
267 static void obj_cgroup_release(struct percpu_ref *ref)
268 {
269 	struct obj_cgroup *objcg = container_of(ref, struct obj_cgroup, refcnt);
270 	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 
298 	if (nr_pages)
299 		obj_cgroup_uncharge_pages(objcg, nr_pages);
300 
301 	spin_lock_irqsave(&css_set_lock, flags);
302 	list_del(&objcg->list);
303 	spin_unlock_irqrestore(&css_set_lock, flags);
304 
305 	percpu_ref_exit(ref);
306 	kfree_rcu(objcg, rcu);
307 }
308 
309 static 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 
328 static 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 
335 	spin_lock_irq(&css_set_lock);
336 
337 	/* 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 */
343 	list_splice(&memcg->objcg_list, &parent->objcg_list);
344 
345 	spin_unlock_irq(&css_set_lock);
346 
347 	percpu_ref_kill(&objcg->refcnt);
348 }
349 
350 /*
351  * This will be used as a shrinker list's index.
352  * 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.
357  *
358  * 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.
360  */
361 static DEFINE_IDA(memcg_cache_ida);
362 int memcg_nr_cache_ids;
363 
364 /* Protects memcg_nr_cache_ids */
365 static DECLARE_RWSEM(memcg_cache_ids_sem);
366 
367 void memcg_get_cache_ids(void)
368 {
369 	down_read(&memcg_cache_ids_sem);
370 }
371 
372 void memcg_put_cache_ids(void)
373 {
374 	up_read(&memcg_cache_ids_sem);
375 }
376 
377 /*
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  *
383  * MAX_SIZE should be as large as the number of cgrp_ids. Ideally, we could get
384  * 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
386  * cgrp_id space is not getting any smaller, and we don't have to necessarily
387  * increase ours as well if it increases.
388  */
389 #define MEMCG_CACHES_MIN_SIZE 4
390 #define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
391 
392 /*
393  * A lot of the calls to the cache allocation functions are expected to be
394  * inlined by the compiler. Since the calls to memcg_slab_pre_alloc_hook() are
395  * 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  */
398 DEFINE_STATIC_KEY_FALSE(memcg_kmem_enabled_key);
399 EXPORT_SYMBOL(memcg_kmem_enabled_key);
400 #endif
401 
402 /**
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.
412  */
413 struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page)
414 {
415 	struct mem_cgroup *memcg;
416 
417 	memcg = page_memcg(page);
418 
419 	if (!memcg || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
420 		memcg = root_mem_cgroup;
421 
422 	return &memcg->css;
423 }
424 
425 /**
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  */
438 ino_t page_cgroup_ino(struct page *page)
439 {
440 	struct mem_cgroup *memcg;
441 	unsigned long ino = 0;
442 
443 	rcu_read_lock();
444 	memcg = page_memcg_check(page);
445 
446 	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 
454 static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_node *mz,
455 					 struct mem_cgroup_tree_per_node *mctz,
456 					 unsigned long new_usage_in_excess)
457 {
458 	struct rb_node **p = &mctz->rb_root.rb_node;
459 	struct rb_node *parent = NULL;
460 	struct mem_cgroup_per_node *mz_node;
461 	bool rightmost = true;
462 
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;
471 		mz_node = rb_entry(parent, struct mem_cgroup_per_node,
472 					tree_node);
473 		if (mz->usage_in_excess < mz_node->usage_in_excess) {
474 			p = &(*p)->rb_left;
475 			rightmost = false;
476 		} else {
477 			p = &(*p)->rb_right;
478 		}
479 	}
480 
481 	if (rightmost)
482 		mctz->rb_rightmost = &mz->tree_node;
483 
484 	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 
489 static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
490 					 struct mem_cgroup_tree_per_node *mctz)
491 {
492 	if (!mz->on_tree)
493 		return;
494 
495 	if (&mz->tree_node == mctz->rb_rightmost)
496 		mctz->rb_rightmost = rb_prev(&mz->tree_node);
497 
498 	rb_erase(&mz->tree_node, &mctz->rb_root);
499 	mz->on_tree = false;
500 }
501 
502 static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
503 				       struct mem_cgroup_tree_per_node *mctz)
504 {
505 	unsigned long flags;
506 
507 	spin_lock_irqsave(&mctz->lock, flags);
508 	__mem_cgroup_remove_exceeded(mz, mctz);
509 	spin_unlock_irqrestore(&mctz->lock, flags);
510 }
511 
512 static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
513 {
514 	unsigned long nr_pages = page_counter_read(&memcg->memory);
515 	unsigned long soft_limit = READ_ONCE(memcg->soft_limit);
516 	unsigned long excess = 0;
517 
518 	if (nr_pages > soft_limit)
519 		excess = nr_pages - soft_limit;
520 
521 	return excess;
522 }
523 
524 static void mem_cgroup_update_tree(struct mem_cgroup *memcg, int nid)
525 {
526 	unsigned long excess;
527 	struct mem_cgroup_per_node *mz;
528 	struct mem_cgroup_tree_per_node *mctz;
529 
530 	mctz = soft_limit_tree.rb_tree_per_node[nid];
531 	if (!mctz)
532 		return;
533 	/*
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)) {
538 		mz = memcg->nodeinfo[nid];
539 		excess = soft_limit_excess(memcg);
540 		/*
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) {
545 			unsigned long flags;
546 
547 			spin_lock_irqsave(&mctz->lock, flags);
548 			/* if on-tree, remove it */
549 			if (mz->on_tree)
550 				__mem_cgroup_remove_exceeded(mz, mctz);
551 			/*
552 			 * Insert again. mz->usage_in_excess will be updated.
553 			 * If excess is 0, no tree ops.
554 			 */
555 			__mem_cgroup_insert_exceeded(mz, mctz, excess);
556 			spin_unlock_irqrestore(&mctz->lock, flags);
557 		}
558 	}
559 }
560 
561 static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
562 {
563 	struct mem_cgroup_tree_per_node *mctz;
564 	struct mem_cgroup_per_node *mz;
565 	int nid;
566 
567 	for_each_node(nid) {
568 		mz = memcg->nodeinfo[nid];
569 		mctz = soft_limit_tree.rb_tree_per_node[nid];
570 		if (mctz)
571 			mem_cgroup_remove_exceeded(mz, mctz);
572 	}
573 }
574 
575 static struct mem_cgroup_per_node *
576 __mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
577 {
578 	struct mem_cgroup_per_node *mz;
579 
580 retry:
581 	mz = NULL;
582 	if (!mctz->rb_rightmost)
583 		goto done;		/* Nothing to reclaim from */
584 
585 	mz = rb_entry(mctz->rb_rightmost,
586 		      struct mem_cgroup_per_node, tree_node);
587 	/*
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 	 */
592 	__mem_cgroup_remove_exceeded(mz, mctz);
593 	if (!soft_limit_excess(mz->memcg) ||
594 	    !css_tryget(&mz->memcg->css))
595 		goto retry;
596 done:
597 	return mz;
598 }
599 
600 static struct mem_cgroup_per_node *
601 mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
602 {
603 	struct mem_cgroup_per_node *mz;
604 
605 	spin_lock_irq(&mctz->lock);
606 	mz = __mem_cgroup_largest_soft_limit_node(mctz);
607 	spin_unlock_irq(&mctz->lock);
608 	return mz;
609 }
610 
611 /*
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  */
626 static void flush_memcg_stats_dwork(struct work_struct *w);
627 static DECLARE_DEFERRABLE_WORK(stats_flush_dwork, flush_memcg_stats_dwork);
628 static DEFINE_SPINLOCK(stats_flush_lock);
629 static DEFINE_PER_CPU(unsigned int, stats_updates);
630 static atomic_t stats_flush_threshold = ATOMIC_INIT(0);
631 
632 static inline void memcg_rstat_updated(struct mem_cgroup *memcg, int val)
633 {
634 	unsigned int x;
635 
636 	cgroup_rstat_updated(memcg->css.cgroup, smp_processor_id());
637 
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 	}
643 }
644 
645 static void __mem_cgroup_flush_stats(void)
646 {
647 	unsigned long flag;
648 
649 	if (!spin_trylock_irqsave(&stats_flush_lock, flag))
650 		return;
651 
652 	cgroup_rstat_flush_irqsafe(root_mem_cgroup->css.cgroup);
653 	atomic_set(&stats_flush_threshold, 0);
654 	spin_unlock_irqrestore(&stats_flush_lock, flag);
655 }
656 
657 void mem_cgroup_flush_stats(void)
658 {
659 	if (atomic_read(&stats_flush_threshold) > num_online_cpus())
660 		__mem_cgroup_flush_stats();
661 }
662 
663 static void flush_memcg_stats_dwork(struct work_struct *w)
664 {
665 	__mem_cgroup_flush_stats();
666 	queue_delayed_work(system_unbound_wq, &stats_flush_dwork, 2UL*HZ);
667 }
668 
669 /**
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  */
675 void __mod_memcg_state(struct mem_cgroup *memcg, int idx, int val)
676 {
677 	if (mem_cgroup_disabled())
678 		return;
679 
680 	__this_cpu_add(memcg->vmstats_percpu->state[idx], val);
681 	memcg_rstat_updated(memcg, val);
682 }
683 
684 /* idx can be of type enum memcg_stat_item or node_stat_item. */
685 static 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)
691 		x += per_cpu(memcg->vmstats_percpu->state[idx], cpu);
692 #ifdef CONFIG_SMP
693 	if (x < 0)
694 		x = 0;
695 #endif
696 	return x;
697 }
698 
699 void __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;
704 
705 	pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
706 	memcg = pn->memcg;
707 
708 	/* Update memcg */
709 	__this_cpu_add(memcg->vmstats_percpu->state[idx], val);
710 
711 	/* Update lruvec */
712 	__this_cpu_add(pn->lruvec_stats_percpu->state[idx], val);
713 
714 	memcg_rstat_updated(memcg, val);
715 }
716 
717 /**
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  */
727 void __mod_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
728 			int val)
729 {
730 	/* Update node */
731 	__mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
732 
733 	/* Update memcg and lruvec */
734 	if (!mem_cgroup_disabled())
735 		__mod_memcg_lruvec_state(lruvec, idx, val);
736 }
737 
738 void __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 */
742 	struct mem_cgroup *memcg;
743 	pg_data_t *pgdat = page_pgdat(page);
744 	struct lruvec *lruvec;
745 
746 	rcu_read_lock();
747 	memcg = page_memcg(head);
748 	/* Untracked pages have no memcg, no lruvec. Update only the node */
749 	if (!memcg) {
750 		rcu_read_unlock();
751 		__mod_node_page_state(pgdat, idx, val);
752 		return;
753 	}
754 
755 	lruvec = mem_cgroup_lruvec(memcg, pgdat);
756 	__mod_lruvec_state(lruvec, idx, val);
757 	rcu_read_unlock();
758 }
759 EXPORT_SYMBOL(__mod_lruvec_page_state);
760 
761 void __mod_lruvec_kmem_state(void *p, enum node_stat_item idx, int val)
762 {
763 	pg_data_t *pgdat = page_pgdat(virt_to_page(p));
764 	struct mem_cgroup *memcg;
765 	struct lruvec *lruvec;
766 
767 	rcu_read_lock();
768 	memcg = mem_cgroup_from_obj(p);
769 
770 	/*
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) {
777 		__mod_node_page_state(pgdat, idx, val);
778 	} else {
779 		lruvec = mem_cgroup_lruvec(memcg, pgdat);
780 		__mod_lruvec_state(lruvec, idx, val);
781 	}
782 	rcu_read_unlock();
783 }
784 
785 /**
786  * __count_memcg_events - account VM events in a cgroup
787  * @memcg: the memory cgroup
788  * @idx: the event item
789  * @count: the number of events that occurred
790  */
791 void __count_memcg_events(struct mem_cgroup *memcg, enum vm_event_item idx,
792 			  unsigned long count)
793 {
794 	if (mem_cgroup_disabled())
795 		return;
796 
797 	__this_cpu_add(memcg->vmstats_percpu->events[idx], count);
798 	memcg_rstat_updated(memcg, count);
799 }
800 
801 static unsigned long memcg_events(struct mem_cgroup *memcg, int event)
802 {
803 	return READ_ONCE(memcg->vmstats.events[event]);
804 }
805 
806 static unsigned long memcg_events_local(struct mem_cgroup *memcg, int event)
807 {
808 	long x = 0;
809 	int cpu;
810 
811 	for_each_possible_cpu(cpu)
812 		x += per_cpu(memcg->vmstats_percpu->events[event], cpu);
813 	return x;
814 }
815 
816 static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
817 					 int nr_pages)
818 {
819 	/* pagein of a big page is an event. So, ignore page size */
820 	if (nr_pages > 0)
821 		__count_memcg_events(memcg, PGPGIN, 1);
822 	else {
823 		__count_memcg_events(memcg, PGPGOUT, 1);
824 		nr_pages = -nr_pages; /* for event */
825 	}
826 
827 	__this_cpu_add(memcg->vmstats_percpu->nr_page_events, nr_pages);
828 }
829 
830 static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
831 				       enum mem_cgroup_events_target target)
832 {
833 	unsigned long val, next;
834 
835 	val = __this_cpu_read(memcg->vmstats_percpu->nr_page_events);
836 	next = __this_cpu_read(memcg->vmstats_percpu->targets[target]);
837 	/* from time_after() in jiffies.h */
838 	if ((long)(next - val) < 0) {
839 		switch (target) {
840 		case MEM_CGROUP_TARGET_THRESH:
841 			next = val + THRESHOLDS_EVENTS_TARGET;
842 			break;
843 		case MEM_CGROUP_TARGET_SOFTLIMIT:
844 			next = val + SOFTLIMIT_EVENTS_TARGET;
845 			break;
846 		default:
847 			break;
848 		}
849 		__this_cpu_write(memcg->vmstats_percpu->targets[target], next);
850 		return true;
851 	}
852 	return false;
853 }
854 
855 /*
856  * Check events in order.
857  *
858  */
859 static void memcg_check_events(struct mem_cgroup *memcg, int nid)
860 {
861 	/* threshold event is triggered in finer grain than soft limit */
862 	if (unlikely(mem_cgroup_event_ratelimit(memcg,
863 						MEM_CGROUP_TARGET_THRESH))) {
864 		bool do_softlimit;
865 
866 		do_softlimit = mem_cgroup_event_ratelimit(memcg,
867 						MEM_CGROUP_TARGET_SOFTLIMIT);
868 		mem_cgroup_threshold(memcg);
869 		if (unlikely(do_softlimit))
870 			mem_cgroup_update_tree(memcg, nid);
871 	}
872 }
873 
874 struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
875 {
876 	/*
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 
884 	return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
885 }
886 EXPORT_SYMBOL(mem_cgroup_from_task);
887 
888 static __always_inline struct mem_cgroup *active_memcg(void)
889 {
890 	if (!in_task())
891 		return this_cpu_read(int_active_memcg);
892 	else
893 		return current->active_memcg;
894 }
895 
896 /**
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  *
900  * 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.
906  */
907 struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
908 {
909 	struct mem_cgroup *memcg;
910 
911 	if (mem_cgroup_disabled())
912 		return NULL;
913 
914 	/*
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 	 */
923 	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 	}
934 
935 	rcu_read_lock();
936 	do {
937 		memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
938 		if (unlikely(!memcg))
939 			memcg = root_mem_cgroup;
940 	} while (!css_tryget(&memcg->css));
941 	rcu_read_unlock();
942 	return memcg;
943 }
944 EXPORT_SYMBOL(get_mem_cgroup_from_mm);
945 
946 static __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. */
953 	if (!in_task() || !current->mm || (current->flags & PF_KTHREAD))
954 		return true;
955 
956 	return false;
957 }
958 
959 /**
960  * 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  *
972  * 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.
975  */
976 struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
977 				   struct mem_cgroup *prev,
978 				   struct mem_cgroup_reclaim_cookie *reclaim)
979 {
980 	struct mem_cgroup_reclaim_iter *iter;
981 	struct cgroup_subsys_state *css = NULL;
982 	struct mem_cgroup *memcg = NULL;
983 	struct mem_cgroup *pos = NULL;
984 
985 	if (mem_cgroup_disabled())
986 		return NULL;
987 
988 	if (!root)
989 		root = root_mem_cgroup;
990 
991 	if (prev && !reclaim)
992 		pos = prev;
993 
994 	rcu_read_lock();
995 
996 	if (reclaim) {
997 		struct mem_cgroup_per_node *mz;
998 
999 		mz = root->nodeinfo[reclaim->pgdat->node_id];
1000 		iter = &mz->iter;
1001 
1002 		if (prev && reclaim->generation != iter->generation)
1003 			goto out_unlock;
1004 
1005 		while (1) {
1006 			pos = READ_ONCE(iter->position);
1007 			if (!pos || css_tryget(&pos->css))
1008 				break;
1009 			/*
1010 			 * 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.
1016 			 */
1017 			(void)cmpxchg(&iter->position, pos, NULL);
1018 		}
1019 	}
1020 
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 
1048 		if (css_tryget(css))
1049 			break;
1050 
1051 		memcg = NULL;
1052 	}
1053 
1054 	if (reclaim) {
1055 		/*
1056 		 * 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.
1059 		 */
1060 		(void)cmpxchg(&iter->position, pos, memcg);
1061 
1062 		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 
1071 out_unlock:
1072 	rcu_read_unlock();
1073 	if (prev && prev != root)
1074 		css_put(&prev->css);
1075 
1076 	return memcg;
1077 }
1078 
1079 /**
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  */
1084 void mem_cgroup_iter_break(struct mem_cgroup *root,
1085 			   struct mem_cgroup *prev)
1086 {
1087 	if (!root)
1088 		root = root_mem_cgroup;
1089 	if (prev && prev != root)
1090 		css_put(&prev->css);
1091 }
1092 
1093 static void __invalidate_reclaim_iterators(struct mem_cgroup *from,
1094 					struct mem_cgroup *dead_memcg)
1095 {
1096 	struct mem_cgroup_reclaim_iter *iter;
1097 	struct mem_cgroup_per_node *mz;
1098 	int nid;
1099 
1100 	for_each_node(nid) {
1101 		mz = from->nodeinfo[nid];
1102 		iter = &mz->iter;
1103 		cmpxchg(&iter->position, dead_memcg, NULL);
1104 	}
1105 }
1106 
1107 static 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 
1128 /**
1129  * 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  */
1141 int 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 
1153 		css_task_iter_start(&iter->css, CSS_TASK_ITER_PROCS, &it);
1154 		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 
1165 #ifdef CONFIG_DEBUG_VM
1166 void lruvec_memcg_debug(struct lruvec *lruvec, struct folio *folio)
1167 {
1168 	struct mem_cgroup *memcg;
1169 
1170 	if (mem_cgroup_disabled())
1171 		return;
1172 
1173 	memcg = folio_memcg(folio);
1174 
1175 	if (!memcg)
1176 		VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != root_mem_cgroup, folio);
1177 	else
1178 		VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != memcg, folio);
1179 }
1180 #endif
1181 
1182 /**
1183  * folio_lruvec_lock - Lock the lruvec for a folio.
1184  * @folio: Pointer to the folio.
1185  *
1186  * These functions are safe to use under any of the following conditions:
1187  * - 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.
1193  */
1194 struct lruvec *folio_lruvec_lock(struct folio *folio)
1195 {
1196 	struct lruvec *lruvec = folio_lruvec(folio);
1197 
1198 	spin_lock(&lruvec->lru_lock);
1199 	lruvec_memcg_debug(lruvec, folio);
1200 
1201 	return lruvec;
1202 }
1203 
1204 /**
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  */
1217 struct lruvec *folio_lruvec_lock_irq(struct folio *folio)
1218 {
1219 	struct lruvec *lruvec = folio_lruvec(folio);
1220 
1221 	spin_lock_irq(&lruvec->lru_lock);
1222 	lruvec_memcg_debug(lruvec, folio);
1223 
1224 	return lruvec;
1225 }
1226 
1227 /**
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  */
1241 struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
1242 		unsigned long *flags)
1243 {
1244 	struct lruvec *lruvec = folio_lruvec(folio);
1245 
1246 	spin_lock_irqsave(&lruvec->lru_lock, *flags);
1247 	lruvec_memcg_debug(lruvec, folio);
1248 
1249 	return lruvec;
1250 }
1251 
1252 /**
1253  * 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
1256  * @zid: zone id of the accounted pages
1257  * @nr_pages: positive when adding or negative when removing
1258  *
1259  * 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).
1262  */
1263 void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1264 				int zid, int nr_pages)
1265 {
1266 	struct mem_cgroup_per_node *mz;
1267 	unsigned long *lru_size;
1268 	long size;
1269 
1270 	if (mem_cgroup_disabled())
1271 		return;
1272 
1273 	mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
1274 	lru_size = &mz->lru_zone_size[zid][lru];
1275 
1276 	if (nr_pages < 0)
1277 		*lru_size += nr_pages;
1278 
1279 	size = *lru_size;
1280 	if (WARN_ONCE(size < 0,
1281 		"%s(%p, %d, %d): lru_size %ld\n",
1282 		__func__, lruvec, lru, nr_pages, size)) {
1283 		VM_BUG_ON(1);
1284 		*lru_size = 0;
1285 	}
1286 
1287 	if (nr_pages > 0)
1288 		*lru_size += nr_pages;
1289 }
1290 
1291 /**
1292  * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1293  * @memcg: the memory cgroup
1294  *
1295  * Returns the maximum amount of memory @mem can be charged with, in
1296  * pages.
1297  */
1298 static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
1299 {
1300 	unsigned long margin = 0;
1301 	unsigned long count;
1302 	unsigned long limit;
1303 
1304 	count = page_counter_read(&memcg->memory);
1305 	limit = READ_ONCE(memcg->memory.max);
1306 	if (count < limit)
1307 		margin = limit - count;
1308 
1309 	if (do_memsw_account()) {
1310 		count = page_counter_read(&memcg->memsw);
1311 		limit = READ_ONCE(memcg->memsw.max);
1312 		if (count < limit)
1313 			margin = min(margin, limit - count);
1314 		else
1315 			margin = 0;
1316 	}
1317 
1318 	return margin;
1319 }
1320 
1321 /*
1322  * A routine for checking "mem" is under move_account() or not.
1323  *
1324  * 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".
1327  */
1328 static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
1329 {
1330 	struct mem_cgroup *from;
1331 	struct mem_cgroup *to;
1332 	bool ret = false;
1333 	/*
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;
1342 
1343 	ret = mem_cgroup_is_descendant(from, memcg) ||
1344 		mem_cgroup_is_descendant(to, memcg);
1345 unlock:
1346 	spin_unlock(&mc.lock);
1347 	return ret;
1348 }
1349 
1350 static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
1351 {
1352 	if (mc.moving_task && current != mc.moving_task) {
1353 		if (mem_cgroup_under_move(memcg)) {
1354 			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 
1366 struct memory_stat {
1367 	const char *name;
1368 	unsigned int idx;
1369 };
1370 
1371 static const struct memory_stat memory_stats[] = {
1372 	{ "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			},
1378 	{ "vmalloc",			MEMCG_VMALLOC			},
1379 	{ "shmem",			NR_SHMEM			},
1380 	{ "file_mapped",		NR_FILE_MAPPED			},
1381 	{ "file_dirty",			NR_FILE_DIRTY			},
1382 	{ "file_writeback",		NR_WRITEBACK			},
1383 #ifdef CONFIG_SWAP
1384 	{ "swapcached",			NR_SWAPCACHE			},
1385 #endif
1386 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1387 	{ "anon_thp",			NR_ANON_THPS			},
1388 	{ "file_thp",			NR_FILE_THPS			},
1389 	{ "shmem_thp",			NR_SHMEM_THPS			},
1390 #endif
1391 	{ "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		},
1398 
1399 	/* The memory events */
1400 	{ "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		},
1407 };
1408 
1409 /* Translate stat items to the correct unit for memory.stat output */
1410 static 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 
1431 static 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 
1437 static char *memory_stat_format(struct mem_cgroup *memcg)
1438 {
1439 	struct seq_buf s;
1440 	int i;
1441 
1442 	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 	 */
1456 	mem_cgroup_flush_stats();
1457 
1458 	for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
1459 		u64 size;
1460 
1461 		size = memcg_page_state_output(memcg, memory_stats[i].idx);
1462 		seq_buf_printf(&s, "%s %llu\n", memory_stats[i].name, size);
1463 
1464 		if (unlikely(memory_stats[i].idx == NR_SLAB_UNRECLAIMABLE_B)) {
1465 			size += memcg_page_state_output(memcg,
1466 							NR_SLAB_RECLAIMABLE_B);
1467 			seq_buf_printf(&s, "slab %llu\n", size);
1468 		}
1469 	}
1470 
1471 	/* Accumulated memory events */
1472 
1473 	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));
1477 	seq_buf_printf(&s, "%s %lu\n",  vm_event_name(PGREFILL),
1478 		       memcg_events(memcg, PGREFILL));
1479 	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));
1485 	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));
1493 
1494 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1495 	seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_FAULT_ALLOC),
1496 		       memcg_events(memcg, THP_FAULT_ALLOC));
1497 	seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_COLLAPSE_ALLOC),
1498 		       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 }
1506 
1507 #define K(x) ((x) << (PAGE_SHIFT-10))
1508 /**
1509  * mem_cgroup_print_oom_context: Print OOM information relevant to
1510  * memory controller.
1511  * @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  */
1517 void 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  */
1538 void mem_cgroup_print_oom_meminfo(struct mem_cgroup *memcg)
1539 {
1540 	char *buf;
1541 
1542 	pr_info("memory: usage %llukB, limit %llukB, failcnt %lu\n",
1543 		K((u64)page_counter_read(&memcg->memory)),
1544 		K((u64)READ_ONCE(memcg->memory.max)), memcg->memory.failcnt);
1545 	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)),
1548 			K((u64)READ_ONCE(memcg->swap.max)), memcg->swap.failcnt);
1549 	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);
1556 	}
1557 
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);
1566 }
1567 
1568 /*
1569  * Return the memory (and swap, if configured) limit for a memcg.
1570  */
1571 unsigned long mem_cgroup_get_max(struct mem_cgroup *memcg)
1572 {
1573 	unsigned long max = READ_ONCE(memcg->memory.max);
1574 
1575 	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;
1583 
1584 			max += min(swap, (unsigned long)total_swap_pages);
1585 		}
1586 	}
1587 	return max;
1588 }
1589 
1590 unsigned long mem_cgroup_size(struct mem_cgroup *memcg)
1591 {
1592 	return page_counter_read(&memcg->memory);
1593 }
1594 
1595 static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1596 				     int order)
1597 {
1598 	struct oom_control oc = {
1599 		.zonelist = NULL,
1600 		.nodemask = NULL,
1601 		.memcg = memcg,
1602 		.gfp_mask = gfp_mask,
1603 		.order = order,
1604 	};
1605 	bool ret = true;
1606 
1607 	if (mutex_lock_killable(&oom_lock))
1608 		return true;
1609 
1610 	if (mem_cgroup_margin(memcg) >= (1 << order))
1611 		goto unlock;
1612 
1613 	/*
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 	 */
1617 	ret = task_is_dying() || out_of_memory(&oc);
1618 
1619 unlock:
1620 	mutex_unlock(&oom_lock);
1621 	return ret;
1622 }
1623 
1624 static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1625 				   pg_data_t *pgdat,
1626 				   gfp_t gfp_mask,
1627 				   unsigned long *total_scanned)
1628 {
1629 	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 = {
1635 		.pgdat = pgdat,
1636 	};
1637 
1638 	excess = soft_limit_excess(root_memcg);
1639 
1640 	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 		}
1664 		total += mem_cgroup_shrink_node(victim, gfp_mask, false,
1665 					pgdat, &nr_scanned);
1666 		*total_scanned += nr_scanned;
1667 		if (!soft_limit_excess(root_memcg))
1668 			break;
1669 	}
1670 	mem_cgroup_iter_break(root_memcg, victim);
1671 	return total;
1672 }
1673 
1674 #ifdef CONFIG_LOCKDEP
1675 static struct lockdep_map memcg_oom_lock_dep_map = {
1676 	.name = "memcg_oom_lock",
1677 };
1678 #endif
1679 
1680 static DEFINE_SPINLOCK(memcg_oom_lock);
1681 
1682 /*
1683  * Check OOM-Killer is already running under our hierarchy.
1684  * If someone is running, return false.
1685  */
1686 static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
1687 {
1688 	struct mem_cgroup *iter, *failed = NULL;
1689 
1690 	spin_lock(&memcg_oom_lock);
1691 
1692 	for_each_mem_cgroup_tree(iter, memcg) {
1693 		if (iter->oom_lock) {
1694 			/*
1695 			 * this subtree of our hierarchy is already locked
1696 			 * so we cannot give a lock.
1697 			 */
1698 			failed = iter;
1699 			mem_cgroup_iter_break(memcg, iter);
1700 			break;
1701 		} else
1702 			iter->oom_lock = true;
1703 	}
1704 
1705 	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;
1716 		}
1717 	} else
1718 		mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
1719 
1720 	spin_unlock(&memcg_oom_lock);
1721 
1722 	return !failed;
1723 }
1724 
1725 static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
1726 {
1727 	struct mem_cgroup *iter;
1728 
1729 	spin_lock(&memcg_oom_lock);
1730 	mutex_release(&memcg_oom_lock_dep_map, _RET_IP_);
1731 	for_each_mem_cgroup_tree(iter, memcg)
1732 		iter->oom_lock = false;
1733 	spin_unlock(&memcg_oom_lock);
1734 }
1735 
1736 static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
1737 {
1738 	struct mem_cgroup *iter;
1739 
1740 	spin_lock(&memcg_oom_lock);
1741 	for_each_mem_cgroup_tree(iter, memcg)
1742 		iter->under_oom++;
1743 	spin_unlock(&memcg_oom_lock);
1744 }
1745 
1746 static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
1747 {
1748 	struct mem_cgroup *iter;
1749 
1750 	/*
1751 	 * Be careful about under_oom underflows because a child memcg
1752 	 * could have been added after mem_cgroup_mark_under_oom.
1753 	 */
1754 	spin_lock(&memcg_oom_lock);
1755 	for_each_mem_cgroup_tree(iter, memcg)
1756 		if (iter->under_oom > 0)
1757 			iter->under_oom--;
1758 	spin_unlock(&memcg_oom_lock);
1759 }
1760 
1761 static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1762 
1763 struct oom_wait_info {
1764 	struct mem_cgroup *memcg;
1765 	wait_queue_entry_t	wait;
1766 };
1767 
1768 static int memcg_oom_wake_function(wait_queue_entry_t *wait,
1769 	unsigned mode, int sync, void *arg)
1770 {
1771 	struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1772 	struct mem_cgroup *oom_wait_memcg;
1773 	struct oom_wait_info *oom_wait_info;
1774 
1775 	oom_wait_info = container_of(wait, struct oom_wait_info, wait);
1776 	oom_wait_memcg = oom_wait_info->memcg;
1777 
1778 	if (!mem_cgroup_is_descendant(wake_memcg, oom_wait_memcg) &&
1779 	    !mem_cgroup_is_descendant(oom_wait_memcg, wake_memcg))
1780 		return 0;
1781 	return autoremove_wake_function(wait, mode, sync, arg);
1782 }
1783 
1784 static void memcg_oom_recover(struct mem_cgroup *memcg)
1785 {
1786 	/*
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)
1795 		__wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
1796 }
1797 
1798 enum oom_status {
1799 	OOM_SUCCESS,
1800 	OOM_FAILED,
1801 	OOM_ASYNC,
1802 	OOM_SKIPPED
1803 };
1804 
1805 static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
1806 {
1807 	enum oom_status ret;
1808 	bool locked;
1809 
1810 	if (order > PAGE_ALLOC_COSTLY_ORDER)
1811 		return OOM_SKIPPED;
1812 
1813 	memcg_memory_event(memcg, MEMCG_OOM);
1814 
1815 	/*
1816 	 * 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 	 *
1820 	 * 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.
1824 	 *
1825 	 * 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.
1832 	 */
1833 	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 
1844 	mem_cgroup_mark_under_oom(memcg);
1845 
1846 	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;
1861 }
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  */
1880 bool mem_cgroup_oom_synchronize(bool handle)
1881 {
1882 	struct mem_cgroup *memcg = current->memcg_in_oom;
1883 	struct oom_wait_info owait;
1884 	bool locked;
1885 
1886 	/* OOM is global, do not handle */
1887 	if (!memcg)
1888 		return false;
1889 
1890 	if (!handle)
1891 		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;
1897 	INIT_LIST_HEAD(&owait.wait.entry);
1898 
1899 	prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
1900 	mem_cgroup_mark_under_oom(memcg);
1901 
1902 	locked = mem_cgroup_oom_trylock(memcg);
1903 
1904 	if (locked)
1905 		mem_cgroup_oom_notify(memcg);
1906 
1907 	if (locked && !memcg->oom_kill_disable) {
1908 		mem_cgroup_unmark_under_oom(memcg);
1909 		finish_wait(&memcg_oom_waitq, &owait.wait);
1910 		mem_cgroup_out_of_memory(memcg, current->memcg_oom_gfp_mask,
1911 					 current->memcg_oom_order);
1912 	} else {
1913 		schedule();
1914 		mem_cgroup_unmark_under_oom(memcg);
1915 		finish_wait(&memcg_oom_waitq, &owait.wait);
1916 	}
1917 
1918 	if (locked) {
1919 		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
1923 		 * uncharges.  Wake any sleepers explicitly.
1924 		 */
1925 		memcg_oom_recover(memcg);
1926 	}
1927 cleanup:
1928 	current->memcg_in_oom = NULL;
1929 	css_put(&memcg->css);
1930 	return true;
1931 }
1932 
1933 /**
1934  * 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  */
1943 struct 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 	/*
1962 	 * 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 	/*
1970 	 * 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);
1984 out:
1985 	rcu_read_unlock();
1986 
1987 	return oom_group;
1988 }
1989 
1990 void 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 /**
1998  * folio_memcg_lock - Bind a folio to its memcg.
1999  * @folio: The folio.
2000  *
2001  * This function prevents unlocked LRU folios from being moved to
2002  * another cgroup.
2003  *
2004  * It ensures lifetime of the bound memcg.  The caller is responsible
2005  * for the lifetime of the folio.
2006  */
2007 void folio_memcg_lock(struct folio *folio)
2008 {
2009 	struct mem_cgroup *memcg;
2010 	unsigned long flags;
2011 
2012 	/*
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.
2016          */
2017 	rcu_read_lock();
2018 
2019 	if (mem_cgroup_disabled())
2020 		return;
2021 again:
2022 	memcg = folio_memcg(folio);
2023 	if (unlikely(!memcg))
2024 		return;
2025 
2026 #ifdef CONFIG_PROVE_LOCKING
2027 	local_irq_save(flags);
2028 	might_lock(&memcg->move_lock);
2029 	local_irq_restore(flags);
2030 #endif
2031 
2032 	if (atomic_read(&memcg->moving_account) <= 0)
2033 		return;
2034 
2035 	spin_lock_irqsave(&memcg->move_lock, flags);
2036 	if (memcg != folio_memcg(folio)) {
2037 		spin_unlock_irqrestore(&memcg->move_lock, flags);
2038 		goto again;
2039 	}
2040 
2041 	/*
2042 	 * 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().
2046 	 */
2047 	memcg->move_lock_task = current;
2048 	memcg->move_lock_flags = flags;
2049 }
2050 
2051 void lock_page_memcg(struct page *page)
2052 {
2053 	folio_memcg_lock(page_folio(page));
2054 }
2055 
2056 static void __folio_memcg_unlock(struct mem_cgroup *memcg)
2057 {
2058 	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 	}
2066 
2067 	rcu_read_unlock();
2068 }
2069 
2070 /**
2071  * 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.
2077  */
2078 void folio_memcg_unlock(struct folio *folio)
2079 {
2080 	__folio_memcg_unlock(folio_memcg(folio));
2081 }
2082 
2083 void unlock_page_memcg(struct page *page)
2084 {
2085 	folio_memcg_unlock(page_folio(page));
2086 }
2087 
2088 struct obj_stock {
2089 #ifdef CONFIG_MEMCG_KMEM
2090 	struct obj_cgroup *cached_objcg;
2091 	struct pglist_data *cached_pgdat;
2092 	unsigned int nr_bytes;
2093 	int nr_slab_reclaimable_b;
2094 	int nr_slab_unreclaimable_b;
2095 #else
2096 	int dummy[0];
2097 #endif
2098 };
2099 
2100 struct 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;
2105 
2106 	struct work_struct work;
2107 	unsigned long flags;
2108 #define FLUSHING_CACHED_CHARGE	0
2109 };
2110 static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
2111 static DEFINE_MUTEX(percpu_charge_mutex);
2112 
2113 #ifdef CONFIG_MEMCG_KMEM
2114 static void drain_obj_stock(struct obj_stock *stock);
2115 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2116 				     struct mem_cgroup *root_memcg);
2117 
2118 #else
2119 static inline void drain_obj_stock(struct obj_stock *stock)
2120 {
2121 }
2122 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2123 				     struct mem_cgroup *root_memcg)
2124 {
2125 	return false;
2126 }
2127 #endif
2128 
2129 /**
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.
2139  */
2140 static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2141 {
2142 	struct memcg_stock_pcp *stock;
2143 	unsigned long flags;
2144 	bool ret = false;
2145 
2146 	if (nr_pages > MEMCG_CHARGE_BATCH)
2147 		return ret;
2148 
2149 	local_irq_save(flags);
2150 
2151 	stock = this_cpu_ptr(&memcg_stock);
2152 	if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
2153 		stock->nr_pages -= nr_pages;
2154 		ret = true;
2155 	}
2156 
2157 	local_irq_restore(flags);
2158 
2159 	return ret;
2160 }
2161 
2162 /*
2163  * Returns stocks cached in percpu and reset cached information.
2164  */
2165 static void drain_stock(struct memcg_stock_pcp *stock)
2166 {
2167 	struct mem_cgroup *old = stock->cached;
2168 
2169 	if (!old)
2170 		return;
2171 
2172 	if (stock->nr_pages) {
2173 		page_counter_uncharge(&old->memory, stock->nr_pages);
2174 		if (do_memsw_account())
2175 			page_counter_uncharge(&old->memsw, stock->nr_pages);
2176 		stock->nr_pages = 0;
2177 	}
2178 
2179 	css_put(&old->css);
2180 	stock->cached = NULL;
2181 }
2182 
2183 static void drain_local_stock(struct work_struct *dummy)
2184 {
2185 	struct memcg_stock_pcp *stock;
2186 	unsigned long flags;
2187 
2188 	/*
2189 	 * 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
2192 	 */
2193 	local_irq_save(flags);
2194 
2195 	stock = this_cpu_ptr(&memcg_stock);
2196 	drain_obj_stock(&stock->irq_obj);
2197 	if (in_task())
2198 		drain_obj_stock(&stock->task_obj);
2199 	drain_stock(stock);
2200 	clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
2201 
2202 	local_irq_restore(flags);
2203 }
2204 
2205 /*
2206  * Cache charges(val) to local per_cpu area.
2207  * This will be consumed by consume_stock() function, later.
2208  */
2209 static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2210 {
2211 	struct memcg_stock_pcp *stock;
2212 	unsigned long flags;
2213 
2214 	local_irq_save(flags);
2215 
2216 	stock = this_cpu_ptr(&memcg_stock);
2217 	if (stock->cached != memcg) { /* reset if necessary */
2218 		drain_stock(stock);
2219 		css_get(&memcg->css);
2220 		stock->cached = memcg;
2221 	}
2222 	stock->nr_pages += nr_pages;
2223 
2224 	if (stock->nr_pages > MEMCG_CHARGE_BATCH)
2225 		drain_stock(stock);
2226 
2227 	local_irq_restore(flags);
2228 }
2229 
2230 /*
2231  * Drains all per-CPU charge caches for given root_memcg resp. subtree
2232  * of the hierarchy under it.
2233  */
2234 static void drain_all_stock(struct mem_cgroup *root_memcg)
2235 {
2236 	int cpu, curcpu;
2237 
2238 	/* If someone's already draining, avoid adding running more workers. */
2239 	if (!mutex_trylock(&percpu_charge_mutex))
2240 		return;
2241 	/*
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 	 */
2247 	curcpu = get_cpu();
2248 	for_each_online_cpu(cpu) {
2249 		struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
2250 		struct mem_cgroup *memcg;
2251 		bool flush = false;
2252 
2253 		rcu_read_lock();
2254 		memcg = stock->cached;
2255 		if (memcg && stock->nr_pages &&
2256 		    mem_cgroup_is_descendant(memcg, root_memcg))
2257 			flush = true;
2258 		else if (obj_stock_flush_required(stock, root_memcg))
2259 			flush = true;
2260 		rcu_read_unlock();
2261 
2262 		if (flush &&
2263 		    !test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2264 			if (cpu == curcpu)
2265 				drain_local_stock(&stock->work);
2266 			else
2267 				schedule_work_on(cpu, &stock->work);
2268 		}
2269 	}
2270 	put_cpu();
2271 	mutex_unlock(&percpu_charge_mutex);
2272 }
2273 
2274 static int memcg_hotplug_cpu_dead(unsigned int cpu)
2275 {
2276 	struct memcg_stock_pcp *stock;
2277 
2278 	stock = &per_cpu(memcg_stock, cpu);
2279 	drain_stock(stock);
2280 
2281 	return 0;
2282 }
2283 
2284 static unsigned long reclaim_high(struct mem_cgroup *memcg,
2285 				  unsigned int nr_pages,
2286 				  gfp_t gfp_mask)
2287 {
2288 	unsigned long nr_reclaimed = 0;
2289 
2290 	do {
2291 		unsigned long pflags;
2292 
2293 		if (page_counter_read(&memcg->memory) <=
2294 		    READ_ONCE(memcg->memory.high))
2295 			continue;
2296 
2297 		memcg_memory_event(memcg, MEMCG_HIGH);
2298 
2299 		psi_memstall_enter(&pflags);
2300 		nr_reclaimed += try_to_free_mem_cgroup_pages(memcg, nr_pages,
2301 							     gfp_mask, true);
2302 		psi_memstall_leave(&pflags);
2303 	} while ((memcg = parent_mem_cgroup(memcg)) &&
2304 		 !mem_cgroup_is_root(memcg));
2305 
2306 	return nr_reclaimed;
2307 }
2308 
2309 static 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);
2314 	reclaim_high(memcg, MEMCG_CHARGE_BATCH, GFP_KERNEL);
2315 }
2316 
2317 /*
2318  * 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.
2331  * - MEMCG_DELAY_SCALING_SHIFT: The number of bits to scale down the
2332  *   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 
2370 static 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 
2388 static 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),
2394 					    READ_ONCE(memcg->memory.high));
2395 		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 
2402 static 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 
2418 /*
2419  * 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.
2421  */
2422 static unsigned long calculate_high_delay(struct mem_cgroup *memcg,
2423 					  unsigned int nr_pages,
2424 					  u64 max_overage)
2425 {
2426 	unsigned long penalty_jiffies;
2427 
2428 	if (!max_overage)
2429 		return 0;
2430 
2431 	/*
2432 	 * 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 	 */
2439 	penalty_jiffies = max_overage * max_overage * HZ;
2440 	penalty_jiffies >>= MEMCG_DELAY_PRECISION_SHIFT;
2441 	penalty_jiffies >>= MEMCG_DELAY_SCALING_SHIFT;
2442 
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 	 */
2451 	return penalty_jiffies * nr_pages / MEMCG_CHARGE_BATCH;
2452 }
2453 
2454 /*
2455  * Scheduled by try_charge() to be executed from the userland return path
2456  * and reclaims memory over the high limit.
2457  */
2458 void mem_cgroup_handle_over_high(void)
2459 {
2460 	unsigned long penalty_jiffies;
2461 	unsigned long pflags;
2462 	unsigned long nr_reclaimed;
2463 	unsigned int nr_pages = current->memcg_nr_pages_over_high;
2464 	int nr_retries = MAX_RECLAIM_RETRIES;
2465 	struct mem_cgroup *memcg;
2466 	bool in_retry = false;
2467 
2468 	if (likely(!nr_pages))
2469 		return;
2470 
2471 	memcg = get_mem_cgroup_from_mm(current->mm);
2472 	current->memcg_nr_pages_over_high = 0;
2473 
2474 retry_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 
2488 	/*
2489 	 * memory.high is breached and reclaim is unable to keep up. Throttle
2490 	 * allocators proactively to slow down excessive growth.
2491 	 */
2492 	penalty_jiffies = calculate_high_delay(memcg, nr_pages,
2493 					       mem_find_max_overage(memcg));
2494 
2495 	penalty_jiffies += calculate_high_delay(memcg, nr_pages,
2496 						swap_find_max_overage(memcg));
2497 
2498 	/*
2499 	 * 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 	/*
2506 	 * 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 	/*
2515 	 * 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 	/*
2525 	 * 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 
2533 out:
2534 	css_put(&memcg->css);
2535 }
2536 
2537 static int try_charge_memcg(struct mem_cgroup *memcg, gfp_t gfp_mask,
2538 			unsigned int nr_pages)
2539 {
2540 	unsigned int batch = max(MEMCG_CHARGE_BATCH, nr_pages);
2541 	int nr_retries = MAX_RECLAIM_RETRIES;
2542 	struct mem_cgroup *mem_over_limit;
2543 	struct page_counter *counter;
2544 	enum oom_status oom_status;
2545 	unsigned long nr_reclaimed;
2546 	bool passed_oom = false;
2547 	bool may_swap = true;
2548 	bool drained = false;
2549 	unsigned long pflags;
2550 
2551 retry:
2552 	if (consume_stock(memcg, nr_pages))
2553 		return 0;
2554 
2555 	if (!do_memsw_account() ||
2556 	    page_counter_try_charge(&memcg->memsw, batch, &counter)) {
2557 		if (page_counter_try_charge(&memcg->memory, batch, &counter))
2558 			goto done_restock;
2559 		if (do_memsw_account())
2560 			page_counter_uncharge(&memcg->memsw, batch);
2561 		mem_over_limit = mem_cgroup_from_counter(counter, memory);
2562 	} else {
2563 		mem_over_limit = mem_cgroup_from_counter(counter, memsw);
2564 		may_swap = false;
2565 	}
2566 
2567 	if (batch > nr_pages) {
2568 		batch = nr_pages;
2569 		goto retry;
2570 	}
2571 
2572 	/*
2573 	 * 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 	/*
2582 	 * 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 
2590 	if (unlikely(task_in_memcg_oom(current)))
2591 		goto nomem;
2592 
2593 	if (!gfpflags_allow_blocking(gfp_mask))
2594 		goto nomem;
2595 
2596 	memcg_memory_event(mem_over_limit, MEMCG_MAX);
2597 
2598 	psi_memstall_enter(&pflags);
2599 	nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2600 						    gfp_mask, may_swap);
2601 	psi_memstall_leave(&pflags);
2602 
2603 	if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
2604 		goto retry;
2605 
2606 	if (!drained) {
2607 		drain_all_stock(mem_over_limit);
2608 		drained = true;
2609 		goto retry;
2610 	}
2611 
2612 	if (gfp_mask & __GFP_NORETRY)
2613 		goto nomem;
2614 	/*
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 	 */
2623 	if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
2624 		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 
2632 	if (nr_retries--)
2633 		goto retry;
2634 
2635 	if (gfp_mask & __GFP_RETRY_MAYFAIL)
2636 		goto nomem;
2637 
2638 	/* Avoid endless loop for tasks bypassed by the oom killer */
2639 	if (passed_oom && task_is_dying())
2640 		goto nomem;
2641 
2642 	/*
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,
2648 		       get_order(nr_pages * PAGE_SIZE));
2649 	if (oom_status == OOM_SUCCESS) {
2650 		passed_oom = true;
2651 		nr_retries = MAX_RECLAIM_RETRIES;
2652 		goto retry;
2653 	}
2654 nomem:
2655 	if (!(gfp_mask & __GFP_NOFAIL))
2656 		return -ENOMEM;
2657 force:
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);
2664 	if (do_memsw_account())
2665 		page_counter_charge(&memcg->memsw, nr_pages);
2666 
2667 	return 0;
2668 
2669 done_restock:
2670 	if (batch > nr_pages)
2671 		refill_stock(memcg, batch - nr_pages);
2672 
2673 	/*
2674 	 * If the hierarchy is above the normal consumption range, schedule
2675 	 * reclaim on returning to userland.  We can perform reclaim here
2676 	 * if __GFP_RECLAIM but let's always punt for simplicity and so that
2677 	 * 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.
2681 	 */
2682 	do {
2683 		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) {
2693 				schedule_work(&memcg->high_work);
2694 				break;
2695 			}
2696 			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 			 */
2709 			current->memcg_nr_pages_over_high += batch;
2710 			set_notify_resume(current);
2711 			break;
2712 		}
2713 	} while ((memcg = parent_mem_cgroup(memcg)));
2714 
2715 	return 0;
2716 }
2717 
2718 static 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 
2727 static inline void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
2728 {
2729 	if (mem_cgroup_is_root(memcg))
2730 		return;
2731 
2732 	page_counter_uncharge(&memcg->memory, nr_pages);
2733 	if (do_memsw_account())
2734 		page_counter_uncharge(&memcg->memsw, nr_pages);
2735 }
2736 
2737 static void commit_charge(struct folio *folio, struct mem_cgroup *memcg)
2738 {
2739 	VM_BUG_ON_FOLIO(folio_memcg(folio), folio);
2740 	/*
2741 	 * Any of the following ensures page's memcg stability:
2742 	 *
2743 	 * - the page lock
2744 	 * - LRU isolation
2745 	 * - lock_page_memcg()
2746 	 * - exclusive reference
2747 	 */
2748 	folio->memcg_data = (unsigned long)memcg;
2749 }
2750 
2751 static struct mem_cgroup *get_mem_cgroup_from_objcg(struct obj_cgroup *objcg)
2752 {
2753 	struct mem_cgroup *memcg;
2754 
2755 	rcu_read_lock();
2756 retry:
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 
2765 #ifdef CONFIG_MEMCG_KMEM
2766 /*
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 
2773 /*
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  */
2784 static 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 
2800 static 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  */
2812 static 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 
2826 int memcg_alloc_page_obj_cgroups(struct page *page, struct kmem_cache *s,
2827 				 gfp_t gfp, bool new_page)
2828 {
2829 	unsigned int objects = objs_per_slab_page(s, page);
2830 	unsigned long memcg_data;
2831 	void *vec;
2832 
2833 	gfp &= ~OBJCGS_CLEAR_MASK;
2834 	vec = kcalloc_node(objects, sizeof(struct obj_cgroup *), gfp,
2835 			   page_to_nid(page));
2836 	if (!vec)
2837 		return -ENOMEM;
2838 
2839 	memcg_data = (unsigned long) vec | MEMCG_DATA_OBJCGS;
2840 	if (new_page) {
2841 		/*
2842 		 * If the slab page is brand new and nobody can yet access
2843 		 * it's memcg_data, no synchronization is required and
2844 		 * memcg_data can be simply assigned.
2845 		 */
2846 		page->memcg_data = memcg_data;
2847 	} else if (cmpxchg(&page->memcg_data, 0, memcg_data)) {
2848 		/*
2849 		 * If the slab page is already in use, somebody can allocate
2850 		 * and assign obj_cgroups in parallel. In this case the existing
2851 		 * objcg vector should be reused.
2852 		 */
2853 		kfree(vec);
2854 		return 0;
2855 	}
2856 
2857 	kmemleak_not_leak(vec);
2858 	return 0;
2859 }
2860 
2861 /*
2862  * Returns a pointer to the memory cgroup to which the kernel object is charged.
2863  *
2864  * 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  *
2870  * The caller must ensure the memcg lifetime, e.g. by taking rcu_read_lock(),
2871  * cgroup_mutex, etc.
2872  */
2873 struct mem_cgroup *mem_cgroup_from_obj(void *p)
2874 {
2875 	struct page *page;
2876 
2877 	if (mem_cgroup_disabled())
2878 		return NULL;
2879 
2880 	page = virt_to_head_page(p);
2881 
2882 	/*
2883 	 * Slab objects are accounted individually, not per-page.
2884 	 * Memcg membership data for each individual object is saved in
2885 	 * the page->obj_cgroups.
2886 	 */
2887 	if (page_objcgs_check(page)) {
2888 		struct obj_cgroup *objcg;
2889 		unsigned int off;
2890 
2891 		off = obj_to_index(page->slab_cache, page, p);
2892 		objcg = page_objcgs(page)[off];
2893 		if (objcg)
2894 			return obj_cgroup_memcg(objcg);
2895 
2896 		return NULL;
2897 	}
2898 
2899 	/*
2900 	 * page_memcg_check() is used here, because page_has_obj_cgroups()
2901 	 * check above could fail because the object cgroups vector wasn't set
2902 	 * at that moment, but it can be set concurrently.
2903 	 * page_memcg_check(page) will guarantee that a proper memory
2904 	 * cgroup pointer or NULL will be returned.
2905 	 */
2906 	return page_memcg_check(page);
2907 }
2908 
2909 __always_inline struct obj_cgroup *get_obj_cgroup_from_current(void)
2910 {
2911 	struct obj_cgroup *objcg = NULL;
2912 	struct mem_cgroup *memcg;
2913 
2914 	if (memcg_kmem_bypass())
2915 		return NULL;
2916 
2917 	rcu_read_lock();
2918 	if (unlikely(active_memcg()))
2919 		memcg = active_memcg();
2920 	else
2921 		memcg = mem_cgroup_from_task(current);
2922 
2923 	for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
2924 		objcg = rcu_dereference(memcg->objcg);
2925 		if (objcg && obj_cgroup_tryget(objcg))
2926 			break;
2927 		objcg = NULL;
2928 	}
2929 	rcu_read_unlock();
2930 
2931 	return objcg;
2932 }
2933 
2934 static int memcg_alloc_cache_id(void)
2935 {
2936 	int id, size;
2937 	int err;
2938 
2939 	id = ida_simple_get(&memcg_cache_ida,
2940 			    0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2941 	if (id < 0)
2942 		return id;
2943 
2944 	if (id < memcg_nr_cache_ids)
2945 		return id;
2946 
2947 	/*
2948 	 * There's no space for the new id in memcg_caches arrays,
2949 	 * so we have to grow them.
2950 	 */
2951 	down_write(&memcg_cache_ids_sem);
2952 
2953 	size = 2 * (id + 1);
2954 	if (size < MEMCG_CACHES_MIN_SIZE)
2955 		size = MEMCG_CACHES_MIN_SIZE;
2956 	else if (size > MEMCG_CACHES_MAX_SIZE)
2957 		size = MEMCG_CACHES_MAX_SIZE;
2958 
2959 	err = memcg_update_all_list_lrus(size);
2960 	if (!err)
2961 		memcg_nr_cache_ids = size;
2962 
2963 	up_write(&memcg_cache_ids_sem);
2964 
2965 	if (err) {
2966 		ida_simple_remove(&memcg_cache_ida, id);
2967 		return err;
2968 	}
2969 	return id;
2970 }
2971 
2972 static void memcg_free_cache_id(int id)
2973 {
2974 	ida_simple_remove(&memcg_cache_ida, id);
2975 }
2976 
2977 /*
2978  * obj_cgroup_uncharge_pages: uncharge a number of kernel pages from a objcg
2979  * @objcg: object cgroup to uncharge
2980  * @nr_pages: number of pages to uncharge
2981  */
2982 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
2983 				      unsigned int nr_pages)
2984 {
2985 	struct mem_cgroup *memcg;
2986 
2987 	memcg = get_mem_cgroup_from_objcg(objcg);
2988 
2989 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
2990 		page_counter_uncharge(&memcg->kmem, nr_pages);
2991 	refill_stock(memcg, nr_pages);
2992 
2993 	css_put(&memcg->css);
2994 }
2995 
2996 /*
2997  * obj_cgroup_charge_pages: charge a number of kernel pages to a objcg
2998  * @objcg: object cgroup to charge
2999  * @gfp: reclaim mode
3000  * @nr_pages: number of pages to charge
3001  *
3002  * Returns 0 on success, an error code on failure.
3003  */
3004 static int obj_cgroup_charge_pages(struct obj_cgroup *objcg, gfp_t gfp,
3005 				   unsigned int nr_pages)
3006 {
3007 	struct mem_cgroup *memcg;
3008 	int ret;
3009 
3010 	memcg = get_mem_cgroup_from_objcg(objcg);
3011 
3012 	ret = try_charge_memcg(memcg, gfp, nr_pages);
3013 	if (ret)
3014 		goto out;
3015 
3016 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
3017 		page_counter_charge(&memcg->kmem, nr_pages);
3018 out:
3019 	css_put(&memcg->css);
3020 
3021 	return ret;
3022 }
3023 
3024 /**
3025  * __memcg_kmem_charge_page: charge a kmem page to the current memory cgroup
3026  * @page: page to charge
3027  * @gfp: reclaim mode
3028  * @order: allocation order
3029  *
3030  * Returns 0 on success, an error code on failure.
3031  */
3032 int __memcg_kmem_charge_page(struct page *page, gfp_t gfp, int order)
3033 {
3034 	struct obj_cgroup *objcg;
3035 	int ret = 0;
3036 
3037 	objcg = get_obj_cgroup_from_current();
3038 	if (objcg) {
3039 		ret = obj_cgroup_charge_pages(objcg, gfp, 1 << order);
3040 		if (!ret) {
3041 			page->memcg_data = (unsigned long)objcg |
3042 				MEMCG_DATA_KMEM;
3043 			return 0;
3044 		}
3045 		obj_cgroup_put(objcg);
3046 	}
3047 	return ret;
3048 }
3049 
3050 /**
3051  * __memcg_kmem_uncharge_page: uncharge a kmem page
3052  * @page: page to uncharge
3053  * @order: allocation order
3054  */
3055 void __memcg_kmem_uncharge_page(struct page *page, int order)
3056 {
3057 	struct folio *folio = page_folio(page);
3058 	struct obj_cgroup *objcg;
3059 	unsigned int nr_pages = 1 << order;
3060 
3061 	if (!folio_memcg_kmem(folio))
3062 		return;
3063 
3064 	objcg = __folio_objcg(folio);
3065 	obj_cgroup_uncharge_pages(objcg, nr_pages);
3066 	folio->memcg_data = 0;
3067 	obj_cgroup_put(objcg);
3068 }
3069 
3070 void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat,
3071 		     enum node_stat_item idx, int nr)
3072 {
3073 	unsigned long flags;
3074 	struct obj_stock *stock = get_obj_stock(&flags);
3075 	int *bytes;
3076 
3077 	/*
3078 	 * Save vmstat data in stock and skip vmstat array update unless
3079 	 * accumulating over a page of vmstat data or when pgdat or idx
3080 	 * changes.
3081 	 */
3082 	if (stock->cached_objcg != objcg) {
3083 		drain_obj_stock(stock);
3084 		obj_cgroup_get(objcg);
3085 		stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3086 				? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3087 		stock->cached_objcg = objcg;
3088 		stock->cached_pgdat = pgdat;
3089 	} else if (stock->cached_pgdat != pgdat) {
3090 		/* Flush the existing cached vmstat data */
3091 		struct pglist_data *oldpg = stock->cached_pgdat;
3092 
3093 		if (stock->nr_slab_reclaimable_b) {
3094 			mod_objcg_mlstate(objcg, oldpg, NR_SLAB_RECLAIMABLE_B,
3095 					  stock->nr_slab_reclaimable_b);
3096 			stock->nr_slab_reclaimable_b = 0;
3097 		}
3098 		if (stock->nr_slab_unreclaimable_b) {
3099 			mod_objcg_mlstate(objcg, oldpg, NR_SLAB_UNRECLAIMABLE_B,
3100 					  stock->nr_slab_unreclaimable_b);
3101 			stock->nr_slab_unreclaimable_b = 0;
3102 		}
3103 		stock->cached_pgdat = pgdat;
3104 	}
3105 
3106 	bytes = (idx == NR_SLAB_RECLAIMABLE_B) ? &stock->nr_slab_reclaimable_b
3107 					       : &stock->nr_slab_unreclaimable_b;
3108 	/*
3109 	 * Even for large object >= PAGE_SIZE, the vmstat data will still be
3110 	 * cached locally at least once before pushing it out.
3111 	 */
3112 	if (!*bytes) {
3113 		*bytes = nr;
3114 		nr = 0;
3115 	} else {
3116 		*bytes += nr;
3117 		if (abs(*bytes) > PAGE_SIZE) {
3118 			nr = *bytes;
3119 			*bytes = 0;
3120 		} else {
3121 			nr = 0;
3122 		}
3123 	}
3124 	if (nr)
3125 		mod_objcg_mlstate(objcg, pgdat, idx, nr);
3126 
3127 	put_obj_stock(flags);
3128 }
3129 
3130 static bool consume_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes)
3131 {
3132 	unsigned long flags;
3133 	struct obj_stock *stock = get_obj_stock(&flags);
3134 	bool ret = false;
3135 
3136 	if (objcg == stock->cached_objcg && stock->nr_bytes >= nr_bytes) {
3137 		stock->nr_bytes -= nr_bytes;
3138 		ret = true;
3139 	}
3140 
3141 	put_obj_stock(flags);
3142 
3143 	return ret;
3144 }
3145 
3146 static void drain_obj_stock(struct obj_stock *stock)
3147 {
3148 	struct obj_cgroup *old = stock->cached_objcg;
3149 
3150 	if (!old)
3151 		return;
3152 
3153 	if (stock->nr_bytes) {
3154 		unsigned int nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3155 		unsigned int nr_bytes = stock->nr_bytes & (PAGE_SIZE - 1);
3156 
3157 		if (nr_pages)
3158 			obj_cgroup_uncharge_pages(old, nr_pages);
3159 
3160 		/*
3161 		 * The leftover is flushed to the centralized per-memcg value.
3162 		 * On the next attempt to refill obj stock it will be moved
3163 		 * to a per-cpu stock (probably, on an other CPU), see
3164 		 * refill_obj_stock().
3165 		 *
3166 		 * How often it's flushed is a trade-off between the memory
3167 		 * limit enforcement accuracy and potential CPU contention,
3168 		 * so it might be changed in the future.
3169 		 */
3170 		atomic_add(nr_bytes, &old->nr_charged_bytes);
3171 		stock->nr_bytes = 0;
3172 	}
3173 
3174 	/*
3175 	 * Flush the vmstat data in current stock
3176 	 */
3177 	if (stock->nr_slab_reclaimable_b || stock->nr_slab_unreclaimable_b) {
3178 		if (stock->nr_slab_reclaimable_b) {
3179 			mod_objcg_mlstate(old, stock->cached_pgdat,
3180 					  NR_SLAB_RECLAIMABLE_B,
3181 					  stock->nr_slab_reclaimable_b);
3182 			stock->nr_slab_reclaimable_b = 0;
3183 		}
3184 		if (stock->nr_slab_unreclaimable_b) {
3185 			mod_objcg_mlstate(old, stock->cached_pgdat,
3186 					  NR_SLAB_UNRECLAIMABLE_B,
3187 					  stock->nr_slab_unreclaimable_b);
3188 			stock->nr_slab_unreclaimable_b = 0;
3189 		}
3190 		stock->cached_pgdat = NULL;
3191 	}
3192 
3193 	obj_cgroup_put(old);
3194 	stock->cached_objcg = NULL;
3195 }
3196 
3197 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
3198 				     struct mem_cgroup *root_memcg)
3199 {
3200 	struct mem_cgroup *memcg;
3201 
3202 	if (in_task() && stock->task_obj.cached_objcg) {
3203 		memcg = obj_cgroup_memcg(stock->task_obj.cached_objcg);
3204 		if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3205 			return true;
3206 	}
3207 	if (stock->irq_obj.cached_objcg) {
3208 		memcg = obj_cgroup_memcg(stock->irq_obj.cached_objcg);
3209 		if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3210 			return true;
3211 	}
3212 
3213 	return false;
3214 }
3215 
3216 static void refill_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes,
3217 			     bool allow_uncharge)
3218 {
3219 	unsigned long flags;
3220 	struct obj_stock *stock = get_obj_stock(&flags);
3221 	unsigned int nr_pages = 0;
3222 
3223 	if (stock->cached_objcg != objcg) { /* reset if necessary */
3224 		drain_obj_stock(stock);
3225 		obj_cgroup_get(objcg);
3226 		stock->cached_objcg = objcg;
3227 		stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3228 				? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3229 		allow_uncharge = true;	/* Allow uncharge when objcg changes */
3230 	}
3231 	stock->nr_bytes += nr_bytes;
3232 
3233 	if (allow_uncharge && (stock->nr_bytes > PAGE_SIZE)) {
3234 		nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3235 		stock->nr_bytes &= (PAGE_SIZE - 1);
3236 	}
3237 
3238 	put_obj_stock(flags);
3239 
3240 	if (nr_pages)
3241 		obj_cgroup_uncharge_pages(objcg, nr_pages);
3242 }
3243 
3244 int obj_cgroup_charge(struct obj_cgroup *objcg, gfp_t gfp, size_t size)
3245 {
3246 	unsigned int nr_pages, nr_bytes;
3247 	int ret;
3248 
3249 	if (consume_obj_stock(objcg, size))
3250 		return 0;
3251 
3252 	/*
3253 	 * In theory, objcg->nr_charged_bytes can have enough
3254 	 * pre-charged bytes to satisfy the allocation. However,
3255 	 * flushing objcg->nr_charged_bytes requires two atomic
3256 	 * operations, and objcg->nr_charged_bytes can't be big.
3257 	 * The shared objcg->nr_charged_bytes can also become a
3258 	 * performance bottleneck if all tasks of the same memcg are
3259 	 * trying to update it. So it's better to ignore it and try
3260 	 * grab some new pages. The stock's nr_bytes will be flushed to
3261 	 * objcg->nr_charged_bytes later on when objcg changes.
3262 	 *
3263 	 * The stock's nr_bytes may contain enough pre-charged bytes
3264 	 * to allow one less page from being charged, but we can't rely
3265 	 * on the pre-charged bytes not being changed outside of
3266 	 * consume_obj_stock() or refill_obj_stock(). So ignore those
3267 	 * pre-charged bytes as well when charging pages. To avoid a
3268 	 * page uncharge right after a page charge, we set the
3269 	 * allow_uncharge flag to false when calling refill_obj_stock()
3270 	 * to temporarily allow the pre-charged bytes to exceed the page
3271 	 * size limit. The maximum reachable value of the pre-charged
3272 	 * bytes is (sizeof(object) + PAGE_SIZE - 2) if there is no data
3273 	 * race.
3274 	 */
3275 	nr_pages = size >> PAGE_SHIFT;
3276 	nr_bytes = size & (PAGE_SIZE - 1);
3277 
3278 	if (nr_bytes)
3279 		nr_pages += 1;
3280 
3281 	ret = obj_cgroup_charge_pages(objcg, gfp, nr_pages);
3282 	if (!ret && nr_bytes)
3283 		refill_obj_stock(objcg, PAGE_SIZE - nr_bytes, false);
3284 
3285 	return ret;
3286 }
3287 
3288 void obj_cgroup_uncharge(struct obj_cgroup *objcg, size_t size)
3289 {
3290 	refill_obj_stock(objcg, size, true);
3291 }
3292 
3293 #endif /* CONFIG_MEMCG_KMEM */
3294 
3295 /*
3296  * Because page_memcg(head) is not set on tails, set it now.
3297  */
3298 void split_page_memcg(struct page *head, unsigned int nr)
3299 {
3300 	struct folio *folio = page_folio(head);
3301 	struct mem_cgroup *memcg = folio_memcg(folio);
3302 	int i;
3303 
3304 	if (mem_cgroup_disabled() || !memcg)
3305 		return;
3306 
3307 	for (i = 1; i < nr; i++)
3308 		folio_page(folio, i)->memcg_data = folio->memcg_data;
3309 
3310 	if (folio_memcg_kmem(folio))
3311 		obj_cgroup_get_many(__folio_objcg(folio), nr - 1);
3312 	else
3313 		css_get_many(&memcg->css, nr - 1);
3314 }
3315 
3316 #ifdef CONFIG_MEMCG_SWAP
3317 /**
3318  * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3319  * @entry: swap entry to be moved
3320  * @from:  mem_cgroup which the entry is moved from
3321  * @to:  mem_cgroup which the entry is moved to
3322  *
3323  * It succeeds only when the swap_cgroup's record for this entry is the same
3324  * as the mem_cgroup's id of @from.
3325  *
3326  * Returns 0 on success, -EINVAL on failure.
3327  *
3328  * The caller must have charged to @to, IOW, called page_counter_charge() about
3329  * both res and memsw, and called css_get().
3330  */
3331 static int mem_cgroup_move_swap_account(swp_entry_t entry,
3332 				struct mem_cgroup *from, struct mem_cgroup *to)
3333 {
3334 	unsigned short old_id, new_id;
3335 
3336 	old_id = mem_cgroup_id(from);
3337 	new_id = mem_cgroup_id(to);
3338 
3339 	if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
3340 		mod_memcg_state(from, MEMCG_SWAP, -1);
3341 		mod_memcg_state(to, MEMCG_SWAP, 1);
3342 		return 0;
3343 	}
3344 	return -EINVAL;
3345 }
3346 #else
3347 static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
3348 				struct mem_cgroup *from, struct mem_cgroup *to)
3349 {
3350 	return -EINVAL;
3351 }
3352 #endif
3353 
3354 static DEFINE_MUTEX(memcg_max_mutex);
3355 
3356 static int mem_cgroup_resize_max(struct mem_cgroup *memcg,
3357 				 unsigned long max, bool memsw)
3358 {
3359 	bool enlarge = false;
3360 	bool drained = false;
3361 	int ret;
3362 	bool limits_invariant;
3363 	struct page_counter *counter = memsw ? &memcg->memsw : &memcg->memory;
3364 
3365 	do {
3366 		if (signal_pending(current)) {
3367 			ret = -EINTR;
3368 			break;
3369 		}
3370 
3371 		mutex_lock(&memcg_max_mutex);
3372 		/*
3373 		 * Make sure that the new limit (memsw or memory limit) doesn't
3374 		 * break our basic invariant rule memory.max <= memsw.max.
3375 		 */
3376 		limits_invariant = memsw ? max >= READ_ONCE(memcg->memory.max) :
3377 					   max <= memcg->memsw.max;
3378 		if (!limits_invariant) {
3379 			mutex_unlock(&memcg_max_mutex);
3380 			ret = -EINVAL;
3381 			break;
3382 		}
3383 		if (max > counter->max)
3384 			enlarge = true;
3385 		ret = page_counter_set_max(counter, max);
3386 		mutex_unlock(&memcg_max_mutex);
3387 
3388 		if (!ret)
3389 			break;
3390 
3391 		if (!drained) {
3392 			drain_all_stock(memcg);
3393 			drained = true;
3394 			continue;
3395 		}
3396 
3397 		if (!try_to_free_mem_cgroup_pages(memcg, 1,
3398 					GFP_KERNEL, !memsw)) {
3399 			ret = -EBUSY;
3400 			break;
3401 		}
3402 	} while (true);
3403 
3404 	if (!ret && enlarge)
3405 		memcg_oom_recover(memcg);
3406 
3407 	return ret;
3408 }
3409 
3410 unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
3411 					    gfp_t gfp_mask,
3412 					    unsigned long *total_scanned)
3413 {
3414 	unsigned long nr_reclaimed = 0;
3415 	struct mem_cgroup_per_node *mz, *next_mz = NULL;
3416 	unsigned long reclaimed;
3417 	int loop = 0;
3418 	struct mem_cgroup_tree_per_node *mctz;
3419 	unsigned long excess;
3420 	unsigned long nr_scanned;
3421 
3422 	if (order > 0)
3423 		return 0;
3424 
3425 	mctz = soft_limit_tree.rb_tree_per_node[pgdat->node_id];
3426 
3427 	/*
3428 	 * Do not even bother to check the largest node if the root
3429 	 * is empty. Do it lockless to prevent lock bouncing. Races
3430 	 * are acceptable as soft limit is best effort anyway.
3431 	 */
3432 	if (!mctz || RB_EMPTY_ROOT(&mctz->rb_root))
3433 		return 0;
3434 
3435 	/*
3436 	 * This loop can run a while, specially if mem_cgroup's continuously
3437 	 * keep exceeding their soft limit and putting the system under
3438 	 * pressure
3439 	 */
3440 	do {
3441 		if (next_mz)
3442 			mz = next_mz;
3443 		else
3444 			mz = mem_cgroup_largest_soft_limit_node(mctz);
3445 		if (!mz)
3446 			break;
3447 
3448 		nr_scanned = 0;
3449 		reclaimed = mem_cgroup_soft_reclaim(mz->memcg, pgdat,
3450 						    gfp_mask, &nr_scanned);
3451 		nr_reclaimed += reclaimed;
3452 		*total_scanned += nr_scanned;
3453 		spin_lock_irq(&mctz->lock);
3454 		__mem_cgroup_remove_exceeded(mz, mctz);
3455 
3456 		/*
3457 		 * If we failed to reclaim anything from this memory cgroup
3458 		 * it is time to move on to the next cgroup
3459 		 */
3460 		next_mz = NULL;
3461 		if (!reclaimed)
3462 			next_mz = __mem_cgroup_largest_soft_limit_node(mctz);
3463 
3464 		excess = soft_limit_excess(mz->memcg);
3465 		/*
3466 		 * One school of thought says that we should not add
3467 		 * back the node to the tree if reclaim returns 0.
3468 		 * But our reclaim could return 0, simply because due
3469 		 * to priority we are exposing a smaller subset of
3470 		 * memory to reclaim from. Consider this as a longer
3471 		 * term TODO.
3472 		 */
3473 		/* If excess == 0, no tree ops */
3474 		__mem_cgroup_insert_exceeded(mz, mctz, excess);
3475 		spin_unlock_irq(&mctz->lock);
3476 		css_put(&mz->memcg->css);
3477 		loop++;
3478 		/*
3479 		 * Could not reclaim anything and there are no more
3480 		 * mem cgroups to try or we seem to be looping without
3481 		 * reclaiming anything.
3482 		 */
3483 		if (!nr_reclaimed &&
3484 			(next_mz == NULL ||
3485 			loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3486 			break;
3487 	} while (!nr_reclaimed);
3488 	if (next_mz)
3489 		css_put(&next_mz->memcg->css);
3490 	return nr_reclaimed;
3491 }
3492 
3493 /*
3494  * Reclaims as many pages from the given memcg as possible.
3495  *
3496  * Caller is responsible for holding css reference for memcg.
3497  */
3498 static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3499 {
3500 	int nr_retries = MAX_RECLAIM_RETRIES;
3501 
3502 	/* we call try-to-free pages for make this cgroup empty */
3503 	lru_add_drain_all();
3504 
3505 	drain_all_stock(memcg);
3506 
3507 	/* try to free all pages in this cgroup */
3508 	while (nr_retries && page_counter_read(&memcg->memory)) {
3509 		if (signal_pending(current))
3510 			return -EINTR;
3511 
3512 		if (!try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true))
3513 			nr_retries--;
3514 	}
3515 
3516 	return 0;
3517 }
3518 
3519 static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3520 					    char *buf, size_t nbytes,
3521 					    loff_t off)
3522 {
3523 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3524 
3525 	if (mem_cgroup_is_root(memcg))
3526 		return -EINVAL;
3527 	return mem_cgroup_force_empty(memcg) ?: nbytes;
3528 }
3529 
3530 static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3531 				     struct cftype *cft)
3532 {
3533 	return 1;
3534 }
3535 
3536 static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3537 				      struct cftype *cft, u64 val)
3538 {
3539 	if (val == 1)
3540 		return 0;
3541 
3542 	pr_warn_once("Non-hierarchical mode is deprecated. "
3543 		     "Please report your usecase to linux-mm@kvack.org if you "
3544 		     "depend on this functionality.\n");
3545 
3546 	return -EINVAL;
3547 }
3548 
3549 static unsigned long mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
3550 {
3551 	unsigned long val;
3552 
3553 	if (mem_cgroup_is_root(memcg)) {
3554 		mem_cgroup_flush_stats();
3555 		val = memcg_page_state(memcg, NR_FILE_PAGES) +
3556 			memcg_page_state(memcg, NR_ANON_MAPPED);
3557 		if (swap)
3558 			val += memcg_page_state(memcg, MEMCG_SWAP);
3559 	} else {
3560 		if (!swap)
3561 			val = page_counter_read(&memcg->memory);
3562 		else
3563 			val = page_counter_read(&memcg->memsw);
3564 	}
3565 	return val;
3566 }
3567 
3568 enum {
3569 	RES_USAGE,
3570 	RES_LIMIT,
3571 	RES_MAX_USAGE,
3572 	RES_FAILCNT,
3573 	RES_SOFT_LIMIT,
3574 };
3575 
3576 static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
3577 			       struct cftype *cft)
3578 {
3579 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3580 	struct page_counter *counter;
3581 
3582 	switch (MEMFILE_TYPE(cft->private)) {
3583 	case _MEM:
3584 		counter = &memcg->memory;
3585 		break;
3586 	case _MEMSWAP:
3587 		counter = &memcg->memsw;
3588 		break;
3589 	case _KMEM:
3590 		counter = &memcg->kmem;
3591 		break;
3592 	case _TCP:
3593 		counter = &memcg->tcpmem;
3594 		break;
3595 	default:
3596 		BUG();
3597 	}
3598 
3599 	switch (MEMFILE_ATTR(cft->private)) {
3600 	case RES_USAGE:
3601 		if (counter == &memcg->memory)
3602 			return (u64)mem_cgroup_usage(memcg, false) * PAGE_SIZE;
3603 		if (counter == &memcg->memsw)
3604 			return (u64)mem_cgroup_usage(memcg, true) * PAGE_SIZE;
3605 		return (u64)page_counter_read(counter) * PAGE_SIZE;
3606 	case RES_LIMIT:
3607 		return (u64)counter->max * PAGE_SIZE;
3608 	case RES_MAX_USAGE:
3609 		return (u64)counter->watermark * PAGE_SIZE;
3610 	case RES_FAILCNT:
3611 		return counter->failcnt;
3612 	case RES_SOFT_LIMIT:
3613 		return (u64)memcg->soft_limit * PAGE_SIZE;
3614 	default:
3615 		BUG();
3616 	}
3617 }
3618 
3619 #ifdef CONFIG_MEMCG_KMEM
3620 static int memcg_online_kmem(struct mem_cgroup *memcg)
3621 {
3622 	struct obj_cgroup *objcg;
3623 	int memcg_id;
3624 
3625 	if (cgroup_memory_nokmem)
3626 		return 0;
3627 
3628 	BUG_ON(memcg->kmemcg_id >= 0);
3629 
3630 	memcg_id = memcg_alloc_cache_id();
3631 	if (memcg_id < 0)
3632 		return memcg_id;
3633 
3634 	objcg = obj_cgroup_alloc();
3635 	if (!objcg) {
3636 		memcg_free_cache_id(memcg_id);
3637 		return -ENOMEM;
3638 	}
3639 	objcg->memcg = memcg;
3640 	rcu_assign_pointer(memcg->objcg, objcg);
3641 
3642 	static_branch_enable(&memcg_kmem_enabled_key);
3643 
3644 	memcg->kmemcg_id = memcg_id;
3645 
3646 	return 0;
3647 }
3648 
3649 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3650 {
3651 	struct mem_cgroup *parent;
3652 	int kmemcg_id;
3653 
3654 	if (memcg->kmemcg_id == -1)
3655 		return;
3656 
3657 	parent = parent_mem_cgroup(memcg);
3658 	if (!parent)
3659 		parent = root_mem_cgroup;
3660 
3661 	memcg_reparent_objcgs(memcg, parent);
3662 
3663 	kmemcg_id = memcg->kmemcg_id;
3664 	BUG_ON(kmemcg_id < 0);
3665 
3666 	/*
3667 	 * After we have finished memcg_reparent_objcgs(), all list_lrus
3668 	 * corresponding to this cgroup are guaranteed to remain empty.
3669 	 * The ordering is imposed by list_lru_node->lock taken by
3670 	 * memcg_drain_all_list_lrus().
3671 	 */
3672 	memcg_drain_all_list_lrus(kmemcg_id, parent);
3673 
3674 	memcg_free_cache_id(kmemcg_id);
3675 	memcg->kmemcg_id = -1;
3676 }
3677 #else
3678 static int memcg_online_kmem(struct mem_cgroup *memcg)
3679 {
3680 	return 0;
3681 }
3682 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3683 {
3684 }
3685 #endif /* CONFIG_MEMCG_KMEM */
3686 
3687 static int memcg_update_tcp_max(struct mem_cgroup *memcg, unsigned long max)
3688 {
3689 	int ret;
3690 
3691 	mutex_lock(&memcg_max_mutex);
3692 
3693 	ret = page_counter_set_max(&memcg->tcpmem, max);
3694 	if (ret)
3695 		goto out;
3696 
3697 	if (!memcg->tcpmem_active) {
3698 		/*
3699 		 * The active flag needs to be written after the static_key
3700 		 * update. This is what guarantees that the socket activation
3701 		 * function is the last one to run. See mem_cgroup_sk_alloc()
3702 		 * for details, and note that we don't mark any socket as
3703 		 * belonging to this memcg until that flag is up.
3704 		 *
3705 		 * We need to do this, because static_keys will span multiple
3706 		 * sites, but we can't control their order. If we mark a socket
3707 		 * as accounted, but the accounting functions are not patched in
3708 		 * yet, we'll lose accounting.
3709 		 *
3710 		 * We never race with the readers in mem_cgroup_sk_alloc(),
3711 		 * because when this value change, the code to process it is not
3712 		 * patched in yet.
3713 		 */
3714 		static_branch_inc(&memcg_sockets_enabled_key);
3715 		memcg->tcpmem_active = true;
3716 	}
3717 out:
3718 	mutex_unlock(&memcg_max_mutex);
3719 	return ret;
3720 }
3721 
3722 /*
3723  * The user of this function is...
3724  * RES_LIMIT.
3725  */
3726 static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
3727 				char *buf, size_t nbytes, loff_t off)
3728 {
3729 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3730 	unsigned long nr_pages;
3731 	int ret;
3732 
3733 	buf = strstrip(buf);
3734 	ret = page_counter_memparse(buf, "-1", &nr_pages);
3735 	if (ret)
3736 		return ret;
3737 
3738 	switch (MEMFILE_ATTR(of_cft(of)->private)) {
3739 	case RES_LIMIT:
3740 		if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3741 			ret = -EINVAL;
3742 			break;
3743 		}
3744 		switch (MEMFILE_TYPE(of_cft(of)->private)) {
3745 		case _MEM:
3746 			ret = mem_cgroup_resize_max(memcg, nr_pages, false);
3747 			break;
3748 		case _MEMSWAP:
3749 			ret = mem_cgroup_resize_max(memcg, nr_pages, true);
3750 			break;
3751 		case _KMEM:
3752 			/* kmem.limit_in_bytes is deprecated. */
3753 			ret = -EOPNOTSUPP;
3754 			break;
3755 		case _TCP:
3756 			ret = memcg_update_tcp_max(memcg, nr_pages);
3757 			break;
3758 		}
3759 		break;
3760 	case RES_SOFT_LIMIT:
3761 		memcg->soft_limit = nr_pages;
3762 		ret = 0;
3763 		break;
3764 	}
3765 	return ret ?: nbytes;
3766 }
3767 
3768 static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
3769 				size_t nbytes, loff_t off)
3770 {
3771 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3772 	struct page_counter *counter;
3773 
3774 	switch (MEMFILE_TYPE(of_cft(of)->private)) {
3775 	case _MEM:
3776 		counter = &memcg->memory;
3777 		break;
3778 	case _MEMSWAP:
3779 		counter = &memcg->memsw;
3780 		break;
3781 	case _KMEM:
3782 		counter = &memcg->kmem;
3783 		break;
3784 	case _TCP:
3785 		counter = &memcg->tcpmem;
3786 		break;
3787 	default:
3788 		BUG();
3789 	}
3790 
3791 	switch (MEMFILE_ATTR(of_cft(of)->private)) {
3792 	case RES_MAX_USAGE:
3793 		page_counter_reset_watermark(counter);
3794 		break;
3795 	case RES_FAILCNT:
3796 		counter->failcnt = 0;
3797 		break;
3798 	default:
3799 		BUG();
3800 	}
3801 
3802 	return nbytes;
3803 }
3804 
3805 static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
3806 					struct cftype *cft)
3807 {
3808 	return mem_cgroup_from_css(css)->move_charge_at_immigrate;
3809 }
3810 
3811 #ifdef CONFIG_MMU
3812 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3813 					struct cftype *cft, u64 val)
3814 {
3815 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3816 
3817 	if (val & ~MOVE_MASK)
3818 		return -EINVAL;
3819 
3820 	/*
3821 	 * No kind of locking is needed in here, because ->can_attach() will
3822 	 * check this value once in the beginning of the process, and then carry
3823 	 * on with stale data. This means that changes to this value will only
3824 	 * affect task migrations starting after the change.
3825 	 */
3826 	memcg->move_charge_at_immigrate = val;
3827 	return 0;
3828 }
3829 #else
3830 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3831 					struct cftype *cft, u64 val)
3832 {
3833 	return -ENOSYS;
3834 }
3835 #endif
3836 
3837 #ifdef CONFIG_NUMA
3838 
3839 #define LRU_ALL_FILE (BIT(LRU_INACTIVE_FILE) | BIT(LRU_ACTIVE_FILE))
3840 #define LRU_ALL_ANON (BIT(LRU_INACTIVE_ANON) | BIT(LRU_ACTIVE_ANON))
3841 #define LRU_ALL	     ((1 << NR_LRU_LISTS) - 1)
3842 
3843 static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
3844 				int nid, unsigned int lru_mask, bool tree)
3845 {
3846 	struct lruvec *lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
3847 	unsigned long nr = 0;
3848 	enum lru_list lru;
3849 
3850 	VM_BUG_ON((unsigned)nid >= nr_node_ids);
3851 
3852 	for_each_lru(lru) {
3853 		if (!(BIT(lru) & lru_mask))
3854 			continue;
3855 		if (tree)
3856 			nr += lruvec_page_state(lruvec, NR_LRU_BASE + lru);
3857 		else
3858 			nr += lruvec_page_state_local(lruvec, NR_LRU_BASE + lru);
3859 	}
3860 	return nr;
3861 }
3862 
3863 static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
3864 					     unsigned int lru_mask,
3865 					     bool tree)
3866 {
3867 	unsigned long nr = 0;
3868 	enum lru_list lru;
3869 
3870 	for_each_lru(lru) {
3871 		if (!(BIT(lru) & lru_mask))
3872 			continue;
3873 		if (tree)
3874 			nr += memcg_page_state(memcg, NR_LRU_BASE + lru);
3875 		else
3876 			nr += memcg_page_state_local(memcg, NR_LRU_BASE + lru);
3877 	}
3878 	return nr;
3879 }
3880 
3881 static int memcg_numa_stat_show(struct seq_file *m, void *v)
3882 {
3883 	struct numa_stat {
3884 		const char *name;
3885 		unsigned int lru_mask;
3886 	};
3887 
3888 	static const struct numa_stat stats[] = {
3889 		{ "total", LRU_ALL },
3890 		{ "file", LRU_ALL_FILE },
3891 		{ "anon", LRU_ALL_ANON },
3892 		{ "unevictable", BIT(LRU_UNEVICTABLE) },
3893 	};
3894 	const struct numa_stat *stat;
3895 	int nid;
3896 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3897 
3898 	mem_cgroup_flush_stats();
3899 
3900 	for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3901 		seq_printf(m, "%s=%lu", stat->name,
3902 			   mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3903 						   false));
3904 		for_each_node_state(nid, N_MEMORY)
3905 			seq_printf(m, " N%d=%lu", nid,
3906 				   mem_cgroup_node_nr_lru_pages(memcg, nid,
3907 							stat->lru_mask, false));
3908 		seq_putc(m, '\n');
3909 	}
3910 
3911 	for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3912 
3913 		seq_printf(m, "hierarchical_%s=%lu", stat->name,
3914 			   mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3915 						   true));
3916 		for_each_node_state(nid, N_MEMORY)
3917 			seq_printf(m, " N%d=%lu", nid,
3918 				   mem_cgroup_node_nr_lru_pages(memcg, nid,
3919 							stat->lru_mask, true));
3920 		seq_putc(m, '\n');
3921 	}
3922 
3923 	return 0;
3924 }
3925 #endif /* CONFIG_NUMA */
3926 
3927 static const unsigned int memcg1_stats[] = {
3928 	NR_FILE_PAGES,
3929 	NR_ANON_MAPPED,
3930 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3931 	NR_ANON_THPS,
3932 #endif
3933 	NR_SHMEM,
3934 	NR_FILE_MAPPED,
3935 	NR_FILE_DIRTY,
3936 	NR_WRITEBACK,
3937 	MEMCG_SWAP,
3938 };
3939 
3940 static const char *const memcg1_stat_names[] = {
3941 	"cache",
3942 	"rss",
3943 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3944 	"rss_huge",
3945 #endif
3946 	"shmem",
3947 	"mapped_file",
3948 	"dirty",
3949 	"writeback",
3950 	"swap",
3951 };
3952 
3953 /* Universal VM events cgroup1 shows, original sort order */
3954 static const unsigned int memcg1_events[] = {
3955 	PGPGIN,
3956 	PGPGOUT,
3957 	PGFAULT,
3958 	PGMAJFAULT,
3959 };
3960 
3961 static int memcg_stat_show(struct seq_file *m, void *v)
3962 {
3963 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3964 	unsigned long memory, memsw;
3965 	struct mem_cgroup *mi;
3966 	unsigned int i;
3967 
3968 	BUILD_BUG_ON(ARRAY_SIZE(memcg1_stat_names) != ARRAY_SIZE(memcg1_stats));
3969 
3970 	mem_cgroup_flush_stats();
3971 
3972 	for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
3973 		unsigned long nr;
3974 
3975 		if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
3976 			continue;
3977 		nr = memcg_page_state_local(memcg, memcg1_stats[i]);
3978 		seq_printf(m, "%s %lu\n", memcg1_stat_names[i], nr * PAGE_SIZE);
3979 	}
3980 
3981 	for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
3982 		seq_printf(m, "%s %lu\n", vm_event_name(memcg1_events[i]),
3983 			   memcg_events_local(memcg, memcg1_events[i]));
3984 
3985 	for (i = 0; i < NR_LRU_LISTS; i++)
3986 		seq_printf(m, "%s %lu\n", lru_list_name(i),
3987 			   memcg_page_state_local(memcg, NR_LRU_BASE + i) *
3988 			   PAGE_SIZE);
3989 
3990 	/* Hierarchical information */
3991 	memory = memsw = PAGE_COUNTER_MAX;
3992 	for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
3993 		memory = min(memory, READ_ONCE(mi->memory.max));
3994 		memsw = min(memsw, READ_ONCE(mi->memsw.max));
3995 	}
3996 	seq_printf(m, "hierarchical_memory_limit %llu\n",
3997 		   (u64)memory * PAGE_SIZE);
3998 	if (do_memsw_account())
3999 		seq_printf(m, "hierarchical_memsw_limit %llu\n",
4000 			   (u64)memsw * PAGE_SIZE);
4001 
4002 	for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
4003 		unsigned long nr;
4004 
4005 		if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
4006 			continue;
4007 		nr = memcg_page_state(memcg, memcg1_stats[i]);
4008 		seq_printf(m, "total_%s %llu\n", memcg1_stat_names[i],
4009 						(u64)nr * PAGE_SIZE);
4010 	}
4011 
4012 	for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
4013 		seq_printf(m, "total_%s %llu\n",
4014 			   vm_event_name(memcg1_events[i]),
4015 			   (u64)memcg_events(memcg, memcg1_events[i]));
4016 
4017 	for (i = 0; i < NR_LRU_LISTS; i++)
4018 		seq_printf(m, "total_%s %llu\n", lru_list_name(i),
4019 			   (u64)memcg_page_state(memcg, NR_LRU_BASE + i) *
4020 			   PAGE_SIZE);
4021 
4022 #ifdef CONFIG_DEBUG_VM
4023 	{
4024 		pg_data_t *pgdat;
4025 		struct mem_cgroup_per_node *mz;
4026 		unsigned long anon_cost = 0;
4027 		unsigned long file_cost = 0;
4028 
4029 		for_each_online_pgdat(pgdat) {
4030 			mz = memcg->nodeinfo[pgdat->node_id];
4031 
4032 			anon_cost += mz->lruvec.anon_cost;
4033 			file_cost += mz->lruvec.file_cost;
4034 		}
4035 		seq_printf(m, "anon_cost %lu\n", anon_cost);
4036 		seq_printf(m, "file_cost %lu\n", file_cost);
4037 	}
4038 #endif
4039 
4040 	return 0;
4041 }
4042 
4043 static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4044 				      struct cftype *cft)
4045 {
4046 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4047 
4048 	return mem_cgroup_swappiness(memcg);
4049 }
4050 
4051 static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4052 				       struct cftype *cft, u64 val)
4053 {
4054 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4055 
4056 	if (val > 200)
4057 		return -EINVAL;
4058 
4059 	if (!mem_cgroup_is_root(memcg))
4060 		memcg->swappiness = val;
4061 	else
4062 		vm_swappiness = val;
4063 
4064 	return 0;
4065 }
4066 
4067 static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4068 {
4069 	struct mem_cgroup_threshold_ary *t;
4070 	unsigned long usage;
4071 	int i;
4072 
4073 	rcu_read_lock();
4074 	if (!swap)
4075 		t = rcu_dereference(memcg->thresholds.primary);
4076 	else
4077 		t = rcu_dereference(memcg->memsw_thresholds.primary);
4078 
4079 	if (!t)
4080 		goto unlock;
4081 
4082 	usage = mem_cgroup_usage(memcg, swap);
4083 
4084 	/*
4085 	 * current_threshold points to threshold just below or equal to usage.
4086 	 * If it's not true, a threshold was crossed after last
4087 	 * call of __mem_cgroup_threshold().
4088 	 */
4089 	i = t->current_threshold;
4090 
4091 	/*
4092 	 * Iterate backward over array of thresholds starting from
4093 	 * current_threshold and check if a threshold is crossed.
4094 	 * If none of thresholds below usage is crossed, we read
4095 	 * only one element of the array here.
4096 	 */
4097 	for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4098 		eventfd_signal(t->entries[i].eventfd, 1);
4099 
4100 	/* i = current_threshold + 1 */
4101 	i++;
4102 
4103 	/*
4104 	 * Iterate forward over array of thresholds starting from
4105 	 * current_threshold+1 and check if a threshold is crossed.
4106 	 * If none of thresholds above usage is crossed, we read
4107 	 * only one element of the array here.
4108 	 */
4109 	for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4110 		eventfd_signal(t->entries[i].eventfd, 1);
4111 
4112 	/* Update current_threshold */
4113 	t->current_threshold = i - 1;
4114 unlock:
4115 	rcu_read_unlock();
4116 }
4117 
4118 static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4119 {
4120 	while (memcg) {
4121 		__mem_cgroup_threshold(memcg, false);
4122 		if (do_memsw_account())
4123 			__mem_cgroup_threshold(memcg, true);
4124 
4125 		memcg = parent_mem_cgroup(memcg);
4126 	}
4127 }
4128 
4129 static int compare_thresholds(const void *a, const void *b)
4130 {
4131 	const struct mem_cgroup_threshold *_a = a;
4132 	const struct mem_cgroup_threshold *_b = b;
4133 
4134 	if (_a->threshold > _b->threshold)
4135 		return 1;
4136 
4137 	if (_a->threshold < _b->threshold)
4138 		return -1;
4139 
4140 	return 0;
4141 }
4142 
4143 static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
4144 {
4145 	struct mem_cgroup_eventfd_list *ev;
4146 
4147 	spin_lock(&memcg_oom_lock);
4148 
4149 	list_for_each_entry(ev, &memcg->oom_notify, list)
4150 		eventfd_signal(ev->eventfd, 1);
4151 
4152 	spin_unlock(&memcg_oom_lock);
4153 	return 0;
4154 }
4155 
4156 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
4157 {
4158 	struct mem_cgroup *iter;
4159 
4160 	for_each_mem_cgroup_tree(iter, memcg)
4161 		mem_cgroup_oom_notify_cb(iter);
4162 }
4163 
4164 static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4165 	struct eventfd_ctx *eventfd, const char *args, enum res_type type)
4166 {
4167 	struct mem_cgroup_thresholds *thresholds;
4168 	struct mem_cgroup_threshold_ary *new;
4169 	unsigned long threshold;
4170 	unsigned long usage;
4171 	int i, size, ret;
4172 
4173 	ret = page_counter_memparse(args, "-1", &threshold);
4174 	if (ret)
4175 		return ret;
4176 
4177 	mutex_lock(&memcg->thresholds_lock);
4178 
4179 	if (type == _MEM) {
4180 		thresholds = &memcg->thresholds;
4181 		usage = mem_cgroup_usage(memcg, false);
4182 	} else if (type == _MEMSWAP) {
4183 		thresholds = &memcg->memsw_thresholds;
4184 		usage = mem_cgroup_usage(memcg, true);
4185 	} else
4186 		BUG();
4187 
4188 	/* Check if a threshold crossed before adding a new one */
4189 	if (thresholds->primary)
4190 		__mem_cgroup_threshold(memcg, type == _MEMSWAP);
4191 
4192 	size = thresholds->primary ? thresholds->primary->size + 1 : 1;
4193 
4194 	/* Allocate memory for new array of thresholds */
4195 	new = kmalloc(struct_size(new, entries, size), GFP_KERNEL);
4196 	if (!new) {
4197 		ret = -ENOMEM;
4198 		goto unlock;
4199 	}
4200 	new->size = size;
4201 
4202 	/* Copy thresholds (if any) to new array */
4203 	if (thresholds->primary)
4204 		memcpy(new->entries, thresholds->primary->entries,
4205 		       flex_array_size(new, entries, size - 1));
4206 
4207 	/* Add new threshold */
4208 	new->entries[size - 1].eventfd = eventfd;
4209 	new->entries[size - 1].threshold = threshold;
4210 
4211 	/* Sort thresholds. Registering of new threshold isn't time-critical */
4212 	sort(new->entries, size, sizeof(*new->entries),
4213 			compare_thresholds, NULL);
4214 
4215 	/* Find current threshold */
4216 	new->current_threshold = -1;
4217 	for (i = 0; i < size; i++) {
4218 		if (new->entries[i].threshold <= usage) {
4219 			/*
4220 			 * new->current_threshold will not be used until
4221 			 * rcu_assign_pointer(), so it's safe to increment
4222 			 * it here.
4223 			 */
4224 			++new->current_threshold;
4225 		} else
4226 			break;
4227 	}
4228 
4229 	/* Free old spare buffer and save old primary buffer as spare */
4230 	kfree(thresholds->spare);
4231 	thresholds->spare = thresholds->primary;
4232 
4233 	rcu_assign_pointer(thresholds->primary, new);
4234 
4235 	/* To be sure that nobody uses thresholds */
4236 	synchronize_rcu();
4237 
4238 unlock:
4239 	mutex_unlock(&memcg->thresholds_lock);
4240 
4241 	return ret;
4242 }
4243 
4244 static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4245 	struct eventfd_ctx *eventfd, const char *args)
4246 {
4247 	return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
4248 }
4249 
4250 static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
4251 	struct eventfd_ctx *eventfd, const char *args)
4252 {
4253 	return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
4254 }
4255 
4256 static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4257 	struct eventfd_ctx *eventfd, enum res_type type)
4258 {
4259 	struct mem_cgroup_thresholds *thresholds;
4260 	struct mem_cgroup_threshold_ary *new;
4261 	unsigned long usage;
4262 	int i, j, size, entries;
4263 
4264 	mutex_lock(&memcg->thresholds_lock);
4265 
4266 	if (type == _MEM) {
4267 		thresholds = &memcg->thresholds;
4268 		usage = mem_cgroup_usage(memcg, false);
4269 	} else if (type == _MEMSWAP) {
4270 		thresholds = &memcg->memsw_thresholds;
4271 		usage = mem_cgroup_usage(memcg, true);
4272 	} else
4273 		BUG();
4274 
4275 	if (!thresholds->primary)
4276 		goto unlock;
4277 
4278 	/* Check if a threshold crossed before removing */
4279 	__mem_cgroup_threshold(memcg, type == _MEMSWAP);
4280 
4281 	/* Calculate new number of threshold */
4282 	size = entries = 0;
4283 	for (i = 0; i < thresholds->primary->size; i++) {
4284 		if (thresholds->primary->entries[i].eventfd != eventfd)
4285 			size++;
4286 		else
4287 			entries++;
4288 	}
4289 
4290 	new = thresholds->spare;
4291 
4292 	/* If no items related to eventfd have been cleared, nothing to do */
4293 	if (!entries)
4294 		goto unlock;
4295 
4296 	/* Set thresholds array to NULL if we don't have thresholds */
4297 	if (!size) {
4298 		kfree(new);
4299 		new = NULL;
4300 		goto swap_buffers;
4301 	}
4302 
4303 	new->size = size;
4304 
4305 	/* Copy thresholds and find current threshold */
4306 	new->current_threshold = -1;
4307 	for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4308 		if (thresholds->primary->entries[i].eventfd == eventfd)
4309 			continue;
4310 
4311 		new->entries[j] = thresholds->primary->entries[i];
4312 		if (new->entries[j].threshold <= usage) {
4313 			/*
4314 			 * new->current_threshold will not be used
4315 			 * until rcu_assign_pointer(), so it's safe to increment
4316 			 * it here.
4317 			 */
4318 			++new->current_threshold;
4319 		}
4320 		j++;
4321 	}
4322 
4323 swap_buffers:
4324 	/* Swap primary and spare array */
4325 	thresholds->spare = thresholds->primary;
4326 
4327 	rcu_assign_pointer(thresholds->primary, new);
4328 
4329 	/* To be sure that nobody uses thresholds */
4330 	synchronize_rcu();
4331 
4332 	/* If all events are unregistered, free the spare array */
4333 	if (!new) {
4334 		kfree(thresholds->spare);
4335 		thresholds->spare = NULL;
4336 	}
4337 unlock:
4338 	mutex_unlock(&memcg->thresholds_lock);
4339 }
4340 
4341 static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4342 	struct eventfd_ctx *eventfd)
4343 {
4344 	return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
4345 }
4346 
4347 static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4348 	struct eventfd_ctx *eventfd)
4349 {
4350 	return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
4351 }
4352 
4353 static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
4354 	struct eventfd_ctx *eventfd, const char *args)
4355 {
4356 	struct mem_cgroup_eventfd_list *event;
4357 
4358 	event = kmalloc(sizeof(*event),	GFP_KERNEL);
4359 	if (!event)
4360 		return -ENOMEM;
4361 
4362 	spin_lock(&memcg_oom_lock);
4363 
4364 	event->eventfd = eventfd;
4365 	list_add(&event->list, &memcg->oom_notify);
4366 
4367 	/* already in OOM ? */
4368 	if (memcg->under_oom)
4369 		eventfd_signal(eventfd, 1);
4370 	spin_unlock(&memcg_oom_lock);
4371 
4372 	return 0;
4373 }
4374 
4375 static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
4376 	struct eventfd_ctx *eventfd)
4377 {
4378 	struct mem_cgroup_eventfd_list *ev, *tmp;
4379 
4380 	spin_lock(&memcg_oom_lock);
4381 
4382 	list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
4383 		if (ev->eventfd == eventfd) {
4384 			list_del(&ev->list);
4385 			kfree(ev);
4386 		}
4387 	}
4388 
4389 	spin_unlock(&memcg_oom_lock);
4390 }
4391 
4392 static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
4393 {
4394 	struct mem_cgroup *memcg = mem_cgroup_from_seq(sf);
4395 
4396 	seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
4397 	seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom);
4398 	seq_printf(sf, "oom_kill %lu\n",
4399 		   atomic_long_read(&memcg->memory_events[MEMCG_OOM_KILL]));
4400 	return 0;
4401 }
4402 
4403 static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
4404 	struct cftype *cft, u64 val)
4405 {
4406 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4407 
4408 	/* cannot set to root cgroup and only 0 and 1 are allowed */
4409 	if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1)))
4410 		return -EINVAL;
4411 
4412 	memcg->oom_kill_disable = val;
4413 	if (!val)
4414 		memcg_oom_recover(memcg);
4415 
4416 	return 0;
4417 }
4418 
4419 #ifdef CONFIG_CGROUP_WRITEBACK
4420 
4421 #include <trace/events/writeback.h>
4422 
4423 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4424 {
4425 	return wb_domain_init(&memcg->cgwb_domain, gfp);
4426 }
4427 
4428 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4429 {
4430 	wb_domain_exit(&memcg->cgwb_domain);
4431 }
4432 
4433 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4434 {
4435 	wb_domain_size_changed(&memcg->cgwb_domain);
4436 }
4437 
4438 struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
4439 {
4440 	struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4441 
4442 	if (!memcg->css.parent)
4443 		return NULL;
4444 
4445 	return &memcg->cgwb_domain;
4446 }
4447 
4448 /**
4449  * mem_cgroup_wb_stats - retrieve writeback related stats from its memcg
4450  * @wb: bdi_writeback in question
4451  * @pfilepages: out parameter for number of file pages
4452  * @pheadroom: out parameter for number of allocatable pages according to memcg
4453  * @pdirty: out parameter for number of dirty pages
4454  * @pwriteback: out parameter for number of pages under writeback
4455  *
4456  * Determine the numbers of file, headroom, dirty, and writeback pages in
4457  * @wb's memcg.  File, dirty and writeback are self-explanatory.  Headroom
4458  * is a bit more involved.
4459  *
4460  * A memcg's headroom is "min(max, high) - used".  In the hierarchy, the
4461  * headroom is calculated as the lowest headroom of itself and the
4462  * ancestors.  Note that this doesn't consider the actual amount of
4463  * available memory in the system.  The caller should further cap
4464  * *@pheadroom accordingly.
4465  */
4466 void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
4467 			 unsigned long *pheadroom, unsigned long *pdirty,
4468 			 unsigned long *pwriteback)
4469 {
4470 	struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4471 	struct mem_cgroup *parent;
4472 
4473 	mem_cgroup_flush_stats();
4474 
4475 	*pdirty = memcg_page_state(memcg, NR_FILE_DIRTY);
4476 	*pwriteback = memcg_page_state(memcg, NR_WRITEBACK);
4477 	*pfilepages = memcg_page_state(memcg, NR_INACTIVE_FILE) +
4478 			memcg_page_state(memcg, NR_ACTIVE_FILE);
4479 
4480 	*pheadroom = PAGE_COUNTER_MAX;
4481 	while ((parent = parent_mem_cgroup(memcg))) {
4482 		unsigned long ceiling = min(READ_ONCE(memcg->memory.max),
4483 					    READ_ONCE(memcg->memory.high));
4484 		unsigned long used = page_counter_read(&memcg->memory);
4485 
4486 		*pheadroom = min(*pheadroom, ceiling - min(ceiling, used));
4487 		memcg = parent;
4488 	}
4489 }
4490 
4491 /*
4492  * Foreign dirty flushing
4493  *
4494  * There's an inherent mismatch between memcg and writeback.  The former
4495  * tracks ownership per-page while the latter per-inode.  This was a
4496  * deliberate design decision because honoring per-page ownership in the
4497  * writeback path is complicated, may lead to higher CPU and IO overheads
4498  * and deemed unnecessary given that write-sharing an inode across
4499  * different cgroups isn't a common use-case.
4500  *
4501  * Combined with inode majority-writer ownership switching, this works well
4502  * enough in most cases but there are some pathological cases.  For
4503  * example, let's say there are two cgroups A and B which keep writing to
4504  * different but confined parts of the same inode.  B owns the inode and
4505  * A's memory is limited far below B's.  A's dirty ratio can rise enough to
4506  * trigger balance_dirty_pages() sleeps but B's can be low enough to avoid
4507  * triggering background writeback.  A will be slowed down without a way to
4508  * make writeback of the dirty pages happen.
4509  *
4510  * Conditions like the above can lead to a cgroup getting repeatedly and
4511  * severely throttled after making some progress after each
4512  * dirty_expire_interval while the underlying IO device is almost
4513  * completely idle.
4514  *
4515  * Solving this problem completely requires matching the ownership tracking
4516  * granularities between memcg and writeback in either direction.  However,
4517  * the more egregious behaviors can be avoided by simply remembering the
4518  * most recent foreign dirtying events and initiating remote flushes on
4519  * them when local writeback isn't enough to keep the memory clean enough.
4520  *
4521  * The following two functions implement such mechanism.  When a foreign
4522  * page - a page whose memcg and writeback ownerships don't match - is
4523  * dirtied, mem_cgroup_track_foreign_dirty() records the inode owning
4524  * bdi_writeback on the page owning memcg.  When balance_dirty_pages()
4525  * decides that the memcg needs to sleep due to high dirty ratio, it calls
4526  * mem_cgroup_flush_foreign() which queues writeback on the recorded
4527  * foreign bdi_writebacks which haven't expired.  Both the numbers of
4528  * recorded bdi_writebacks and concurrent in-flight foreign writebacks are
4529  * limited to MEMCG_CGWB_FRN_CNT.
4530  *
4531  * The mechanism only remembers IDs and doesn't hold any object references.
4532  * As being wrong occasionally doesn't matter, updates and accesses to the
4533  * records are lockless and racy.
4534  */
4535 void mem_cgroup_track_foreign_dirty_slowpath(struct folio *folio,
4536 					     struct bdi_writeback *wb)
4537 {
4538 	struct mem_cgroup *memcg = folio_memcg(folio);
4539 	struct memcg_cgwb_frn *frn;
4540 	u64 now = get_jiffies_64();
4541 	u64 oldest_at = now;
4542 	int oldest = -1;
4543 	int i;
4544 
4545 	trace_track_foreign_dirty(folio, wb);
4546 
4547 	/*
4548 	 * Pick the slot to use.  If there is already a slot for @wb, keep
4549 	 * using it.  If not replace the oldest one which isn't being
4550 	 * written out.
4551 	 */
4552 	for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4553 		frn = &memcg->cgwb_frn[i];
4554 		if (frn->bdi_id == wb->bdi->id &&
4555 		    frn->memcg_id == wb->memcg_css->id)
4556 			break;
4557 		if (time_before64(frn->at, oldest_at) &&
4558 		    atomic_read(&frn->done.cnt) == 1) {
4559 			oldest = i;
4560 			oldest_at = frn->at;
4561 		}
4562 	}
4563 
4564 	if (i < MEMCG_CGWB_FRN_CNT) {
4565 		/*
4566 		 * Re-using an existing one.  Update timestamp lazily to
4567 		 * avoid making the cacheline hot.  We want them to be
4568 		 * reasonably up-to-date and significantly shorter than
4569 		 * dirty_expire_interval as that's what expires the record.
4570 		 * Use the shorter of 1s and dirty_expire_interval / 8.
4571 		 */
4572 		unsigned long update_intv =
4573 			min_t(unsigned long, HZ,
4574 			      msecs_to_jiffies(dirty_expire_interval * 10) / 8);
4575 
4576 		if (time_before64(frn->at, now - update_intv))
4577 			frn->at = now;
4578 	} else if (oldest >= 0) {
4579 		/* replace the oldest free one */
4580 		frn = &memcg->cgwb_frn[oldest];
4581 		frn->bdi_id = wb->bdi->id;
4582 		frn->memcg_id = wb->memcg_css->id;
4583 		frn->at = now;
4584 	}
4585 }
4586 
4587 /* issue foreign writeback flushes for recorded foreign dirtying events */
4588 void mem_cgroup_flush_foreign(struct bdi_writeback *wb)
4589 {
4590 	struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4591 	unsigned long intv = msecs_to_jiffies(dirty_expire_interval * 10);
4592 	u64 now = jiffies_64;
4593 	int i;
4594 
4595 	for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4596 		struct memcg_cgwb_frn *frn = &memcg->cgwb_frn[i];
4597 
4598 		/*
4599 		 * If the record is older than dirty_expire_interval,
4600 		 * writeback on it has already started.  No need to kick it
4601 		 * off again.  Also, don't start a new one if there's
4602 		 * already one in flight.
4603 		 */
4604 		if (time_after64(frn->at, now - intv) &&
4605 		    atomic_read(&frn->done.cnt) == 1) {
4606 			frn->at = 0;
4607 			trace_flush_foreign(wb, frn->bdi_id, frn->memcg_id);
4608 			cgroup_writeback_by_id(frn->bdi_id, frn->memcg_id,
4609 					       WB_REASON_FOREIGN_FLUSH,
4610 					       &frn->done);
4611 		}
4612 	}
4613 }
4614 
4615 #else	/* CONFIG_CGROUP_WRITEBACK */
4616 
4617 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4618 {
4619 	return 0;
4620 }
4621 
4622 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4623 {
4624 }
4625 
4626 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4627 {
4628 }
4629 
4630 #endif	/* CONFIG_CGROUP_WRITEBACK */
4631 
4632 /*
4633  * DO NOT USE IN NEW FILES.
4634  *
4635  * "cgroup.event_control" implementation.
4636  *
4637  * This is way over-engineered.  It tries to support fully configurable
4638  * events for each user.  Such level of flexibility is completely
4639  * unnecessary especially in the light of the planned unified hierarchy.
4640  *
4641  * Please deprecate this and replace with something simpler if at all
4642  * possible.
4643  */
4644 
4645 /*
4646  * Unregister event and free resources.
4647  *
4648  * Gets called from workqueue.
4649  */
4650 static void memcg_event_remove(struct work_struct *work)
4651 {
4652 	struct mem_cgroup_event *event =
4653 		container_of(work, struct mem_cgroup_event, remove);
4654 	struct mem_cgroup *memcg = event->memcg;
4655 
4656 	remove_wait_queue(event->wqh, &event->wait);
4657 
4658 	event->unregister_event(memcg, event->eventfd);
4659 
4660 	/* Notify userspace the event is going away. */
4661 	eventfd_signal(event->eventfd, 1);
4662 
4663 	eventfd_ctx_put(event->eventfd);
4664 	kfree(event);
4665 	css_put(&memcg->css);
4666 }
4667 
4668 /*
4669  * Gets called on EPOLLHUP on eventfd when user closes it.
4670  *
4671  * Called with wqh->lock held and interrupts disabled.
4672  */
4673 static int memcg_event_wake(wait_queue_entry_t *wait, unsigned mode,
4674 			    int sync, void *key)
4675 {
4676 	struct mem_cgroup_event *event =
4677 		container_of(wait, struct mem_cgroup_event, wait);
4678 	struct mem_cgroup *memcg = event->memcg;
4679 	__poll_t flags = key_to_poll(key);
4680 
4681 	if (flags & EPOLLHUP) {
4682 		/*
4683 		 * If the event has been detached at cgroup removal, we
4684 		 * can simply return knowing the other side will cleanup
4685 		 * for us.
4686 		 *
4687 		 * We can't race against event freeing since the other
4688 		 * side will require wqh->lock via remove_wait_queue(),
4689 		 * which we hold.
4690 		 */
4691 		spin_lock(&memcg->event_list_lock);
4692 		if (!list_empty(&event->list)) {
4693 			list_del_init(&event->list);
4694 			/*
4695 			 * We are in atomic context, but cgroup_event_remove()
4696 			 * may sleep, so we have to call it in workqueue.
4697 			 */
4698 			schedule_work(&event->remove);
4699 		}
4700 		spin_unlock(&memcg->event_list_lock);
4701 	}
4702 
4703 	return 0;
4704 }
4705 
4706 static void memcg_event_ptable_queue_proc(struct file *file,
4707 		wait_queue_head_t *wqh, poll_table *pt)
4708 {
4709 	struct mem_cgroup_event *event =
4710 		container_of(pt, struct mem_cgroup_event, pt);
4711 
4712 	event->wqh = wqh;
4713 	add_wait_queue(wqh, &event->wait);
4714 }
4715 
4716 /*
4717  * DO NOT USE IN NEW FILES.
4718  *
4719  * Parse input and register new cgroup event handler.
4720  *
4721  * Input must be in format '<event_fd> <control_fd> <args>'.
4722  * Interpretation of args is defined by control file implementation.
4723  */
4724 static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
4725 					 char *buf, size_t nbytes, loff_t off)
4726 {
4727 	struct cgroup_subsys_state *css = of_css(of);
4728 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4729 	struct mem_cgroup_event *event;
4730 	struct cgroup_subsys_state *cfile_css;
4731 	unsigned int efd, cfd;
4732 	struct fd efile;
4733 	struct fd cfile;
4734 	const char *name;
4735 	char *endp;
4736 	int ret;
4737 
4738 	buf = strstrip(buf);
4739 
4740 	efd = simple_strtoul(buf, &endp, 10);
4741 	if (*endp != ' ')
4742 		return -EINVAL;
4743 	buf = endp + 1;
4744 
4745 	cfd = simple_strtoul(buf, &endp, 10);
4746 	if ((*endp != ' ') && (*endp != '\0'))
4747 		return -EINVAL;
4748 	buf = endp + 1;
4749 
4750 	event = kzalloc(sizeof(*event), GFP_KERNEL);
4751 	if (!event)
4752 		return -ENOMEM;
4753 
4754 	event->memcg = memcg;
4755 	INIT_LIST_HEAD(&event->list);
4756 	init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
4757 	init_waitqueue_func_entry(&event->wait, memcg_event_wake);
4758 	INIT_WORK(&event->remove, memcg_event_remove);
4759 
4760 	efile = fdget(efd);
4761 	if (!efile.file) {
4762 		ret = -EBADF;
4763 		goto out_kfree;
4764 	}
4765 
4766 	event->eventfd = eventfd_ctx_fileget(efile.file);
4767 	if (IS_ERR(event->eventfd)) {
4768 		ret = PTR_ERR(event->eventfd);
4769 		goto out_put_efile;
4770 	}
4771 
4772 	cfile = fdget(cfd);
4773 	if (!cfile.file) {
4774 		ret = -EBADF;
4775 		goto out_put_eventfd;
4776 	}
4777 
4778 	/* the process need read permission on control file */
4779 	/* AV: shouldn't we check that it's been opened for read instead? */
4780 	ret = file_permission(cfile.file, MAY_READ);
4781 	if (ret < 0)
4782 		goto out_put_cfile;
4783 
4784 	/*
4785 	 * Determine the event callbacks and set them in @event.  This used
4786 	 * to be done via struct cftype but cgroup core no longer knows
4787 	 * about these events.  The following is crude but the whole thing
4788 	 * is for compatibility anyway.
4789 	 *
4790 	 * DO NOT ADD NEW FILES.
4791 	 */
4792 	name = cfile.file->f_path.dentry->d_name.name;
4793 
4794 	if (!strcmp(name, "memory.usage_in_bytes")) {
4795 		event->register_event = mem_cgroup_usage_register_event;
4796 		event->unregister_event = mem_cgroup_usage_unregister_event;
4797 	} else if (!strcmp(name, "memory.oom_control")) {
4798 		event->register_event = mem_cgroup_oom_register_event;
4799 		event->unregister_event = mem_cgroup_oom_unregister_event;
4800 	} else if (!strcmp(name, "memory.pressure_level")) {
4801 		event->register_event = vmpressure_register_event;
4802 		event->unregister_event = vmpressure_unregister_event;
4803 	} else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
4804 		event->register_event = memsw_cgroup_usage_register_event;
4805 		event->unregister_event = memsw_cgroup_usage_unregister_event;
4806 	} else {
4807 		ret = -EINVAL;
4808 		goto out_put_cfile;
4809 	}
4810 
4811 	/*
4812 	 * Verify @cfile should belong to @css.  Also, remaining events are
4813 	 * automatically removed on cgroup destruction but the removal is
4814 	 * asynchronous, so take an extra ref on @css.
4815 	 */
4816 	cfile_css = css_tryget_online_from_dir(cfile.file->f_path.dentry->d_parent,
4817 					       &memory_cgrp_subsys);
4818 	ret = -EINVAL;
4819 	if (IS_ERR(cfile_css))
4820 		goto out_put_cfile;
4821 	if (cfile_css != css) {
4822 		css_put(cfile_css);
4823 		goto out_put_cfile;
4824 	}
4825 
4826 	ret = event->register_event(memcg, event->eventfd, buf);
4827 	if (ret)
4828 		goto out_put_css;
4829 
4830 	vfs_poll(efile.file, &event->pt);
4831 
4832 	spin_lock_irq(&memcg->event_list_lock);
4833 	list_add(&event->list, &memcg->event_list);
4834 	spin_unlock_irq(&memcg->event_list_lock);
4835 
4836 	fdput(cfile);
4837 	fdput(efile);
4838 
4839 	return nbytes;
4840 
4841 out_put_css:
4842 	css_put(css);
4843 out_put_cfile:
4844 	fdput(cfile);
4845 out_put_eventfd:
4846 	eventfd_ctx_put(event->eventfd);
4847 out_put_efile:
4848 	fdput(efile);
4849 out_kfree:
4850 	kfree(event);
4851 
4852 	return ret;
4853 }
4854 
4855 #if defined(CONFIG_MEMCG_KMEM) && (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4856 static int mem_cgroup_slab_show(struct seq_file *m, void *p)
4857 {
4858 	/*
4859 	 * Deprecated.
4860 	 * Please, take a look at tools/cgroup/slabinfo.py .
4861 	 */
4862 	return 0;
4863 }
4864 #endif
4865 
4866 static struct cftype mem_cgroup_legacy_files[] = {
4867 	{
4868 		.name = "usage_in_bytes",
4869 		.private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
4870 		.read_u64 = mem_cgroup_read_u64,
4871 	},
4872 	{
4873 		.name = "max_usage_in_bytes",
4874 		.private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
4875 		.write = mem_cgroup_reset,
4876 		.read_u64 = mem_cgroup_read_u64,
4877 	},
4878 	{
4879 		.name = "limit_in_bytes",
4880 		.private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
4881 		.write = mem_cgroup_write,
4882 		.read_u64 = mem_cgroup_read_u64,
4883 	},
4884 	{
4885 		.name = "soft_limit_in_bytes",
4886 		.private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4887 		.write = mem_cgroup_write,
4888 		.read_u64 = mem_cgroup_read_u64,
4889 	},
4890 	{
4891 		.name = "failcnt",
4892 		.private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
4893 		.write = mem_cgroup_reset,
4894 		.read_u64 = mem_cgroup_read_u64,
4895 	},
4896 	{
4897 		.name = "stat",
4898 		.seq_show = memcg_stat_show,
4899 	},
4900 	{
4901 		.name = "force_empty",
4902 		.write = mem_cgroup_force_empty_write,
4903 	},
4904 	{
4905 		.name = "use_hierarchy",
4906 		.write_u64 = mem_cgroup_hierarchy_write,
4907 		.read_u64 = mem_cgroup_hierarchy_read,
4908 	},
4909 	{
4910 		.name = "cgroup.event_control",		/* XXX: for compat */
4911 		.write = memcg_write_event_control,
4912 		.flags = CFTYPE_NO_PREFIX | CFTYPE_WORLD_WRITABLE,
4913 	},
4914 	{
4915 		.name = "swappiness",
4916 		.read_u64 = mem_cgroup_swappiness_read,
4917 		.write_u64 = mem_cgroup_swappiness_write,
4918 	},
4919 	{
4920 		.name = "move_charge_at_immigrate",
4921 		.read_u64 = mem_cgroup_move_charge_read,
4922 		.write_u64 = mem_cgroup_move_charge_write,
4923 	},
4924 	{
4925 		.name = "oom_control",
4926 		.seq_show = mem_cgroup_oom_control_read,
4927 		.write_u64 = mem_cgroup_oom_control_write,
4928 		.private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4929 	},
4930 	{
4931 		.name = "pressure_level",
4932 	},
4933 #ifdef CONFIG_NUMA
4934 	{
4935 		.name = "numa_stat",
4936 		.seq_show = memcg_numa_stat_show,
4937 	},
4938 #endif
4939 	{
4940 		.name = "kmem.limit_in_bytes",
4941 		.private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
4942 		.write = mem_cgroup_write,
4943 		.read_u64 = mem_cgroup_read_u64,
4944 	},
4945 	{
4946 		.name = "kmem.usage_in_bytes",
4947 		.private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
4948 		.read_u64 = mem_cgroup_read_u64,
4949 	},
4950 	{
4951 		.name = "kmem.failcnt",
4952 		.private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
4953 		.write = mem_cgroup_reset,
4954 		.read_u64 = mem_cgroup_read_u64,
4955 	},
4956 	{
4957 		.name = "kmem.max_usage_in_bytes",
4958 		.private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
4959 		.write = mem_cgroup_reset,
4960 		.read_u64 = mem_cgroup_read_u64,
4961 	},
4962 #if defined(CONFIG_MEMCG_KMEM) && \
4963 	(defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4964 	{
4965 		.name = "kmem.slabinfo",
4966 		.seq_show = mem_cgroup_slab_show,
4967 	},
4968 #endif
4969 	{
4970 		.name = "kmem.tcp.limit_in_bytes",
4971 		.private = MEMFILE_PRIVATE(_TCP, RES_LIMIT),
4972 		.write = mem_cgroup_write,
4973 		.read_u64 = mem_cgroup_read_u64,
4974 	},
4975 	{
4976 		.name = "kmem.tcp.usage_in_bytes",
4977 		.private = MEMFILE_PRIVATE(_TCP, RES_USAGE),
4978 		.read_u64 = mem_cgroup_read_u64,
4979 	},
4980 	{
4981 		.name = "kmem.tcp.failcnt",
4982 		.private = MEMFILE_PRIVATE(_TCP, RES_FAILCNT),
4983 		.write = mem_cgroup_reset,
4984 		.read_u64 = mem_cgroup_read_u64,
4985 	},
4986 	{
4987 		.name = "kmem.tcp.max_usage_in_bytes",
4988 		.private = MEMFILE_PRIVATE(_TCP, RES_MAX_USAGE),
4989 		.write = mem_cgroup_reset,
4990 		.read_u64 = mem_cgroup_read_u64,
4991 	},
4992 	{ },	/* terminate */
4993 };
4994 
4995 /*
4996  * Private memory cgroup IDR
4997  *
4998  * Swap-out records and page cache shadow entries need to store memcg
4999  * references in constrained space, so we maintain an ID space that is
5000  * limited to 16 bit (MEM_CGROUP_ID_MAX), limiting the total number of
5001  * memory-controlled cgroups to 64k.
5002  *
5003  * However, there usually are many references to the offline CSS after
5004  * the cgroup has been destroyed, such as page cache or reclaimable
5005  * slab objects, that don't need to hang on to the ID. We want to keep
5006  * those dead CSS from occupying IDs, or we might quickly exhaust the
5007  * relatively small ID space and prevent the creation of new cgroups
5008  * even when there are much fewer than 64k cgroups - possibly none.
5009  *
5010  * Maintain a private 16-bit ID space for memcg, and allow the ID to
5011  * be freed and recycled when it's no longer needed, which is usually
5012  * when the CSS is offlined.
5013  *
5014  * The only exception to that are records of swapped out tmpfs/shmem
5015  * pages that need to be attributed to live ancestors on swapin. But
5016  * those references are manageable from userspace.
5017  */
5018 
5019 static DEFINE_IDR(mem_cgroup_idr);
5020 
5021 static void mem_cgroup_id_remove(struct mem_cgroup *memcg)
5022 {
5023 	if (memcg->id.id > 0) {
5024 		idr_remove(&mem_cgroup_idr, memcg->id.id);
5025 		memcg->id.id = 0;
5026 	}
5027 }
5028 
5029 static void __maybe_unused mem_cgroup_id_get_many(struct mem_cgroup *memcg,
5030 						  unsigned int n)
5031 {
5032 	refcount_add(n, &memcg->id.ref);
5033 }
5034 
5035 static void mem_cgroup_id_put_many(struct mem_cgroup *memcg, unsigned int n)
5036 {
5037 	if (refcount_sub_and_test(n, &memcg->id.ref)) {
5038 		mem_cgroup_id_remove(memcg);
5039 
5040 		/* Memcg ID pins CSS */
5041 		css_put(&memcg->css);
5042 	}
5043 }
5044 
5045 static inline void mem_cgroup_id_put(struct mem_cgroup *memcg)
5046 {
5047 	mem_cgroup_id_put_many(memcg, 1);
5048 }
5049 
5050 /**
5051  * mem_cgroup_from_id - look up a memcg from a memcg id
5052  * @id: the memcg id to look up
5053  *
5054  * Caller must hold rcu_read_lock().
5055  */
5056 struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
5057 {
5058 	WARN_ON_ONCE(!rcu_read_lock_held());
5059 	return idr_find(&mem_cgroup_idr, id);
5060 }
5061 
5062 static int alloc_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5063 {
5064 	struct mem_cgroup_per_node *pn;
5065 	int tmp = node;
5066 	/*
5067 	 * This routine is called against possible nodes.
5068 	 * But it's BUG to call kmalloc() against offline node.
5069 	 *
5070 	 * TODO: this routine can waste much memory for nodes which will
5071 	 *       never be onlined. It's better to use memory hotplug callback
5072 	 *       function.
5073 	 */
5074 	if (!node_state(node, N_NORMAL_MEMORY))
5075 		tmp = -1;
5076 	pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
5077 	if (!pn)
5078 		return 1;
5079 
5080 	pn->lruvec_stats_percpu = alloc_percpu_gfp(struct lruvec_stats_percpu,
5081 						   GFP_KERNEL_ACCOUNT);
5082 	if (!pn->lruvec_stats_percpu) {
5083 		kfree(pn);
5084 		return 1;
5085 	}
5086 
5087 	lruvec_init(&pn->lruvec);
5088 	pn->usage_in_excess = 0;
5089 	pn->on_tree = false;
5090 	pn->memcg = memcg;
5091 
5092 	memcg->nodeinfo[node] = pn;
5093 	return 0;
5094 }
5095 
5096 static void free_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5097 {
5098 	struct mem_cgroup_per_node *pn = memcg->nodeinfo[node];
5099 
5100 	if (!pn)
5101 		return;
5102 
5103 	free_percpu(pn->lruvec_stats_percpu);
5104 	kfree(pn);
5105 }
5106 
5107 static void __mem_cgroup_free(struct mem_cgroup *memcg)
5108 {
5109 	int node;
5110 
5111 	for_each_node(node)
5112 		free_mem_cgroup_per_node_info(memcg, node);
5113 	free_percpu(memcg->vmstats_percpu);
5114 	kfree(memcg);
5115 }
5116 
5117 static void mem_cgroup_free(struct mem_cgroup *memcg)
5118 {
5119 	memcg_wb_domain_exit(memcg);
5120 	__mem_cgroup_free(memcg);
5121 }
5122 
5123 static struct mem_cgroup *mem_cgroup_alloc(void)
5124 {
5125 	struct mem_cgroup *memcg;
5126 	int node;
5127 	int __maybe_unused i;
5128 	long error = -ENOMEM;
5129 
5130 	memcg = kzalloc(struct_size(memcg, nodeinfo, nr_node_ids), GFP_KERNEL);
5131 	if (!memcg)
5132 		return ERR_PTR(error);
5133 
5134 	memcg->id.id = idr_alloc(&mem_cgroup_idr, NULL,
5135 				 1, MEM_CGROUP_ID_MAX,
5136 				 GFP_KERNEL);
5137 	if (memcg->id.id < 0) {
5138 		error = memcg->id.id;
5139 		goto fail;
5140 	}
5141 
5142 	memcg->vmstats_percpu = alloc_percpu_gfp(struct memcg_vmstats_percpu,
5143 						 GFP_KERNEL_ACCOUNT);
5144 	if (!memcg->vmstats_percpu)
5145 		goto fail;
5146 
5147 	for_each_node(node)
5148 		if (alloc_mem_cgroup_per_node_info(memcg, node))
5149 			goto fail;
5150 
5151 	if (memcg_wb_domain_init(memcg, GFP_KERNEL))
5152 		goto fail;
5153 
5154 	INIT_WORK(&memcg->high_work, high_work_func);
5155 	INIT_LIST_HEAD(&memcg->oom_notify);
5156 	mutex_init(&memcg->thresholds_lock);
5157 	spin_lock_init(&memcg->move_lock);
5158 	vmpressure_init(&memcg->vmpressure);
5159 	INIT_LIST_HEAD(&memcg->event_list);
5160 	spin_lock_init(&memcg->event_list_lock);
5161 	memcg->socket_pressure = jiffies;
5162 #ifdef CONFIG_MEMCG_KMEM
5163 	memcg->kmemcg_id = -1;
5164 	INIT_LIST_HEAD(&memcg->objcg_list);
5165 #endif
5166 #ifdef CONFIG_CGROUP_WRITEBACK
5167 	INIT_LIST_HEAD(&memcg->cgwb_list);
5168 	for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5169 		memcg->cgwb_frn[i].done =
5170 			__WB_COMPLETION_INIT(&memcg_cgwb_frn_waitq);
5171 #endif
5172 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5173 	spin_lock_init(&memcg->deferred_split_queue.split_queue_lock);
5174 	INIT_LIST_HEAD(&memcg->deferred_split_queue.split_queue);
5175 	memcg->deferred_split_queue.split_queue_len = 0;
5176 #endif
5177 	idr_replace(&mem_cgroup_idr, memcg, memcg->id.id);
5178 	return memcg;
5179 fail:
5180 	mem_cgroup_id_remove(memcg);
5181 	__mem_cgroup_free(memcg);
5182 	return ERR_PTR(error);
5183 }
5184 
5185 static struct cgroup_subsys_state * __ref
5186 mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
5187 {
5188 	struct mem_cgroup *parent = mem_cgroup_from_css(parent_css);
5189 	struct mem_cgroup *memcg, *old_memcg;
5190 	long error = -ENOMEM;
5191 
5192 	old_memcg = set_active_memcg(parent);
5193 	memcg = mem_cgroup_alloc();
5194 	set_active_memcg(old_memcg);
5195 	if (IS_ERR(memcg))
5196 		return ERR_CAST(memcg);
5197 
5198 	page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5199 	memcg->soft_limit = PAGE_COUNTER_MAX;
5200 	page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5201 	if (parent) {
5202 		memcg->swappiness = mem_cgroup_swappiness(parent);
5203 		memcg->oom_kill_disable = parent->oom_kill_disable;
5204 
5205 		page_counter_init(&memcg->memory, &parent->memory);
5206 		page_counter_init(&memcg->swap, &parent->swap);
5207 		page_counter_init(&memcg->kmem, &parent->kmem);
5208 		page_counter_init(&memcg->tcpmem, &parent->tcpmem);
5209 	} else {
5210 		page_counter_init(&memcg->memory, NULL);
5211 		page_counter_init(&memcg->swap, NULL);
5212 		page_counter_init(&memcg->kmem, NULL);
5213 		page_counter_init(&memcg->tcpmem, NULL);
5214 
5215 		root_mem_cgroup = memcg;
5216 		return &memcg->css;
5217 	}
5218 
5219 	/* The following stuff does not apply to the root */
5220 	error = memcg_online_kmem(memcg);
5221 	if (error)
5222 		goto fail;
5223 
5224 	if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5225 		static_branch_inc(&memcg_sockets_enabled_key);
5226 
5227 	return &memcg->css;
5228 fail:
5229 	mem_cgroup_id_remove(memcg);
5230 	mem_cgroup_free(memcg);
5231 	return ERR_PTR(error);
5232 }
5233 
5234 static int mem_cgroup_css_online(struct cgroup_subsys_state *css)
5235 {
5236 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5237 
5238 	/*
5239 	 * A memcg must be visible for expand_shrinker_info()
5240 	 * by the time the maps are allocated. So, we allocate maps
5241 	 * here, when for_each_mem_cgroup() can't skip it.
5242 	 */
5243 	if (alloc_shrinker_info(memcg)) {
5244 		mem_cgroup_id_remove(memcg);
5245 		return -ENOMEM;
5246 	}
5247 
5248 	/* Online state pins memcg ID, memcg ID pins CSS */
5249 	refcount_set(&memcg->id.ref, 1);
5250 	css_get(css);
5251 
5252 	if (unlikely(mem_cgroup_is_root(memcg)))
5253 		queue_delayed_work(system_unbound_wq, &stats_flush_dwork,
5254 				   2UL*HZ);
5255 	return 0;
5256 }
5257 
5258 static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
5259 {
5260 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5261 	struct mem_cgroup_event *event, *tmp;
5262 
5263 	/*
5264 	 * Unregister events and notify userspace.
5265 	 * Notify userspace about cgroup removing only after rmdir of cgroup
5266 	 * directory to avoid race between userspace and kernelspace.
5267 	 */
5268 	spin_lock_irq(&memcg->event_list_lock);
5269 	list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
5270 		list_del_init(&event->list);
5271 		schedule_work(&event->remove);
5272 	}
5273 	spin_unlock_irq(&memcg->event_list_lock);
5274 
5275 	page_counter_set_min(&memcg->memory, 0);
5276 	page_counter_set_low(&memcg->memory, 0);
5277 
5278 	memcg_offline_kmem(memcg);
5279 	reparent_shrinker_deferred(memcg);
5280 	wb_memcg_offline(memcg);
5281 
5282 	drain_all_stock(memcg);
5283 
5284 	mem_cgroup_id_put(memcg);
5285 }
5286 
5287 static void mem_cgroup_css_released(struct cgroup_subsys_state *css)
5288 {
5289 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5290 
5291 	invalidate_reclaim_iterators(memcg);
5292 }
5293 
5294 static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
5295 {
5296 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5297 	int __maybe_unused i;
5298 
5299 #ifdef CONFIG_CGROUP_WRITEBACK
5300 	for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5301 		wb_wait_for_completion(&memcg->cgwb_frn[i].done);
5302 #endif
5303 	if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5304 		static_branch_dec(&memcg_sockets_enabled_key);
5305 
5306 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_active)
5307 		static_branch_dec(&memcg_sockets_enabled_key);
5308 
5309 	vmpressure_cleanup(&memcg->vmpressure);
5310 	cancel_work_sync(&memcg->high_work);
5311 	mem_cgroup_remove_from_trees(memcg);
5312 	free_shrinker_info(memcg);
5313 
5314 	/* Need to offline kmem if online_css() fails */
5315 	memcg_offline_kmem(memcg);
5316 	mem_cgroup_free(memcg);
5317 }
5318 
5319 /**
5320  * mem_cgroup_css_reset - reset the states of a mem_cgroup
5321  * @css: the target css
5322  *
5323  * Reset the states of the mem_cgroup associated with @css.  This is
5324  * invoked when the userland requests disabling on the default hierarchy
5325  * but the memcg is pinned through dependency.  The memcg should stop
5326  * applying policies and should revert to the vanilla state as it may be
5327  * made visible again.
5328  *
5329  * The current implementation only resets the essential configurations.
5330  * This needs to be expanded to cover all the visible parts.
5331  */
5332 static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5333 {
5334 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5335 
5336 	page_counter_set_max(&memcg->memory, PAGE_COUNTER_MAX);
5337 	page_counter_set_max(&memcg->swap, PAGE_COUNTER_MAX);
5338 	page_counter_set_max(&memcg->kmem, PAGE_COUNTER_MAX);
5339 	page_counter_set_max(&memcg->tcpmem, PAGE_COUNTER_MAX);
5340 	page_counter_set_min(&memcg->memory, 0);
5341 	page_counter_set_low(&memcg->memory, 0);
5342 	page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5343 	memcg->soft_limit = PAGE_COUNTER_MAX;
5344 	page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5345 	memcg_wb_domain_size_changed(memcg);
5346 }
5347 
5348 static void mem_cgroup_css_rstat_flush(struct cgroup_subsys_state *css, int cpu)
5349 {
5350 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5351 	struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5352 	struct memcg_vmstats_percpu *statc;
5353 	long delta, v;
5354 	int i, nid;
5355 
5356 	statc = per_cpu_ptr(memcg->vmstats_percpu, cpu);
5357 
5358 	for (i = 0; i < MEMCG_NR_STAT; i++) {
5359 		/*
5360 		 * Collect the aggregated propagation counts of groups
5361 		 * below us. We're in a per-cpu loop here and this is
5362 		 * a global counter, so the first cycle will get them.
5363 		 */
5364 		delta = memcg->vmstats.state_pending[i];
5365 		if (delta)
5366 			memcg->vmstats.state_pending[i] = 0;
5367 
5368 		/* Add CPU changes on this level since the last flush */
5369 		v = READ_ONCE(statc->state[i]);
5370 		if (v != statc->state_prev[i]) {
5371 			delta += v - statc->state_prev[i];
5372 			statc->state_prev[i] = v;
5373 		}
5374 
5375 		if (!delta)
5376 			continue;
5377 
5378 		/* Aggregate counts on this level and propagate upwards */
5379 		memcg->vmstats.state[i] += delta;
5380 		if (parent)
5381 			parent->vmstats.state_pending[i] += delta;
5382 	}
5383 
5384 	for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
5385 		delta = memcg->vmstats.events_pending[i];
5386 		if (delta)
5387 			memcg->vmstats.events_pending[i] = 0;
5388 
5389 		v = READ_ONCE(statc->events[i]);
5390 		if (v != statc->events_prev[i]) {
5391 			delta += v - statc->events_prev[i];
5392 			statc->events_prev[i] = v;
5393 		}
5394 
5395 		if (!delta)
5396 			continue;
5397 
5398 		memcg->vmstats.events[i] += delta;
5399 		if (parent)
5400 			parent->vmstats.events_pending[i] += delta;
5401 	}
5402 
5403 	for_each_node_state(nid, N_MEMORY) {
5404 		struct mem_cgroup_per_node *pn = memcg->nodeinfo[nid];
5405 		struct mem_cgroup_per_node *ppn = NULL;
5406 		struct lruvec_stats_percpu *lstatc;
5407 
5408 		if (parent)
5409 			ppn = parent->nodeinfo[nid];
5410 
5411 		lstatc = per_cpu_ptr(pn->lruvec_stats_percpu, cpu);
5412 
5413 		for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
5414 			delta = pn->lruvec_stats.state_pending[i];
5415 			if (delta)
5416 				pn->lruvec_stats.state_pending[i] = 0;
5417 
5418 			v = READ_ONCE(lstatc->state[i]);
5419 			if (v != lstatc->state_prev[i]) {
5420 				delta += v - lstatc->state_prev[i];
5421 				lstatc->state_prev[i] = v;
5422 			}
5423 
5424 			if (!delta)
5425 				continue;
5426 
5427 			pn->lruvec_stats.state[i] += delta;
5428 			if (ppn)
5429 				ppn->lruvec_stats.state_pending[i] += delta;
5430 		}
5431 	}
5432 }
5433 
5434 #ifdef CONFIG_MMU
5435 /* Handlers for move charge at task migration. */
5436 static int mem_cgroup_do_precharge(unsigned long count)
5437 {
5438 	int ret;
5439 
5440 	/* Try a single bulk charge without reclaim first, kswapd may wake */
5441 	ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_DIRECT_RECLAIM, count);
5442 	if (!ret) {
5443 		mc.precharge += count;
5444 		return ret;
5445 	}
5446 
5447 	/* Try charges one by one with reclaim, but do not retry */
5448 	while (count--) {
5449 		ret = try_charge(mc.to, GFP_KERNEL | __GFP_NORETRY, 1);
5450 		if (ret)
5451 			return ret;
5452 		mc.precharge++;
5453 		cond_resched();
5454 	}
5455 	return 0;
5456 }
5457 
5458 union mc_target {
5459 	struct page	*page;
5460 	swp_entry_t	ent;
5461 };
5462 
5463 enum mc_target_type {
5464 	MC_TARGET_NONE = 0,
5465 	MC_TARGET_PAGE,
5466 	MC_TARGET_SWAP,
5467 	MC_TARGET_DEVICE,
5468 };
5469 
5470 static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5471 						unsigned long addr, pte_t ptent)
5472 {
5473 	struct page *page = vm_normal_page(vma, addr, ptent);
5474 
5475 	if (!page || !page_mapped(page))
5476 		return NULL;
5477 	if (PageAnon(page)) {
5478 		if (!(mc.flags & MOVE_ANON))
5479 			return NULL;
5480 	} else {
5481 		if (!(mc.flags & MOVE_FILE))
5482 			return NULL;
5483 	}
5484 	if (!get_page_unless_zero(page))
5485 		return NULL;
5486 
5487 	return page;
5488 }
5489 
5490 #if defined(CONFIG_SWAP) || defined(CONFIG_DEVICE_PRIVATE)
5491 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5492 			pte_t ptent, swp_entry_t *entry)
5493 {
5494 	struct page *page = NULL;
5495 	swp_entry_t ent = pte_to_swp_entry(ptent);
5496 
5497 	if (!(mc.flags & MOVE_ANON))
5498 		return NULL;
5499 
5500 	/*
5501 	 * Handle MEMORY_DEVICE_PRIVATE which are ZONE_DEVICE page belonging to
5502 	 * a device and because they are not accessible by CPU they are store
5503 	 * as special swap entry in the CPU page table.
5504 	 */
5505 	if (is_device_private_entry(ent)) {
5506 		page = pfn_swap_entry_to_page(ent);
5507 		/*
5508 		 * MEMORY_DEVICE_PRIVATE means ZONE_DEVICE page and which have
5509 		 * a refcount of 1 when free (unlike normal page)
5510 		 */
5511 		if (!page_ref_add_unless(page, 1, 1))
5512 			return NULL;
5513 		return page;
5514 	}
5515 
5516 	if (non_swap_entry(ent))
5517 		return NULL;
5518 
5519 	/*
5520 	 * Because lookup_swap_cache() updates some statistics counter,
5521 	 * we call find_get_page() with swapper_space directly.
5522 	 */
5523 	page = find_get_page(swap_address_space(ent), swp_offset(ent));
5524 	entry->val = ent.val;
5525 
5526 	return page;
5527 }
5528 #else
5529 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5530 			pte_t ptent, swp_entry_t *entry)
5531 {
5532 	return NULL;
5533 }
5534 #endif
5535 
5536 static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5537 			unsigned long addr, pte_t ptent)
5538 {
5539 	if (!vma->vm_file) /* anonymous vma */
5540 		return NULL;
5541 	if (!(mc.flags & MOVE_FILE))
5542 		return NULL;
5543 
5544 	/* page is moved even if it's not RSS of this task(page-faulted). */
5545 	/* shmem/tmpfs may report page out on swap: account for that too. */
5546 	return find_get_incore_page(vma->vm_file->f_mapping,
5547 			linear_page_index(vma, addr));
5548 }
5549 
5550 /**
5551  * mem_cgroup_move_account - move account of the page
5552  * @page: the page
5553  * @compound: charge the page as compound or small page
5554  * @from: mem_cgroup which the page is moved from.
5555  * @to:	mem_cgroup which the page is moved to. @from != @to.
5556  *
5557  * The caller must make sure the page is not on LRU (isolate_page() is useful.)
5558  *
5559  * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
5560  * from old cgroup.
5561  */
5562 static int mem_cgroup_move_account(struct page *page,
5563 				   bool compound,
5564 				   struct mem_cgroup *from,
5565 				   struct mem_cgroup *to)
5566 {
5567 	struct folio *folio = page_folio(page);
5568 	struct lruvec *from_vec, *to_vec;
5569 	struct pglist_data *pgdat;
5570 	unsigned int nr_pages = compound ? folio_nr_pages(folio) : 1;
5571 	int nid, ret;
5572 
5573 	VM_BUG_ON(from == to);
5574 	VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
5575 	VM_BUG_ON(compound && !folio_test_large(folio));
5576 
5577 	/*
5578 	 * Prevent mem_cgroup_migrate() from looking at
5579 	 * page's memory cgroup of its source page while we change it.
5580 	 */
5581 	ret = -EBUSY;
5582 	if (!folio_trylock(folio))
5583 		goto out;
5584 
5585 	ret = -EINVAL;
5586 	if (folio_memcg(folio) != from)
5587 		goto out_unlock;
5588 
5589 	pgdat = folio_pgdat(folio);
5590 	from_vec = mem_cgroup_lruvec(from, pgdat);
5591 	to_vec = mem_cgroup_lruvec(to, pgdat);
5592 
5593 	folio_memcg_lock(folio);
5594 
5595 	if (folio_test_anon(folio)) {
5596 		if (folio_mapped(folio)) {
5597 			__mod_lruvec_state(from_vec, NR_ANON_MAPPED, -nr_pages);
5598 			__mod_lruvec_state(to_vec, NR_ANON_MAPPED, nr_pages);
5599 			if (folio_test_transhuge(folio)) {
5600 				__mod_lruvec_state(from_vec, NR_ANON_THPS,
5601 						   -nr_pages);
5602 				__mod_lruvec_state(to_vec, NR_ANON_THPS,
5603 						   nr_pages);
5604 			}
5605 		}
5606 	} else {
5607 		__mod_lruvec_state(from_vec, NR_FILE_PAGES, -nr_pages);
5608 		__mod_lruvec_state(to_vec, NR_FILE_PAGES, nr_pages);
5609 
5610 		if (folio_test_swapbacked(folio)) {
5611 			__mod_lruvec_state(from_vec, NR_SHMEM, -nr_pages);
5612 			__mod_lruvec_state(to_vec, NR_SHMEM, nr_pages);
5613 		}
5614 
5615 		if (folio_mapped(folio)) {
5616 			__mod_lruvec_state(from_vec, NR_FILE_MAPPED, -nr_pages);
5617 			__mod_lruvec_state(to_vec, NR_FILE_MAPPED, nr_pages);
5618 		}
5619 
5620 		if (folio_test_dirty(folio)) {
5621 			struct address_space *mapping = folio_mapping(folio);
5622 
5623 			if (mapping_can_writeback(mapping)) {
5624 				__mod_lruvec_state(from_vec, NR_FILE_DIRTY,
5625 						   -nr_pages);
5626 				__mod_lruvec_state(to_vec, NR_FILE_DIRTY,
5627 						   nr_pages);
5628 			}
5629 		}
5630 	}
5631 
5632 	if (folio_test_writeback(folio)) {
5633 		__mod_lruvec_state(from_vec, NR_WRITEBACK, -nr_pages);
5634 		__mod_lruvec_state(to_vec, NR_WRITEBACK, nr_pages);
5635 	}
5636 
5637 	/*
5638 	 * All state has been migrated, let's switch to the new memcg.
5639 	 *
5640 	 * It is safe to change page's memcg here because the page
5641 	 * is referenced, charged, isolated, and locked: we can't race
5642 	 * with (un)charging, migration, LRU putback, or anything else
5643 	 * that would rely on a stable page's memory cgroup.
5644 	 *
5645 	 * Note that lock_page_memcg is a memcg lock, not a page lock,
5646 	 * to save space. As soon as we switch page's memory cgroup to a
5647 	 * new memcg that isn't locked, the above state can change
5648 	 * concurrently again. Make sure we're truly done with it.
5649 	 */
5650 	smp_mb();
5651 
5652 	css_get(&to->css);
5653 	css_put(&from->css);
5654 
5655 	folio->memcg_data = (unsigned long)to;
5656 
5657 	__folio_memcg_unlock(from);
5658 
5659 	ret = 0;
5660 	nid = folio_nid(folio);
5661 
5662 	local_irq_disable();
5663 	mem_cgroup_charge_statistics(to, nr_pages);
5664 	memcg_check_events(to, nid);
5665 	mem_cgroup_charge_statistics(from, -nr_pages);
5666 	memcg_check_events(from, nid);
5667 	local_irq_enable();
5668 out_unlock:
5669 	folio_unlock(folio);
5670 out:
5671 	return ret;
5672 }
5673 
5674 /**
5675  * get_mctgt_type - get target type of moving charge
5676  * @vma: the vma the pte to be checked belongs
5677  * @addr: the address corresponding to the pte to be checked
5678  * @ptent: the pte to be checked
5679  * @target: the pointer the target page or swap ent will be stored(can be NULL)
5680  *
5681  * Returns
5682  *   0(MC_TARGET_NONE): if the pte is not a target for move charge.
5683  *   1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5684  *     move charge. if @target is not NULL, the page is stored in target->page
5685  *     with extra refcnt got(Callers should handle it).
5686  *   2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5687  *     target for charge migration. if @target is not NULL, the entry is stored
5688  *     in target->ent.
5689  *   3(MC_TARGET_DEVICE): like MC_TARGET_PAGE  but page is MEMORY_DEVICE_PRIVATE
5690  *     (so ZONE_DEVICE page and thus not on the lru).
5691  *     For now we such page is charge like a regular page would be as for all
5692  *     intent and purposes it is just special memory taking the place of a
5693  *     regular page.
5694  *
5695  *     See Documentations/vm/hmm.txt and include/linux/hmm.h
5696  *
5697  * Called with pte lock held.
5698  */
5699 
5700 static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
5701 		unsigned long addr, pte_t ptent, union mc_target *target)
5702 {
5703 	struct page *page = NULL;
5704 	enum mc_target_type ret = MC_TARGET_NONE;
5705 	swp_entry_t ent = { .val = 0 };
5706 
5707 	if (pte_present(ptent))
5708 		page = mc_handle_present_pte(vma, addr, ptent);
5709 	else if (is_swap_pte(ptent))
5710 		page = mc_handle_swap_pte(vma, ptent, &ent);
5711 	else if (pte_none(ptent))
5712 		page = mc_handle_file_pte(vma, addr, ptent);
5713 
5714 	if (!page && !ent.val)
5715 		return ret;
5716 	if (page) {
5717 		/*
5718 		 * Do only loose check w/o serialization.
5719 		 * mem_cgroup_move_account() checks the page is valid or
5720 		 * not under LRU exclusion.
5721 		 */
5722 		if (page_memcg(page) == mc.from) {
5723 			ret = MC_TARGET_PAGE;
5724 			if (is_device_private_page(page))
5725 				ret = MC_TARGET_DEVICE;
5726 			if (target)
5727 				target->page = page;
5728 		}
5729 		if (!ret || !target)
5730 			put_page(page);
5731 	}
5732 	/*
5733 	 * There is a swap entry and a page doesn't exist or isn't charged.
5734 	 * But we cannot move a tail-page in a THP.
5735 	 */
5736 	if (ent.val && !ret && (!page || !PageTransCompound(page)) &&
5737 	    mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
5738 		ret = MC_TARGET_SWAP;
5739 		if (target)
5740 			target->ent = ent;
5741 	}
5742 	return ret;
5743 }
5744 
5745 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5746 /*
5747  * We don't consider PMD mapped swapping or file mapped pages because THP does
5748  * not support them for now.
5749  * Caller should make sure that pmd_trans_huge(pmd) is true.
5750  */
5751 static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5752 		unsigned long addr, pmd_t pmd, union mc_target *target)
5753 {
5754 	struct page *page = NULL;
5755 	enum mc_target_type ret = MC_TARGET_NONE;
5756 
5757 	if (unlikely(is_swap_pmd(pmd))) {
5758 		VM_BUG_ON(thp_migration_supported() &&
5759 				  !is_pmd_migration_entry(pmd));
5760 		return ret;
5761 	}
5762 	page = pmd_page(pmd);
5763 	VM_BUG_ON_PAGE(!page || !PageHead(page), page);
5764 	if (!(mc.flags & MOVE_ANON))
5765 		return ret;
5766 	if (page_memcg(page) == mc.from) {
5767 		ret = MC_TARGET_PAGE;
5768 		if (target) {
5769 			get_page(page);
5770 			target->page = page;
5771 		}
5772 	}
5773 	return ret;
5774 }
5775 #else
5776 static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5777 		unsigned long addr, pmd_t pmd, union mc_target *target)
5778 {
5779 	return MC_TARGET_NONE;
5780 }
5781 #endif
5782 
5783 static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5784 					unsigned long addr, unsigned long end,
5785 					struct mm_walk *walk)
5786 {
5787 	struct vm_area_struct *vma = walk->vma;
5788 	pte_t *pte;
5789 	spinlock_t *ptl;
5790 
5791 	ptl = pmd_trans_huge_lock(pmd, vma);
5792 	if (ptl) {
5793 		/*
5794 		 * Note their can not be MC_TARGET_DEVICE for now as we do not
5795 		 * support transparent huge page with MEMORY_DEVICE_PRIVATE but
5796 		 * this might change.
5797 		 */
5798 		if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5799 			mc.precharge += HPAGE_PMD_NR;
5800 		spin_unlock(ptl);
5801 		return 0;
5802 	}
5803 
5804 	if (pmd_trans_unstable(pmd))
5805 		return 0;
5806 	pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5807 	for (; addr != end; pte++, addr += PAGE_SIZE)
5808 		if (get_mctgt_type(vma, addr, *pte, NULL))
5809 			mc.precharge++;	/* increment precharge temporarily */
5810 	pte_unmap_unlock(pte - 1, ptl);
5811 	cond_resched();
5812 
5813 	return 0;
5814 }
5815 
5816 static const struct mm_walk_ops precharge_walk_ops = {
5817 	.pmd_entry	= mem_cgroup_count_precharge_pte_range,
5818 };
5819 
5820 static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5821 {
5822 	unsigned long precharge;
5823 
5824 	mmap_read_lock(mm);
5825 	walk_page_range(mm, 0, mm->highest_vm_end, &precharge_walk_ops, NULL);
5826 	mmap_read_unlock(mm);
5827 
5828 	precharge = mc.precharge;
5829 	mc.precharge = 0;
5830 
5831 	return precharge;
5832 }
5833 
5834 static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5835 {
5836 	unsigned long precharge = mem_cgroup_count_precharge(mm);
5837 
5838 	VM_BUG_ON(mc.moving_task);
5839 	mc.moving_task = current;
5840 	return mem_cgroup_do_precharge(precharge);
5841 }
5842 
5843 /* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5844 static void __mem_cgroup_clear_mc(void)
5845 {
5846 	struct mem_cgroup *from = mc.from;
5847 	struct mem_cgroup *to = mc.to;
5848 
5849 	/* we must uncharge all the leftover precharges from mc.to */
5850 	if (mc.precharge) {
5851 		cancel_charge(mc.to, mc.precharge);
5852 		mc.precharge = 0;
5853 	}
5854 	/*
5855 	 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5856 	 * we must uncharge here.
5857 	 */
5858 	if (mc.moved_charge) {
5859 		cancel_charge(mc.from, mc.moved_charge);
5860 		mc.moved_charge = 0;
5861 	}
5862 	/* we must fixup refcnts and charges */
5863 	if (mc.moved_swap) {
5864 		/* uncharge swap account from the old cgroup */
5865 		if (!mem_cgroup_is_root(mc.from))
5866 			page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
5867 
5868 		mem_cgroup_id_put_many(mc.from, mc.moved_swap);
5869 
5870 		/*
5871 		 * we charged both to->memory and to->memsw, so we
5872 		 * should uncharge to->memory.
5873 		 */
5874 		if (!mem_cgroup_is_root(mc.to))
5875 			page_counter_uncharge(&mc.to->memory, mc.moved_swap);
5876 
5877 		mc.moved_swap = 0;
5878 	}
5879 	memcg_oom_recover(from);
5880 	memcg_oom_recover(to);
5881 	wake_up_all(&mc.waitq);
5882 }
5883 
5884 static void mem_cgroup_clear_mc(void)
5885 {
5886 	struct mm_struct *mm = mc.mm;
5887 
5888 	/*
5889 	 * we must clear moving_task before waking up waiters at the end of
5890 	 * task migration.
5891 	 */
5892 	mc.moving_task = NULL;
5893 	__mem_cgroup_clear_mc();
5894 	spin_lock(&mc.lock);
5895 	mc.from = NULL;
5896 	mc.to = NULL;
5897 	mc.mm = NULL;
5898 	spin_unlock(&mc.lock);
5899 
5900 	mmput(mm);
5901 }
5902 
5903 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
5904 {
5905 	struct cgroup_subsys_state *css;
5906 	struct mem_cgroup *memcg = NULL; /* unneeded init to make gcc happy */
5907 	struct mem_cgroup *from;
5908 	struct task_struct *leader, *p;
5909 	struct mm_struct *mm;
5910 	unsigned long move_flags;
5911 	int ret = 0;
5912 
5913 	/* charge immigration isn't supported on the default hierarchy */
5914 	if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
5915 		return 0;
5916 
5917 	/*
5918 	 * Multi-process migrations only happen on the default hierarchy
5919 	 * where charge immigration is not used.  Perform charge
5920 	 * immigration if @tset contains a leader and whine if there are
5921 	 * multiple.
5922 	 */
5923 	p = NULL;
5924 	cgroup_taskset_for_each_leader(leader, css, tset) {
5925 		WARN_ON_ONCE(p);
5926 		p = leader;
5927 		memcg = mem_cgroup_from_css(css);
5928 	}
5929 	if (!p)
5930 		return 0;
5931 
5932 	/*
5933 	 * We are now committed to this value whatever it is. Changes in this
5934 	 * tunable will only affect upcoming migrations, not the current one.
5935 	 * So we need to save it, and keep it going.
5936 	 */
5937 	move_flags = READ_ONCE(memcg->move_charge_at_immigrate);
5938 	if (!move_flags)
5939 		return 0;
5940 
5941 	from = mem_cgroup_from_task(p);
5942 
5943 	VM_BUG_ON(from == memcg);
5944 
5945 	mm = get_task_mm(p);
5946 	if (!mm)
5947 		return 0;
5948 	/* We move charges only when we move a owner of the mm */
5949 	if (mm->owner == p) {
5950 		VM_BUG_ON(mc.from);
5951 		VM_BUG_ON(mc.to);
5952 		VM_BUG_ON(mc.precharge);
5953 		VM_BUG_ON(mc.moved_charge);
5954 		VM_BUG_ON(mc.moved_swap);
5955 
5956 		spin_lock(&mc.lock);
5957 		mc.mm = mm;
5958 		mc.from = from;
5959 		mc.to = memcg;
5960 		mc.flags = move_flags;
5961 		spin_unlock(&mc.lock);
5962 		/* We set mc.moving_task later */
5963 
5964 		ret = mem_cgroup_precharge_mc(mm);
5965 		if (ret)
5966 			mem_cgroup_clear_mc();
5967 	} else {
5968 		mmput(mm);
5969 	}
5970 	return ret;
5971 }
5972 
5973 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
5974 {
5975 	if (mc.to)
5976 		mem_cgroup_clear_mc();
5977 }
5978 
5979 static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5980 				unsigned long addr, unsigned long end,
5981 				struct mm_walk *walk)
5982 {
5983 	int ret = 0;
5984 	struct vm_area_struct *vma = walk->vma;
5985 	pte_t *pte;
5986 	spinlock_t *ptl;
5987 	enum mc_target_type target_type;
5988 	union mc_target target;
5989 	struct page *page;
5990 
5991 	ptl = pmd_trans_huge_lock(pmd, vma);
5992 	if (ptl) {
5993 		if (mc.precharge < HPAGE_PMD_NR) {
5994 			spin_unlock(ptl);
5995 			return 0;
5996 		}
5997 		target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5998 		if (target_type == MC_TARGET_PAGE) {
5999 			page = target.page;
6000 			if (!isolate_lru_page(page)) {
6001 				if (!mem_cgroup_move_account(page, true,
6002 							     mc.from, mc.to)) {
6003 					mc.precharge -= HPAGE_PMD_NR;
6004 					mc.moved_charge += HPAGE_PMD_NR;
6005 				}
6006 				putback_lru_page(page);
6007 			}
6008 			put_page(page);
6009 		} else if (target_type == MC_TARGET_DEVICE) {
6010 			page = target.page;
6011 			if (!mem_cgroup_move_account(page, true,
6012 						     mc.from, mc.to)) {
6013 				mc.precharge -= HPAGE_PMD_NR;
6014 				mc.moved_charge += HPAGE_PMD_NR;
6015 			}
6016 			put_page(page);
6017 		}
6018 		spin_unlock(ptl);
6019 		return 0;
6020 	}
6021 
6022 	if (pmd_trans_unstable(pmd))
6023 		return 0;
6024 retry:
6025 	pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6026 	for (; addr != end; addr += PAGE_SIZE) {
6027 		pte_t ptent = *(pte++);
6028 		bool device = false;
6029 		swp_entry_t ent;
6030 
6031 		if (!mc.precharge)
6032 			break;
6033 
6034 		switch (get_mctgt_type(vma, addr, ptent, &target)) {
6035 		case MC_TARGET_DEVICE:
6036 			device = true;
6037 			fallthrough;
6038 		case MC_TARGET_PAGE:
6039 			page = target.page;
6040 			/*
6041 			 * We can have a part of the split pmd here. Moving it
6042 			 * can be done but it would be too convoluted so simply
6043 			 * ignore such a partial THP and keep it in original
6044 			 * memcg. There should be somebody mapping the head.
6045 			 */
6046 			if (PageTransCompound(page))
6047 				goto put;
6048 			if (!device && isolate_lru_page(page))
6049 				goto put;
6050 			if (!mem_cgroup_move_account(page, false,
6051 						mc.from, mc.to)) {
6052 				mc.precharge--;
6053 				/* we uncharge from mc.from later. */
6054 				mc.moved_charge++;
6055 			}
6056 			if (!device)
6057 				putback_lru_page(page);
6058 put:			/* get_mctgt_type() gets the page */
6059 			put_page(page);
6060 			break;
6061 		case MC_TARGET_SWAP:
6062 			ent = target.ent;
6063 			if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
6064 				mc.precharge--;
6065 				mem_cgroup_id_get_many(mc.to, 1);
6066 				/* we fixup other refcnts and charges later. */
6067 				mc.moved_swap++;
6068 			}
6069 			break;
6070 		default:
6071 			break;
6072 		}
6073 	}
6074 	pte_unmap_unlock(pte - 1, ptl);
6075 	cond_resched();
6076 
6077 	if (addr != end) {
6078 		/*
6079 		 * We have consumed all precharges we got in can_attach().
6080 		 * We try charge one by one, but don't do any additional
6081 		 * charges to mc.to if we have failed in charge once in attach()
6082 		 * phase.
6083 		 */
6084 		ret = mem_cgroup_do_precharge(1);
6085 		if (!ret)
6086 			goto retry;
6087 	}
6088 
6089 	return ret;
6090 }
6091 
6092 static const struct mm_walk_ops charge_walk_ops = {
6093 	.pmd_entry	= mem_cgroup_move_charge_pte_range,
6094 };
6095 
6096 static void mem_cgroup_move_charge(void)
6097 {
6098 	lru_add_drain_all();
6099 	/*
6100 	 * Signal lock_page_memcg() to take the memcg's move_lock
6101 	 * while we're moving its pages to another memcg. Then wait
6102 	 * for already started RCU-only updates to finish.
6103 	 */
6104 	atomic_inc(&mc.from->moving_account);
6105 	synchronize_rcu();
6106 retry:
6107 	if (unlikely(!mmap_read_trylock(mc.mm))) {
6108 		/*
6109 		 * Someone who are holding the mmap_lock might be waiting in
6110 		 * waitq. So we cancel all extra charges, wake up all waiters,
6111 		 * and retry. Because we cancel precharges, we might not be able
6112 		 * to move enough charges, but moving charge is a best-effort
6113 		 * feature anyway, so it wouldn't be a big problem.
6114 		 */
6115 		__mem_cgroup_clear_mc();
6116 		cond_resched();
6117 		goto retry;
6118 	}
6119 	/*
6120 	 * When we have consumed all precharges and failed in doing
6121 	 * additional charge, the page walk just aborts.
6122 	 */
6123 	walk_page_range(mc.mm, 0, mc.mm->highest_vm_end, &charge_walk_ops,
6124 			NULL);
6125 
6126 	mmap_read_unlock(mc.mm);
6127 	atomic_dec(&mc.from->moving_account);
6128 }
6129 
6130 static void mem_cgroup_move_task(void)
6131 {
6132 	if (mc.to) {
6133 		mem_cgroup_move_charge();
6134 		mem_cgroup_clear_mc();
6135 	}
6136 }
6137 #else	/* !CONFIG_MMU */
6138 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
6139 {
6140 	return 0;
6141 }
6142 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
6143 {
6144 }
6145 static void mem_cgroup_move_task(void)
6146 {
6147 }
6148 #endif
6149 
6150 static int seq_puts_memcg_tunable(struct seq_file *m, unsigned long value)
6151 {
6152 	if (value == PAGE_COUNTER_MAX)
6153 		seq_puts(m, "max\n");
6154 	else
6155 		seq_printf(m, "%llu\n", (u64)value * PAGE_SIZE);
6156 
6157 	return 0;
6158 }
6159 
6160 static u64 memory_current_read(struct cgroup_subsys_state *css,
6161 			       struct cftype *cft)
6162 {
6163 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6164 
6165 	return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE;
6166 }
6167 
6168 static int memory_min_show(struct seq_file *m, void *v)
6169 {
6170 	return seq_puts_memcg_tunable(m,
6171 		READ_ONCE(mem_cgroup_from_seq(m)->memory.min));
6172 }
6173 
6174 static ssize_t memory_min_write(struct kernfs_open_file *of,
6175 				char *buf, size_t nbytes, loff_t off)
6176 {
6177 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6178 	unsigned long min;
6179 	int err;
6180 
6181 	buf = strstrip(buf);
6182 	err = page_counter_memparse(buf, "max", &min);
6183 	if (err)
6184 		return err;
6185 
6186 	page_counter_set_min(&memcg->memory, min);
6187 
6188 	return nbytes;
6189 }
6190 
6191 static int memory_low_show(struct seq_file *m, void *v)
6192 {
6193 	return seq_puts_memcg_tunable(m,
6194 		READ_ONCE(mem_cgroup_from_seq(m)->memory.low));
6195 }
6196 
6197 static ssize_t memory_low_write(struct kernfs_open_file *of,
6198 				char *buf, size_t nbytes, loff_t off)
6199 {
6200 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6201 	unsigned long low;
6202 	int err;
6203 
6204 	buf = strstrip(buf);
6205 	err = page_counter_memparse(buf, "max", &low);
6206 	if (err)
6207 		return err;
6208 
6209 	page_counter_set_low(&memcg->memory, low);
6210 
6211 	return nbytes;
6212 }
6213 
6214 static int memory_high_show(struct seq_file *m, void *v)
6215 {
6216 	return seq_puts_memcg_tunable(m,
6217 		READ_ONCE(mem_cgroup_from_seq(m)->memory.high));
6218 }
6219 
6220 static ssize_t memory_high_write(struct kernfs_open_file *of,
6221 				 char *buf, size_t nbytes, loff_t off)
6222 {
6223 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6224 	unsigned int nr_retries = MAX_RECLAIM_RETRIES;
6225 	bool drained = false;
6226 	unsigned long high;
6227 	int err;
6228 
6229 	buf = strstrip(buf);
6230 	err = page_counter_memparse(buf, "max", &high);
6231 	if (err)
6232 		return err;
6233 
6234 	page_counter_set_high(&memcg->memory, high);
6235 
6236 	for (;;) {
6237 		unsigned long nr_pages = page_counter_read(&memcg->memory);
6238 		unsigned long reclaimed;
6239 
6240 		if (nr_pages <= high)
6241 			break;
6242 
6243 		if (signal_pending(current))
6244 			break;
6245 
6246 		if (!drained) {
6247 			drain_all_stock(memcg);
6248 			drained = true;
6249 			continue;
6250 		}
6251 
6252 		reclaimed = try_to_free_mem_cgroup_pages(memcg, nr_pages - high,
6253 							 GFP_KERNEL, true);
6254 
6255 		if (!reclaimed && !nr_retries--)
6256 			break;
6257 	}
6258 
6259 	memcg_wb_domain_size_changed(memcg);
6260 	return nbytes;
6261 }
6262 
6263 static int memory_max_show(struct seq_file *m, void *v)
6264 {
6265 	return seq_puts_memcg_tunable(m,
6266 		READ_ONCE(mem_cgroup_from_seq(m)->memory.max));
6267 }
6268 
6269 static ssize_t memory_max_write(struct kernfs_open_file *of,
6270 				char *buf, size_t nbytes, loff_t off)
6271 {
6272 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6273 	unsigned int nr_reclaims = MAX_RECLAIM_RETRIES;
6274 	bool drained = false;
6275 	unsigned long max;
6276 	int err;
6277 
6278 	buf = strstrip(buf);
6279 	err = page_counter_memparse(buf, "max", &max);
6280 	if (err)
6281 		return err;
6282 
6283 	xchg(&memcg->memory.max, max);
6284 
6285 	for (;;) {
6286 		unsigned long nr_pages = page_counter_read(&memcg->memory);
6287 
6288 		if (nr_pages <= max)
6289 			break;
6290 
6291 		if (signal_pending(current))
6292 			break;
6293 
6294 		if (!drained) {
6295 			drain_all_stock(memcg);
6296 			drained = true;
6297 			continue;
6298 		}
6299 
6300 		if (nr_reclaims) {
6301 			if (!try_to_free_mem_cgroup_pages(memcg, nr_pages - max,
6302 							  GFP_KERNEL, true))
6303 				nr_reclaims--;
6304 			continue;
6305 		}
6306 
6307 		memcg_memory_event(memcg, MEMCG_OOM);
6308 		if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0))
6309 			break;
6310 	}
6311 
6312 	memcg_wb_domain_size_changed(memcg);
6313 	return nbytes;
6314 }
6315 
6316 static void __memory_events_show(struct seq_file *m, atomic_long_t *events)
6317 {
6318 	seq_printf(m, "low %lu\n", atomic_long_read(&events[MEMCG_LOW]));
6319 	seq_printf(m, "high %lu\n", atomic_long_read(&events[MEMCG_HIGH]));
6320 	seq_printf(m, "max %lu\n", atomic_long_read(&events[MEMCG_MAX]));
6321 	seq_printf(m, "oom %lu\n", atomic_long_read(&events[MEMCG_OOM]));
6322 	seq_printf(m, "oom_kill %lu\n",
6323 		   atomic_long_read(&events[MEMCG_OOM_KILL]));
6324 	seq_printf(m, "oom_group_kill %lu\n",
6325 		   atomic_long_read(&events[MEMCG_OOM_GROUP_KILL]));
6326 }
6327 
6328 static int memory_events_show(struct seq_file *m, void *v)
6329 {
6330 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6331 
6332 	__memory_events_show(m, memcg->memory_events);
6333 	return 0;
6334 }
6335 
6336 static int memory_events_local_show(struct seq_file *m, void *v)
6337 {
6338 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6339 
6340 	__memory_events_show(m, memcg->memory_events_local);
6341 	return 0;
6342 }
6343 
6344 static int memory_stat_show(struct seq_file *m, void *v)
6345 {
6346 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6347 	char *buf;
6348 
6349 	buf = memory_stat_format(memcg);
6350 	if (!buf)
6351 		return -ENOMEM;
6352 	seq_puts(m, buf);
6353 	kfree(buf);
6354 	return 0;
6355 }
6356 
6357 #ifdef CONFIG_NUMA
6358 static inline unsigned long lruvec_page_state_output(struct lruvec *lruvec,
6359 						     int item)
6360 {
6361 	return lruvec_page_state(lruvec, item) * memcg_page_state_unit(item);
6362 }
6363 
6364 static int memory_numa_stat_show(struct seq_file *m, void *v)
6365 {
6366 	int i;
6367 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6368 
6369 	mem_cgroup_flush_stats();
6370 
6371 	for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
6372 		int nid;
6373 
6374 		if (memory_stats[i].idx >= NR_VM_NODE_STAT_ITEMS)
6375 			continue;
6376 
6377 		seq_printf(m, "%s", memory_stats[i].name);
6378 		for_each_node_state(nid, N_MEMORY) {
6379 			u64 size;
6380 			struct lruvec *lruvec;
6381 
6382 			lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
6383 			size = lruvec_page_state_output(lruvec,
6384 							memory_stats[i].idx);
6385 			seq_printf(m, " N%d=%llu", nid, size);
6386 		}
6387 		seq_putc(m, '\n');
6388 	}
6389 
6390 	return 0;
6391 }
6392 #endif
6393 
6394 static int memory_oom_group_show(struct seq_file *m, void *v)
6395 {
6396 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6397 
6398 	seq_printf(m, "%d\n", memcg->oom_group);
6399 
6400 	return 0;
6401 }
6402 
6403 static ssize_t memory_oom_group_write(struct kernfs_open_file *of,
6404 				      char *buf, size_t nbytes, loff_t off)
6405 {
6406 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6407 	int ret, oom_group;
6408 
6409 	buf = strstrip(buf);
6410 	if (!buf)
6411 		return -EINVAL;
6412 
6413 	ret = kstrtoint(buf, 0, &oom_group);
6414 	if (ret)
6415 		return ret;
6416 
6417 	if (oom_group != 0 && oom_group != 1)
6418 		return -EINVAL;
6419 
6420 	memcg->oom_group = oom_group;
6421 
6422 	return nbytes;
6423 }
6424 
6425 static struct cftype memory_files[] = {
6426 	{
6427 		.name = "current",
6428 		.flags = CFTYPE_NOT_ON_ROOT,
6429 		.read_u64 = memory_current_read,
6430 	},
6431 	{
6432 		.name = "min",
6433 		.flags = CFTYPE_NOT_ON_ROOT,
6434 		.seq_show = memory_min_show,
6435 		.write = memory_min_write,
6436 	},
6437 	{
6438 		.name = "low",
6439 		.flags = CFTYPE_NOT_ON_ROOT,
6440 		.seq_show = memory_low_show,
6441 		.write = memory_low_write,
6442 	},
6443 	{
6444 		.name = "high",
6445 		.flags = CFTYPE_NOT_ON_ROOT,
6446 		.seq_show = memory_high_show,
6447 		.write = memory_high_write,
6448 	},
6449 	{
6450 		.name = "max",
6451 		.flags = CFTYPE_NOT_ON_ROOT,
6452 		.seq_show = memory_max_show,
6453 		.write = memory_max_write,
6454 	},
6455 	{
6456 		.name = "events",
6457 		.flags = CFTYPE_NOT_ON_ROOT,
6458 		.file_offset = offsetof(struct mem_cgroup, events_file),
6459 		.seq_show = memory_events_show,
6460 	},
6461 	{
6462 		.name = "events.local",
6463 		.flags = CFTYPE_NOT_ON_ROOT,
6464 		.file_offset = offsetof(struct mem_cgroup, events_local_file),
6465 		.seq_show = memory_events_local_show,
6466 	},
6467 	{
6468 		.name = "stat",
6469 		.seq_show = memory_stat_show,
6470 	},
6471 #ifdef CONFIG_NUMA
6472 	{
6473 		.name = "numa_stat",
6474 		.seq_show = memory_numa_stat_show,
6475 	},
6476 #endif
6477 	{
6478 		.name = "oom.group",
6479 		.flags = CFTYPE_NOT_ON_ROOT | CFTYPE_NS_DELEGATABLE,
6480 		.seq_show = memory_oom_group_show,
6481 		.write = memory_oom_group_write,
6482 	},
6483 	{ }	/* terminate */
6484 };
6485 
6486 struct cgroup_subsys memory_cgrp_subsys = {
6487 	.css_alloc = mem_cgroup_css_alloc,
6488 	.css_online = mem_cgroup_css_online,
6489 	.css_offline = mem_cgroup_css_offline,
6490 	.css_released = mem_cgroup_css_released,
6491 	.css_free = mem_cgroup_css_free,
6492 	.css_reset = mem_cgroup_css_reset,
6493 	.css_rstat_flush = mem_cgroup_css_rstat_flush,
6494 	.can_attach = mem_cgroup_can_attach,
6495 	.cancel_attach = mem_cgroup_cancel_attach,
6496 	.post_attach = mem_cgroup_move_task,
6497 	.dfl_cftypes = memory_files,
6498 	.legacy_cftypes = mem_cgroup_legacy_files,
6499 	.early_init = 0,
6500 };
6501 
6502 /*
6503  * This function calculates an individual cgroup's effective
6504  * protection which is derived from its own memory.min/low, its
6505  * parent's and siblings' settings, as well as the actual memory
6506  * distribution in the tree.
6507  *
6508  * The following rules apply to the effective protection values:
6509  *
6510  * 1. At the first level of reclaim, effective protection is equal to
6511  *    the declared protection in memory.min and memory.low.
6512  *
6513  * 2. To enable safe delegation of the protection configuration, at
6514  *    subsequent levels the effective protection is capped to the
6515  *    parent's effective protection.
6516  *
6517  * 3. To make complex and dynamic subtrees easier to configure, the
6518  *    user is allowed to overcommit the declared protection at a given
6519  *    level. If that is the case, the parent's effective protection is
6520  *    distributed to the children in proportion to how much protection
6521  *    they have declared and how much of it they are utilizing.
6522  *
6523  *    This makes distribution proportional, but also work-conserving:
6524  *    if one cgroup claims much more protection than it uses memory,
6525  *    the unused remainder is available to its siblings.
6526  *
6527  * 4. Conversely, when the declared protection is undercommitted at a
6528  *    given level, the distribution of the larger parental protection
6529  *    budget is NOT proportional. A cgroup's protection from a sibling
6530  *    is capped to its own memory.min/low setting.
6531  *
6532  * 5. However, to allow protecting recursive subtrees from each other
6533  *    without having to declare each individual cgroup's fixed share
6534  *    of the ancestor's claim to protection, any unutilized -
6535  *    "floating" - protection from up the tree is distributed in
6536  *    proportion to each cgroup's *usage*. This makes the protection
6537  *    neutral wrt sibling cgroups and lets them compete freely over
6538  *    the shared parental protection budget, but it protects the
6539  *    subtree as a whole from neighboring subtrees.
6540  *
6541  * Note that 4. and 5. are not in conflict: 4. is about protecting
6542  * against immediate siblings whereas 5. is about protecting against
6543  * neighboring subtrees.
6544  */
6545 static unsigned long effective_protection(unsigned long usage,
6546 					  unsigned long parent_usage,
6547 					  unsigned long setting,
6548 					  unsigned long parent_effective,
6549 					  unsigned long siblings_protected)
6550 {
6551 	unsigned long protected;
6552 	unsigned long ep;
6553 
6554 	protected = min(usage, setting);
6555 	/*
6556 	 * If all cgroups at this level combined claim and use more
6557 	 * protection then what the parent affords them, distribute
6558 	 * shares in proportion to utilization.
6559 	 *
6560 	 * We are using actual utilization rather than the statically
6561 	 * claimed protection in order to be work-conserving: claimed
6562 	 * but unused protection is available to siblings that would
6563 	 * otherwise get a smaller chunk than what they claimed.
6564 	 */
6565 	if (siblings_protected > parent_effective)
6566 		return protected * parent_effective / siblings_protected;
6567 
6568 	/*
6569 	 * Ok, utilized protection of all children is within what the
6570 	 * parent affords them, so we know whatever this child claims
6571 	 * and utilizes is effectively protected.
6572 	 *
6573 	 * If there is unprotected usage beyond this value, reclaim
6574 	 * will apply pressure in proportion to that amount.
6575 	 *
6576 	 * If there is unutilized protection, the cgroup will be fully
6577 	 * shielded from reclaim, but we do return a smaller value for
6578 	 * protection than what the group could enjoy in theory. This
6579 	 * is okay. With the overcommit distribution above, effective
6580 	 * protection is always dependent on how memory is actually
6581 	 * consumed among the siblings anyway.
6582 	 */
6583 	ep = protected;
6584 
6585 	/*
6586 	 * If the children aren't claiming (all of) the protection
6587 	 * afforded to them by the parent, distribute the remainder in
6588 	 * proportion to the (unprotected) memory of each cgroup. That
6589 	 * way, cgroups that aren't explicitly prioritized wrt each
6590 	 * other compete freely over the allowance, but they are
6591 	 * collectively protected from neighboring trees.
6592 	 *
6593 	 * We're using unprotected memory for the weight so that if
6594 	 * some cgroups DO claim explicit protection, we don't protect
6595 	 * the same bytes twice.
6596 	 *
6597 	 * Check both usage and parent_usage against the respective
6598 	 * protected values. One should imply the other, but they
6599 	 * aren't read atomically - make sure the division is sane.
6600 	 */
6601 	if (!(cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT))
6602 		return ep;
6603 	if (parent_effective > siblings_protected &&
6604 	    parent_usage > siblings_protected &&
6605 	    usage > protected) {
6606 		unsigned long unclaimed;
6607 
6608 		unclaimed = parent_effective - siblings_protected;
6609 		unclaimed *= usage - protected;
6610 		unclaimed /= parent_usage - siblings_protected;
6611 
6612 		ep += unclaimed;
6613 	}
6614 
6615 	return ep;
6616 }
6617 
6618 /**
6619  * mem_cgroup_calculate_protection - check if memory consumption is in the normal range
6620  * @root: the top ancestor of the sub-tree being checked
6621  * @memcg: the memory cgroup to check
6622  *
6623  * WARNING: This function is not stateless! It can only be used as part
6624  *          of a top-down tree iteration, not for isolated queries.
6625  */
6626 void mem_cgroup_calculate_protection(struct mem_cgroup *root,
6627 				     struct mem_cgroup *memcg)
6628 {
6629 	unsigned long usage, parent_usage;
6630 	struct mem_cgroup *parent;
6631 
6632 	if (mem_cgroup_disabled())
6633 		return;
6634 
6635 	if (!root)
6636 		root = root_mem_cgroup;
6637 
6638 	/*
6639 	 * Effective values of the reclaim targets are ignored so they
6640 	 * can be stale. Have a look at mem_cgroup_protection for more
6641 	 * details.
6642 	 * TODO: calculation should be more robust so that we do not need
6643 	 * that special casing.
6644 	 */
6645 	if (memcg == root)
6646 		return;
6647 
6648 	usage = page_counter_read(&memcg->memory);
6649 	if (!usage)
6650 		return;
6651 
6652 	parent = parent_mem_cgroup(memcg);
6653 	/* No parent means a non-hierarchical mode on v1 memcg */
6654 	if (!parent)
6655 		return;
6656 
6657 	if (parent == root) {
6658 		memcg->memory.emin = READ_ONCE(memcg->memory.min);
6659 		memcg->memory.elow = READ_ONCE(memcg->memory.low);
6660 		return;
6661 	}
6662 
6663 	parent_usage = page_counter_read(&parent->memory);
6664 
6665 	WRITE_ONCE(memcg->memory.emin, effective_protection(usage, parent_usage,
6666 			READ_ONCE(memcg->memory.min),
6667 			READ_ONCE(parent->memory.emin),
6668 			atomic_long_read(&parent->memory.children_min_usage)));
6669 
6670 	WRITE_ONCE(memcg->memory.elow, effective_protection(usage, parent_usage,
6671 			READ_ONCE(memcg->memory.low),
6672 			READ_ONCE(parent->memory.elow),
6673 			atomic_long_read(&parent->memory.children_low_usage)));
6674 }
6675 
6676 static int charge_memcg(struct folio *folio, struct mem_cgroup *memcg,
6677 			gfp_t gfp)
6678 {
6679 	long nr_pages = folio_nr_pages(folio);
6680 	int ret;
6681 
6682 	ret = try_charge(memcg, gfp, nr_pages);
6683 	if (ret)
6684 		goto out;
6685 
6686 	css_get(&memcg->css);
6687 	commit_charge(folio, memcg);
6688 
6689 	local_irq_disable();
6690 	mem_cgroup_charge_statistics(memcg, nr_pages);
6691 	memcg_check_events(memcg, folio_nid(folio));
6692 	local_irq_enable();
6693 out:
6694 	return ret;
6695 }
6696 
6697 int __mem_cgroup_charge(struct folio *folio, struct mm_struct *mm, gfp_t gfp)
6698 {
6699 	struct mem_cgroup *memcg;
6700 	int ret;
6701 
6702 	memcg = get_mem_cgroup_from_mm(mm);
6703 	ret = charge_memcg(folio, memcg, gfp);
6704 	css_put(&memcg->css);
6705 
6706 	return ret;
6707 }
6708 
6709 /**
6710  * mem_cgroup_swapin_charge_page - charge a newly allocated page for swapin
6711  * @page: page to charge
6712  * @mm: mm context of the victim
6713  * @gfp: reclaim mode
6714  * @entry: swap entry for which the page is allocated
6715  *
6716  * This function charges a page allocated for swapin. Please call this before
6717  * adding the page to the swapcache.
6718  *
6719  * Returns 0 on success. Otherwise, an error code is returned.
6720  */
6721 int mem_cgroup_swapin_charge_page(struct page *page, struct mm_struct *mm,
6722 				  gfp_t gfp, swp_entry_t entry)
6723 {
6724 	struct folio *folio = page_folio(page);
6725 	struct mem_cgroup *memcg;
6726 	unsigned short id;
6727 	int ret;
6728 
6729 	if (mem_cgroup_disabled())
6730 		return 0;
6731 
6732 	id = lookup_swap_cgroup_id(entry);
6733 	rcu_read_lock();
6734 	memcg = mem_cgroup_from_id(id);
6735 	if (!memcg || !css_tryget_online(&memcg->css))
6736 		memcg = get_mem_cgroup_from_mm(mm);
6737 	rcu_read_unlock();
6738 
6739 	ret = charge_memcg(folio, memcg, gfp);
6740 
6741 	css_put(&memcg->css);
6742 	return ret;
6743 }
6744 
6745 /*
6746  * mem_cgroup_swapin_uncharge_swap - uncharge swap slot
6747  * @entry: swap entry for which the page is charged
6748  *
6749  * Call this function after successfully adding the charged page to swapcache.
6750  *
6751  * Note: This function assumes the page for which swap slot is being uncharged
6752  * is order 0 page.
6753  */
6754 void mem_cgroup_swapin_uncharge_swap(swp_entry_t entry)
6755 {
6756 	/*
6757 	 * Cgroup1's unified memory+swap counter has been charged with the
6758 	 * new swapcache page, finish the transfer by uncharging the swap
6759 	 * slot. The swap slot would also get uncharged when it dies, but
6760 	 * it can stick around indefinitely and we'd count the page twice
6761 	 * the entire time.
6762 	 *
6763 	 * Cgroup2 has separate resource counters for memory and swap,
6764 	 * so this is a non-issue here. Memory and swap charge lifetimes
6765 	 * correspond 1:1 to page and swap slot lifetimes: we charge the
6766 	 * page to memory here, and uncharge swap when the slot is freed.
6767 	 */
6768 	if (!mem_cgroup_disabled() && do_memsw_account()) {
6769 		/*
6770 		 * The swap entry might not get freed for a long time,
6771 		 * let's not wait for it.  The page already received a
6772 		 * memory+swap charge, drop the swap entry duplicate.
6773 		 */
6774 		mem_cgroup_uncharge_swap(entry, 1);
6775 	}
6776 }
6777 
6778 struct uncharge_gather {
6779 	struct mem_cgroup *memcg;
6780 	unsigned long nr_memory;
6781 	unsigned long pgpgout;
6782 	unsigned long nr_kmem;
6783 	int nid;
6784 };
6785 
6786 static inline void uncharge_gather_clear(struct uncharge_gather *ug)
6787 {
6788 	memset(ug, 0, sizeof(*ug));
6789 }
6790 
6791 static void uncharge_batch(const struct uncharge_gather *ug)
6792 {
6793 	unsigned long flags;
6794 
6795 	if (ug->nr_memory) {
6796 		page_counter_uncharge(&ug->memcg->memory, ug->nr_memory);
6797 		if (do_memsw_account())
6798 			page_counter_uncharge(&ug->memcg->memsw, ug->nr_memory);
6799 		if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && ug->nr_kmem)
6800 			page_counter_uncharge(&ug->memcg->kmem, ug->nr_kmem);
6801 		memcg_oom_recover(ug->memcg);
6802 	}
6803 
6804 	local_irq_save(flags);
6805 	__count_memcg_events(ug->memcg, PGPGOUT, ug->pgpgout);
6806 	__this_cpu_add(ug->memcg->vmstats_percpu->nr_page_events, ug->nr_memory);
6807 	memcg_check_events(ug->memcg, ug->nid);
6808 	local_irq_restore(flags);
6809 
6810 	/* drop reference from uncharge_folio */
6811 	css_put(&ug->memcg->css);
6812 }
6813 
6814 static void uncharge_folio(struct folio *folio, struct uncharge_gather *ug)
6815 {
6816 	long nr_pages;
6817 	struct mem_cgroup *memcg;
6818 	struct obj_cgroup *objcg;
6819 	bool use_objcg = folio_memcg_kmem(folio);
6820 
6821 	VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
6822 
6823 	/*
6824 	 * Nobody should be changing or seriously looking at
6825 	 * folio memcg or objcg at this point, we have fully
6826 	 * exclusive access to the folio.
6827 	 */
6828 	if (use_objcg) {
6829 		objcg = __folio_objcg(folio);
6830 		/*
6831 		 * This get matches the put at the end of the function and
6832 		 * kmem pages do not hold memcg references anymore.
6833 		 */
6834 		memcg = get_mem_cgroup_from_objcg(objcg);
6835 	} else {
6836 		memcg = __folio_memcg(folio);
6837 	}
6838 
6839 	if (!memcg)
6840 		return;
6841 
6842 	if (ug->memcg != memcg) {
6843 		if (ug->memcg) {
6844 			uncharge_batch(ug);
6845 			uncharge_gather_clear(ug);
6846 		}
6847 		ug->memcg = memcg;
6848 		ug->nid = folio_nid(folio);
6849 
6850 		/* pairs with css_put in uncharge_batch */
6851 		css_get(&memcg->css);
6852 	}
6853 
6854 	nr_pages = folio_nr_pages(folio);
6855 
6856 	if (use_objcg) {
6857 		ug->nr_memory += nr_pages;
6858 		ug->nr_kmem += nr_pages;
6859 
6860 		folio->memcg_data = 0;
6861 		obj_cgroup_put(objcg);
6862 	} else {
6863 		/* LRU pages aren't accounted at the root level */
6864 		if (!mem_cgroup_is_root(memcg))
6865 			ug->nr_memory += nr_pages;
6866 		ug->pgpgout++;
6867 
6868 		folio->memcg_data = 0;
6869 	}
6870 
6871 	css_put(&memcg->css);
6872 }
6873 
6874 void __mem_cgroup_uncharge(struct folio *folio)
6875 {
6876 	struct uncharge_gather ug;
6877 
6878 	/* Don't touch folio->lru of any random page, pre-check: */
6879 	if (!folio_memcg(folio))
6880 		return;
6881 
6882 	uncharge_gather_clear(&ug);
6883 	uncharge_folio(folio, &ug);
6884 	uncharge_batch(&ug);
6885 }
6886 
6887 /**
6888  * __mem_cgroup_uncharge_list - uncharge a list of page
6889  * @page_list: list of pages to uncharge
6890  *
6891  * Uncharge a list of pages previously charged with
6892  * __mem_cgroup_charge().
6893  */
6894 void __mem_cgroup_uncharge_list(struct list_head *page_list)
6895 {
6896 	struct uncharge_gather ug;
6897 	struct folio *folio;
6898 
6899 	uncharge_gather_clear(&ug);
6900 	list_for_each_entry(folio, page_list, lru)
6901 		uncharge_folio(folio, &ug);
6902 	if (ug.memcg)
6903 		uncharge_batch(&ug);
6904 }
6905 
6906 /**
6907  * mem_cgroup_migrate - Charge a folio's replacement.
6908  * @old: Currently circulating folio.
6909  * @new: Replacement folio.
6910  *
6911  * Charge @new as a replacement folio for @old. @old will
6912  * be uncharged upon free.
6913  *
6914  * Both folios must be locked, @new->mapping must be set up.
6915  */
6916 void mem_cgroup_migrate(struct folio *old, struct folio *new)
6917 {
6918 	struct mem_cgroup *memcg;
6919 	long nr_pages = folio_nr_pages(new);
6920 	unsigned long flags;
6921 
6922 	VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
6923 	VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
6924 	VM_BUG_ON_FOLIO(folio_test_anon(old) != folio_test_anon(new), new);
6925 	VM_BUG_ON_FOLIO(folio_nr_pages(old) != nr_pages, new);
6926 
6927 	if (mem_cgroup_disabled())
6928 		return;
6929 
6930 	/* Page cache replacement: new folio already charged? */
6931 	if (folio_memcg(new))
6932 		return;
6933 
6934 	memcg = folio_memcg(old);
6935 	VM_WARN_ON_ONCE_FOLIO(!memcg, old);
6936 	if (!memcg)
6937 		return;
6938 
6939 	/* Force-charge the new page. The old one will be freed soon */
6940 	if (!mem_cgroup_is_root(memcg)) {
6941 		page_counter_charge(&memcg->memory, nr_pages);
6942 		if (do_memsw_account())
6943 			page_counter_charge(&memcg->memsw, nr_pages);
6944 	}
6945 
6946 	css_get(&memcg->css);
6947 	commit_charge(new, memcg);
6948 
6949 	local_irq_save(flags);
6950 	mem_cgroup_charge_statistics(memcg, nr_pages);
6951 	memcg_check_events(memcg, folio_nid(new));
6952 	local_irq_restore(flags);
6953 }
6954 
6955 DEFINE_STATIC_KEY_FALSE(memcg_sockets_enabled_key);
6956 EXPORT_SYMBOL(memcg_sockets_enabled_key);
6957 
6958 void mem_cgroup_sk_alloc(struct sock *sk)
6959 {
6960 	struct mem_cgroup *memcg;
6961 
6962 	if (!mem_cgroup_sockets_enabled)
6963 		return;
6964 
6965 	/* Do not associate the sock with unrelated interrupted task's memcg. */
6966 	if (in_interrupt())
6967 		return;
6968 
6969 	rcu_read_lock();
6970 	memcg = mem_cgroup_from_task(current);
6971 	if (memcg == root_mem_cgroup)
6972 		goto out;
6973 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && !memcg->tcpmem_active)
6974 		goto out;
6975 	if (css_tryget(&memcg->css))
6976 		sk->sk_memcg = memcg;
6977 out:
6978 	rcu_read_unlock();
6979 }
6980 
6981 void mem_cgroup_sk_free(struct sock *sk)
6982 {
6983 	if (sk->sk_memcg)
6984 		css_put(&sk->sk_memcg->css);
6985 }
6986 
6987 /**
6988  * mem_cgroup_charge_skmem - charge socket memory
6989  * @memcg: memcg to charge
6990  * @nr_pages: number of pages to charge
6991  * @gfp_mask: reclaim mode
6992  *
6993  * Charges @nr_pages to @memcg. Returns %true if the charge fit within
6994  * @memcg's configured limit, %false if it doesn't.
6995  */
6996 bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages,
6997 			     gfp_t gfp_mask)
6998 {
6999 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7000 		struct page_counter *fail;
7001 
7002 		if (page_counter_try_charge(&memcg->tcpmem, nr_pages, &fail)) {
7003 			memcg->tcpmem_pressure = 0;
7004 			return true;
7005 		}
7006 		memcg->tcpmem_pressure = 1;
7007 		if (gfp_mask & __GFP_NOFAIL) {
7008 			page_counter_charge(&memcg->tcpmem, nr_pages);
7009 			return true;
7010 		}
7011 		return false;
7012 	}
7013 
7014 	if (try_charge(memcg, gfp_mask, nr_pages) == 0) {
7015 		mod_memcg_state(memcg, MEMCG_SOCK, nr_pages);
7016 		return true;
7017 	}
7018 
7019 	return false;
7020 }
7021 
7022 /**
7023  * mem_cgroup_uncharge_skmem - uncharge socket memory
7024  * @memcg: memcg to uncharge
7025  * @nr_pages: number of pages to uncharge
7026  */
7027 void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages)
7028 {
7029 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7030 		page_counter_uncharge(&memcg->tcpmem, nr_pages);
7031 		return;
7032 	}
7033 
7034 	mod_memcg_state(memcg, MEMCG_SOCK, -nr_pages);
7035 
7036 	refill_stock(memcg, nr_pages);
7037 }
7038 
7039 static int __init cgroup_memory(char *s)
7040 {
7041 	char *token;
7042 
7043 	while ((token = strsep(&s, ",")) != NULL) {
7044 		if (!*token)
7045 			continue;
7046 		if (!strcmp(token, "nosocket"))
7047 			cgroup_memory_nosocket = true;
7048 		if (!strcmp(token, "nokmem"))
7049 			cgroup_memory_nokmem = true;
7050 	}
7051 	return 0;
7052 }
7053 __setup("cgroup.memory=", cgroup_memory);
7054 
7055 /*
7056  * subsys_initcall() for memory controller.
7057  *
7058  * Some parts like memcg_hotplug_cpu_dead() have to be initialized from this
7059  * context because of lock dependencies (cgroup_lock -> cpu hotplug) but
7060  * basically everything that doesn't depend on a specific mem_cgroup structure
7061  * should be initialized from here.
7062  */
7063 static int __init mem_cgroup_init(void)
7064 {
7065 	int cpu, node;
7066 
7067 	/*
7068 	 * Currently s32 type (can refer to struct batched_lruvec_stat) is
7069 	 * used for per-memcg-per-cpu caching of per-node statistics. In order
7070 	 * to work fine, we should make sure that the overfill threshold can't
7071 	 * exceed S32_MAX / PAGE_SIZE.
7072 	 */
7073 	BUILD_BUG_ON(MEMCG_CHARGE_BATCH > S32_MAX / PAGE_SIZE);
7074 
7075 	cpuhp_setup_state_nocalls(CPUHP_MM_MEMCQ_DEAD, "mm/memctrl:dead", NULL,
7076 				  memcg_hotplug_cpu_dead);
7077 
7078 	for_each_possible_cpu(cpu)
7079 		INIT_WORK(&per_cpu_ptr(&memcg_stock, cpu)->work,
7080 			  drain_local_stock);
7081 
7082 	for_each_node(node) {
7083 		struct mem_cgroup_tree_per_node *rtpn;
7084 
7085 		rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
7086 				    node_online(node) ? node : NUMA_NO_NODE);
7087 
7088 		rtpn->rb_root = RB_ROOT;
7089 		rtpn->rb_rightmost = NULL;
7090 		spin_lock_init(&rtpn->lock);
7091 		soft_limit_tree.rb_tree_per_node[node] = rtpn;
7092 	}
7093 
7094 	return 0;
7095 }
7096 subsys_initcall(mem_cgroup_init);
7097 
7098 #ifdef CONFIG_MEMCG_SWAP
7099 static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg)
7100 {
7101 	while (!refcount_inc_not_zero(&memcg->id.ref)) {
7102 		/*
7103 		 * The root cgroup cannot be destroyed, so it's refcount must
7104 		 * always be >= 1.
7105 		 */
7106 		if (WARN_ON_ONCE(memcg == root_mem_cgroup)) {
7107 			VM_BUG_ON(1);
7108 			break;
7109 		}
7110 		memcg = parent_mem_cgroup(memcg);
7111 		if (!memcg)
7112 			memcg = root_mem_cgroup;
7113 	}
7114 	return memcg;
7115 }
7116 
7117 /**
7118  * mem_cgroup_swapout - transfer a memsw charge to swap
7119  * @page: page whose memsw charge to transfer
7120  * @entry: swap entry to move the charge to
7121  *
7122  * Transfer the memsw charge of @page to @entry.
7123  */
7124 void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
7125 {
7126 	struct mem_cgroup *memcg, *swap_memcg;
7127 	unsigned int nr_entries;
7128 	unsigned short oldid;
7129 
7130 	VM_BUG_ON_PAGE(PageLRU(page), page);
7131 	VM_BUG_ON_PAGE(page_count(page), page);
7132 
7133 	if (mem_cgroup_disabled())
7134 		return;
7135 
7136 	if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7137 		return;
7138 
7139 	memcg = page_memcg(page);
7140 
7141 	VM_WARN_ON_ONCE_PAGE(!memcg, page);
7142 	if (!memcg)
7143 		return;
7144 
7145 	/*
7146 	 * In case the memcg owning these pages has been offlined and doesn't
7147 	 * have an ID allocated to it anymore, charge the closest online
7148 	 * ancestor for the swap instead and transfer the memory+swap charge.
7149 	 */
7150 	swap_memcg = mem_cgroup_id_get_online(memcg);
7151 	nr_entries = thp_nr_pages(page);
7152 	/* Get references for the tail pages, too */
7153 	if (nr_entries > 1)
7154 		mem_cgroup_id_get_many(swap_memcg, nr_entries - 1);
7155 	oldid = swap_cgroup_record(entry, mem_cgroup_id(swap_memcg),
7156 				   nr_entries);
7157 	VM_BUG_ON_PAGE(oldid, page);
7158 	mod_memcg_state(swap_memcg, MEMCG_SWAP, nr_entries);
7159 
7160 	page->memcg_data = 0;
7161 
7162 	if (!mem_cgroup_is_root(memcg))
7163 		page_counter_uncharge(&memcg->memory, nr_entries);
7164 
7165 	if (!cgroup_memory_noswap && memcg != swap_memcg) {
7166 		if (!mem_cgroup_is_root(swap_memcg))
7167 			page_counter_charge(&swap_memcg->memsw, nr_entries);
7168 		page_counter_uncharge(&memcg->memsw, nr_entries);
7169 	}
7170 
7171 	/*
7172 	 * Interrupts should be disabled here because the caller holds the
7173 	 * i_pages lock which is taken with interrupts-off. It is
7174 	 * important here to have the interrupts disabled because it is the
7175 	 * only synchronisation we have for updating the per-CPU variables.
7176 	 */
7177 	VM_BUG_ON(!irqs_disabled());
7178 	mem_cgroup_charge_statistics(memcg, -nr_entries);
7179 	memcg_check_events(memcg, page_to_nid(page));
7180 
7181 	css_put(&memcg->css);
7182 }
7183 
7184 /**
7185  * __mem_cgroup_try_charge_swap - try charging swap space for a page
7186  * @page: page being added to swap
7187  * @entry: swap entry to charge
7188  *
7189  * Try to charge @page's memcg for the swap space at @entry.
7190  *
7191  * Returns 0 on success, -ENOMEM on failure.
7192  */
7193 int __mem_cgroup_try_charge_swap(struct page *page, swp_entry_t entry)
7194 {
7195 	unsigned int nr_pages = thp_nr_pages(page);
7196 	struct page_counter *counter;
7197 	struct mem_cgroup *memcg;
7198 	unsigned short oldid;
7199 
7200 	if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7201 		return 0;
7202 
7203 	memcg = page_memcg(page);
7204 
7205 	VM_WARN_ON_ONCE_PAGE(!memcg, page);
7206 	if (!memcg)
7207 		return 0;
7208 
7209 	if (!entry.val) {
7210 		memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7211 		return 0;
7212 	}
7213 
7214 	memcg = mem_cgroup_id_get_online(memcg);
7215 
7216 	if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg) &&
7217 	    !page_counter_try_charge(&memcg->swap, nr_pages, &counter)) {
7218 		memcg_memory_event(memcg, MEMCG_SWAP_MAX);
7219 		memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7220 		mem_cgroup_id_put(memcg);
7221 		return -ENOMEM;
7222 	}
7223 
7224 	/* Get references for the tail pages, too */
7225 	if (nr_pages > 1)
7226 		mem_cgroup_id_get_many(memcg, nr_pages - 1);
7227 	oldid = swap_cgroup_record(entry, mem_cgroup_id(memcg), nr_pages);
7228 	VM_BUG_ON_PAGE(oldid, page);
7229 	mod_memcg_state(memcg, MEMCG_SWAP, nr_pages);
7230 
7231 	return 0;
7232 }
7233 
7234 /**
7235  * __mem_cgroup_uncharge_swap - uncharge swap space
7236  * @entry: swap entry to uncharge
7237  * @nr_pages: the amount of swap space to uncharge
7238  */
7239 void __mem_cgroup_uncharge_swap(swp_entry_t entry, unsigned int nr_pages)
7240 {
7241 	struct mem_cgroup *memcg;
7242 	unsigned short id;
7243 
7244 	id = swap_cgroup_record(entry, 0, nr_pages);
7245 	rcu_read_lock();
7246 	memcg = mem_cgroup_from_id(id);
7247 	if (memcg) {
7248 		if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg)) {
7249 			if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7250 				page_counter_uncharge(&memcg->swap, nr_pages);
7251 			else
7252 				page_counter_uncharge(&memcg->memsw, nr_pages);
7253 		}
7254 		mod_memcg_state(memcg, MEMCG_SWAP, -nr_pages);
7255 		mem_cgroup_id_put_many(memcg, nr_pages);
7256 	}
7257 	rcu_read_unlock();
7258 }
7259 
7260 long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
7261 {
7262 	long nr_swap_pages = get_nr_swap_pages();
7263 
7264 	if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7265 		return nr_swap_pages;
7266 	for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg))
7267 		nr_swap_pages = min_t(long, nr_swap_pages,
7268 				      READ_ONCE(memcg->swap.max) -
7269 				      page_counter_read(&memcg->swap));
7270 	return nr_swap_pages;
7271 }
7272 
7273 bool mem_cgroup_swap_full(struct page *page)
7274 {
7275 	struct mem_cgroup *memcg;
7276 
7277 	VM_BUG_ON_PAGE(!PageLocked(page), page);
7278 
7279 	if (vm_swap_full())
7280 		return true;
7281 	if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7282 		return false;
7283 
7284 	memcg = page_memcg(page);
7285 	if (!memcg)
7286 		return false;
7287 
7288 	for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
7289 		unsigned long usage = page_counter_read(&memcg->swap);
7290 
7291 		if (usage * 2 >= READ_ONCE(memcg->swap.high) ||
7292 		    usage * 2 >= READ_ONCE(memcg->swap.max))
7293 			return true;
7294 	}
7295 
7296 	return false;
7297 }
7298 
7299 static int __init setup_swap_account(char *s)
7300 {
7301 	if (!strcmp(s, "1"))
7302 		cgroup_memory_noswap = false;
7303 	else if (!strcmp(s, "0"))
7304 		cgroup_memory_noswap = true;
7305 	return 1;
7306 }
7307 __setup("swapaccount=", setup_swap_account);
7308 
7309 static u64 swap_current_read(struct cgroup_subsys_state *css,
7310 			     struct cftype *cft)
7311 {
7312 	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
7313 
7314 	return (u64)page_counter_read(&memcg->swap) * PAGE_SIZE;
7315 }
7316 
7317 static int swap_high_show(struct seq_file *m, void *v)
7318 {
7319 	return seq_puts_memcg_tunable(m,
7320 		READ_ONCE(mem_cgroup_from_seq(m)->swap.high));
7321 }
7322 
7323 static ssize_t swap_high_write(struct kernfs_open_file *of,
7324 			       char *buf, size_t nbytes, loff_t off)
7325 {
7326 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7327 	unsigned long high;
7328 	int err;
7329 
7330 	buf = strstrip(buf);
7331 	err = page_counter_memparse(buf, "max", &high);
7332 	if (err)
7333 		return err;
7334 
7335 	page_counter_set_high(&memcg->swap, high);
7336 
7337 	return nbytes;
7338 }
7339 
7340 static int swap_max_show(struct seq_file *m, void *v)
7341 {
7342 	return seq_puts_memcg_tunable(m,
7343 		READ_ONCE(mem_cgroup_from_seq(m)->swap.max));
7344 }
7345 
7346 static ssize_t swap_max_write(struct kernfs_open_file *of,
7347 			      char *buf, size_t nbytes, loff_t off)
7348 {
7349 	struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7350 	unsigned long max;
7351 	int err;
7352 
7353 	buf = strstrip(buf);
7354 	err = page_counter_memparse(buf, "max", &max);
7355 	if (err)
7356 		return err;
7357 
7358 	xchg(&memcg->swap.max, max);
7359 
7360 	return nbytes;
7361 }
7362 
7363 static int swap_events_show(struct seq_file *m, void *v)
7364 {
7365 	struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
7366 
7367 	seq_printf(m, "high %lu\n",
7368 		   atomic_long_read(&memcg->memory_events[MEMCG_SWAP_HIGH]));
7369 	seq_printf(m, "max %lu\n",
7370 		   atomic_long_read(&memcg->memory_events[MEMCG_SWAP_MAX]));
7371 	seq_printf(m, "fail %lu\n",
7372 		   atomic_long_read(&memcg->memory_events[MEMCG_SWAP_FAIL]));
7373 
7374 	return 0;
7375 }
7376 
7377 static struct cftype swap_files[] = {
7378 	{
7379 		.name = "swap.current",
7380 		.flags = CFTYPE_NOT_ON_ROOT,
7381 		.read_u64 = swap_current_read,
7382 	},
7383 	{
7384 		.name = "swap.high",
7385 		.flags = CFTYPE_NOT_ON_ROOT,
7386 		.seq_show = swap_high_show,
7387 		.write = swap_high_write,
7388 	},
7389 	{
7390 		.name = "swap.max",
7391 		.flags = CFTYPE_NOT_ON_ROOT,
7392 		.seq_show = swap_max_show,
7393 		.write = swap_max_write,
7394 	},
7395 	{
7396 		.name = "swap.events",
7397 		.flags = CFTYPE_NOT_ON_ROOT,
7398 		.file_offset = offsetof(struct mem_cgroup, swap_events_file),
7399 		.seq_show = swap_events_show,
7400 	},
7401 	{ }	/* terminate */
7402 };
7403 
7404 static struct cftype memsw_files[] = {
7405 	{
7406 		.name = "memsw.usage_in_bytes",
7407 		.private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
7408 		.read_u64 = mem_cgroup_read_u64,
7409 	},
7410 	{
7411 		.name = "memsw.max_usage_in_bytes",
7412 		.private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
7413 		.write = mem_cgroup_reset,
7414 		.read_u64 = mem_cgroup_read_u64,
7415 	},
7416 	{
7417 		.name = "memsw.limit_in_bytes",
7418 		.private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
7419 		.write = mem_cgroup_write,
7420 		.read_u64 = mem_cgroup_read_u64,
7421 	},
7422 	{
7423 		.name = "memsw.failcnt",
7424 		.private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
7425 		.write = mem_cgroup_reset,
7426 		.read_u64 = mem_cgroup_read_u64,
7427 	},
7428 	{ },	/* terminate */
7429 };
7430 
7431 /*
7432  * If mem_cgroup_swap_init() is implemented as a subsys_initcall()
7433  * instead of a core_initcall(), this could mean cgroup_memory_noswap still
7434  * remains set to false even when memcg is disabled via "cgroup_disable=memory"
7435  * boot parameter. This may result in premature OOPS inside
7436  * mem_cgroup_get_nr_swap_pages() function in corner cases.
7437  */
7438 static int __init mem_cgroup_swap_init(void)
7439 {
7440 	/* No memory control -> no swap control */
7441 	if (mem_cgroup_disabled())
7442 		cgroup_memory_noswap = true;
7443 
7444 	if (cgroup_memory_noswap)
7445 		return 0;
7446 
7447 	WARN_ON(cgroup_add_dfl_cftypes(&memory_cgrp_subsys, swap_files));
7448 	WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys, memsw_files));
7449 
7450 	return 0;
7451 }
7452 core_initcall(mem_cgroup_swap_init);
7453 
7454 #endif /* CONFIG_MEMCG_SWAP */
7455