1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* memcontrol.c - Memory Controller
4 * Copyright IBM Corporation, 2007
5 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
7 * Copyright 2007 OpenVZ SWsoft Inc
8 * Author: Pavel Emelianov <xemul@openvz.org>
11 * Copyright (C) 2009 Nokia Corporation
12 * Author: Kirill A. Shutemov
14 * Kernel Memory Controller
15 * Copyright (C) 2012 Parallels Inc. and Google Inc.
16 * Authors: Glauber Costa and Suleiman Souhlal
19 * Charge lifetime sanitation
20 * Lockless page tracking & accounting
21 * Unified hierarchy configuration model
22 * Copyright (C) 2015 Red Hat, Inc., Johannes Weiner
24 * Per memcg lru locking
25 * Copyright (C) 2020 Alibaba, Inc, Alex Shi
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>
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>
70 #include <linux/uaccess.h>
72 #include <trace/events/vmscan.h>
74 struct cgroup_subsys memory_cgrp_subsys __read_mostly;
75 EXPORT_SYMBOL(memory_cgrp_subsys);
77 struct mem_cgroup *root_mem_cgroup __read_mostly;
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);
83 /* Socket memory accounting disabled? */
84 static bool cgroup_memory_nosocket __ro_after_init;
86 /* Kernel memory accounting disabled? */
87 static bool cgroup_memory_nokmem __ro_after_init;
89 /* Whether the swap controller is active */
90 #ifdef CONFIG_MEMCG_SWAP
91 bool cgroup_memory_noswap __ro_after_init;
93 #define cgroup_memory_noswap 1
96 #ifdef CONFIG_CGROUP_WRITEBACK
97 static DECLARE_WAIT_QUEUE_HEAD(memcg_cgwb_frn_waitq);
100 /* Whether legacy memory+swap accounting is active */
101 static bool do_memsw_account(void)
103 return !cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_noswap;
106 #define THRESHOLDS_EVENTS_TARGET 128
107 #define SOFTLIMIT_EVENTS_TARGET 1024
110 * Cgroups above their limits are maintained in a RB-Tree, independent of
111 * their hierarchy representation
114 struct mem_cgroup_tree_per_node {
115 struct rb_root rb_root;
116 struct rb_node *rb_rightmost;
120 struct mem_cgroup_tree {
121 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
124 static struct mem_cgroup_tree soft_limit_tree __read_mostly;
127 struct mem_cgroup_eventfd_list {
128 struct list_head list;
129 struct eventfd_ctx *eventfd;
133 * cgroup_event represents events which userspace want to receive.
135 struct mem_cgroup_event {
137 * memcg which the event belongs to.
139 struct mem_cgroup *memcg;
141 * eventfd to signal userspace about the event.
143 struct eventfd_ctx *eventfd;
145 * Each of these stored in a list by the cgroup.
147 struct list_head list;
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.
153 int (*register_event)(struct mem_cgroup *memcg,
154 struct eventfd_ctx *eventfd, const char *args);
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.
160 void (*unregister_event)(struct mem_cgroup *memcg,
161 struct eventfd_ctx *eventfd);
163 * All fields below needed to unregister event when
164 * userspace closes eventfd.
167 wait_queue_head_t *wqh;
168 wait_queue_entry_t wait;
169 struct work_struct remove;
172 static void mem_cgroup_threshold(struct mem_cgroup *memcg);
173 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
175 /* Stuffs for move charges at task migration. */
177 * Types of charges to be moved.
179 #define MOVE_ANON 0x1U
180 #define MOVE_FILE 0x2U
181 #define MOVE_MASK (MOVE_ANON | MOVE_FILE)
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;
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 */
196 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
197 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
201 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
202 * limit reclaim to prevent infinite loops, if they ever occur.
204 #define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
205 #define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
207 /* for encoding cft->private value on file */
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)
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.
227 #define for_each_mem_cgroup_tree(iter, root) \
228 for (iter = mem_cgroup_iter(root, NULL, NULL); \
230 iter = mem_cgroup_iter(root, iter, NULL))
232 #define for_each_mem_cgroup(iter) \
233 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
235 iter = mem_cgroup_iter(NULL, iter, NULL))
237 static inline bool task_is_dying(void)
239 return tsk_is_oom_victim(current) || fatal_signal_pending(current) ||
240 (current->flags & PF_EXITING);
243 /* Some nice accessors for the vmpressure. */
244 struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
247 memcg = root_mem_cgroup;
248 return &memcg->vmpressure;
251 struct mem_cgroup *vmpressure_to_memcg(struct vmpressure *vmpr)
253 return container_of(vmpr, struct mem_cgroup, vmpressure);
256 #ifdef CONFIG_MEMCG_KMEM
257 static DEFINE_SPINLOCK(objcg_lock);
259 bool mem_cgroup_kmem_disabled(void)
261 return cgroup_memory_nokmem;
264 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
265 unsigned int nr_pages);
267 static void obj_cgroup_release(struct percpu_ref *ref)
269 struct obj_cgroup *objcg = container_of(ref, struct obj_cgroup, refcnt);
270 unsigned int nr_bytes;
271 unsigned int nr_pages;
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).
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
291 * In the result, nr_charged_bytes == PAGE_SIZE.
292 * This page will be uncharged in obj_cgroup_release().
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;
299 obj_cgroup_uncharge_pages(objcg, nr_pages);
301 spin_lock_irqsave(&objcg_lock, flags);
302 list_del(&objcg->list);
303 spin_unlock_irqrestore(&objcg_lock, flags);
305 percpu_ref_exit(ref);
306 kfree_rcu(objcg, rcu);
309 static struct obj_cgroup *obj_cgroup_alloc(void)
311 struct obj_cgroup *objcg;
314 objcg = kzalloc(sizeof(struct obj_cgroup), GFP_KERNEL);
318 ret = percpu_ref_init(&objcg->refcnt, obj_cgroup_release, 0,
324 INIT_LIST_HEAD(&objcg->list);
328 static void memcg_reparent_objcgs(struct mem_cgroup *memcg,
329 struct mem_cgroup *parent)
331 struct obj_cgroup *objcg, *iter;
333 objcg = rcu_replace_pointer(memcg->objcg, NULL, true);
335 spin_lock_irq(&objcg_lock);
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);
345 spin_unlock_irq(&objcg_lock);
347 percpu_ref_kill(&objcg->refcnt);
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.
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.
361 static DEFINE_IDA(memcg_cache_ida);
362 int memcg_nr_cache_ids;
364 /* Protects memcg_nr_cache_ids */
365 static DECLARE_RWSEM(memcg_cache_ids_sem);
367 void memcg_get_cache_ids(void)
369 down_read(&memcg_cache_ids_sem);
372 void memcg_put_cache_ids(void)
374 up_read(&memcg_cache_ids_sem);
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.
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.
389 #define MEMCG_CACHES_MIN_SIZE 4
390 #define MEMCG_CACHES_MAX_SIZE MEM_CGROUP_ID_MAX
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
398 DEFINE_STATIC_KEY_FALSE(memcg_kmem_enabled_key);
399 EXPORT_SYMBOL(memcg_kmem_enabled_key);
403 * mem_cgroup_css_from_page - css of the memcg associated with a page
404 * @page: page of interest
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.
410 * If memcg is bound to a traditional hierarchy, the css of root_mem_cgroup
413 struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page)
415 struct mem_cgroup *memcg;
417 memcg = page_memcg(page);
419 if (!memcg || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
420 memcg = root_mem_cgroup;
426 * page_cgroup_ino - return inode number of the memcg a page is charged to
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.
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).
438 ino_t page_cgroup_ino(struct page *page)
440 struct mem_cgroup *memcg;
441 unsigned long ino = 0;
444 memcg = page_memcg_check(page);
446 while (memcg && !(memcg->css.flags & CSS_ONLINE))
447 memcg = parent_mem_cgroup(memcg);
449 ino = cgroup_ino(memcg->css.cgroup);
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)
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;
466 mz->usage_in_excess = new_usage_in_excess;
467 if (!mz->usage_in_excess)
471 mz_node = rb_entry(parent, struct mem_cgroup_per_node,
473 if (mz->usage_in_excess < mz_node->usage_in_excess) {
482 mctz->rb_rightmost = &mz->tree_node;
484 rb_link_node(&mz->tree_node, parent, p);
485 rb_insert_color(&mz->tree_node, &mctz->rb_root);
489 static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
490 struct mem_cgroup_tree_per_node *mctz)
495 if (&mz->tree_node == mctz->rb_rightmost)
496 mctz->rb_rightmost = rb_prev(&mz->tree_node);
498 rb_erase(&mz->tree_node, &mctz->rb_root);
502 static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
503 struct mem_cgroup_tree_per_node *mctz)
507 spin_lock_irqsave(&mctz->lock, flags);
508 __mem_cgroup_remove_exceeded(mz, mctz);
509 spin_unlock_irqrestore(&mctz->lock, flags);
512 static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
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;
518 if (nr_pages > soft_limit)
519 excess = nr_pages - soft_limit;
524 static void mem_cgroup_update_tree(struct mem_cgroup *memcg, int nid)
526 unsigned long excess;
527 struct mem_cgroup_per_node *mz;
528 struct mem_cgroup_tree_per_node *mctz;
530 mctz = soft_limit_tree.rb_tree_per_node[nid];
534 * Necessary to update all ancestors when hierarchy is used.
535 * because their event counter is not touched.
537 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
538 mz = memcg->nodeinfo[nid];
539 excess = soft_limit_excess(memcg);
541 * We have to update the tree if mz is on RB-tree or
542 * mem is over its softlimit.
544 if (excess || mz->on_tree) {
547 spin_lock_irqsave(&mctz->lock, flags);
548 /* if on-tree, remove it */
550 __mem_cgroup_remove_exceeded(mz, mctz);
552 * Insert again. mz->usage_in_excess will be updated.
553 * If excess is 0, no tree ops.
555 __mem_cgroup_insert_exceeded(mz, mctz, excess);
556 spin_unlock_irqrestore(&mctz->lock, flags);
561 static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
563 struct mem_cgroup_tree_per_node *mctz;
564 struct mem_cgroup_per_node *mz;
568 mz = memcg->nodeinfo[nid];
569 mctz = soft_limit_tree.rb_tree_per_node[nid];
571 mem_cgroup_remove_exceeded(mz, mctz);
575 static struct mem_cgroup_per_node *
576 __mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
578 struct mem_cgroup_per_node *mz;
582 if (!mctz->rb_rightmost)
583 goto done; /* Nothing to reclaim from */
585 mz = rb_entry(mctz->rb_rightmost,
586 struct mem_cgroup_per_node, tree_node);
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.
592 __mem_cgroup_remove_exceeded(mz, mctz);
593 if (!soft_limit_excess(mz->memcg) ||
594 !css_tryget(&mz->memcg->css))
600 static struct mem_cgroup_per_node *
601 mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
603 struct mem_cgroup_per_node *mz;
605 spin_lock_irq(&mctz->lock);
606 mz = __mem_cgroup_largest_soft_limit_node(mctz);
607 spin_unlock_irq(&mctz->lock);
612 * memcg and lruvec stats flushing
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:
618 * 1) Periodically and asynchronously flush the stats every 2 seconds to not let
619 * rstat update tree grow unbounded.
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).
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);
632 static inline void memcg_rstat_updated(struct mem_cgroup *memcg, int val)
636 cgroup_rstat_updated(memcg->css.cgroup, smp_processor_id());
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);
645 static void __mem_cgroup_flush_stats(void)
649 if (!spin_trylock_irqsave(&stats_flush_lock, flag))
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);
657 void mem_cgroup_flush_stats(void)
659 if (atomic_read(&stats_flush_threshold) > num_online_cpus())
660 __mem_cgroup_flush_stats();
663 static void flush_memcg_stats_dwork(struct work_struct *w)
665 __mem_cgroup_flush_stats();
666 queue_delayed_work(system_unbound_wq, &stats_flush_dwork, 2UL*HZ);
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
675 void __mod_memcg_state(struct mem_cgroup *memcg, int idx, int val)
677 if (mem_cgroup_disabled())
680 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
681 memcg_rstat_updated(memcg, val);
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)
690 for_each_possible_cpu(cpu)
691 x += per_cpu(memcg->vmstats_percpu->state[idx], cpu);
699 void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
702 struct mem_cgroup_per_node *pn;
703 struct mem_cgroup *memcg;
705 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
709 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
712 __this_cpu_add(pn->lruvec_stats_percpu->state[idx], val);
714 memcg_rstat_updated(memcg, val);
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
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.
727 void __mod_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
731 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
733 /* Update memcg and lruvec */
734 if (!mem_cgroup_disabled())
735 __mod_memcg_lruvec_state(lruvec, idx, val);
738 void __mod_lruvec_page_state(struct page *page, enum node_stat_item idx,
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;
747 memcg = page_memcg(head);
748 /* Untracked pages have no memcg, no lruvec. Update only the node */
751 __mod_node_page_state(pgdat, idx, val);
755 lruvec = mem_cgroup_lruvec(memcg, pgdat);
756 __mod_lruvec_state(lruvec, idx, val);
759 EXPORT_SYMBOL(__mod_lruvec_page_state);
761 void __mod_lruvec_kmem_state(void *p, enum node_stat_item idx, int val)
763 pg_data_t *pgdat = page_pgdat(virt_to_page(p));
764 struct mem_cgroup *memcg;
765 struct lruvec *lruvec;
768 memcg = mem_cgroup_from_obj(p);
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.
777 __mod_node_page_state(pgdat, idx, val);
779 lruvec = mem_cgroup_lruvec(memcg, pgdat);
780 __mod_lruvec_state(lruvec, idx, val);
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
791 void __count_memcg_events(struct mem_cgroup *memcg, enum vm_event_item idx,
794 if (mem_cgroup_disabled())
797 __this_cpu_add(memcg->vmstats_percpu->events[idx], count);
798 memcg_rstat_updated(memcg, count);
801 static unsigned long memcg_events(struct mem_cgroup *memcg, int event)
803 return READ_ONCE(memcg->vmstats.events[event]);
806 static unsigned long memcg_events_local(struct mem_cgroup *memcg, int event)
811 for_each_possible_cpu(cpu)
812 x += per_cpu(memcg->vmstats_percpu->events[event], cpu);
816 static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
819 /* pagein of a big page is an event. So, ignore page size */
821 __count_memcg_events(memcg, PGPGIN, 1);
823 __count_memcg_events(memcg, PGPGOUT, 1);
824 nr_pages = -nr_pages; /* for event */
827 __this_cpu_add(memcg->vmstats_percpu->nr_page_events, nr_pages);
830 static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
831 enum mem_cgroup_events_target target)
833 unsigned long val, next;
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) {
840 case MEM_CGROUP_TARGET_THRESH:
841 next = val + THRESHOLDS_EVENTS_TARGET;
843 case MEM_CGROUP_TARGET_SOFTLIMIT:
844 next = val + SOFTLIMIT_EVENTS_TARGET;
849 __this_cpu_write(memcg->vmstats_percpu->targets[target], next);
856 * Check events in order.
859 static void memcg_check_events(struct mem_cgroup *memcg, int nid)
861 /* threshold event is triggered in finer grain than soft limit */
862 if (unlikely(mem_cgroup_event_ratelimit(memcg,
863 MEM_CGROUP_TARGET_THRESH))) {
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);
874 struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
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.
884 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
886 EXPORT_SYMBOL(mem_cgroup_from_task);
888 static __always_inline struct mem_cgroup *active_memcg(void)
891 return this_cpu_read(int_active_memcg);
893 return current->active_memcg;
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.
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
905 * If mem_cgroup is disabled, NULL is returned.
907 struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
909 struct mem_cgroup *memcg;
911 if (mem_cgroup_disabled())
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.
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.
924 memcg = active_memcg();
925 if (unlikely(memcg)) {
926 /* remote memcg must hold a ref */
927 css_get(&memcg->css);
932 return root_mem_cgroup;
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));
944 EXPORT_SYMBOL(get_mem_cgroup_from_mm);
946 static __always_inline bool memcg_kmem_bypass(void)
948 /* Allow remote memcg charging from any context. */
949 if (unlikely(active_memcg()))
952 /* Memcg to charge can't be determined. */
953 if (!in_task() || !current->mm || (current->flags & PF_KTHREAD))
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
965 * Returns references to children of the hierarchy below @root, or
966 * @root itself, or %NULL after a full round-trip.
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.
972 * Reclaimers can specify a node in @reclaim to divide up the memcgs
973 * in the hierarchy among all concurrent reclaimers operating on the
976 struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
977 struct mem_cgroup *prev,
978 struct mem_cgroup_reclaim_cookie *reclaim)
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;
985 if (mem_cgroup_disabled())
989 root = root_mem_cgroup;
991 if (prev && !reclaim)
997 struct mem_cgroup_per_node *mz;
999 mz = root->nodeinfo[reclaim->pgdat->node_id];
1002 if (prev && reclaim->generation != iter->generation)
1006 pos = READ_ONCE(iter->position);
1007 if (!pos || css_tryget(&pos->css))
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
1017 (void)cmpxchg(&iter->position, pos, NULL);
1025 css = css_next_descendant_pre(css, &root->css);
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.
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.
1043 memcg = mem_cgroup_from_css(css);
1045 if (css == &root->css)
1048 if (css_tryget(css))
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.
1060 (void)cmpxchg(&iter->position, pos, memcg);
1068 reclaim->generation = iter->generation;
1073 if (prev && prev != root)
1074 css_put(&prev->css);
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()
1084 void mem_cgroup_iter_break(struct mem_cgroup *root,
1085 struct mem_cgroup *prev)
1088 root = root_mem_cgroup;
1089 if (prev && prev != root)
1090 css_put(&prev->css);
1093 static void __invalidate_reclaim_iterators(struct mem_cgroup *from,
1094 struct mem_cgroup *dead_memcg)
1096 struct mem_cgroup_reclaim_iter *iter;
1097 struct mem_cgroup_per_node *mz;
1100 for_each_node(nid) {
1101 mz = from->nodeinfo[nid];
1103 cmpxchg(&iter->position, dead_memcg, NULL);
1107 static void invalidate_reclaim_iterators(struct mem_cgroup *dead_memcg)
1109 struct mem_cgroup *memcg = dead_memcg;
1110 struct mem_cgroup *last;
1113 __invalidate_reclaim_iterators(memcg, dead_memcg);
1115 } while ((memcg = parent_mem_cgroup(memcg)));
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.
1123 if (last != root_mem_cgroup)
1124 __invalidate_reclaim_iterators(root_mem_cgroup,
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
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.
1139 * This function must not be called for the root memory cgroup.
1141 int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
1142 int (*fn)(struct task_struct *, void *), void *arg)
1144 struct mem_cgroup *iter;
1147 BUG_ON(memcg == root_mem_cgroup);
1149 for_each_mem_cgroup_tree(iter, memcg) {
1150 struct css_task_iter it;
1151 struct task_struct *task;
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);
1158 mem_cgroup_iter_break(memcg, iter);
1165 #ifdef CONFIG_DEBUG_VM
1166 void lruvec_memcg_debug(struct lruvec *lruvec, struct folio *folio)
1168 struct mem_cgroup *memcg;
1170 if (mem_cgroup_disabled())
1173 memcg = folio_memcg(folio);
1176 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != root_mem_cgroup, folio);
1178 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != memcg, folio);
1183 * folio_lruvec_lock - Lock the lruvec for a folio.
1184 * @folio: Pointer to the folio.
1186 * These functions are safe to use under any of the following conditions:
1188 * - folio_test_lru false
1189 * - folio_memcg_lock()
1190 * - folio frozen (refcount of 0)
1192 * Return: The lruvec this folio is on with its lock held.
1194 struct lruvec *folio_lruvec_lock(struct folio *folio)
1196 struct lruvec *lruvec = folio_lruvec(folio);
1198 spin_lock(&lruvec->lru_lock);
1199 lruvec_memcg_debug(lruvec, folio);
1205 * folio_lruvec_lock_irq - Lock the lruvec for a folio.
1206 * @folio: Pointer to the folio.
1208 * These functions are safe to use under any of the following conditions:
1210 * - folio_test_lru false
1211 * - folio_memcg_lock()
1212 * - folio frozen (refcount of 0)
1214 * Return: The lruvec this folio is on with its lock held and interrupts
1217 struct lruvec *folio_lruvec_lock_irq(struct folio *folio)
1219 struct lruvec *lruvec = folio_lruvec(folio);
1221 spin_lock_irq(&lruvec->lru_lock);
1222 lruvec_memcg_debug(lruvec, folio);
1228 * folio_lruvec_lock_irqsave - Lock the lruvec for a folio.
1229 * @folio: Pointer to the folio.
1230 * @flags: Pointer to irqsave flags.
1232 * These functions are safe to use under any of the following conditions:
1234 * - folio_test_lru false
1235 * - folio_memcg_lock()
1236 * - folio frozen (refcount of 0)
1238 * Return: The lruvec this folio is on with its lock held and interrupts
1241 struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
1242 unsigned long *flags)
1244 struct lruvec *lruvec = folio_lruvec(folio);
1246 spin_lock_irqsave(&lruvec->lru_lock, *flags);
1247 lruvec_memcg_debug(lruvec, folio);
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
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).
1263 void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1264 int zid, int nr_pages)
1266 struct mem_cgroup_per_node *mz;
1267 unsigned long *lru_size;
1270 if (mem_cgroup_disabled())
1273 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
1274 lru_size = &mz->lru_zone_size[zid][lru];
1277 *lru_size += nr_pages;
1280 if (WARN_ONCE(size < 0,
1281 "%s(%p, %d, %d): lru_size %ld\n",
1282 __func__, lruvec, lru, nr_pages, size)) {
1288 *lru_size += nr_pages;
1292 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1293 * @memcg: the memory cgroup
1295 * Returns the maximum amount of memory @mem can be charged with, in
1298 static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
1300 unsigned long margin = 0;
1301 unsigned long count;
1302 unsigned long limit;
1304 count = page_counter_read(&memcg->memory);
1305 limit = READ_ONCE(memcg->memory.max);
1307 margin = limit - count;
1309 if (do_memsw_account()) {
1310 count = page_counter_read(&memcg->memsw);
1311 limit = READ_ONCE(memcg->memsw.max);
1313 margin = min(margin, limit - count);
1322 * A routine for checking "mem" is under move_account() or not.
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
1328 static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
1330 struct mem_cgroup *from;
1331 struct mem_cgroup *to;
1334 * Unlike task_move routines, we access mc.to, mc.from not under
1335 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1337 spin_lock(&mc.lock);
1343 ret = mem_cgroup_is_descendant(from, memcg) ||
1344 mem_cgroup_is_descendant(to, memcg);
1346 spin_unlock(&mc.lock);
1350 static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
1352 if (mc.moving_task && current != mc.moving_task) {
1353 if (mem_cgroup_under_move(memcg)) {
1355 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1356 /* moving charge context might have finished. */
1359 finish_wait(&mc.waitq, &wait);
1366 struct memory_stat {
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 },
1384 { "swapcached", NR_SWAPCACHE },
1386 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1387 { "anon_thp", NR_ANON_THPS },
1388 { "file_thp", NR_FILE_THPS },
1389 { "shmem_thp", NR_SHMEM_THPS },
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 },
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 },
1409 /* Translate stat items to the correct unit for memory.stat output */
1410 static int memcg_page_state_unit(int 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:
1424 case NR_KERNEL_STACK_KB:
1431 static inline unsigned long memcg_page_state_output(struct mem_cgroup *memcg,
1434 return memcg_page_state(memcg, item) * memcg_page_state_unit(item);
1437 static char *memory_stat_format(struct mem_cgroup *memcg)
1442 seq_buf_init(&s, kmalloc(PAGE_SIZE, GFP_KERNEL), PAGE_SIZE);
1447 * Provide statistics on the state of the memory subsystem as
1448 * well as cumulative event counters that show past behavior.
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
1454 * Current memory state:
1456 mem_cgroup_flush_stats();
1458 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
1461 size = memcg_page_state_output(memcg, memory_stats[i].idx);
1462 seq_buf_printf(&s, "%s %llu\n", memory_stats[i].name, size);
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);
1471 /* Accumulated memory events */
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));
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 */
1501 /* The above should easily fit into one page */
1502 WARN_ON_ONCE(seq_buf_has_overflowed(&s));
1507 #define K(x) ((x) << (PAGE_SHIFT-10))
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
1514 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1517 void mem_cgroup_print_oom_context(struct mem_cgroup *memcg, struct task_struct *p)
1522 pr_cont(",oom_memcg=");
1523 pr_cont_cgroup_path(memcg->css.cgroup);
1525 pr_cont(",global_oom");
1527 pr_cont(",task_memcg=");
1528 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1534 * mem_cgroup_print_oom_meminfo: Print OOM memory information relevant to
1535 * memory controller.
1536 * @memcg: The memory cgroup that went over limit
1538 void mem_cgroup_print_oom_meminfo(struct mem_cgroup *memcg)
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);
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);
1558 pr_info("Memory cgroup stats for ");
1559 pr_cont_cgroup_path(memcg->css.cgroup);
1561 buf = memory_stat_format(memcg);
1569 * Return the memory (and swap, if configured) limit for a memcg.
1571 unsigned long mem_cgroup_get_max(struct mem_cgroup *memcg)
1573 unsigned long max = READ_ONCE(memcg->memory.max);
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);
1580 if (mem_cgroup_swappiness(memcg)) {
1581 /* Calculate swap excess capacity from memsw limit */
1582 unsigned long swap = READ_ONCE(memcg->memsw.max) - max;
1584 max += min(swap, (unsigned long)total_swap_pages);
1590 unsigned long mem_cgroup_size(struct mem_cgroup *memcg)
1592 return page_counter_read(&memcg->memory);
1595 static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1598 struct oom_control oc = {
1602 .gfp_mask = gfp_mask,
1607 if (mutex_lock_killable(&oom_lock))
1610 if (mem_cgroup_margin(memcg) >= (1 << order))
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.
1617 ret = task_is_dying() || out_of_memory(&oc);
1620 mutex_unlock(&oom_lock);
1624 static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1627 unsigned long *total_scanned)
1629 struct mem_cgroup *victim = NULL;
1632 unsigned long excess;
1633 unsigned long nr_scanned;
1634 struct mem_cgroup_reclaim_cookie reclaim = {
1638 excess = soft_limit_excess(root_memcg);
1641 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1646 * If we have not been able to reclaim
1647 * anything, it might because there are
1648 * no reclaimable pages under this hierarchy
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
1658 if (total >= (excess >> 2) ||
1659 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
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))
1670 mem_cgroup_iter_break(root_memcg, victim);
1674 #ifdef CONFIG_LOCKDEP
1675 static struct lockdep_map memcg_oom_lock_dep_map = {
1676 .name = "memcg_oom_lock",
1680 static DEFINE_SPINLOCK(memcg_oom_lock);
1683 * Check OOM-Killer is already running under our hierarchy.
1684 * If someone is running, return false.
1686 static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
1688 struct mem_cgroup *iter, *failed = NULL;
1690 spin_lock(&memcg_oom_lock);
1692 for_each_mem_cgroup_tree(iter, memcg) {
1693 if (iter->oom_lock) {
1695 * this subtree of our hierarchy is already locked
1696 * so we cannot give a lock.
1699 mem_cgroup_iter_break(memcg, iter);
1702 iter->oom_lock = true;
1707 * OK, we failed to lock the whole subtree so we have
1708 * to clean up what we set up to the failing subtree
1710 for_each_mem_cgroup_tree(iter, memcg) {
1711 if (iter == failed) {
1712 mem_cgroup_iter_break(memcg, iter);
1715 iter->oom_lock = false;
1718 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
1720 spin_unlock(&memcg_oom_lock);
1725 static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
1727 struct mem_cgroup *iter;
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);
1736 static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
1738 struct mem_cgroup *iter;
1740 spin_lock(&memcg_oom_lock);
1741 for_each_mem_cgroup_tree(iter, memcg)
1743 spin_unlock(&memcg_oom_lock);
1746 static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
1748 struct mem_cgroup *iter;
1751 * Be careful about under_oom underflows because a child memcg
1752 * could have been added after mem_cgroup_mark_under_oom.
1754 spin_lock(&memcg_oom_lock);
1755 for_each_mem_cgroup_tree(iter, memcg)
1756 if (iter->under_oom > 0)
1758 spin_unlock(&memcg_oom_lock);
1761 static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1763 struct oom_wait_info {
1764 struct mem_cgroup *memcg;
1765 wait_queue_entry_t wait;
1768 static int memcg_oom_wake_function(wait_queue_entry_t *wait,
1769 unsigned mode, int sync, void *arg)
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;
1775 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
1776 oom_wait_memcg = oom_wait_info->memcg;
1778 if (!mem_cgroup_is_descendant(wake_memcg, oom_wait_memcg) &&
1779 !mem_cgroup_is_descendant(oom_wait_memcg, wake_memcg))
1781 return autoremove_wake_function(wait, mode, sync, arg);
1784 static void memcg_oom_recover(struct mem_cgroup *memcg)
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.
1794 if (memcg && memcg->under_oom)
1795 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
1805 static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
1807 enum oom_status ret;
1810 if (order > PAGE_ALLOC_COSTLY_ORDER)
1813 memcg_memory_event(memcg, MEMCG_OOM);
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.
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
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.
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.
1833 if (memcg->oom_kill_disable) {
1834 if (!current->in_user_fault)
1836 css_get(&memcg->css);
1837 current->memcg_in_oom = memcg;
1838 current->memcg_oom_gfp_mask = mask;
1839 current->memcg_oom_order = order;
1844 mem_cgroup_mark_under_oom(memcg);
1846 locked = mem_cgroup_oom_trylock(memcg);
1849 mem_cgroup_oom_notify(memcg);
1851 mem_cgroup_unmark_under_oom(memcg);
1852 if (mem_cgroup_out_of_memory(memcg, mask, order))
1858 mem_cgroup_oom_unlock(memcg);
1864 * mem_cgroup_oom_synchronize - complete memcg OOM handling
1865 * @handle: actually kill/wait or just clean up the OOM state
1867 * This has to be called at the end of a page fault if the memcg OOM
1868 * handler was enabled.
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.
1877 * Returns %true if an ongoing memcg OOM situation was detected and
1878 * completed, %false otherwise.
1880 bool mem_cgroup_oom_synchronize(bool handle)
1882 struct mem_cgroup *memcg = current->memcg_in_oom;
1883 struct oom_wait_info owait;
1886 /* OOM is global, do not handle */
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);
1899 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
1900 mem_cgroup_mark_under_oom(memcg);
1902 locked = mem_cgroup_oom_trylock(memcg);
1905 mem_cgroup_oom_notify(memcg);
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);
1914 mem_cgroup_unmark_under_oom(memcg);
1915 finish_wait(&memcg_oom_waitq, &owait.wait);
1919 mem_cgroup_oom_unlock(memcg);
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.
1925 memcg_oom_recover(memcg);
1928 current->memcg_in_oom = NULL;
1929 css_put(&memcg->css);
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
1938 * Returns a pointer to a memory cgroup, which has to be cleaned up
1939 * by killing all belonging OOM-killable tasks.
1941 * Caller has to call mem_cgroup_put() on the returned non-NULL memcg.
1943 struct mem_cgroup *mem_cgroup_get_oom_group(struct task_struct *victim,
1944 struct mem_cgroup *oom_domain)
1946 struct mem_cgroup *oom_group = NULL;
1947 struct mem_cgroup *memcg;
1949 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
1953 oom_domain = root_mem_cgroup;
1957 memcg = mem_cgroup_from_task(victim);
1958 if (memcg == root_mem_cgroup)
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.
1966 if (unlikely(!mem_cgroup_is_descendant(memcg, oom_domain)))
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.
1974 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
1975 if (memcg->oom_group)
1978 if (memcg == oom_domain)
1983 css_get(&oom_group->css);
1990 void mem_cgroup_print_oom_group(struct mem_cgroup *memcg)
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");
1998 * folio_memcg_lock - Bind a folio to its memcg.
1999 * @folio: The folio.
2001 * This function prevents unlocked LRU folios from being moved to
2004 * It ensures lifetime of the bound memcg. The caller is responsible
2005 * for the lifetime of the folio.
2007 void folio_memcg_lock(struct folio *folio)
2009 struct mem_cgroup *memcg;
2010 unsigned long flags;
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.
2019 if (mem_cgroup_disabled())
2022 memcg = folio_memcg(folio);
2023 if (unlikely(!memcg))
2026 #ifdef CONFIG_PROVE_LOCKING
2027 local_irq_save(flags);
2028 might_lock(&memcg->move_lock);
2029 local_irq_restore(flags);
2032 if (atomic_read(&memcg->moving_account) <= 0)
2035 spin_lock_irqsave(&memcg->move_lock, flags);
2036 if (memcg != folio_memcg(folio)) {
2037 spin_unlock_irqrestore(&memcg->move_lock, flags);
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().
2047 memcg->move_lock_task = current;
2048 memcg->move_lock_flags = flags;
2051 void lock_page_memcg(struct page *page)
2053 folio_memcg_lock(page_folio(page));
2056 static void __folio_memcg_unlock(struct mem_cgroup *memcg)
2058 if (memcg && memcg->move_lock_task == current) {
2059 unsigned long flags = memcg->move_lock_flags;
2061 memcg->move_lock_task = NULL;
2062 memcg->move_lock_flags = 0;
2064 spin_unlock_irqrestore(&memcg->move_lock, flags);
2071 * folio_memcg_unlock - Release the binding between a folio and its memcg.
2072 * @folio: The folio.
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.
2078 void folio_memcg_unlock(struct folio *folio)
2080 __folio_memcg_unlock(folio_memcg(folio));
2083 void unlock_page_memcg(struct page *page)
2085 folio_memcg_unlock(page_folio(page));
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;
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;
2106 struct work_struct work;
2107 unsigned long flags;
2108 #define FLUSHING_CACHED_CHARGE 0
2110 static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock);
2111 static DEFINE_MUTEX(percpu_charge_mutex);
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);
2119 static inline void drain_obj_stock(struct obj_stock *stock)
2122 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2123 struct mem_cgroup *root_memcg)
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.
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.
2138 * returns true if successful, false otherwise.
2140 static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2142 struct memcg_stock_pcp *stock;
2143 unsigned long flags;
2146 if (nr_pages > MEMCG_CHARGE_BATCH)
2149 local_irq_save(flags);
2151 stock = this_cpu_ptr(&memcg_stock);
2152 if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
2153 stock->nr_pages -= nr_pages;
2157 local_irq_restore(flags);
2163 * Returns stocks cached in percpu and reset cached information.
2165 static void drain_stock(struct memcg_stock_pcp *stock)
2167 struct mem_cgroup *old = stock->cached;
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;
2180 stock->cached = NULL;
2183 static void drain_local_stock(struct work_struct *dummy)
2185 struct memcg_stock_pcp *stock;
2186 unsigned long flags;
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
2193 local_irq_save(flags);
2195 stock = this_cpu_ptr(&memcg_stock);
2196 drain_obj_stock(&stock->irq_obj);
2198 drain_obj_stock(&stock->task_obj);
2200 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
2202 local_irq_restore(flags);
2206 * Cache charges(val) to local per_cpu area.
2207 * This will be consumed by consume_stock() function, later.
2209 static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2211 struct memcg_stock_pcp *stock;
2212 unsigned long flags;
2214 local_irq_save(flags);
2216 stock = this_cpu_ptr(&memcg_stock);
2217 if (stock->cached != memcg) { /* reset if necessary */
2219 css_get(&memcg->css);
2220 stock->cached = memcg;
2222 stock->nr_pages += nr_pages;
2224 if (stock->nr_pages > MEMCG_CHARGE_BATCH)
2227 local_irq_restore(flags);
2231 * Drains all per-CPU charge caches for given root_memcg resp. subtree
2232 * of the hierarchy under it.
2234 static void drain_all_stock(struct mem_cgroup *root_memcg)
2238 /* If someone's already draining, avoid adding running more workers. */
2239 if (!mutex_trylock(&percpu_charge_mutex))
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.
2248 for_each_online_cpu(cpu) {
2249 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
2250 struct mem_cgroup *memcg;
2254 memcg = stock->cached;
2255 if (memcg && stock->nr_pages &&
2256 mem_cgroup_is_descendant(memcg, root_memcg))
2258 else if (obj_stock_flush_required(stock, root_memcg))
2263 !test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2265 drain_local_stock(&stock->work);
2267 schedule_work_on(cpu, &stock->work);
2271 mutex_unlock(&percpu_charge_mutex);
2274 static int memcg_hotplug_cpu_dead(unsigned int cpu)
2276 struct memcg_stock_pcp *stock;
2278 stock = &per_cpu(memcg_stock, cpu);
2284 static unsigned long reclaim_high(struct mem_cgroup *memcg,
2285 unsigned int nr_pages,
2288 unsigned long nr_reclaimed = 0;
2291 unsigned long pflags;
2293 if (page_counter_read(&memcg->memory) <=
2294 READ_ONCE(memcg->memory.high))
2297 memcg_memory_event(memcg, MEMCG_HIGH);
2299 psi_memstall_enter(&pflags);
2300 nr_reclaimed += try_to_free_mem_cgroup_pages(memcg, nr_pages,
2302 psi_memstall_leave(&pflags);
2303 } while ((memcg = parent_mem_cgroup(memcg)) &&
2304 !mem_cgroup_is_root(memcg));
2306 return nr_reclaimed;
2309 static void high_work_func(struct work_struct *work)
2311 struct mem_cgroup *memcg;
2313 memcg = container_of(work, struct mem_cgroup, high_work);
2314 reclaim_high(memcg, MEMCG_CHARGE_BATCH, GFP_KERNEL);
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.
2322 #define MEMCG_MAX_HIGH_DELAY_JIFFIES (2UL*HZ)
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
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.
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:
2341 * +-------+------------------------+
2342 * | usage | time to allocate in ms |
2343 * +-------+------------------------+
2365 * +-------+------------------------+
2367 #define MEMCG_DELAY_PRECISION_SHIFT 20
2368 #define MEMCG_DELAY_SCALING_SHIFT 14
2370 static u64 calculate_overage(unsigned long usage, unsigned long high)
2378 * Prevent division by 0 in overage calculation by acting as if
2379 * it was a threshold of 1 page
2381 high = max(high, 1UL);
2383 overage = usage - high;
2384 overage <<= MEMCG_DELAY_PRECISION_SHIFT;
2385 return div64_u64(overage, high);
2388 static u64 mem_find_max_overage(struct mem_cgroup *memcg)
2390 u64 overage, max_overage = 0;
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));
2402 static u64 swap_find_max_overage(struct mem_cgroup *memcg)
2404 u64 overage, max_overage = 0;
2407 overage = calculate_overage(page_counter_read(&memcg->swap),
2408 READ_ONCE(memcg->swap.high));
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));
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.
2422 static unsigned long calculate_high_delay(struct mem_cgroup *memcg,
2423 unsigned int nr_pages,
2426 unsigned long penalty_jiffies;
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
2439 penalty_jiffies = max_overage * max_overage * HZ;
2440 penalty_jiffies >>= MEMCG_DELAY_PRECISION_SHIFT;
2441 penalty_jiffies >>= MEMCG_DELAY_SCALING_SHIFT;
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.
2448 * MEMCG_CHARGE_BATCH pages is nominal, so work out how much smaller or
2449 * larger the current charge patch is than that.
2451 return penalty_jiffies * nr_pages / MEMCG_CHARGE_BATCH;
2455 * Scheduled by try_charge() to be executed from the userland return path
2456 * and reclaims memory over the high limit.
2458 void mem_cgroup_handle_over_high(void)
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;
2468 if (likely(!nr_pages))
2471 memcg = get_mem_cgroup_from_mm(current->mm);
2472 current->memcg_nr_pages_over_high = 0;
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.
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.
2484 nr_reclaimed = reclaim_high(memcg,
2485 in_retry ? SWAP_CLUSTER_MAX : nr_pages,
2489 * memory.high is breached and reclaim is unable to keep up. Throttle
2490 * allocators proactively to slow down excessive growth.
2492 penalty_jiffies = calculate_high_delay(memcg, nr_pages,
2493 mem_find_max_overage(memcg));
2495 penalty_jiffies += calculate_high_delay(memcg, nr_pages,
2496 swap_find_max_overage(memcg));
2499 * Clamp the max delay per usermode return so as to still keep the
2500 * application moving forwards and also permit diagnostics, albeit
2503 penalty_jiffies = min(penalty_jiffies, MEMCG_MAX_HIGH_DELAY_JIFFIES);
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.
2511 if (penalty_jiffies <= HZ / 100)
2515 * If reclaim is making forward progress but we're still over
2516 * memory.high, we want to encourage that rather than doing allocator
2519 if (nr_reclaimed || nr_retries--) {
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.
2529 psi_memstall_enter(&pflags);
2530 schedule_timeout_killable(penalty_jiffies);
2531 psi_memstall_leave(&pflags);
2534 css_put(&memcg->css);
2537 static int try_charge_memcg(struct mem_cgroup *memcg, gfp_t gfp_mask,
2538 unsigned int nr_pages)
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;
2552 if (consume_stock(memcg, nr_pages))
2555 if (!do_memsw_account() ||
2556 page_counter_try_charge(&memcg->memsw, batch, &counter)) {
2557 if (page_counter_try_charge(&memcg->memory, batch, &counter))
2559 if (do_memsw_account())
2560 page_counter_uncharge(&memcg->memsw, batch);
2561 mem_over_limit = mem_cgroup_from_counter(counter, memory);
2563 mem_over_limit = mem_cgroup_from_counter(counter, memsw);
2567 if (batch > nr_pages) {
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.
2578 if (gfp_mask & __GFP_ATOMIC)
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.
2587 if (unlikely(current->flags & PF_MEMALLOC))
2590 if (unlikely(task_in_memcg_oom(current)))
2593 if (!gfpflags_allow_blocking(gfp_mask))
2596 memcg_memory_event(mem_over_limit, MEMCG_MAX);
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);
2603 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
2607 drain_all_stock(mem_over_limit);
2612 if (gfp_mask & __GFP_NORETRY)
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.
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.
2623 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
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.
2629 if (mem_cgroup_wait_acct_move(mem_over_limit))
2635 if (gfp_mask & __GFP_RETRY_MAYFAIL)
2638 /* Avoid endless loop for tasks bypassed by the oom killer */
2639 if (passed_oom && task_is_dying())
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.
2647 oom_status = mem_cgroup_oom(mem_over_limit, gfp_mask,
2648 get_order(nr_pages * PAGE_SIZE));
2649 if (oom_status == OOM_SUCCESS) {
2651 nr_retries = MAX_RECLAIM_RETRIES;
2655 if (!(gfp_mask & __GFP_NOFAIL))
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.
2663 page_counter_charge(&memcg->memory, nr_pages);
2664 if (do_memsw_account())
2665 page_counter_charge(&memcg->memsw, nr_pages);
2670 if (batch > nr_pages)
2671 refill_stock(memcg, batch - nr_pages);
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.
2683 bool mem_high, swap_high;
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);
2690 /* Don't bother a random interrupted task */
2691 if (in_interrupt()) {
2693 schedule_work(&memcg->high_work);
2699 if (mem_high || swap_high) {
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.
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.
2709 current->memcg_nr_pages_over_high += batch;
2710 set_notify_resume(current);
2713 } while ((memcg = parent_mem_cgroup(memcg)));
2718 static inline int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
2719 unsigned int nr_pages)
2721 if (mem_cgroup_is_root(memcg))
2724 return try_charge_memcg(memcg, gfp_mask, nr_pages);
2727 static inline void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
2729 if (mem_cgroup_is_root(memcg))
2732 page_counter_uncharge(&memcg->memory, nr_pages);
2733 if (do_memsw_account())
2734 page_counter_uncharge(&memcg->memsw, nr_pages);
2737 static void commit_charge(struct folio *folio, struct mem_cgroup *memcg)
2739 VM_BUG_ON_FOLIO(folio_memcg(folio), folio);
2741 * Any of the following ensures page's memcg stability:
2745 * - lock_page_memcg()
2746 * - exclusive reference
2748 folio->memcg_data = (unsigned long)memcg;
2751 static struct mem_cgroup *get_mem_cgroup_from_objcg(struct obj_cgroup *objcg)
2753 struct mem_cgroup *memcg;
2757 memcg = obj_cgroup_memcg(objcg);
2758 if (unlikely(!css_tryget(&memcg->css)))
2765 #ifdef CONFIG_MEMCG_KMEM
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.
2771 #define OBJCGS_CLEAR_MASK (__GFP_DMA | __GFP_RECLAIMABLE | __GFP_ACCOUNT)
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.
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.
2784 static inline struct obj_stock *get_obj_stock(unsigned long *pflags)
2786 struct memcg_stock_pcp *stock;
2788 if (likely(in_task())) {
2791 stock = this_cpu_ptr(&memcg_stock);
2792 return &stock->task_obj;
2795 local_irq_save(*pflags);
2796 stock = this_cpu_ptr(&memcg_stock);
2797 return &stock->irq_obj;
2800 static inline void put_obj_stock(unsigned long flags)
2802 if (likely(in_task()))
2805 local_irq_restore(flags);
2809 * mod_objcg_mlstate() may be called with irq enabled, so
2810 * mod_memcg_lruvec_state() should be used.
2812 static inline void mod_objcg_mlstate(struct obj_cgroup *objcg,
2813 struct pglist_data *pgdat,
2814 enum node_stat_item idx, int nr)
2816 struct mem_cgroup *memcg;
2817 struct lruvec *lruvec;
2820 memcg = obj_cgroup_memcg(objcg);
2821 lruvec = mem_cgroup_lruvec(memcg, pgdat);
2822 mod_memcg_lruvec_state(lruvec, idx, nr);
2826 int memcg_alloc_slab_cgroups(struct slab *slab, struct kmem_cache *s,
2827 gfp_t gfp, bool new_slab)
2829 unsigned int objects = objs_per_slab(s, slab);
2830 unsigned long memcg_data;
2833 gfp &= ~OBJCGS_CLEAR_MASK;
2834 vec = kcalloc_node(objects, sizeof(struct obj_cgroup *), gfp,
2839 memcg_data = (unsigned long) vec | MEMCG_DATA_OBJCGS;
2842 * If the slab is brand new and nobody can yet access its
2843 * memcg_data, no synchronization is required and memcg_data can
2844 * be simply assigned.
2846 slab->memcg_data = memcg_data;
2847 } else if (cmpxchg(&slab->memcg_data, 0, memcg_data)) {
2849 * If the slab is already in use, somebody can allocate and
2850 * assign obj_cgroups in parallel. In this case the existing
2851 * objcg vector should be reused.
2857 kmemleak_not_leak(vec);
2862 * Returns a pointer to the memory cgroup to which the kernel object is charged.
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.
2870 * The caller must ensure the memcg lifetime, e.g. by taking rcu_read_lock(),
2871 * cgroup_mutex, etc.
2873 struct mem_cgroup *mem_cgroup_from_obj(void *p)
2875 struct folio *folio;
2877 if (mem_cgroup_disabled())
2880 folio = virt_to_folio(p);
2883 * Slab objects are accounted individually, not per-page.
2884 * Memcg membership data for each individual object is saved in
2887 if (folio_test_slab(folio)) {
2888 struct obj_cgroup **objcgs;
2892 slab = folio_slab(folio);
2893 objcgs = slab_objcgs(slab);
2897 off = obj_to_index(slab->slab_cache, slab, p);
2899 return obj_cgroup_memcg(objcgs[off]);
2905 * page_memcg_check() is used here, because in theory we can encounter
2906 * a folio where the slab flag has been cleared already, but
2907 * slab->memcg_data has not been freed yet
2908 * page_memcg_check(page) will guarantee that a proper memory
2909 * cgroup pointer or NULL will be returned.
2911 return page_memcg_check(folio_page(folio, 0));
2914 __always_inline struct obj_cgroup *get_obj_cgroup_from_current(void)
2916 struct obj_cgroup *objcg = NULL;
2917 struct mem_cgroup *memcg;
2919 if (memcg_kmem_bypass())
2923 if (unlikely(active_memcg()))
2924 memcg = active_memcg();
2926 memcg = mem_cgroup_from_task(current);
2928 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
2929 objcg = rcu_dereference(memcg->objcg);
2930 if (objcg && obj_cgroup_tryget(objcg))
2939 static int memcg_alloc_cache_id(void)
2944 id = ida_simple_get(&memcg_cache_ida,
2945 0, MEMCG_CACHES_MAX_SIZE, GFP_KERNEL);
2949 if (id < memcg_nr_cache_ids)
2953 * There's no space for the new id in memcg_caches arrays,
2954 * so we have to grow them.
2956 down_write(&memcg_cache_ids_sem);
2958 size = 2 * (id + 1);
2959 if (size < MEMCG_CACHES_MIN_SIZE)
2960 size = MEMCG_CACHES_MIN_SIZE;
2961 else if (size > MEMCG_CACHES_MAX_SIZE)
2962 size = MEMCG_CACHES_MAX_SIZE;
2964 err = memcg_update_all_list_lrus(size);
2966 memcg_nr_cache_ids = size;
2968 up_write(&memcg_cache_ids_sem);
2971 ida_simple_remove(&memcg_cache_ida, id);
2977 static void memcg_free_cache_id(int id)
2979 ida_simple_remove(&memcg_cache_ida, id);
2983 * obj_cgroup_uncharge_pages: uncharge a number of kernel pages from a objcg
2984 * @objcg: object cgroup to uncharge
2985 * @nr_pages: number of pages to uncharge
2987 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
2988 unsigned int nr_pages)
2990 struct mem_cgroup *memcg;
2992 memcg = get_mem_cgroup_from_objcg(objcg);
2994 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
2995 page_counter_uncharge(&memcg->kmem, nr_pages);
2996 refill_stock(memcg, nr_pages);
2998 css_put(&memcg->css);
3002 * obj_cgroup_charge_pages: charge a number of kernel pages to a objcg
3003 * @objcg: object cgroup to charge
3004 * @gfp: reclaim mode
3005 * @nr_pages: number of pages to charge
3007 * Returns 0 on success, an error code on failure.
3009 static int obj_cgroup_charge_pages(struct obj_cgroup *objcg, gfp_t gfp,
3010 unsigned int nr_pages)
3012 struct mem_cgroup *memcg;
3015 memcg = get_mem_cgroup_from_objcg(objcg);
3017 ret = try_charge_memcg(memcg, gfp, nr_pages);
3021 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
3022 page_counter_charge(&memcg->kmem, nr_pages);
3024 css_put(&memcg->css);
3030 * __memcg_kmem_charge_page: charge a kmem page to the current memory cgroup
3031 * @page: page to charge
3032 * @gfp: reclaim mode
3033 * @order: allocation order
3035 * Returns 0 on success, an error code on failure.
3037 int __memcg_kmem_charge_page(struct page *page, gfp_t gfp, int order)
3039 struct obj_cgroup *objcg;
3042 objcg = get_obj_cgroup_from_current();
3044 ret = obj_cgroup_charge_pages(objcg, gfp, 1 << order);
3046 page->memcg_data = (unsigned long)objcg |
3050 obj_cgroup_put(objcg);
3056 * __memcg_kmem_uncharge_page: uncharge a kmem page
3057 * @page: page to uncharge
3058 * @order: allocation order
3060 void __memcg_kmem_uncharge_page(struct page *page, int order)
3062 struct folio *folio = page_folio(page);
3063 struct obj_cgroup *objcg;
3064 unsigned int nr_pages = 1 << order;
3066 if (!folio_memcg_kmem(folio))
3069 objcg = __folio_objcg(folio);
3070 obj_cgroup_uncharge_pages(objcg, nr_pages);
3071 folio->memcg_data = 0;
3072 obj_cgroup_put(objcg);
3075 void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat,
3076 enum node_stat_item idx, int nr)
3078 unsigned long flags;
3079 struct obj_stock *stock = get_obj_stock(&flags);
3083 * Save vmstat data in stock and skip vmstat array update unless
3084 * accumulating over a page of vmstat data or when pgdat or idx
3087 if (stock->cached_objcg != objcg) {
3088 drain_obj_stock(stock);
3089 obj_cgroup_get(objcg);
3090 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3091 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3092 stock->cached_objcg = objcg;
3093 stock->cached_pgdat = pgdat;
3094 } else if (stock->cached_pgdat != pgdat) {
3095 /* Flush the existing cached vmstat data */
3096 struct pglist_data *oldpg = stock->cached_pgdat;
3098 if (stock->nr_slab_reclaimable_b) {
3099 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_RECLAIMABLE_B,
3100 stock->nr_slab_reclaimable_b);
3101 stock->nr_slab_reclaimable_b = 0;
3103 if (stock->nr_slab_unreclaimable_b) {
3104 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_UNRECLAIMABLE_B,
3105 stock->nr_slab_unreclaimable_b);
3106 stock->nr_slab_unreclaimable_b = 0;
3108 stock->cached_pgdat = pgdat;
3111 bytes = (idx == NR_SLAB_RECLAIMABLE_B) ? &stock->nr_slab_reclaimable_b
3112 : &stock->nr_slab_unreclaimable_b;
3114 * Even for large object >= PAGE_SIZE, the vmstat data will still be
3115 * cached locally at least once before pushing it out.
3122 if (abs(*bytes) > PAGE_SIZE) {
3130 mod_objcg_mlstate(objcg, pgdat, idx, nr);
3132 put_obj_stock(flags);
3135 static bool consume_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes)
3137 unsigned long flags;
3138 struct obj_stock *stock = get_obj_stock(&flags);
3141 if (objcg == stock->cached_objcg && stock->nr_bytes >= nr_bytes) {
3142 stock->nr_bytes -= nr_bytes;
3146 put_obj_stock(flags);
3151 static void drain_obj_stock(struct obj_stock *stock)
3153 struct obj_cgroup *old = stock->cached_objcg;
3158 if (stock->nr_bytes) {
3159 unsigned int nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3160 unsigned int nr_bytes = stock->nr_bytes & (PAGE_SIZE - 1);
3163 obj_cgroup_uncharge_pages(old, nr_pages);
3166 * The leftover is flushed to the centralized per-memcg value.
3167 * On the next attempt to refill obj stock it will be moved
3168 * to a per-cpu stock (probably, on an other CPU), see
3169 * refill_obj_stock().
3171 * How often it's flushed is a trade-off between the memory
3172 * limit enforcement accuracy and potential CPU contention,
3173 * so it might be changed in the future.
3175 atomic_add(nr_bytes, &old->nr_charged_bytes);
3176 stock->nr_bytes = 0;
3180 * Flush the vmstat data in current stock
3182 if (stock->nr_slab_reclaimable_b || stock->nr_slab_unreclaimable_b) {
3183 if (stock->nr_slab_reclaimable_b) {
3184 mod_objcg_mlstate(old, stock->cached_pgdat,
3185 NR_SLAB_RECLAIMABLE_B,
3186 stock->nr_slab_reclaimable_b);
3187 stock->nr_slab_reclaimable_b = 0;
3189 if (stock->nr_slab_unreclaimable_b) {
3190 mod_objcg_mlstate(old, stock->cached_pgdat,
3191 NR_SLAB_UNRECLAIMABLE_B,
3192 stock->nr_slab_unreclaimable_b);
3193 stock->nr_slab_unreclaimable_b = 0;
3195 stock->cached_pgdat = NULL;
3198 obj_cgroup_put(old);
3199 stock->cached_objcg = NULL;
3202 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
3203 struct mem_cgroup *root_memcg)
3205 struct mem_cgroup *memcg;
3207 if (in_task() && stock->task_obj.cached_objcg) {
3208 memcg = obj_cgroup_memcg(stock->task_obj.cached_objcg);
3209 if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3212 if (stock->irq_obj.cached_objcg) {
3213 memcg = obj_cgroup_memcg(stock->irq_obj.cached_objcg);
3214 if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3221 static void refill_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes,
3222 bool allow_uncharge)
3224 unsigned long flags;
3225 struct obj_stock *stock = get_obj_stock(&flags);
3226 unsigned int nr_pages = 0;
3228 if (stock->cached_objcg != objcg) { /* reset if necessary */
3229 drain_obj_stock(stock);
3230 obj_cgroup_get(objcg);
3231 stock->cached_objcg = objcg;
3232 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3233 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3234 allow_uncharge = true; /* Allow uncharge when objcg changes */
3236 stock->nr_bytes += nr_bytes;
3238 if (allow_uncharge && (stock->nr_bytes > PAGE_SIZE)) {
3239 nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3240 stock->nr_bytes &= (PAGE_SIZE - 1);
3243 put_obj_stock(flags);
3246 obj_cgroup_uncharge_pages(objcg, nr_pages);
3249 int obj_cgroup_charge(struct obj_cgroup *objcg, gfp_t gfp, size_t size)
3251 unsigned int nr_pages, nr_bytes;
3254 if (consume_obj_stock(objcg, size))
3258 * In theory, objcg->nr_charged_bytes can have enough
3259 * pre-charged bytes to satisfy the allocation. However,
3260 * flushing objcg->nr_charged_bytes requires two atomic
3261 * operations, and objcg->nr_charged_bytes can't be big.
3262 * The shared objcg->nr_charged_bytes can also become a
3263 * performance bottleneck if all tasks of the same memcg are
3264 * trying to update it. So it's better to ignore it and try
3265 * grab some new pages. The stock's nr_bytes will be flushed to
3266 * objcg->nr_charged_bytes later on when objcg changes.
3268 * The stock's nr_bytes may contain enough pre-charged bytes
3269 * to allow one less page from being charged, but we can't rely
3270 * on the pre-charged bytes not being changed outside of
3271 * consume_obj_stock() or refill_obj_stock(). So ignore those
3272 * pre-charged bytes as well when charging pages. To avoid a
3273 * page uncharge right after a page charge, we set the
3274 * allow_uncharge flag to false when calling refill_obj_stock()
3275 * to temporarily allow the pre-charged bytes to exceed the page
3276 * size limit. The maximum reachable value of the pre-charged
3277 * bytes is (sizeof(object) + PAGE_SIZE - 2) if there is no data
3280 nr_pages = size >> PAGE_SHIFT;
3281 nr_bytes = size & (PAGE_SIZE - 1);
3286 ret = obj_cgroup_charge_pages(objcg, gfp, nr_pages);
3287 if (!ret && nr_bytes)
3288 refill_obj_stock(objcg, PAGE_SIZE - nr_bytes, false);
3293 void obj_cgroup_uncharge(struct obj_cgroup *objcg, size_t size)
3295 refill_obj_stock(objcg, size, true);
3298 #endif /* CONFIG_MEMCG_KMEM */
3301 * Because page_memcg(head) is not set on tails, set it now.
3303 void split_page_memcg(struct page *head, unsigned int nr)
3305 struct folio *folio = page_folio(head);
3306 struct mem_cgroup *memcg = folio_memcg(folio);
3309 if (mem_cgroup_disabled() || !memcg)
3312 for (i = 1; i < nr; i++)
3313 folio_page(folio, i)->memcg_data = folio->memcg_data;
3315 if (folio_memcg_kmem(folio))
3316 obj_cgroup_get_many(__folio_objcg(folio), nr - 1);
3318 css_get_many(&memcg->css, nr - 1);
3321 #ifdef CONFIG_MEMCG_SWAP
3323 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3324 * @entry: swap entry to be moved
3325 * @from: mem_cgroup which the entry is moved from
3326 * @to: mem_cgroup which the entry is moved to
3328 * It succeeds only when the swap_cgroup's record for this entry is the same
3329 * as the mem_cgroup's id of @from.
3331 * Returns 0 on success, -EINVAL on failure.
3333 * The caller must have charged to @to, IOW, called page_counter_charge() about
3334 * both res and memsw, and called css_get().
3336 static int mem_cgroup_move_swap_account(swp_entry_t entry,
3337 struct mem_cgroup *from, struct mem_cgroup *to)
3339 unsigned short old_id, new_id;
3341 old_id = mem_cgroup_id(from);
3342 new_id = mem_cgroup_id(to);
3344 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
3345 mod_memcg_state(from, MEMCG_SWAP, -1);
3346 mod_memcg_state(to, MEMCG_SWAP, 1);
3352 static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
3353 struct mem_cgroup *from, struct mem_cgroup *to)
3359 static DEFINE_MUTEX(memcg_max_mutex);
3361 static int mem_cgroup_resize_max(struct mem_cgroup *memcg,
3362 unsigned long max, bool memsw)
3364 bool enlarge = false;
3365 bool drained = false;
3367 bool limits_invariant;
3368 struct page_counter *counter = memsw ? &memcg->memsw : &memcg->memory;
3371 if (signal_pending(current)) {
3376 mutex_lock(&memcg_max_mutex);
3378 * Make sure that the new limit (memsw or memory limit) doesn't
3379 * break our basic invariant rule memory.max <= memsw.max.
3381 limits_invariant = memsw ? max >= READ_ONCE(memcg->memory.max) :
3382 max <= memcg->memsw.max;
3383 if (!limits_invariant) {
3384 mutex_unlock(&memcg_max_mutex);
3388 if (max > counter->max)
3390 ret = page_counter_set_max(counter, max);
3391 mutex_unlock(&memcg_max_mutex);
3397 drain_all_stock(memcg);
3402 if (!try_to_free_mem_cgroup_pages(memcg, 1,
3403 GFP_KERNEL, !memsw)) {
3409 if (!ret && enlarge)
3410 memcg_oom_recover(memcg);
3415 unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
3417 unsigned long *total_scanned)
3419 unsigned long nr_reclaimed = 0;
3420 struct mem_cgroup_per_node *mz, *next_mz = NULL;
3421 unsigned long reclaimed;
3423 struct mem_cgroup_tree_per_node *mctz;
3424 unsigned long excess;
3425 unsigned long nr_scanned;
3430 mctz = soft_limit_tree.rb_tree_per_node[pgdat->node_id];
3433 * Do not even bother to check the largest node if the root
3434 * is empty. Do it lockless to prevent lock bouncing. Races
3435 * are acceptable as soft limit is best effort anyway.
3437 if (!mctz || RB_EMPTY_ROOT(&mctz->rb_root))
3441 * This loop can run a while, specially if mem_cgroup's continuously
3442 * keep exceeding their soft limit and putting the system under
3449 mz = mem_cgroup_largest_soft_limit_node(mctz);
3454 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, pgdat,
3455 gfp_mask, &nr_scanned);
3456 nr_reclaimed += reclaimed;
3457 *total_scanned += nr_scanned;
3458 spin_lock_irq(&mctz->lock);
3459 __mem_cgroup_remove_exceeded(mz, mctz);
3462 * If we failed to reclaim anything from this memory cgroup
3463 * it is time to move on to the next cgroup
3467 next_mz = __mem_cgroup_largest_soft_limit_node(mctz);
3469 excess = soft_limit_excess(mz->memcg);
3471 * One school of thought says that we should not add
3472 * back the node to the tree if reclaim returns 0.
3473 * But our reclaim could return 0, simply because due
3474 * to priority we are exposing a smaller subset of
3475 * memory to reclaim from. Consider this as a longer
3478 /* If excess == 0, no tree ops */
3479 __mem_cgroup_insert_exceeded(mz, mctz, excess);
3480 spin_unlock_irq(&mctz->lock);
3481 css_put(&mz->memcg->css);
3484 * Could not reclaim anything and there are no more
3485 * mem cgroups to try or we seem to be looping without
3486 * reclaiming anything.
3488 if (!nr_reclaimed &&
3490 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3492 } while (!nr_reclaimed);
3494 css_put(&next_mz->memcg->css);
3495 return nr_reclaimed;
3499 * Reclaims as many pages from the given memcg as possible.
3501 * Caller is responsible for holding css reference for memcg.
3503 static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3505 int nr_retries = MAX_RECLAIM_RETRIES;
3507 /* we call try-to-free pages for make this cgroup empty */
3508 lru_add_drain_all();
3510 drain_all_stock(memcg);
3512 /* try to free all pages in this cgroup */
3513 while (nr_retries && page_counter_read(&memcg->memory)) {
3514 if (signal_pending(current))
3517 if (!try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true))
3524 static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3525 char *buf, size_t nbytes,
3528 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3530 if (mem_cgroup_is_root(memcg))
3532 return mem_cgroup_force_empty(memcg) ?: nbytes;
3535 static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3541 static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3542 struct cftype *cft, u64 val)
3547 pr_warn_once("Non-hierarchical mode is deprecated. "
3548 "Please report your usecase to linux-mm@kvack.org if you "
3549 "depend on this functionality.\n");
3554 static unsigned long mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
3558 if (mem_cgroup_is_root(memcg)) {
3559 mem_cgroup_flush_stats();
3560 val = memcg_page_state(memcg, NR_FILE_PAGES) +
3561 memcg_page_state(memcg, NR_ANON_MAPPED);
3563 val += memcg_page_state(memcg, MEMCG_SWAP);
3566 val = page_counter_read(&memcg->memory);
3568 val = page_counter_read(&memcg->memsw);
3581 static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
3584 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3585 struct page_counter *counter;
3587 switch (MEMFILE_TYPE(cft->private)) {
3589 counter = &memcg->memory;
3592 counter = &memcg->memsw;
3595 counter = &memcg->kmem;
3598 counter = &memcg->tcpmem;
3604 switch (MEMFILE_ATTR(cft->private)) {
3606 if (counter == &memcg->memory)
3607 return (u64)mem_cgroup_usage(memcg, false) * PAGE_SIZE;
3608 if (counter == &memcg->memsw)
3609 return (u64)mem_cgroup_usage(memcg, true) * PAGE_SIZE;
3610 return (u64)page_counter_read(counter) * PAGE_SIZE;
3612 return (u64)counter->max * PAGE_SIZE;
3614 return (u64)counter->watermark * PAGE_SIZE;
3616 return counter->failcnt;
3617 case RES_SOFT_LIMIT:
3618 return (u64)memcg->soft_limit * PAGE_SIZE;
3624 #ifdef CONFIG_MEMCG_KMEM
3625 static int memcg_online_kmem(struct mem_cgroup *memcg)
3627 struct obj_cgroup *objcg;
3630 if (cgroup_memory_nokmem)
3633 BUG_ON(memcg->kmemcg_id >= 0);
3635 memcg_id = memcg_alloc_cache_id();
3639 objcg = obj_cgroup_alloc();
3641 memcg_free_cache_id(memcg_id);
3644 objcg->memcg = memcg;
3645 rcu_assign_pointer(memcg->objcg, objcg);
3647 static_branch_enable(&memcg_kmem_enabled_key);
3649 memcg->kmemcg_id = memcg_id;
3654 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3656 struct mem_cgroup *parent;
3659 if (memcg->kmemcg_id == -1)
3662 parent = parent_mem_cgroup(memcg);
3664 parent = root_mem_cgroup;
3666 memcg_reparent_objcgs(memcg, parent);
3668 kmemcg_id = memcg->kmemcg_id;
3669 BUG_ON(kmemcg_id < 0);
3672 * After we have finished memcg_reparent_objcgs(), all list_lrus
3673 * corresponding to this cgroup are guaranteed to remain empty.
3674 * The ordering is imposed by list_lru_node->lock taken by
3675 * memcg_drain_all_list_lrus().
3677 memcg_drain_all_list_lrus(kmemcg_id, parent);
3679 memcg_free_cache_id(kmemcg_id);
3680 memcg->kmemcg_id = -1;
3683 static int memcg_online_kmem(struct mem_cgroup *memcg)
3687 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3690 #endif /* CONFIG_MEMCG_KMEM */
3692 static int memcg_update_tcp_max(struct mem_cgroup *memcg, unsigned long max)
3696 mutex_lock(&memcg_max_mutex);
3698 ret = page_counter_set_max(&memcg->tcpmem, max);
3702 if (!memcg->tcpmem_active) {
3704 * The active flag needs to be written after the static_key
3705 * update. This is what guarantees that the socket activation
3706 * function is the last one to run. See mem_cgroup_sk_alloc()
3707 * for details, and note that we don't mark any socket as
3708 * belonging to this memcg until that flag is up.
3710 * We need to do this, because static_keys will span multiple
3711 * sites, but we can't control their order. If we mark a socket
3712 * as accounted, but the accounting functions are not patched in
3713 * yet, we'll lose accounting.
3715 * We never race with the readers in mem_cgroup_sk_alloc(),
3716 * because when this value change, the code to process it is not
3719 static_branch_inc(&memcg_sockets_enabled_key);
3720 memcg->tcpmem_active = true;
3723 mutex_unlock(&memcg_max_mutex);
3728 * The user of this function is...
3731 static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
3732 char *buf, size_t nbytes, loff_t off)
3734 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3735 unsigned long nr_pages;
3738 buf = strstrip(buf);
3739 ret = page_counter_memparse(buf, "-1", &nr_pages);
3743 switch (MEMFILE_ATTR(of_cft(of)->private)) {
3745 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3749 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3751 ret = mem_cgroup_resize_max(memcg, nr_pages, false);
3754 ret = mem_cgroup_resize_max(memcg, nr_pages, true);
3757 /* kmem.limit_in_bytes is deprecated. */
3761 ret = memcg_update_tcp_max(memcg, nr_pages);
3765 case RES_SOFT_LIMIT:
3766 memcg->soft_limit = nr_pages;
3770 return ret ?: nbytes;
3773 static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
3774 size_t nbytes, loff_t off)
3776 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3777 struct page_counter *counter;
3779 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3781 counter = &memcg->memory;
3784 counter = &memcg->memsw;
3787 counter = &memcg->kmem;
3790 counter = &memcg->tcpmem;
3796 switch (MEMFILE_ATTR(of_cft(of)->private)) {
3798 page_counter_reset_watermark(counter);
3801 counter->failcnt = 0;
3810 static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
3813 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
3817 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3818 struct cftype *cft, u64 val)
3820 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3822 if (val & ~MOVE_MASK)
3826 * No kind of locking is needed in here, because ->can_attach() will
3827 * check this value once in the beginning of the process, and then carry
3828 * on with stale data. This means that changes to this value will only
3829 * affect task migrations starting after the change.
3831 memcg->move_charge_at_immigrate = val;
3835 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3836 struct cftype *cft, u64 val)
3844 #define LRU_ALL_FILE (BIT(LRU_INACTIVE_FILE) | BIT(LRU_ACTIVE_FILE))
3845 #define LRU_ALL_ANON (BIT(LRU_INACTIVE_ANON) | BIT(LRU_ACTIVE_ANON))
3846 #define LRU_ALL ((1 << NR_LRU_LISTS) - 1)
3848 static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
3849 int nid, unsigned int lru_mask, bool tree)
3851 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
3852 unsigned long nr = 0;
3855 VM_BUG_ON((unsigned)nid >= nr_node_ids);
3858 if (!(BIT(lru) & lru_mask))
3861 nr += lruvec_page_state(lruvec, NR_LRU_BASE + lru);
3863 nr += lruvec_page_state_local(lruvec, NR_LRU_BASE + lru);
3868 static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
3869 unsigned int lru_mask,
3872 unsigned long nr = 0;
3876 if (!(BIT(lru) & lru_mask))
3879 nr += memcg_page_state(memcg, NR_LRU_BASE + lru);
3881 nr += memcg_page_state_local(memcg, NR_LRU_BASE + lru);
3886 static int memcg_numa_stat_show(struct seq_file *m, void *v)
3890 unsigned int lru_mask;
3893 static const struct numa_stat stats[] = {
3894 { "total", LRU_ALL },
3895 { "file", LRU_ALL_FILE },
3896 { "anon", LRU_ALL_ANON },
3897 { "unevictable", BIT(LRU_UNEVICTABLE) },
3899 const struct numa_stat *stat;
3901 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3903 mem_cgroup_flush_stats();
3905 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3906 seq_printf(m, "%s=%lu", stat->name,
3907 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3909 for_each_node_state(nid, N_MEMORY)
3910 seq_printf(m, " N%d=%lu", nid,
3911 mem_cgroup_node_nr_lru_pages(memcg, nid,
3912 stat->lru_mask, false));
3916 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3918 seq_printf(m, "hierarchical_%s=%lu", stat->name,
3919 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3921 for_each_node_state(nid, N_MEMORY)
3922 seq_printf(m, " N%d=%lu", nid,
3923 mem_cgroup_node_nr_lru_pages(memcg, nid,
3924 stat->lru_mask, true));
3930 #endif /* CONFIG_NUMA */
3932 static const unsigned int memcg1_stats[] = {
3935 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3945 static const char *const memcg1_stat_names[] = {
3948 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3958 /* Universal VM events cgroup1 shows, original sort order */
3959 static const unsigned int memcg1_events[] = {
3966 static int memcg_stat_show(struct seq_file *m, void *v)
3968 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3969 unsigned long memory, memsw;
3970 struct mem_cgroup *mi;
3973 BUILD_BUG_ON(ARRAY_SIZE(memcg1_stat_names) != ARRAY_SIZE(memcg1_stats));
3975 mem_cgroup_flush_stats();
3977 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
3980 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
3982 nr = memcg_page_state_local(memcg, memcg1_stats[i]);
3983 seq_printf(m, "%s %lu\n", memcg1_stat_names[i], nr * PAGE_SIZE);
3986 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
3987 seq_printf(m, "%s %lu\n", vm_event_name(memcg1_events[i]),
3988 memcg_events_local(memcg, memcg1_events[i]));
3990 for (i = 0; i < NR_LRU_LISTS; i++)
3991 seq_printf(m, "%s %lu\n", lru_list_name(i),
3992 memcg_page_state_local(memcg, NR_LRU_BASE + i) *
3995 /* Hierarchical information */
3996 memory = memsw = PAGE_COUNTER_MAX;
3997 for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
3998 memory = min(memory, READ_ONCE(mi->memory.max));
3999 memsw = min(memsw, READ_ONCE(mi->memsw.max));
4001 seq_printf(m, "hierarchical_memory_limit %llu\n",
4002 (u64)memory * PAGE_SIZE);
4003 if (do_memsw_account())
4004 seq_printf(m, "hierarchical_memsw_limit %llu\n",
4005 (u64)memsw * PAGE_SIZE);
4007 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
4010 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
4012 nr = memcg_page_state(memcg, memcg1_stats[i]);
4013 seq_printf(m, "total_%s %llu\n", memcg1_stat_names[i],
4014 (u64)nr * PAGE_SIZE);
4017 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
4018 seq_printf(m, "total_%s %llu\n",
4019 vm_event_name(memcg1_events[i]),
4020 (u64)memcg_events(memcg, memcg1_events[i]));
4022 for (i = 0; i < NR_LRU_LISTS; i++)
4023 seq_printf(m, "total_%s %llu\n", lru_list_name(i),
4024 (u64)memcg_page_state(memcg, NR_LRU_BASE + i) *
4027 #ifdef CONFIG_DEBUG_VM
4030 struct mem_cgroup_per_node *mz;
4031 unsigned long anon_cost = 0;
4032 unsigned long file_cost = 0;
4034 for_each_online_pgdat(pgdat) {
4035 mz = memcg->nodeinfo[pgdat->node_id];
4037 anon_cost += mz->lruvec.anon_cost;
4038 file_cost += mz->lruvec.file_cost;
4040 seq_printf(m, "anon_cost %lu\n", anon_cost);
4041 seq_printf(m, "file_cost %lu\n", file_cost);
4048 static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4051 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4053 return mem_cgroup_swappiness(memcg);
4056 static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4057 struct cftype *cft, u64 val)
4059 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4064 if (!mem_cgroup_is_root(memcg))
4065 memcg->swappiness = val;
4067 vm_swappiness = val;
4072 static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4074 struct mem_cgroup_threshold_ary *t;
4075 unsigned long usage;
4080 t = rcu_dereference(memcg->thresholds.primary);
4082 t = rcu_dereference(memcg->memsw_thresholds.primary);
4087 usage = mem_cgroup_usage(memcg, swap);
4090 * current_threshold points to threshold just below or equal to usage.
4091 * If it's not true, a threshold was crossed after last
4092 * call of __mem_cgroup_threshold().
4094 i = t->current_threshold;
4097 * Iterate backward over array of thresholds starting from
4098 * current_threshold and check if a threshold is crossed.
4099 * If none of thresholds below usage is crossed, we read
4100 * only one element of the array here.
4102 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4103 eventfd_signal(t->entries[i].eventfd, 1);
4105 /* i = current_threshold + 1 */
4109 * Iterate forward over array of thresholds starting from
4110 * current_threshold+1 and check if a threshold is crossed.
4111 * If none of thresholds above usage is crossed, we read
4112 * only one element of the array here.
4114 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4115 eventfd_signal(t->entries[i].eventfd, 1);
4117 /* Update current_threshold */
4118 t->current_threshold = i - 1;
4123 static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4126 __mem_cgroup_threshold(memcg, false);
4127 if (do_memsw_account())
4128 __mem_cgroup_threshold(memcg, true);
4130 memcg = parent_mem_cgroup(memcg);
4134 static int compare_thresholds(const void *a, const void *b)
4136 const struct mem_cgroup_threshold *_a = a;
4137 const struct mem_cgroup_threshold *_b = b;
4139 if (_a->threshold > _b->threshold)
4142 if (_a->threshold < _b->threshold)
4148 static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
4150 struct mem_cgroup_eventfd_list *ev;
4152 spin_lock(&memcg_oom_lock);
4154 list_for_each_entry(ev, &memcg->oom_notify, list)
4155 eventfd_signal(ev->eventfd, 1);
4157 spin_unlock(&memcg_oom_lock);
4161 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
4163 struct mem_cgroup *iter;
4165 for_each_mem_cgroup_tree(iter, memcg)
4166 mem_cgroup_oom_notify_cb(iter);
4169 static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4170 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
4172 struct mem_cgroup_thresholds *thresholds;
4173 struct mem_cgroup_threshold_ary *new;
4174 unsigned long threshold;
4175 unsigned long usage;
4178 ret = page_counter_memparse(args, "-1", &threshold);
4182 mutex_lock(&memcg->thresholds_lock);
4185 thresholds = &memcg->thresholds;
4186 usage = mem_cgroup_usage(memcg, false);
4187 } else if (type == _MEMSWAP) {
4188 thresholds = &memcg->memsw_thresholds;
4189 usage = mem_cgroup_usage(memcg, true);
4193 /* Check if a threshold crossed before adding a new one */
4194 if (thresholds->primary)
4195 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4197 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
4199 /* Allocate memory for new array of thresholds */
4200 new = kmalloc(struct_size(new, entries, size), GFP_KERNEL);
4207 /* Copy thresholds (if any) to new array */
4208 if (thresholds->primary)
4209 memcpy(new->entries, thresholds->primary->entries,
4210 flex_array_size(new, entries, size - 1));
4212 /* Add new threshold */
4213 new->entries[size - 1].eventfd = eventfd;
4214 new->entries[size - 1].threshold = threshold;
4216 /* Sort thresholds. Registering of new threshold isn't time-critical */
4217 sort(new->entries, size, sizeof(*new->entries),
4218 compare_thresholds, NULL);
4220 /* Find current threshold */
4221 new->current_threshold = -1;
4222 for (i = 0; i < size; i++) {
4223 if (new->entries[i].threshold <= usage) {
4225 * new->current_threshold will not be used until
4226 * rcu_assign_pointer(), so it's safe to increment
4229 ++new->current_threshold;
4234 /* Free old spare buffer and save old primary buffer as spare */
4235 kfree(thresholds->spare);
4236 thresholds->spare = thresholds->primary;
4238 rcu_assign_pointer(thresholds->primary, new);
4240 /* To be sure that nobody uses thresholds */
4244 mutex_unlock(&memcg->thresholds_lock);
4249 static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4250 struct eventfd_ctx *eventfd, const char *args)
4252 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
4255 static int memsw_cgroup_usage_register_event(struct mem_cgroup *memcg,
4256 struct eventfd_ctx *eventfd, const char *args)
4258 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEMSWAP);
4261 static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4262 struct eventfd_ctx *eventfd, enum res_type type)
4264 struct mem_cgroup_thresholds *thresholds;
4265 struct mem_cgroup_threshold_ary *new;
4266 unsigned long usage;
4267 int i, j, size, entries;
4269 mutex_lock(&memcg->thresholds_lock);
4272 thresholds = &memcg->thresholds;
4273 usage = mem_cgroup_usage(memcg, false);
4274 } else if (type == _MEMSWAP) {
4275 thresholds = &memcg->memsw_thresholds;
4276 usage = mem_cgroup_usage(memcg, true);
4280 if (!thresholds->primary)
4283 /* Check if a threshold crossed before removing */
4284 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4286 /* Calculate new number of threshold */
4288 for (i = 0; i < thresholds->primary->size; i++) {
4289 if (thresholds->primary->entries[i].eventfd != eventfd)
4295 new = thresholds->spare;
4297 /* If no items related to eventfd have been cleared, nothing to do */
4301 /* Set thresholds array to NULL if we don't have thresholds */
4310 /* Copy thresholds and find current threshold */
4311 new->current_threshold = -1;
4312 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4313 if (thresholds->primary->entries[i].eventfd == eventfd)
4316 new->entries[j] = thresholds->primary->entries[i];
4317 if (new->entries[j].threshold <= usage) {
4319 * new->current_threshold will not be used
4320 * until rcu_assign_pointer(), so it's safe to increment
4323 ++new->current_threshold;
4329 /* Swap primary and spare array */
4330 thresholds->spare = thresholds->primary;
4332 rcu_assign_pointer(thresholds->primary, new);
4334 /* To be sure that nobody uses thresholds */
4337 /* If all events are unregistered, free the spare array */
4339 kfree(thresholds->spare);
4340 thresholds->spare = NULL;
4343 mutex_unlock(&memcg->thresholds_lock);
4346 static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4347 struct eventfd_ctx *eventfd)
4349 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
4352 static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4353 struct eventfd_ctx *eventfd)
4355 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
4358 static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
4359 struct eventfd_ctx *eventfd, const char *args)
4361 struct mem_cgroup_eventfd_list *event;
4363 event = kmalloc(sizeof(*event), GFP_KERNEL);
4367 spin_lock(&memcg_oom_lock);
4369 event->eventfd = eventfd;
4370 list_add(&event->list, &memcg->oom_notify);
4372 /* already in OOM ? */
4373 if (memcg->under_oom)
4374 eventfd_signal(eventfd, 1);
4375 spin_unlock(&memcg_oom_lock);
4380 static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
4381 struct eventfd_ctx *eventfd)
4383 struct mem_cgroup_eventfd_list *ev, *tmp;
4385 spin_lock(&memcg_oom_lock);
4387 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
4388 if (ev->eventfd == eventfd) {
4389 list_del(&ev->list);
4394 spin_unlock(&memcg_oom_lock);
4397 static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
4399 struct mem_cgroup *memcg = mem_cgroup_from_seq(sf);
4401 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
4402 seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom);
4403 seq_printf(sf, "oom_kill %lu\n",
4404 atomic_long_read(&memcg->memory_events[MEMCG_OOM_KILL]));
4408 static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
4409 struct cftype *cft, u64 val)
4411 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4413 /* cannot set to root cgroup and only 0 and 1 are allowed */
4414 if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1)))
4417 memcg->oom_kill_disable = val;
4419 memcg_oom_recover(memcg);
4424 #ifdef CONFIG_CGROUP_WRITEBACK
4426 #include <trace/events/writeback.h>
4428 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4430 return wb_domain_init(&memcg->cgwb_domain, gfp);
4433 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4435 wb_domain_exit(&memcg->cgwb_domain);
4438 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4440 wb_domain_size_changed(&memcg->cgwb_domain);
4443 struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
4445 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4447 if (!memcg->css.parent)
4450 return &memcg->cgwb_domain;
4454 * mem_cgroup_wb_stats - retrieve writeback related stats from its memcg
4455 * @wb: bdi_writeback in question
4456 * @pfilepages: out parameter for number of file pages
4457 * @pheadroom: out parameter for number of allocatable pages according to memcg
4458 * @pdirty: out parameter for number of dirty pages
4459 * @pwriteback: out parameter for number of pages under writeback
4461 * Determine the numbers of file, headroom, dirty, and writeback pages in
4462 * @wb's memcg. File, dirty and writeback are self-explanatory. Headroom
4463 * is a bit more involved.
4465 * A memcg's headroom is "min(max, high) - used". In the hierarchy, the
4466 * headroom is calculated as the lowest headroom of itself and the
4467 * ancestors. Note that this doesn't consider the actual amount of
4468 * available memory in the system. The caller should further cap
4469 * *@pheadroom accordingly.
4471 void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
4472 unsigned long *pheadroom, unsigned long *pdirty,
4473 unsigned long *pwriteback)
4475 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4476 struct mem_cgroup *parent;
4478 mem_cgroup_flush_stats();
4480 *pdirty = memcg_page_state(memcg, NR_FILE_DIRTY);
4481 *pwriteback = memcg_page_state(memcg, NR_WRITEBACK);
4482 *pfilepages = memcg_page_state(memcg, NR_INACTIVE_FILE) +
4483 memcg_page_state(memcg, NR_ACTIVE_FILE);
4485 *pheadroom = PAGE_COUNTER_MAX;
4486 while ((parent = parent_mem_cgroup(memcg))) {
4487 unsigned long ceiling = min(READ_ONCE(memcg->memory.max),
4488 READ_ONCE(memcg->memory.high));
4489 unsigned long used = page_counter_read(&memcg->memory);
4491 *pheadroom = min(*pheadroom, ceiling - min(ceiling, used));
4497 * Foreign dirty flushing
4499 * There's an inherent mismatch between memcg and writeback. The former
4500 * tracks ownership per-page while the latter per-inode. This was a
4501 * deliberate design decision because honoring per-page ownership in the
4502 * writeback path is complicated, may lead to higher CPU and IO overheads
4503 * and deemed unnecessary given that write-sharing an inode across
4504 * different cgroups isn't a common use-case.
4506 * Combined with inode majority-writer ownership switching, this works well
4507 * enough in most cases but there are some pathological cases. For
4508 * example, let's say there are two cgroups A and B which keep writing to
4509 * different but confined parts of the same inode. B owns the inode and
4510 * A's memory is limited far below B's. A's dirty ratio can rise enough to
4511 * trigger balance_dirty_pages() sleeps but B's can be low enough to avoid
4512 * triggering background writeback. A will be slowed down without a way to
4513 * make writeback of the dirty pages happen.
4515 * Conditions like the above can lead to a cgroup getting repeatedly and
4516 * severely throttled after making some progress after each
4517 * dirty_expire_interval while the underlying IO device is almost
4520 * Solving this problem completely requires matching the ownership tracking
4521 * granularities between memcg and writeback in either direction. However,
4522 * the more egregious behaviors can be avoided by simply remembering the
4523 * most recent foreign dirtying events and initiating remote flushes on
4524 * them when local writeback isn't enough to keep the memory clean enough.
4526 * The following two functions implement such mechanism. When a foreign
4527 * page - a page whose memcg and writeback ownerships don't match - is
4528 * dirtied, mem_cgroup_track_foreign_dirty() records the inode owning
4529 * bdi_writeback on the page owning memcg. When balance_dirty_pages()
4530 * decides that the memcg needs to sleep due to high dirty ratio, it calls
4531 * mem_cgroup_flush_foreign() which queues writeback on the recorded
4532 * foreign bdi_writebacks which haven't expired. Both the numbers of
4533 * recorded bdi_writebacks and concurrent in-flight foreign writebacks are
4534 * limited to MEMCG_CGWB_FRN_CNT.
4536 * The mechanism only remembers IDs and doesn't hold any object references.
4537 * As being wrong occasionally doesn't matter, updates and accesses to the
4538 * records are lockless and racy.
4540 void mem_cgroup_track_foreign_dirty_slowpath(struct folio *folio,
4541 struct bdi_writeback *wb)
4543 struct mem_cgroup *memcg = folio_memcg(folio);
4544 struct memcg_cgwb_frn *frn;
4545 u64 now = get_jiffies_64();
4546 u64 oldest_at = now;
4550 trace_track_foreign_dirty(folio, wb);
4553 * Pick the slot to use. If there is already a slot for @wb, keep
4554 * using it. If not replace the oldest one which isn't being
4557 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4558 frn = &memcg->cgwb_frn[i];
4559 if (frn->bdi_id == wb->bdi->id &&
4560 frn->memcg_id == wb->memcg_css->id)
4562 if (time_before64(frn->at, oldest_at) &&
4563 atomic_read(&frn->done.cnt) == 1) {
4565 oldest_at = frn->at;
4569 if (i < MEMCG_CGWB_FRN_CNT) {
4571 * Re-using an existing one. Update timestamp lazily to
4572 * avoid making the cacheline hot. We want them to be
4573 * reasonably up-to-date and significantly shorter than
4574 * dirty_expire_interval as that's what expires the record.
4575 * Use the shorter of 1s and dirty_expire_interval / 8.
4577 unsigned long update_intv =
4578 min_t(unsigned long, HZ,
4579 msecs_to_jiffies(dirty_expire_interval * 10) / 8);
4581 if (time_before64(frn->at, now - update_intv))
4583 } else if (oldest >= 0) {
4584 /* replace the oldest free one */
4585 frn = &memcg->cgwb_frn[oldest];
4586 frn->bdi_id = wb->bdi->id;
4587 frn->memcg_id = wb->memcg_css->id;
4592 /* issue foreign writeback flushes for recorded foreign dirtying events */
4593 void mem_cgroup_flush_foreign(struct bdi_writeback *wb)
4595 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4596 unsigned long intv = msecs_to_jiffies(dirty_expire_interval * 10);
4597 u64 now = jiffies_64;
4600 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4601 struct memcg_cgwb_frn *frn = &memcg->cgwb_frn[i];
4604 * If the record is older than dirty_expire_interval,
4605 * writeback on it has already started. No need to kick it
4606 * off again. Also, don't start a new one if there's
4607 * already one in flight.
4609 if (time_after64(frn->at, now - intv) &&
4610 atomic_read(&frn->done.cnt) == 1) {
4612 trace_flush_foreign(wb, frn->bdi_id, frn->memcg_id);
4613 cgroup_writeback_by_id(frn->bdi_id, frn->memcg_id,
4614 WB_REASON_FOREIGN_FLUSH,
4620 #else /* CONFIG_CGROUP_WRITEBACK */
4622 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4627 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4631 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4635 #endif /* CONFIG_CGROUP_WRITEBACK */
4638 * DO NOT USE IN NEW FILES.
4640 * "cgroup.event_control" implementation.
4642 * This is way over-engineered. It tries to support fully configurable
4643 * events for each user. Such level of flexibility is completely
4644 * unnecessary especially in the light of the planned unified hierarchy.
4646 * Please deprecate this and replace with something simpler if at all
4651 * Unregister event and free resources.
4653 * Gets called from workqueue.
4655 static void memcg_event_remove(struct work_struct *work)
4657 struct mem_cgroup_event *event =
4658 container_of(work, struct mem_cgroup_event, remove);
4659 struct mem_cgroup *memcg = event->memcg;
4661 remove_wait_queue(event->wqh, &event->wait);
4663 event->unregister_event(memcg, event->eventfd);
4665 /* Notify userspace the event is going away. */
4666 eventfd_signal(event->eventfd, 1);
4668 eventfd_ctx_put(event->eventfd);
4670 css_put(&memcg->css);
4674 * Gets called on EPOLLHUP on eventfd when user closes it.
4676 * Called with wqh->lock held and interrupts disabled.
4678 static int memcg_event_wake(wait_queue_entry_t *wait, unsigned mode,
4679 int sync, void *key)
4681 struct mem_cgroup_event *event =
4682 container_of(wait, struct mem_cgroup_event, wait);
4683 struct mem_cgroup *memcg = event->memcg;
4684 __poll_t flags = key_to_poll(key);
4686 if (flags & EPOLLHUP) {
4688 * If the event has been detached at cgroup removal, we
4689 * can simply return knowing the other side will cleanup
4692 * We can't race against event freeing since the other
4693 * side will require wqh->lock via remove_wait_queue(),
4696 spin_lock(&memcg->event_list_lock);
4697 if (!list_empty(&event->list)) {
4698 list_del_init(&event->list);
4700 * We are in atomic context, but cgroup_event_remove()
4701 * may sleep, so we have to call it in workqueue.
4703 schedule_work(&event->remove);
4705 spin_unlock(&memcg->event_list_lock);
4711 static void memcg_event_ptable_queue_proc(struct file *file,
4712 wait_queue_head_t *wqh, poll_table *pt)
4714 struct mem_cgroup_event *event =
4715 container_of(pt, struct mem_cgroup_event, pt);
4718 add_wait_queue(wqh, &event->wait);
4722 * DO NOT USE IN NEW FILES.
4724 * Parse input and register new cgroup event handler.
4726 * Input must be in format '<event_fd> <control_fd> <args>'.
4727 * Interpretation of args is defined by control file implementation.
4729 static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
4730 char *buf, size_t nbytes, loff_t off)
4732 struct cgroup_subsys_state *css = of_css(of);
4733 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4734 struct mem_cgroup_event *event;
4735 struct cgroup_subsys_state *cfile_css;
4736 unsigned int efd, cfd;
4743 buf = strstrip(buf);
4745 efd = simple_strtoul(buf, &endp, 10);
4750 cfd = simple_strtoul(buf, &endp, 10);
4751 if ((*endp != ' ') && (*endp != '\0'))
4755 event = kzalloc(sizeof(*event), GFP_KERNEL);
4759 event->memcg = memcg;
4760 INIT_LIST_HEAD(&event->list);
4761 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
4762 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
4763 INIT_WORK(&event->remove, memcg_event_remove);
4771 event->eventfd = eventfd_ctx_fileget(efile.file);
4772 if (IS_ERR(event->eventfd)) {
4773 ret = PTR_ERR(event->eventfd);
4780 goto out_put_eventfd;
4783 /* the process need read permission on control file */
4784 /* AV: shouldn't we check that it's been opened for read instead? */
4785 ret = file_permission(cfile.file, MAY_READ);
4790 * Determine the event callbacks and set them in @event. This used
4791 * to be done via struct cftype but cgroup core no longer knows
4792 * about these events. The following is crude but the whole thing
4793 * is for compatibility anyway.
4795 * DO NOT ADD NEW FILES.
4797 name = cfile.file->f_path.dentry->d_name.name;
4799 if (!strcmp(name, "memory.usage_in_bytes")) {
4800 event->register_event = mem_cgroup_usage_register_event;
4801 event->unregister_event = mem_cgroup_usage_unregister_event;
4802 } else if (!strcmp(name, "memory.oom_control")) {
4803 event->register_event = mem_cgroup_oom_register_event;
4804 event->unregister_event = mem_cgroup_oom_unregister_event;
4805 } else if (!strcmp(name, "memory.pressure_level")) {
4806 event->register_event = vmpressure_register_event;
4807 event->unregister_event = vmpressure_unregister_event;
4808 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
4809 event->register_event = memsw_cgroup_usage_register_event;
4810 event->unregister_event = memsw_cgroup_usage_unregister_event;
4817 * Verify @cfile should belong to @css. Also, remaining events are
4818 * automatically removed on cgroup destruction but the removal is
4819 * asynchronous, so take an extra ref on @css.
4821 cfile_css = css_tryget_online_from_dir(cfile.file->f_path.dentry->d_parent,
4822 &memory_cgrp_subsys);
4824 if (IS_ERR(cfile_css))
4826 if (cfile_css != css) {
4831 ret = event->register_event(memcg, event->eventfd, buf);
4835 vfs_poll(efile.file, &event->pt);
4837 spin_lock_irq(&memcg->event_list_lock);
4838 list_add(&event->list, &memcg->event_list);
4839 spin_unlock_irq(&memcg->event_list_lock);
4851 eventfd_ctx_put(event->eventfd);
4860 #if defined(CONFIG_MEMCG_KMEM) && (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4861 static int mem_cgroup_slab_show(struct seq_file *m, void *p)
4865 * Please, take a look at tools/cgroup/slabinfo.py .
4871 static struct cftype mem_cgroup_legacy_files[] = {
4873 .name = "usage_in_bytes",
4874 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
4875 .read_u64 = mem_cgroup_read_u64,
4878 .name = "max_usage_in_bytes",
4879 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
4880 .write = mem_cgroup_reset,
4881 .read_u64 = mem_cgroup_read_u64,
4884 .name = "limit_in_bytes",
4885 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
4886 .write = mem_cgroup_write,
4887 .read_u64 = mem_cgroup_read_u64,
4890 .name = "soft_limit_in_bytes",
4891 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4892 .write = mem_cgroup_write,
4893 .read_u64 = mem_cgroup_read_u64,
4897 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
4898 .write = mem_cgroup_reset,
4899 .read_u64 = mem_cgroup_read_u64,
4903 .seq_show = memcg_stat_show,
4906 .name = "force_empty",
4907 .write = mem_cgroup_force_empty_write,
4910 .name = "use_hierarchy",
4911 .write_u64 = mem_cgroup_hierarchy_write,
4912 .read_u64 = mem_cgroup_hierarchy_read,
4915 .name = "cgroup.event_control", /* XXX: for compat */
4916 .write = memcg_write_event_control,
4917 .flags = CFTYPE_NO_PREFIX | CFTYPE_WORLD_WRITABLE,
4920 .name = "swappiness",
4921 .read_u64 = mem_cgroup_swappiness_read,
4922 .write_u64 = mem_cgroup_swappiness_write,
4925 .name = "move_charge_at_immigrate",
4926 .read_u64 = mem_cgroup_move_charge_read,
4927 .write_u64 = mem_cgroup_move_charge_write,
4930 .name = "oom_control",
4931 .seq_show = mem_cgroup_oom_control_read,
4932 .write_u64 = mem_cgroup_oom_control_write,
4933 .private = MEMFILE_PRIVATE(_OOM_TYPE, OOM_CONTROL),
4936 .name = "pressure_level",
4940 .name = "numa_stat",
4941 .seq_show = memcg_numa_stat_show,
4945 .name = "kmem.limit_in_bytes",
4946 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
4947 .write = mem_cgroup_write,
4948 .read_u64 = mem_cgroup_read_u64,
4951 .name = "kmem.usage_in_bytes",
4952 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
4953 .read_u64 = mem_cgroup_read_u64,
4956 .name = "kmem.failcnt",
4957 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
4958 .write = mem_cgroup_reset,
4959 .read_u64 = mem_cgroup_read_u64,
4962 .name = "kmem.max_usage_in_bytes",
4963 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
4964 .write = mem_cgroup_reset,
4965 .read_u64 = mem_cgroup_read_u64,
4967 #if defined(CONFIG_MEMCG_KMEM) && \
4968 (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4970 .name = "kmem.slabinfo",
4971 .seq_show = mem_cgroup_slab_show,
4975 .name = "kmem.tcp.limit_in_bytes",
4976 .private = MEMFILE_PRIVATE(_TCP, RES_LIMIT),
4977 .write = mem_cgroup_write,
4978 .read_u64 = mem_cgroup_read_u64,
4981 .name = "kmem.tcp.usage_in_bytes",
4982 .private = MEMFILE_PRIVATE(_TCP, RES_USAGE),
4983 .read_u64 = mem_cgroup_read_u64,
4986 .name = "kmem.tcp.failcnt",
4987 .private = MEMFILE_PRIVATE(_TCP, RES_FAILCNT),
4988 .write = mem_cgroup_reset,
4989 .read_u64 = mem_cgroup_read_u64,
4992 .name = "kmem.tcp.max_usage_in_bytes",
4993 .private = MEMFILE_PRIVATE(_TCP, RES_MAX_USAGE),
4994 .write = mem_cgroup_reset,
4995 .read_u64 = mem_cgroup_read_u64,
4997 { }, /* terminate */
5001 * Private memory cgroup IDR
5003 * Swap-out records and page cache shadow entries need to store memcg
5004 * references in constrained space, so we maintain an ID space that is
5005 * limited to 16 bit (MEM_CGROUP_ID_MAX), limiting the total number of
5006 * memory-controlled cgroups to 64k.
5008 * However, there usually are many references to the offline CSS after
5009 * the cgroup has been destroyed, such as page cache or reclaimable
5010 * slab objects, that don't need to hang on to the ID. We want to keep
5011 * those dead CSS from occupying IDs, or we might quickly exhaust the
5012 * relatively small ID space and prevent the creation of new cgroups
5013 * even when there are much fewer than 64k cgroups - possibly none.
5015 * Maintain a private 16-bit ID space for memcg, and allow the ID to
5016 * be freed and recycled when it's no longer needed, which is usually
5017 * when the CSS is offlined.
5019 * The only exception to that are records of swapped out tmpfs/shmem
5020 * pages that need to be attributed to live ancestors on swapin. But
5021 * those references are manageable from userspace.
5024 static DEFINE_IDR(mem_cgroup_idr);
5026 static void mem_cgroup_id_remove(struct mem_cgroup *memcg)
5028 if (memcg->id.id > 0) {
5029 idr_remove(&mem_cgroup_idr, memcg->id.id);
5034 static void __maybe_unused mem_cgroup_id_get_many(struct mem_cgroup *memcg,
5037 refcount_add(n, &memcg->id.ref);
5040 static void mem_cgroup_id_put_many(struct mem_cgroup *memcg, unsigned int n)
5042 if (refcount_sub_and_test(n, &memcg->id.ref)) {
5043 mem_cgroup_id_remove(memcg);
5045 /* Memcg ID pins CSS */
5046 css_put(&memcg->css);
5050 static inline void mem_cgroup_id_put(struct mem_cgroup *memcg)
5052 mem_cgroup_id_put_many(memcg, 1);
5056 * mem_cgroup_from_id - look up a memcg from a memcg id
5057 * @id: the memcg id to look up
5059 * Caller must hold rcu_read_lock().
5061 struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
5063 WARN_ON_ONCE(!rcu_read_lock_held());
5064 return idr_find(&mem_cgroup_idr, id);
5067 static int alloc_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5069 struct mem_cgroup_per_node *pn;
5072 * This routine is called against possible nodes.
5073 * But it's BUG to call kmalloc() against offline node.
5075 * TODO: this routine can waste much memory for nodes which will
5076 * never be onlined. It's better to use memory hotplug callback
5079 if (!node_state(node, N_NORMAL_MEMORY))
5081 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
5085 pn->lruvec_stats_percpu = alloc_percpu_gfp(struct lruvec_stats_percpu,
5086 GFP_KERNEL_ACCOUNT);
5087 if (!pn->lruvec_stats_percpu) {
5092 lruvec_init(&pn->lruvec);
5093 pn->usage_in_excess = 0;
5094 pn->on_tree = false;
5097 memcg->nodeinfo[node] = pn;
5101 static void free_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5103 struct mem_cgroup_per_node *pn = memcg->nodeinfo[node];
5108 free_percpu(pn->lruvec_stats_percpu);
5112 static void __mem_cgroup_free(struct mem_cgroup *memcg)
5117 free_mem_cgroup_per_node_info(memcg, node);
5118 free_percpu(memcg->vmstats_percpu);
5122 static void mem_cgroup_free(struct mem_cgroup *memcg)
5124 memcg_wb_domain_exit(memcg);
5125 __mem_cgroup_free(memcg);
5128 static struct mem_cgroup *mem_cgroup_alloc(void)
5130 struct mem_cgroup *memcg;
5132 int __maybe_unused i;
5133 long error = -ENOMEM;
5135 memcg = kzalloc(struct_size(memcg, nodeinfo, nr_node_ids), GFP_KERNEL);
5137 return ERR_PTR(error);
5139 memcg->id.id = idr_alloc(&mem_cgroup_idr, NULL,
5140 1, MEM_CGROUP_ID_MAX,
5142 if (memcg->id.id < 0) {
5143 error = memcg->id.id;
5147 memcg->vmstats_percpu = alloc_percpu_gfp(struct memcg_vmstats_percpu,
5148 GFP_KERNEL_ACCOUNT);
5149 if (!memcg->vmstats_percpu)
5153 if (alloc_mem_cgroup_per_node_info(memcg, node))
5156 if (memcg_wb_domain_init(memcg, GFP_KERNEL))
5159 INIT_WORK(&memcg->high_work, high_work_func);
5160 INIT_LIST_HEAD(&memcg->oom_notify);
5161 mutex_init(&memcg->thresholds_lock);
5162 spin_lock_init(&memcg->move_lock);
5163 vmpressure_init(&memcg->vmpressure);
5164 INIT_LIST_HEAD(&memcg->event_list);
5165 spin_lock_init(&memcg->event_list_lock);
5166 memcg->socket_pressure = jiffies;
5167 #ifdef CONFIG_MEMCG_KMEM
5168 memcg->kmemcg_id = -1;
5169 INIT_LIST_HEAD(&memcg->objcg_list);
5171 #ifdef CONFIG_CGROUP_WRITEBACK
5172 INIT_LIST_HEAD(&memcg->cgwb_list);
5173 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5174 memcg->cgwb_frn[i].done =
5175 __WB_COMPLETION_INIT(&memcg_cgwb_frn_waitq);
5177 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5178 spin_lock_init(&memcg->deferred_split_queue.split_queue_lock);
5179 INIT_LIST_HEAD(&memcg->deferred_split_queue.split_queue);
5180 memcg->deferred_split_queue.split_queue_len = 0;
5182 idr_replace(&mem_cgroup_idr, memcg, memcg->id.id);
5185 mem_cgroup_id_remove(memcg);
5186 __mem_cgroup_free(memcg);
5187 return ERR_PTR(error);
5190 static struct cgroup_subsys_state * __ref
5191 mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
5193 struct mem_cgroup *parent = mem_cgroup_from_css(parent_css);
5194 struct mem_cgroup *memcg, *old_memcg;
5195 long error = -ENOMEM;
5197 old_memcg = set_active_memcg(parent);
5198 memcg = mem_cgroup_alloc();
5199 set_active_memcg(old_memcg);
5201 return ERR_CAST(memcg);
5203 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5204 memcg->soft_limit = PAGE_COUNTER_MAX;
5205 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5207 memcg->swappiness = mem_cgroup_swappiness(parent);
5208 memcg->oom_kill_disable = parent->oom_kill_disable;
5210 page_counter_init(&memcg->memory, &parent->memory);
5211 page_counter_init(&memcg->swap, &parent->swap);
5212 page_counter_init(&memcg->kmem, &parent->kmem);
5213 page_counter_init(&memcg->tcpmem, &parent->tcpmem);
5215 page_counter_init(&memcg->memory, NULL);
5216 page_counter_init(&memcg->swap, NULL);
5217 page_counter_init(&memcg->kmem, NULL);
5218 page_counter_init(&memcg->tcpmem, NULL);
5220 root_mem_cgroup = memcg;
5224 /* The following stuff does not apply to the root */
5225 error = memcg_online_kmem(memcg);
5229 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5230 static_branch_inc(&memcg_sockets_enabled_key);
5234 mem_cgroup_id_remove(memcg);
5235 mem_cgroup_free(memcg);
5236 return ERR_PTR(error);
5239 static int mem_cgroup_css_online(struct cgroup_subsys_state *css)
5241 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5244 * A memcg must be visible for expand_shrinker_info()
5245 * by the time the maps are allocated. So, we allocate maps
5246 * here, when for_each_mem_cgroup() can't skip it.
5248 if (alloc_shrinker_info(memcg)) {
5249 mem_cgroup_id_remove(memcg);
5253 /* Online state pins memcg ID, memcg ID pins CSS */
5254 refcount_set(&memcg->id.ref, 1);
5257 if (unlikely(mem_cgroup_is_root(memcg)))
5258 queue_delayed_work(system_unbound_wq, &stats_flush_dwork,
5263 static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
5265 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5266 struct mem_cgroup_event *event, *tmp;
5269 * Unregister events and notify userspace.
5270 * Notify userspace about cgroup removing only after rmdir of cgroup
5271 * directory to avoid race between userspace and kernelspace.
5273 spin_lock_irq(&memcg->event_list_lock);
5274 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
5275 list_del_init(&event->list);
5276 schedule_work(&event->remove);
5278 spin_unlock_irq(&memcg->event_list_lock);
5280 page_counter_set_min(&memcg->memory, 0);
5281 page_counter_set_low(&memcg->memory, 0);
5283 memcg_offline_kmem(memcg);
5284 reparent_shrinker_deferred(memcg);
5285 wb_memcg_offline(memcg);
5287 drain_all_stock(memcg);
5289 mem_cgroup_id_put(memcg);
5292 static void mem_cgroup_css_released(struct cgroup_subsys_state *css)
5294 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5296 invalidate_reclaim_iterators(memcg);
5299 static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
5301 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5302 int __maybe_unused i;
5304 #ifdef CONFIG_CGROUP_WRITEBACK
5305 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5306 wb_wait_for_completion(&memcg->cgwb_frn[i].done);
5308 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5309 static_branch_dec(&memcg_sockets_enabled_key);
5311 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_active)
5312 static_branch_dec(&memcg_sockets_enabled_key);
5314 vmpressure_cleanup(&memcg->vmpressure);
5315 cancel_work_sync(&memcg->high_work);
5316 mem_cgroup_remove_from_trees(memcg);
5317 free_shrinker_info(memcg);
5319 /* Need to offline kmem if online_css() fails */
5320 memcg_offline_kmem(memcg);
5321 mem_cgroup_free(memcg);
5325 * mem_cgroup_css_reset - reset the states of a mem_cgroup
5326 * @css: the target css
5328 * Reset the states of the mem_cgroup associated with @css. This is
5329 * invoked when the userland requests disabling on the default hierarchy
5330 * but the memcg is pinned through dependency. The memcg should stop
5331 * applying policies and should revert to the vanilla state as it may be
5332 * made visible again.
5334 * The current implementation only resets the essential configurations.
5335 * This needs to be expanded to cover all the visible parts.
5337 static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5339 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5341 page_counter_set_max(&memcg->memory, PAGE_COUNTER_MAX);
5342 page_counter_set_max(&memcg->swap, PAGE_COUNTER_MAX);
5343 page_counter_set_max(&memcg->kmem, PAGE_COUNTER_MAX);
5344 page_counter_set_max(&memcg->tcpmem, PAGE_COUNTER_MAX);
5345 page_counter_set_min(&memcg->memory, 0);
5346 page_counter_set_low(&memcg->memory, 0);
5347 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5348 memcg->soft_limit = PAGE_COUNTER_MAX;
5349 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5350 memcg_wb_domain_size_changed(memcg);
5353 static void mem_cgroup_css_rstat_flush(struct cgroup_subsys_state *css, int cpu)
5355 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5356 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5357 struct memcg_vmstats_percpu *statc;
5361 statc = per_cpu_ptr(memcg->vmstats_percpu, cpu);
5363 for (i = 0; i < MEMCG_NR_STAT; i++) {
5365 * Collect the aggregated propagation counts of groups
5366 * below us. We're in a per-cpu loop here and this is
5367 * a global counter, so the first cycle will get them.
5369 delta = memcg->vmstats.state_pending[i];
5371 memcg->vmstats.state_pending[i] = 0;
5373 /* Add CPU changes on this level since the last flush */
5374 v = READ_ONCE(statc->state[i]);
5375 if (v != statc->state_prev[i]) {
5376 delta += v - statc->state_prev[i];
5377 statc->state_prev[i] = v;
5383 /* Aggregate counts on this level and propagate upwards */
5384 memcg->vmstats.state[i] += delta;
5386 parent->vmstats.state_pending[i] += delta;
5389 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
5390 delta = memcg->vmstats.events_pending[i];
5392 memcg->vmstats.events_pending[i] = 0;
5394 v = READ_ONCE(statc->events[i]);
5395 if (v != statc->events_prev[i]) {
5396 delta += v - statc->events_prev[i];
5397 statc->events_prev[i] = v;
5403 memcg->vmstats.events[i] += delta;
5405 parent->vmstats.events_pending[i] += delta;
5408 for_each_node_state(nid, N_MEMORY) {
5409 struct mem_cgroup_per_node *pn = memcg->nodeinfo[nid];
5410 struct mem_cgroup_per_node *ppn = NULL;
5411 struct lruvec_stats_percpu *lstatc;
5414 ppn = parent->nodeinfo[nid];
5416 lstatc = per_cpu_ptr(pn->lruvec_stats_percpu, cpu);
5418 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
5419 delta = pn->lruvec_stats.state_pending[i];
5421 pn->lruvec_stats.state_pending[i] = 0;
5423 v = READ_ONCE(lstatc->state[i]);
5424 if (v != lstatc->state_prev[i]) {
5425 delta += v - lstatc->state_prev[i];
5426 lstatc->state_prev[i] = v;
5432 pn->lruvec_stats.state[i] += delta;
5434 ppn->lruvec_stats.state_pending[i] += delta;
5440 /* Handlers for move charge at task migration. */
5441 static int mem_cgroup_do_precharge(unsigned long count)
5445 /* Try a single bulk charge without reclaim first, kswapd may wake */
5446 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_DIRECT_RECLAIM, count);
5448 mc.precharge += count;
5452 /* Try charges one by one with reclaim, but do not retry */
5454 ret = try_charge(mc.to, GFP_KERNEL | __GFP_NORETRY, 1);
5468 enum mc_target_type {
5475 static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5476 unsigned long addr, pte_t ptent)
5478 struct page *page = vm_normal_page(vma, addr, ptent);
5480 if (!page || !page_mapped(page))
5482 if (PageAnon(page)) {
5483 if (!(mc.flags & MOVE_ANON))
5486 if (!(mc.flags & MOVE_FILE))
5489 if (!get_page_unless_zero(page))
5495 #if defined(CONFIG_SWAP) || defined(CONFIG_DEVICE_PRIVATE)
5496 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5497 pte_t ptent, swp_entry_t *entry)
5499 struct page *page = NULL;
5500 swp_entry_t ent = pte_to_swp_entry(ptent);
5502 if (!(mc.flags & MOVE_ANON))
5506 * Handle MEMORY_DEVICE_PRIVATE which are ZONE_DEVICE page belonging to
5507 * a device and because they are not accessible by CPU they are store
5508 * as special swap entry in the CPU page table.
5510 if (is_device_private_entry(ent)) {
5511 page = pfn_swap_entry_to_page(ent);
5513 * MEMORY_DEVICE_PRIVATE means ZONE_DEVICE page and which have
5514 * a refcount of 1 when free (unlike normal page)
5516 if (!page_ref_add_unless(page, 1, 1))
5521 if (non_swap_entry(ent))
5525 * Because lookup_swap_cache() updates some statistics counter,
5526 * we call find_get_page() with swapper_space directly.
5528 page = find_get_page(swap_address_space(ent), swp_offset(ent));
5529 entry->val = ent.val;
5534 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5535 pte_t ptent, swp_entry_t *entry)
5541 static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5542 unsigned long addr, pte_t ptent)
5544 if (!vma->vm_file) /* anonymous vma */
5546 if (!(mc.flags & MOVE_FILE))
5549 /* page is moved even if it's not RSS of this task(page-faulted). */
5550 /* shmem/tmpfs may report page out on swap: account for that too. */
5551 return find_get_incore_page(vma->vm_file->f_mapping,
5552 linear_page_index(vma, addr));
5556 * mem_cgroup_move_account - move account of the page
5558 * @compound: charge the page as compound or small page
5559 * @from: mem_cgroup which the page is moved from.
5560 * @to: mem_cgroup which the page is moved to. @from != @to.
5562 * The caller must make sure the page is not on LRU (isolate_page() is useful.)
5564 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
5567 static int mem_cgroup_move_account(struct page *page,
5569 struct mem_cgroup *from,
5570 struct mem_cgroup *to)
5572 struct folio *folio = page_folio(page);
5573 struct lruvec *from_vec, *to_vec;
5574 struct pglist_data *pgdat;
5575 unsigned int nr_pages = compound ? folio_nr_pages(folio) : 1;
5578 VM_BUG_ON(from == to);
5579 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
5580 VM_BUG_ON(compound && !folio_test_large(folio));
5583 * Prevent mem_cgroup_migrate() from looking at
5584 * page's memory cgroup of its source page while we change it.
5587 if (!folio_trylock(folio))
5591 if (folio_memcg(folio) != from)
5594 pgdat = folio_pgdat(folio);
5595 from_vec = mem_cgroup_lruvec(from, pgdat);
5596 to_vec = mem_cgroup_lruvec(to, pgdat);
5598 folio_memcg_lock(folio);
5600 if (folio_test_anon(folio)) {
5601 if (folio_mapped(folio)) {
5602 __mod_lruvec_state(from_vec, NR_ANON_MAPPED, -nr_pages);
5603 __mod_lruvec_state(to_vec, NR_ANON_MAPPED, nr_pages);
5604 if (folio_test_transhuge(folio)) {
5605 __mod_lruvec_state(from_vec, NR_ANON_THPS,
5607 __mod_lruvec_state(to_vec, NR_ANON_THPS,
5612 __mod_lruvec_state(from_vec, NR_FILE_PAGES, -nr_pages);
5613 __mod_lruvec_state(to_vec, NR_FILE_PAGES, nr_pages);
5615 if (folio_test_swapbacked(folio)) {
5616 __mod_lruvec_state(from_vec, NR_SHMEM, -nr_pages);
5617 __mod_lruvec_state(to_vec, NR_SHMEM, nr_pages);
5620 if (folio_mapped(folio)) {
5621 __mod_lruvec_state(from_vec, NR_FILE_MAPPED, -nr_pages);
5622 __mod_lruvec_state(to_vec, NR_FILE_MAPPED, nr_pages);
5625 if (folio_test_dirty(folio)) {
5626 struct address_space *mapping = folio_mapping(folio);
5628 if (mapping_can_writeback(mapping)) {
5629 __mod_lruvec_state(from_vec, NR_FILE_DIRTY,
5631 __mod_lruvec_state(to_vec, NR_FILE_DIRTY,
5637 if (folio_test_writeback(folio)) {
5638 __mod_lruvec_state(from_vec, NR_WRITEBACK, -nr_pages);
5639 __mod_lruvec_state(to_vec, NR_WRITEBACK, nr_pages);
5643 * All state has been migrated, let's switch to the new memcg.
5645 * It is safe to change page's memcg here because the page
5646 * is referenced, charged, isolated, and locked: we can't race
5647 * with (un)charging, migration, LRU putback, or anything else
5648 * that would rely on a stable page's memory cgroup.
5650 * Note that lock_page_memcg is a memcg lock, not a page lock,
5651 * to save space. As soon as we switch page's memory cgroup to a
5652 * new memcg that isn't locked, the above state can change
5653 * concurrently again. Make sure we're truly done with it.
5658 css_put(&from->css);
5660 folio->memcg_data = (unsigned long)to;
5662 __folio_memcg_unlock(from);
5665 nid = folio_nid(folio);
5667 local_irq_disable();
5668 mem_cgroup_charge_statistics(to, nr_pages);
5669 memcg_check_events(to, nid);
5670 mem_cgroup_charge_statistics(from, -nr_pages);
5671 memcg_check_events(from, nid);
5674 folio_unlock(folio);
5680 * get_mctgt_type - get target type of moving charge
5681 * @vma: the vma the pte to be checked belongs
5682 * @addr: the address corresponding to the pte to be checked
5683 * @ptent: the pte to be checked
5684 * @target: the pointer the target page or swap ent will be stored(can be NULL)
5687 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5688 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5689 * move charge. if @target is not NULL, the page is stored in target->page
5690 * with extra refcnt got(Callers should handle it).
5691 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5692 * target for charge migration. if @target is not NULL, the entry is stored
5694 * 3(MC_TARGET_DEVICE): like MC_TARGET_PAGE but page is MEMORY_DEVICE_PRIVATE
5695 * (so ZONE_DEVICE page and thus not on the lru).
5696 * For now we such page is charge like a regular page would be as for all
5697 * intent and purposes it is just special memory taking the place of a
5700 * See Documentations/vm/hmm.txt and include/linux/hmm.h
5702 * Called with pte lock held.
5705 static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
5706 unsigned long addr, pte_t ptent, union mc_target *target)
5708 struct page *page = NULL;
5709 enum mc_target_type ret = MC_TARGET_NONE;
5710 swp_entry_t ent = { .val = 0 };
5712 if (pte_present(ptent))
5713 page = mc_handle_present_pte(vma, addr, ptent);
5714 else if (is_swap_pte(ptent))
5715 page = mc_handle_swap_pte(vma, ptent, &ent);
5716 else if (pte_none(ptent))
5717 page = mc_handle_file_pte(vma, addr, ptent);
5719 if (!page && !ent.val)
5723 * Do only loose check w/o serialization.
5724 * mem_cgroup_move_account() checks the page is valid or
5725 * not under LRU exclusion.
5727 if (page_memcg(page) == mc.from) {
5728 ret = MC_TARGET_PAGE;
5729 if (is_device_private_page(page))
5730 ret = MC_TARGET_DEVICE;
5732 target->page = page;
5734 if (!ret || !target)
5738 * There is a swap entry and a page doesn't exist or isn't charged.
5739 * But we cannot move a tail-page in a THP.
5741 if (ent.val && !ret && (!page || !PageTransCompound(page)) &&
5742 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
5743 ret = MC_TARGET_SWAP;
5750 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5752 * We don't consider PMD mapped swapping or file mapped pages because THP does
5753 * not support them for now.
5754 * Caller should make sure that pmd_trans_huge(pmd) is true.
5756 static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5757 unsigned long addr, pmd_t pmd, union mc_target *target)
5759 struct page *page = NULL;
5760 enum mc_target_type ret = MC_TARGET_NONE;
5762 if (unlikely(is_swap_pmd(pmd))) {
5763 VM_BUG_ON(thp_migration_supported() &&
5764 !is_pmd_migration_entry(pmd));
5767 page = pmd_page(pmd);
5768 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
5769 if (!(mc.flags & MOVE_ANON))
5771 if (page_memcg(page) == mc.from) {
5772 ret = MC_TARGET_PAGE;
5775 target->page = page;
5781 static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5782 unsigned long addr, pmd_t pmd, union mc_target *target)
5784 return MC_TARGET_NONE;
5788 static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5789 unsigned long addr, unsigned long end,
5790 struct mm_walk *walk)
5792 struct vm_area_struct *vma = walk->vma;
5796 ptl = pmd_trans_huge_lock(pmd, vma);
5799 * Note their can not be MC_TARGET_DEVICE for now as we do not
5800 * support transparent huge page with MEMORY_DEVICE_PRIVATE but
5801 * this might change.
5803 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5804 mc.precharge += HPAGE_PMD_NR;
5809 if (pmd_trans_unstable(pmd))
5811 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5812 for (; addr != end; pte++, addr += PAGE_SIZE)
5813 if (get_mctgt_type(vma, addr, *pte, NULL))
5814 mc.precharge++; /* increment precharge temporarily */
5815 pte_unmap_unlock(pte - 1, ptl);
5821 static const struct mm_walk_ops precharge_walk_ops = {
5822 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5825 static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5827 unsigned long precharge;
5830 walk_page_range(mm, 0, mm->highest_vm_end, &precharge_walk_ops, NULL);
5831 mmap_read_unlock(mm);
5833 precharge = mc.precharge;
5839 static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5841 unsigned long precharge = mem_cgroup_count_precharge(mm);
5843 VM_BUG_ON(mc.moving_task);
5844 mc.moving_task = current;
5845 return mem_cgroup_do_precharge(precharge);
5848 /* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5849 static void __mem_cgroup_clear_mc(void)
5851 struct mem_cgroup *from = mc.from;
5852 struct mem_cgroup *to = mc.to;
5854 /* we must uncharge all the leftover precharges from mc.to */
5856 cancel_charge(mc.to, mc.precharge);
5860 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5861 * we must uncharge here.
5863 if (mc.moved_charge) {
5864 cancel_charge(mc.from, mc.moved_charge);
5865 mc.moved_charge = 0;
5867 /* we must fixup refcnts and charges */
5868 if (mc.moved_swap) {
5869 /* uncharge swap account from the old cgroup */
5870 if (!mem_cgroup_is_root(mc.from))
5871 page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
5873 mem_cgroup_id_put_many(mc.from, mc.moved_swap);
5876 * we charged both to->memory and to->memsw, so we
5877 * should uncharge to->memory.
5879 if (!mem_cgroup_is_root(mc.to))
5880 page_counter_uncharge(&mc.to->memory, mc.moved_swap);
5884 memcg_oom_recover(from);
5885 memcg_oom_recover(to);
5886 wake_up_all(&mc.waitq);
5889 static void mem_cgroup_clear_mc(void)
5891 struct mm_struct *mm = mc.mm;
5894 * we must clear moving_task before waking up waiters at the end of
5897 mc.moving_task = NULL;
5898 __mem_cgroup_clear_mc();
5899 spin_lock(&mc.lock);
5903 spin_unlock(&mc.lock);
5908 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
5910 struct cgroup_subsys_state *css;
5911 struct mem_cgroup *memcg = NULL; /* unneeded init to make gcc happy */
5912 struct mem_cgroup *from;
5913 struct task_struct *leader, *p;
5914 struct mm_struct *mm;
5915 unsigned long move_flags;
5918 /* charge immigration isn't supported on the default hierarchy */
5919 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
5923 * Multi-process migrations only happen on the default hierarchy
5924 * where charge immigration is not used. Perform charge
5925 * immigration if @tset contains a leader and whine if there are
5929 cgroup_taskset_for_each_leader(leader, css, tset) {
5932 memcg = mem_cgroup_from_css(css);
5938 * We are now committed to this value whatever it is. Changes in this
5939 * tunable will only affect upcoming migrations, not the current one.
5940 * So we need to save it, and keep it going.
5942 move_flags = READ_ONCE(memcg->move_charge_at_immigrate);
5946 from = mem_cgroup_from_task(p);
5948 VM_BUG_ON(from == memcg);
5950 mm = get_task_mm(p);
5953 /* We move charges only when we move a owner of the mm */
5954 if (mm->owner == p) {
5957 VM_BUG_ON(mc.precharge);
5958 VM_BUG_ON(mc.moved_charge);
5959 VM_BUG_ON(mc.moved_swap);
5961 spin_lock(&mc.lock);
5965 mc.flags = move_flags;
5966 spin_unlock(&mc.lock);
5967 /* We set mc.moving_task later */
5969 ret = mem_cgroup_precharge_mc(mm);
5971 mem_cgroup_clear_mc();
5978 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
5981 mem_cgroup_clear_mc();
5984 static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5985 unsigned long addr, unsigned long end,
5986 struct mm_walk *walk)
5989 struct vm_area_struct *vma = walk->vma;
5992 enum mc_target_type target_type;
5993 union mc_target target;
5996 ptl = pmd_trans_huge_lock(pmd, vma);
5998 if (mc.precharge < HPAGE_PMD_NR) {
6002 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
6003 if (target_type == MC_TARGET_PAGE) {
6005 if (!isolate_lru_page(page)) {
6006 if (!mem_cgroup_move_account(page, true,
6008 mc.precharge -= HPAGE_PMD_NR;
6009 mc.moved_charge += HPAGE_PMD_NR;
6011 putback_lru_page(page);
6014 } else if (target_type == MC_TARGET_DEVICE) {
6016 if (!mem_cgroup_move_account(page, true,
6018 mc.precharge -= HPAGE_PMD_NR;
6019 mc.moved_charge += HPAGE_PMD_NR;
6027 if (pmd_trans_unstable(pmd))
6030 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6031 for (; addr != end; addr += PAGE_SIZE) {
6032 pte_t ptent = *(pte++);
6033 bool device = false;
6039 switch (get_mctgt_type(vma, addr, ptent, &target)) {
6040 case MC_TARGET_DEVICE:
6043 case MC_TARGET_PAGE:
6046 * We can have a part of the split pmd here. Moving it
6047 * can be done but it would be too convoluted so simply
6048 * ignore such a partial THP and keep it in original
6049 * memcg. There should be somebody mapping the head.
6051 if (PageTransCompound(page))
6053 if (!device && isolate_lru_page(page))
6055 if (!mem_cgroup_move_account(page, false,
6058 /* we uncharge from mc.from later. */
6062 putback_lru_page(page);
6063 put: /* get_mctgt_type() gets the page */
6066 case MC_TARGET_SWAP:
6068 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
6070 mem_cgroup_id_get_many(mc.to, 1);
6071 /* we fixup other refcnts and charges later. */
6079 pte_unmap_unlock(pte - 1, ptl);
6084 * We have consumed all precharges we got in can_attach().
6085 * We try charge one by one, but don't do any additional
6086 * charges to mc.to if we have failed in charge once in attach()
6089 ret = mem_cgroup_do_precharge(1);
6097 static const struct mm_walk_ops charge_walk_ops = {
6098 .pmd_entry = mem_cgroup_move_charge_pte_range,
6101 static void mem_cgroup_move_charge(void)
6103 lru_add_drain_all();
6105 * Signal lock_page_memcg() to take the memcg's move_lock
6106 * while we're moving its pages to another memcg. Then wait
6107 * for already started RCU-only updates to finish.
6109 atomic_inc(&mc.from->moving_account);
6112 if (unlikely(!mmap_read_trylock(mc.mm))) {
6114 * Someone who are holding the mmap_lock might be waiting in
6115 * waitq. So we cancel all extra charges, wake up all waiters,
6116 * and retry. Because we cancel precharges, we might not be able
6117 * to move enough charges, but moving charge is a best-effort
6118 * feature anyway, so it wouldn't be a big problem.
6120 __mem_cgroup_clear_mc();
6125 * When we have consumed all precharges and failed in doing
6126 * additional charge, the page walk just aborts.
6128 walk_page_range(mc.mm, 0, mc.mm->highest_vm_end, &charge_walk_ops,
6131 mmap_read_unlock(mc.mm);
6132 atomic_dec(&mc.from->moving_account);
6135 static void mem_cgroup_move_task(void)
6138 mem_cgroup_move_charge();
6139 mem_cgroup_clear_mc();
6142 #else /* !CONFIG_MMU */
6143 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
6147 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
6150 static void mem_cgroup_move_task(void)
6155 static int seq_puts_memcg_tunable(struct seq_file *m, unsigned long value)
6157 if (value == PAGE_COUNTER_MAX)
6158 seq_puts(m, "max\n");
6160 seq_printf(m, "%llu\n", (u64)value * PAGE_SIZE);
6165 static u64 memory_current_read(struct cgroup_subsys_state *css,
6168 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6170 return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE;
6173 static int memory_min_show(struct seq_file *m, void *v)
6175 return seq_puts_memcg_tunable(m,
6176 READ_ONCE(mem_cgroup_from_seq(m)->memory.min));
6179 static ssize_t memory_min_write(struct kernfs_open_file *of,
6180 char *buf, size_t nbytes, loff_t off)
6182 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6186 buf = strstrip(buf);
6187 err = page_counter_memparse(buf, "max", &min);
6191 page_counter_set_min(&memcg->memory, min);
6196 static int memory_low_show(struct seq_file *m, void *v)
6198 return seq_puts_memcg_tunable(m,
6199 READ_ONCE(mem_cgroup_from_seq(m)->memory.low));
6202 static ssize_t memory_low_write(struct kernfs_open_file *of,
6203 char *buf, size_t nbytes, loff_t off)
6205 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6209 buf = strstrip(buf);
6210 err = page_counter_memparse(buf, "max", &low);
6214 page_counter_set_low(&memcg->memory, low);
6219 static int memory_high_show(struct seq_file *m, void *v)
6221 return seq_puts_memcg_tunable(m,
6222 READ_ONCE(mem_cgroup_from_seq(m)->memory.high));
6225 static ssize_t memory_high_write(struct kernfs_open_file *of,
6226 char *buf, size_t nbytes, loff_t off)
6228 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6229 unsigned int nr_retries = MAX_RECLAIM_RETRIES;
6230 bool drained = false;
6234 buf = strstrip(buf);
6235 err = page_counter_memparse(buf, "max", &high);
6239 page_counter_set_high(&memcg->memory, high);
6242 unsigned long nr_pages = page_counter_read(&memcg->memory);
6243 unsigned long reclaimed;
6245 if (nr_pages <= high)
6248 if (signal_pending(current))
6252 drain_all_stock(memcg);
6257 reclaimed = try_to_free_mem_cgroup_pages(memcg, nr_pages - high,
6260 if (!reclaimed && !nr_retries--)
6264 memcg_wb_domain_size_changed(memcg);
6268 static int memory_max_show(struct seq_file *m, void *v)
6270 return seq_puts_memcg_tunable(m,
6271 READ_ONCE(mem_cgroup_from_seq(m)->memory.max));
6274 static ssize_t memory_max_write(struct kernfs_open_file *of,
6275 char *buf, size_t nbytes, loff_t off)
6277 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6278 unsigned int nr_reclaims = MAX_RECLAIM_RETRIES;
6279 bool drained = false;
6283 buf = strstrip(buf);
6284 err = page_counter_memparse(buf, "max", &max);
6288 xchg(&memcg->memory.max, max);
6291 unsigned long nr_pages = page_counter_read(&memcg->memory);
6293 if (nr_pages <= max)
6296 if (signal_pending(current))
6300 drain_all_stock(memcg);
6306 if (!try_to_free_mem_cgroup_pages(memcg, nr_pages - max,
6312 memcg_memory_event(memcg, MEMCG_OOM);
6313 if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0))
6317 memcg_wb_domain_size_changed(memcg);
6321 static void __memory_events_show(struct seq_file *m, atomic_long_t *events)
6323 seq_printf(m, "low %lu\n", atomic_long_read(&events[MEMCG_LOW]));
6324 seq_printf(m, "high %lu\n", atomic_long_read(&events[MEMCG_HIGH]));
6325 seq_printf(m, "max %lu\n", atomic_long_read(&events[MEMCG_MAX]));
6326 seq_printf(m, "oom %lu\n", atomic_long_read(&events[MEMCG_OOM]));
6327 seq_printf(m, "oom_kill %lu\n",
6328 atomic_long_read(&events[MEMCG_OOM_KILL]));
6329 seq_printf(m, "oom_group_kill %lu\n",
6330 atomic_long_read(&events[MEMCG_OOM_GROUP_KILL]));
6333 static int memory_events_show(struct seq_file *m, void *v)
6335 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6337 __memory_events_show(m, memcg->memory_events);
6341 static int memory_events_local_show(struct seq_file *m, void *v)
6343 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6345 __memory_events_show(m, memcg->memory_events_local);
6349 static int memory_stat_show(struct seq_file *m, void *v)
6351 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6354 buf = memory_stat_format(memcg);
6363 static inline unsigned long lruvec_page_state_output(struct lruvec *lruvec,
6366 return lruvec_page_state(lruvec, item) * memcg_page_state_unit(item);
6369 static int memory_numa_stat_show(struct seq_file *m, void *v)
6372 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6374 mem_cgroup_flush_stats();
6376 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
6379 if (memory_stats[i].idx >= NR_VM_NODE_STAT_ITEMS)
6382 seq_printf(m, "%s", memory_stats[i].name);
6383 for_each_node_state(nid, N_MEMORY) {
6385 struct lruvec *lruvec;
6387 lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
6388 size = lruvec_page_state_output(lruvec,
6389 memory_stats[i].idx);
6390 seq_printf(m, " N%d=%llu", nid, size);
6399 static int memory_oom_group_show(struct seq_file *m, void *v)
6401 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6403 seq_printf(m, "%d\n", memcg->oom_group);
6408 static ssize_t memory_oom_group_write(struct kernfs_open_file *of,
6409 char *buf, size_t nbytes, loff_t off)
6411 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6414 buf = strstrip(buf);
6418 ret = kstrtoint(buf, 0, &oom_group);
6422 if (oom_group != 0 && oom_group != 1)
6425 memcg->oom_group = oom_group;
6430 static struct cftype memory_files[] = {
6433 .flags = CFTYPE_NOT_ON_ROOT,
6434 .read_u64 = memory_current_read,
6438 .flags = CFTYPE_NOT_ON_ROOT,
6439 .seq_show = memory_min_show,
6440 .write = memory_min_write,
6444 .flags = CFTYPE_NOT_ON_ROOT,
6445 .seq_show = memory_low_show,
6446 .write = memory_low_write,
6450 .flags = CFTYPE_NOT_ON_ROOT,
6451 .seq_show = memory_high_show,
6452 .write = memory_high_write,
6456 .flags = CFTYPE_NOT_ON_ROOT,
6457 .seq_show = memory_max_show,
6458 .write = memory_max_write,
6462 .flags = CFTYPE_NOT_ON_ROOT,
6463 .file_offset = offsetof(struct mem_cgroup, events_file),
6464 .seq_show = memory_events_show,
6467 .name = "events.local",
6468 .flags = CFTYPE_NOT_ON_ROOT,
6469 .file_offset = offsetof(struct mem_cgroup, events_local_file),
6470 .seq_show = memory_events_local_show,
6474 .seq_show = memory_stat_show,
6478 .name = "numa_stat",
6479 .seq_show = memory_numa_stat_show,
6483 .name = "oom.group",
6484 .flags = CFTYPE_NOT_ON_ROOT | CFTYPE_NS_DELEGATABLE,
6485 .seq_show = memory_oom_group_show,
6486 .write = memory_oom_group_write,
6491 struct cgroup_subsys memory_cgrp_subsys = {
6492 .css_alloc = mem_cgroup_css_alloc,
6493 .css_online = mem_cgroup_css_online,
6494 .css_offline = mem_cgroup_css_offline,
6495 .css_released = mem_cgroup_css_released,
6496 .css_free = mem_cgroup_css_free,
6497 .css_reset = mem_cgroup_css_reset,
6498 .css_rstat_flush = mem_cgroup_css_rstat_flush,
6499 .can_attach = mem_cgroup_can_attach,
6500 .cancel_attach = mem_cgroup_cancel_attach,
6501 .post_attach = mem_cgroup_move_task,
6502 .dfl_cftypes = memory_files,
6503 .legacy_cftypes = mem_cgroup_legacy_files,
6508 * This function calculates an individual cgroup's effective
6509 * protection which is derived from its own memory.min/low, its
6510 * parent's and siblings' settings, as well as the actual memory
6511 * distribution in the tree.
6513 * The following rules apply to the effective protection values:
6515 * 1. At the first level of reclaim, effective protection is equal to
6516 * the declared protection in memory.min and memory.low.
6518 * 2. To enable safe delegation of the protection configuration, at
6519 * subsequent levels the effective protection is capped to the
6520 * parent's effective protection.
6522 * 3. To make complex and dynamic subtrees easier to configure, the
6523 * user is allowed to overcommit the declared protection at a given
6524 * level. If that is the case, the parent's effective protection is
6525 * distributed to the children in proportion to how much protection
6526 * they have declared and how much of it they are utilizing.
6528 * This makes distribution proportional, but also work-conserving:
6529 * if one cgroup claims much more protection than it uses memory,
6530 * the unused remainder is available to its siblings.
6532 * 4. Conversely, when the declared protection is undercommitted at a
6533 * given level, the distribution of the larger parental protection
6534 * budget is NOT proportional. A cgroup's protection from a sibling
6535 * is capped to its own memory.min/low setting.
6537 * 5. However, to allow protecting recursive subtrees from each other
6538 * without having to declare each individual cgroup's fixed share
6539 * of the ancestor's claim to protection, any unutilized -
6540 * "floating" - protection from up the tree is distributed in
6541 * proportion to each cgroup's *usage*. This makes the protection
6542 * neutral wrt sibling cgroups and lets them compete freely over
6543 * the shared parental protection budget, but it protects the
6544 * subtree as a whole from neighboring subtrees.
6546 * Note that 4. and 5. are not in conflict: 4. is about protecting
6547 * against immediate siblings whereas 5. is about protecting against
6548 * neighboring subtrees.
6550 static unsigned long effective_protection(unsigned long usage,
6551 unsigned long parent_usage,
6552 unsigned long setting,
6553 unsigned long parent_effective,
6554 unsigned long siblings_protected)
6556 unsigned long protected;
6559 protected = min(usage, setting);
6561 * If all cgroups at this level combined claim and use more
6562 * protection then what the parent affords them, distribute
6563 * shares in proportion to utilization.
6565 * We are using actual utilization rather than the statically
6566 * claimed protection in order to be work-conserving: claimed
6567 * but unused protection is available to siblings that would
6568 * otherwise get a smaller chunk than what they claimed.
6570 if (siblings_protected > parent_effective)
6571 return protected * parent_effective / siblings_protected;
6574 * Ok, utilized protection of all children is within what the
6575 * parent affords them, so we know whatever this child claims
6576 * and utilizes is effectively protected.
6578 * If there is unprotected usage beyond this value, reclaim
6579 * will apply pressure in proportion to that amount.
6581 * If there is unutilized protection, the cgroup will be fully
6582 * shielded from reclaim, but we do return a smaller value for
6583 * protection than what the group could enjoy in theory. This
6584 * is okay. With the overcommit distribution above, effective
6585 * protection is always dependent on how memory is actually
6586 * consumed among the siblings anyway.
6591 * If the children aren't claiming (all of) the protection
6592 * afforded to them by the parent, distribute the remainder in
6593 * proportion to the (unprotected) memory of each cgroup. That
6594 * way, cgroups that aren't explicitly prioritized wrt each
6595 * other compete freely over the allowance, but they are
6596 * collectively protected from neighboring trees.
6598 * We're using unprotected memory for the weight so that if
6599 * some cgroups DO claim explicit protection, we don't protect
6600 * the same bytes twice.
6602 * Check both usage and parent_usage against the respective
6603 * protected values. One should imply the other, but they
6604 * aren't read atomically - make sure the division is sane.
6606 if (!(cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT))
6608 if (parent_effective > siblings_protected &&
6609 parent_usage > siblings_protected &&
6610 usage > protected) {
6611 unsigned long unclaimed;
6613 unclaimed = parent_effective - siblings_protected;
6614 unclaimed *= usage - protected;
6615 unclaimed /= parent_usage - siblings_protected;
6624 * mem_cgroup_calculate_protection - check if memory consumption is in the normal range
6625 * @root: the top ancestor of the sub-tree being checked
6626 * @memcg: the memory cgroup to check
6628 * WARNING: This function is not stateless! It can only be used as part
6629 * of a top-down tree iteration, not for isolated queries.
6631 void mem_cgroup_calculate_protection(struct mem_cgroup *root,
6632 struct mem_cgroup *memcg)
6634 unsigned long usage, parent_usage;
6635 struct mem_cgroup *parent;
6637 if (mem_cgroup_disabled())
6641 root = root_mem_cgroup;
6644 * Effective values of the reclaim targets are ignored so they
6645 * can be stale. Have a look at mem_cgroup_protection for more
6647 * TODO: calculation should be more robust so that we do not need
6648 * that special casing.
6653 usage = page_counter_read(&memcg->memory);
6657 parent = parent_mem_cgroup(memcg);
6658 /* No parent means a non-hierarchical mode on v1 memcg */
6662 if (parent == root) {
6663 memcg->memory.emin = READ_ONCE(memcg->memory.min);
6664 memcg->memory.elow = READ_ONCE(memcg->memory.low);
6668 parent_usage = page_counter_read(&parent->memory);
6670 WRITE_ONCE(memcg->memory.emin, effective_protection(usage, parent_usage,
6671 READ_ONCE(memcg->memory.min),
6672 READ_ONCE(parent->memory.emin),
6673 atomic_long_read(&parent->memory.children_min_usage)));
6675 WRITE_ONCE(memcg->memory.elow, effective_protection(usage, parent_usage,
6676 READ_ONCE(memcg->memory.low),
6677 READ_ONCE(parent->memory.elow),
6678 atomic_long_read(&parent->memory.children_low_usage)));
6681 static int charge_memcg(struct folio *folio, struct mem_cgroup *memcg,
6684 long nr_pages = folio_nr_pages(folio);
6687 ret = try_charge(memcg, gfp, nr_pages);
6691 css_get(&memcg->css);
6692 commit_charge(folio, memcg);
6694 local_irq_disable();
6695 mem_cgroup_charge_statistics(memcg, nr_pages);
6696 memcg_check_events(memcg, folio_nid(folio));
6702 int __mem_cgroup_charge(struct folio *folio, struct mm_struct *mm, gfp_t gfp)
6704 struct mem_cgroup *memcg;
6707 memcg = get_mem_cgroup_from_mm(mm);
6708 ret = charge_memcg(folio, memcg, gfp);
6709 css_put(&memcg->css);
6715 * mem_cgroup_swapin_charge_page - charge a newly allocated page for swapin
6716 * @page: page to charge
6717 * @mm: mm context of the victim
6718 * @gfp: reclaim mode
6719 * @entry: swap entry for which the page is allocated
6721 * This function charges a page allocated for swapin. Please call this before
6722 * adding the page to the swapcache.
6724 * Returns 0 on success. Otherwise, an error code is returned.
6726 int mem_cgroup_swapin_charge_page(struct page *page, struct mm_struct *mm,
6727 gfp_t gfp, swp_entry_t entry)
6729 struct folio *folio = page_folio(page);
6730 struct mem_cgroup *memcg;
6734 if (mem_cgroup_disabled())
6737 id = lookup_swap_cgroup_id(entry);
6739 memcg = mem_cgroup_from_id(id);
6740 if (!memcg || !css_tryget_online(&memcg->css))
6741 memcg = get_mem_cgroup_from_mm(mm);
6744 ret = charge_memcg(folio, memcg, gfp);
6746 css_put(&memcg->css);
6751 * mem_cgroup_swapin_uncharge_swap - uncharge swap slot
6752 * @entry: swap entry for which the page is charged
6754 * Call this function after successfully adding the charged page to swapcache.
6756 * Note: This function assumes the page for which swap slot is being uncharged
6759 void mem_cgroup_swapin_uncharge_swap(swp_entry_t entry)
6762 * Cgroup1's unified memory+swap counter has been charged with the
6763 * new swapcache page, finish the transfer by uncharging the swap
6764 * slot. The swap slot would also get uncharged when it dies, but
6765 * it can stick around indefinitely and we'd count the page twice
6768 * Cgroup2 has separate resource counters for memory and swap,
6769 * so this is a non-issue here. Memory and swap charge lifetimes
6770 * correspond 1:1 to page and swap slot lifetimes: we charge the
6771 * page to memory here, and uncharge swap when the slot is freed.
6773 if (!mem_cgroup_disabled() && do_memsw_account()) {
6775 * The swap entry might not get freed for a long time,
6776 * let's not wait for it. The page already received a
6777 * memory+swap charge, drop the swap entry duplicate.
6779 mem_cgroup_uncharge_swap(entry, 1);
6783 struct uncharge_gather {
6784 struct mem_cgroup *memcg;
6785 unsigned long nr_memory;
6786 unsigned long pgpgout;
6787 unsigned long nr_kmem;
6791 static inline void uncharge_gather_clear(struct uncharge_gather *ug)
6793 memset(ug, 0, sizeof(*ug));
6796 static void uncharge_batch(const struct uncharge_gather *ug)
6798 unsigned long flags;
6800 if (ug->nr_memory) {
6801 page_counter_uncharge(&ug->memcg->memory, ug->nr_memory);
6802 if (do_memsw_account())
6803 page_counter_uncharge(&ug->memcg->memsw, ug->nr_memory);
6804 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && ug->nr_kmem)
6805 page_counter_uncharge(&ug->memcg->kmem, ug->nr_kmem);
6806 memcg_oom_recover(ug->memcg);
6809 local_irq_save(flags);
6810 __count_memcg_events(ug->memcg, PGPGOUT, ug->pgpgout);
6811 __this_cpu_add(ug->memcg->vmstats_percpu->nr_page_events, ug->nr_memory);
6812 memcg_check_events(ug->memcg, ug->nid);
6813 local_irq_restore(flags);
6815 /* drop reference from uncharge_folio */
6816 css_put(&ug->memcg->css);
6819 static void uncharge_folio(struct folio *folio, struct uncharge_gather *ug)
6822 struct mem_cgroup *memcg;
6823 struct obj_cgroup *objcg;
6824 bool use_objcg = folio_memcg_kmem(folio);
6826 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
6829 * Nobody should be changing or seriously looking at
6830 * folio memcg or objcg at this point, we have fully
6831 * exclusive access to the folio.
6834 objcg = __folio_objcg(folio);
6836 * This get matches the put at the end of the function and
6837 * kmem pages do not hold memcg references anymore.
6839 memcg = get_mem_cgroup_from_objcg(objcg);
6841 memcg = __folio_memcg(folio);
6847 if (ug->memcg != memcg) {
6850 uncharge_gather_clear(ug);
6853 ug->nid = folio_nid(folio);
6855 /* pairs with css_put in uncharge_batch */
6856 css_get(&memcg->css);
6859 nr_pages = folio_nr_pages(folio);
6862 ug->nr_memory += nr_pages;
6863 ug->nr_kmem += nr_pages;
6865 folio->memcg_data = 0;
6866 obj_cgroup_put(objcg);
6868 /* LRU pages aren't accounted at the root level */
6869 if (!mem_cgroup_is_root(memcg))
6870 ug->nr_memory += nr_pages;
6873 folio->memcg_data = 0;
6876 css_put(&memcg->css);
6879 void __mem_cgroup_uncharge(struct folio *folio)
6881 struct uncharge_gather ug;
6883 /* Don't touch folio->lru of any random page, pre-check: */
6884 if (!folio_memcg(folio))
6887 uncharge_gather_clear(&ug);
6888 uncharge_folio(folio, &ug);
6889 uncharge_batch(&ug);
6893 * __mem_cgroup_uncharge_list - uncharge a list of page
6894 * @page_list: list of pages to uncharge
6896 * Uncharge a list of pages previously charged with
6897 * __mem_cgroup_charge().
6899 void __mem_cgroup_uncharge_list(struct list_head *page_list)
6901 struct uncharge_gather ug;
6902 struct folio *folio;
6904 uncharge_gather_clear(&ug);
6905 list_for_each_entry(folio, page_list, lru)
6906 uncharge_folio(folio, &ug);
6908 uncharge_batch(&ug);
6912 * mem_cgroup_migrate - Charge a folio's replacement.
6913 * @old: Currently circulating folio.
6914 * @new: Replacement folio.
6916 * Charge @new as a replacement folio for @old. @old will
6917 * be uncharged upon free.
6919 * Both folios must be locked, @new->mapping must be set up.
6921 void mem_cgroup_migrate(struct folio *old, struct folio *new)
6923 struct mem_cgroup *memcg;
6924 long nr_pages = folio_nr_pages(new);
6925 unsigned long flags;
6927 VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
6928 VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
6929 VM_BUG_ON_FOLIO(folio_test_anon(old) != folio_test_anon(new), new);
6930 VM_BUG_ON_FOLIO(folio_nr_pages(old) != nr_pages, new);
6932 if (mem_cgroup_disabled())
6935 /* Page cache replacement: new folio already charged? */
6936 if (folio_memcg(new))
6939 memcg = folio_memcg(old);
6940 VM_WARN_ON_ONCE_FOLIO(!memcg, old);
6944 /* Force-charge the new page. The old one will be freed soon */
6945 if (!mem_cgroup_is_root(memcg)) {
6946 page_counter_charge(&memcg->memory, nr_pages);
6947 if (do_memsw_account())
6948 page_counter_charge(&memcg->memsw, nr_pages);
6951 css_get(&memcg->css);
6952 commit_charge(new, memcg);
6954 local_irq_save(flags);
6955 mem_cgroup_charge_statistics(memcg, nr_pages);
6956 memcg_check_events(memcg, folio_nid(new));
6957 local_irq_restore(flags);
6960 DEFINE_STATIC_KEY_FALSE(memcg_sockets_enabled_key);
6961 EXPORT_SYMBOL(memcg_sockets_enabled_key);
6963 void mem_cgroup_sk_alloc(struct sock *sk)
6965 struct mem_cgroup *memcg;
6967 if (!mem_cgroup_sockets_enabled)
6970 /* Do not associate the sock with unrelated interrupted task's memcg. */
6975 memcg = mem_cgroup_from_task(current);
6976 if (memcg == root_mem_cgroup)
6978 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && !memcg->tcpmem_active)
6980 if (css_tryget(&memcg->css))
6981 sk->sk_memcg = memcg;
6986 void mem_cgroup_sk_free(struct sock *sk)
6989 css_put(&sk->sk_memcg->css);
6993 * mem_cgroup_charge_skmem - charge socket memory
6994 * @memcg: memcg to charge
6995 * @nr_pages: number of pages to charge
6996 * @gfp_mask: reclaim mode
6998 * Charges @nr_pages to @memcg. Returns %true if the charge fit within
6999 * @memcg's configured limit, %false if it doesn't.
7001 bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages,
7004 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7005 struct page_counter *fail;
7007 if (page_counter_try_charge(&memcg->tcpmem, nr_pages, &fail)) {
7008 memcg->tcpmem_pressure = 0;
7011 memcg->tcpmem_pressure = 1;
7012 if (gfp_mask & __GFP_NOFAIL) {
7013 page_counter_charge(&memcg->tcpmem, nr_pages);
7019 if (try_charge(memcg, gfp_mask, nr_pages) == 0) {
7020 mod_memcg_state(memcg, MEMCG_SOCK, nr_pages);
7028 * mem_cgroup_uncharge_skmem - uncharge socket memory
7029 * @memcg: memcg to uncharge
7030 * @nr_pages: number of pages to uncharge
7032 void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages)
7034 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7035 page_counter_uncharge(&memcg->tcpmem, nr_pages);
7039 mod_memcg_state(memcg, MEMCG_SOCK, -nr_pages);
7041 refill_stock(memcg, nr_pages);
7044 static int __init cgroup_memory(char *s)
7048 while ((token = strsep(&s, ",")) != NULL) {
7051 if (!strcmp(token, "nosocket"))
7052 cgroup_memory_nosocket = true;
7053 if (!strcmp(token, "nokmem"))
7054 cgroup_memory_nokmem = true;
7058 __setup("cgroup.memory=", cgroup_memory);
7061 * subsys_initcall() for memory controller.
7063 * Some parts like memcg_hotplug_cpu_dead() have to be initialized from this
7064 * context because of lock dependencies (cgroup_lock -> cpu hotplug) but
7065 * basically everything that doesn't depend on a specific mem_cgroup structure
7066 * should be initialized from here.
7068 static int __init mem_cgroup_init(void)
7073 * Currently s32 type (can refer to struct batched_lruvec_stat) is
7074 * used for per-memcg-per-cpu caching of per-node statistics. In order
7075 * to work fine, we should make sure that the overfill threshold can't
7076 * exceed S32_MAX / PAGE_SIZE.
7078 BUILD_BUG_ON(MEMCG_CHARGE_BATCH > S32_MAX / PAGE_SIZE);
7080 cpuhp_setup_state_nocalls(CPUHP_MM_MEMCQ_DEAD, "mm/memctrl:dead", NULL,
7081 memcg_hotplug_cpu_dead);
7083 for_each_possible_cpu(cpu)
7084 INIT_WORK(&per_cpu_ptr(&memcg_stock, cpu)->work,
7087 for_each_node(node) {
7088 struct mem_cgroup_tree_per_node *rtpn;
7090 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
7091 node_online(node) ? node : NUMA_NO_NODE);
7093 rtpn->rb_root = RB_ROOT;
7094 rtpn->rb_rightmost = NULL;
7095 spin_lock_init(&rtpn->lock);
7096 soft_limit_tree.rb_tree_per_node[node] = rtpn;
7101 subsys_initcall(mem_cgroup_init);
7103 #ifdef CONFIG_MEMCG_SWAP
7104 static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg)
7106 while (!refcount_inc_not_zero(&memcg->id.ref)) {
7108 * The root cgroup cannot be destroyed, so it's refcount must
7111 if (WARN_ON_ONCE(memcg == root_mem_cgroup)) {
7115 memcg = parent_mem_cgroup(memcg);
7117 memcg = root_mem_cgroup;
7123 * mem_cgroup_swapout - transfer a memsw charge to swap
7124 * @page: page whose memsw charge to transfer
7125 * @entry: swap entry to move the charge to
7127 * Transfer the memsw charge of @page to @entry.
7129 void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
7131 struct mem_cgroup *memcg, *swap_memcg;
7132 unsigned int nr_entries;
7133 unsigned short oldid;
7135 VM_BUG_ON_PAGE(PageLRU(page), page);
7136 VM_BUG_ON_PAGE(page_count(page), page);
7138 if (mem_cgroup_disabled())
7141 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7144 memcg = page_memcg(page);
7146 VM_WARN_ON_ONCE_PAGE(!memcg, page);
7151 * In case the memcg owning these pages has been offlined and doesn't
7152 * have an ID allocated to it anymore, charge the closest online
7153 * ancestor for the swap instead and transfer the memory+swap charge.
7155 swap_memcg = mem_cgroup_id_get_online(memcg);
7156 nr_entries = thp_nr_pages(page);
7157 /* Get references for the tail pages, too */
7159 mem_cgroup_id_get_many(swap_memcg, nr_entries - 1);
7160 oldid = swap_cgroup_record(entry, mem_cgroup_id(swap_memcg),
7162 VM_BUG_ON_PAGE(oldid, page);
7163 mod_memcg_state(swap_memcg, MEMCG_SWAP, nr_entries);
7165 page->memcg_data = 0;
7167 if (!mem_cgroup_is_root(memcg))
7168 page_counter_uncharge(&memcg->memory, nr_entries);
7170 if (!cgroup_memory_noswap && memcg != swap_memcg) {
7171 if (!mem_cgroup_is_root(swap_memcg))
7172 page_counter_charge(&swap_memcg->memsw, nr_entries);
7173 page_counter_uncharge(&memcg->memsw, nr_entries);
7177 * Interrupts should be disabled here because the caller holds the
7178 * i_pages lock which is taken with interrupts-off. It is
7179 * important here to have the interrupts disabled because it is the
7180 * only synchronisation we have for updating the per-CPU variables.
7182 VM_BUG_ON(!irqs_disabled());
7183 mem_cgroup_charge_statistics(memcg, -nr_entries);
7184 memcg_check_events(memcg, page_to_nid(page));
7186 css_put(&memcg->css);
7190 * __mem_cgroup_try_charge_swap - try charging swap space for a page
7191 * @page: page being added to swap
7192 * @entry: swap entry to charge
7194 * Try to charge @page's memcg for the swap space at @entry.
7196 * Returns 0 on success, -ENOMEM on failure.
7198 int __mem_cgroup_try_charge_swap(struct page *page, swp_entry_t entry)
7200 unsigned int nr_pages = thp_nr_pages(page);
7201 struct page_counter *counter;
7202 struct mem_cgroup *memcg;
7203 unsigned short oldid;
7205 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7208 memcg = page_memcg(page);
7210 VM_WARN_ON_ONCE_PAGE(!memcg, page);
7215 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7219 memcg = mem_cgroup_id_get_online(memcg);
7221 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg) &&
7222 !page_counter_try_charge(&memcg->swap, nr_pages, &counter)) {
7223 memcg_memory_event(memcg, MEMCG_SWAP_MAX);
7224 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7225 mem_cgroup_id_put(memcg);
7229 /* Get references for the tail pages, too */
7231 mem_cgroup_id_get_many(memcg, nr_pages - 1);
7232 oldid = swap_cgroup_record(entry, mem_cgroup_id(memcg), nr_pages);
7233 VM_BUG_ON_PAGE(oldid, page);
7234 mod_memcg_state(memcg, MEMCG_SWAP, nr_pages);
7240 * __mem_cgroup_uncharge_swap - uncharge swap space
7241 * @entry: swap entry to uncharge
7242 * @nr_pages: the amount of swap space to uncharge
7244 void __mem_cgroup_uncharge_swap(swp_entry_t entry, unsigned int nr_pages)
7246 struct mem_cgroup *memcg;
7249 id = swap_cgroup_record(entry, 0, nr_pages);
7251 memcg = mem_cgroup_from_id(id);
7253 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg)) {
7254 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7255 page_counter_uncharge(&memcg->swap, nr_pages);
7257 page_counter_uncharge(&memcg->memsw, nr_pages);
7259 mod_memcg_state(memcg, MEMCG_SWAP, -nr_pages);
7260 mem_cgroup_id_put_many(memcg, nr_pages);
7265 long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
7267 long nr_swap_pages = get_nr_swap_pages();
7269 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7270 return nr_swap_pages;
7271 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg))
7272 nr_swap_pages = min_t(long, nr_swap_pages,
7273 READ_ONCE(memcg->swap.max) -
7274 page_counter_read(&memcg->swap));
7275 return nr_swap_pages;
7278 bool mem_cgroup_swap_full(struct page *page)
7280 struct mem_cgroup *memcg;
7282 VM_BUG_ON_PAGE(!PageLocked(page), page);
7286 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7289 memcg = page_memcg(page);
7293 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
7294 unsigned long usage = page_counter_read(&memcg->swap);
7296 if (usage * 2 >= READ_ONCE(memcg->swap.high) ||
7297 usage * 2 >= READ_ONCE(memcg->swap.max))
7304 static int __init setup_swap_account(char *s)
7306 if (!strcmp(s, "1"))
7307 cgroup_memory_noswap = false;
7308 else if (!strcmp(s, "0"))
7309 cgroup_memory_noswap = true;
7312 __setup("swapaccount=", setup_swap_account);
7314 static u64 swap_current_read(struct cgroup_subsys_state *css,
7317 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
7319 return (u64)page_counter_read(&memcg->swap) * PAGE_SIZE;
7322 static int swap_high_show(struct seq_file *m, void *v)
7324 return seq_puts_memcg_tunable(m,
7325 READ_ONCE(mem_cgroup_from_seq(m)->swap.high));
7328 static ssize_t swap_high_write(struct kernfs_open_file *of,
7329 char *buf, size_t nbytes, loff_t off)
7331 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7335 buf = strstrip(buf);
7336 err = page_counter_memparse(buf, "max", &high);
7340 page_counter_set_high(&memcg->swap, high);
7345 static int swap_max_show(struct seq_file *m, void *v)
7347 return seq_puts_memcg_tunable(m,
7348 READ_ONCE(mem_cgroup_from_seq(m)->swap.max));
7351 static ssize_t swap_max_write(struct kernfs_open_file *of,
7352 char *buf, size_t nbytes, loff_t off)
7354 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7358 buf = strstrip(buf);
7359 err = page_counter_memparse(buf, "max", &max);
7363 xchg(&memcg->swap.max, max);
7368 static int swap_events_show(struct seq_file *m, void *v)
7370 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
7372 seq_printf(m, "high %lu\n",
7373 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_HIGH]));
7374 seq_printf(m, "max %lu\n",
7375 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_MAX]));
7376 seq_printf(m, "fail %lu\n",
7377 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_FAIL]));
7382 static struct cftype swap_files[] = {
7384 .name = "swap.current",
7385 .flags = CFTYPE_NOT_ON_ROOT,
7386 .read_u64 = swap_current_read,
7389 .name = "swap.high",
7390 .flags = CFTYPE_NOT_ON_ROOT,
7391 .seq_show = swap_high_show,
7392 .write = swap_high_write,
7396 .flags = CFTYPE_NOT_ON_ROOT,
7397 .seq_show = swap_max_show,
7398 .write = swap_max_write,
7401 .name = "swap.events",
7402 .flags = CFTYPE_NOT_ON_ROOT,
7403 .file_offset = offsetof(struct mem_cgroup, swap_events_file),
7404 .seq_show = swap_events_show,
7409 static struct cftype memsw_files[] = {
7411 .name = "memsw.usage_in_bytes",
7412 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
7413 .read_u64 = mem_cgroup_read_u64,
7416 .name = "memsw.max_usage_in_bytes",
7417 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
7418 .write = mem_cgroup_reset,
7419 .read_u64 = mem_cgroup_read_u64,
7422 .name = "memsw.limit_in_bytes",
7423 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
7424 .write = mem_cgroup_write,
7425 .read_u64 = mem_cgroup_read_u64,
7428 .name = "memsw.failcnt",
7429 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
7430 .write = mem_cgroup_reset,
7431 .read_u64 = mem_cgroup_read_u64,
7433 { }, /* terminate */
7437 * If mem_cgroup_swap_init() is implemented as a subsys_initcall()
7438 * instead of a core_initcall(), this could mean cgroup_memory_noswap still
7439 * remains set to false even when memcg is disabled via "cgroup_disable=memory"
7440 * boot parameter. This may result in premature OOPS inside
7441 * mem_cgroup_get_nr_swap_pages() function in corner cases.
7443 static int __init mem_cgroup_swap_init(void)
7445 /* No memory control -> no swap control */
7446 if (mem_cgroup_disabled())
7447 cgroup_memory_noswap = true;
7449 if (cgroup_memory_noswap)
7452 WARN_ON(cgroup_add_dfl_cftypes(&memory_cgrp_subsys, swap_files));
7453 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys, memsw_files));
7457 core_initcall(mem_cgroup_swap_init);
7459 #endif /* CONFIG_MEMCG_SWAP */