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/memremap.h>
57 #include <linux/mm_inline.h>
58 #include <linux/swap_cgroup.h>
59 #include <linux/cpu.h>
60 #include <linux/oom.h>
61 #include <linux/lockdep.h>
62 #include <linux/file.h>
63 #include <linux/resume_user_mode.h>
64 #include <linux/psi.h>
65 #include <linux/seq_buf.h>
72 #include <linux/uaccess.h>
74 #include <trace/events/vmscan.h>
76 struct cgroup_subsys memory_cgrp_subsys __read_mostly;
77 EXPORT_SYMBOL(memory_cgrp_subsys);
79 struct mem_cgroup *root_mem_cgroup __read_mostly;
81 /* Active memory cgroup to use from an interrupt context */
82 DEFINE_PER_CPU(struct mem_cgroup *, int_active_memcg);
83 EXPORT_PER_CPU_SYMBOL_GPL(int_active_memcg);
85 /* Socket memory accounting disabled? */
86 static bool cgroup_memory_nosocket __ro_after_init;
88 /* Kernel memory accounting disabled? */
89 static bool cgroup_memory_nokmem __ro_after_init;
91 /* Whether the swap controller is active */
92 #ifdef CONFIG_MEMCG_SWAP
93 static bool cgroup_memory_noswap __ro_after_init;
95 #define cgroup_memory_noswap 1
98 #ifdef CONFIG_CGROUP_WRITEBACK
99 static DECLARE_WAIT_QUEUE_HEAD(memcg_cgwb_frn_waitq);
102 /* Whether legacy memory+swap accounting is active */
103 static bool do_memsw_account(void)
105 return !cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_noswap;
108 #define THRESHOLDS_EVENTS_TARGET 128
109 #define SOFTLIMIT_EVENTS_TARGET 1024
112 * Cgroups above their limits are maintained in a RB-Tree, independent of
113 * their hierarchy representation
116 struct mem_cgroup_tree_per_node {
117 struct rb_root rb_root;
118 struct rb_node *rb_rightmost;
122 struct mem_cgroup_tree {
123 struct mem_cgroup_tree_per_node *rb_tree_per_node[MAX_NUMNODES];
126 static struct mem_cgroup_tree soft_limit_tree __read_mostly;
129 struct mem_cgroup_eventfd_list {
130 struct list_head list;
131 struct eventfd_ctx *eventfd;
135 * cgroup_event represents events which userspace want to receive.
137 struct mem_cgroup_event {
139 * memcg which the event belongs to.
141 struct mem_cgroup *memcg;
143 * eventfd to signal userspace about the event.
145 struct eventfd_ctx *eventfd;
147 * Each of these stored in a list by the cgroup.
149 struct list_head list;
151 * register_event() callback will be used to add new userspace
152 * waiter for changes related to this event. Use eventfd_signal()
153 * on eventfd to send notification to userspace.
155 int (*register_event)(struct mem_cgroup *memcg,
156 struct eventfd_ctx *eventfd, const char *args);
158 * unregister_event() callback will be called when userspace closes
159 * the eventfd or on cgroup removing. This callback must be set,
160 * if you want provide notification functionality.
162 void (*unregister_event)(struct mem_cgroup *memcg,
163 struct eventfd_ctx *eventfd);
165 * All fields below needed to unregister event when
166 * userspace closes eventfd.
169 wait_queue_head_t *wqh;
170 wait_queue_entry_t wait;
171 struct work_struct remove;
174 static void mem_cgroup_threshold(struct mem_cgroup *memcg);
175 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg);
177 /* Stuffs for move charges at task migration. */
179 * Types of charges to be moved.
181 #define MOVE_ANON 0x1U
182 #define MOVE_FILE 0x2U
183 #define MOVE_MASK (MOVE_ANON | MOVE_FILE)
185 /* "mc" and its members are protected by cgroup_mutex */
186 static struct move_charge_struct {
187 spinlock_t lock; /* for from, to */
188 struct mm_struct *mm;
189 struct mem_cgroup *from;
190 struct mem_cgroup *to;
192 unsigned long precharge;
193 unsigned long moved_charge;
194 unsigned long moved_swap;
195 struct task_struct *moving_task; /* a task moving charges */
196 wait_queue_head_t waitq; /* a waitq for other context */
198 .lock = __SPIN_LOCK_UNLOCKED(mc.lock),
199 .waitq = __WAIT_QUEUE_HEAD_INITIALIZER(mc.waitq),
203 * Maximum loops in mem_cgroup_hierarchical_reclaim(), used for soft
204 * limit reclaim to prevent infinite loops, if they ever occur.
206 #define MEM_CGROUP_MAX_RECLAIM_LOOPS 100
207 #define MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS 2
209 /* for encoding cft->private value on file */
217 #define MEMFILE_PRIVATE(x, val) ((x) << 16 | (val))
218 #define MEMFILE_TYPE(val) ((val) >> 16 & 0xffff)
219 #define MEMFILE_ATTR(val) ((val) & 0xffff)
222 * Iteration constructs for visiting all cgroups (under a tree). If
223 * loops are exited prematurely (break), mem_cgroup_iter_break() must
224 * be used for reference counting.
226 #define for_each_mem_cgroup_tree(iter, root) \
227 for (iter = mem_cgroup_iter(root, NULL, NULL); \
229 iter = mem_cgroup_iter(root, iter, NULL))
231 #define for_each_mem_cgroup(iter) \
232 for (iter = mem_cgroup_iter(NULL, NULL, NULL); \
234 iter = mem_cgroup_iter(NULL, iter, NULL))
236 static inline bool task_is_dying(void)
238 return tsk_is_oom_victim(current) || fatal_signal_pending(current) ||
239 (current->flags & PF_EXITING);
242 /* Some nice accessors for the vmpressure. */
243 struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg)
246 memcg = root_mem_cgroup;
247 return &memcg->vmpressure;
250 struct mem_cgroup *vmpressure_to_memcg(struct vmpressure *vmpr)
252 return container_of(vmpr, struct mem_cgroup, vmpressure);
255 #ifdef CONFIG_MEMCG_KMEM
256 static DEFINE_SPINLOCK(objcg_lock);
258 bool mem_cgroup_kmem_disabled(void)
260 return cgroup_memory_nokmem;
263 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
264 unsigned int nr_pages);
266 static void obj_cgroup_release(struct percpu_ref *ref)
268 struct obj_cgroup *objcg = container_of(ref, struct obj_cgroup, refcnt);
269 unsigned int nr_bytes;
270 unsigned int nr_pages;
274 * At this point all allocated objects are freed, and
275 * objcg->nr_charged_bytes can't have an arbitrary byte value.
276 * However, it can be PAGE_SIZE or (x * PAGE_SIZE).
278 * The following sequence can lead to it:
279 * 1) CPU0: objcg == stock->cached_objcg
280 * 2) CPU1: we do a small allocation (e.g. 92 bytes),
281 * PAGE_SIZE bytes are charged
282 * 3) CPU1: a process from another memcg is allocating something,
283 * the stock if flushed,
284 * objcg->nr_charged_bytes = PAGE_SIZE - 92
285 * 5) CPU0: we do release this object,
286 * 92 bytes are added to stock->nr_bytes
287 * 6) CPU0: stock is flushed,
288 * 92 bytes are added to objcg->nr_charged_bytes
290 * In the result, nr_charged_bytes == PAGE_SIZE.
291 * This page will be uncharged in obj_cgroup_release().
293 nr_bytes = atomic_read(&objcg->nr_charged_bytes);
294 WARN_ON_ONCE(nr_bytes & (PAGE_SIZE - 1));
295 nr_pages = nr_bytes >> PAGE_SHIFT;
298 obj_cgroup_uncharge_pages(objcg, nr_pages);
300 spin_lock_irqsave(&objcg_lock, flags);
301 list_del(&objcg->list);
302 spin_unlock_irqrestore(&objcg_lock, flags);
304 percpu_ref_exit(ref);
305 kfree_rcu(objcg, rcu);
308 static struct obj_cgroup *obj_cgroup_alloc(void)
310 struct obj_cgroup *objcg;
313 objcg = kzalloc(sizeof(struct obj_cgroup), GFP_KERNEL);
317 ret = percpu_ref_init(&objcg->refcnt, obj_cgroup_release, 0,
323 INIT_LIST_HEAD(&objcg->list);
327 static void memcg_reparent_objcgs(struct mem_cgroup *memcg,
328 struct mem_cgroup *parent)
330 struct obj_cgroup *objcg, *iter;
332 objcg = rcu_replace_pointer(memcg->objcg, NULL, true);
334 spin_lock_irq(&objcg_lock);
336 /* 1) Ready to reparent active objcg. */
337 list_add(&objcg->list, &memcg->objcg_list);
338 /* 2) Reparent active objcg and already reparented objcgs to parent. */
339 list_for_each_entry(iter, &memcg->objcg_list, list)
340 WRITE_ONCE(iter->memcg, parent);
341 /* 3) Move already reparented objcgs to the parent's list */
342 list_splice(&memcg->objcg_list, &parent->objcg_list);
344 spin_unlock_irq(&objcg_lock);
346 percpu_ref_kill(&objcg->refcnt);
350 * A lot of the calls to the cache allocation functions are expected to be
351 * inlined by the compiler. Since the calls to memcg_slab_pre_alloc_hook() are
352 * conditional to this static branch, we'll have to allow modules that does
353 * kmem_cache_alloc and the such to see this symbol as well
355 DEFINE_STATIC_KEY_FALSE(memcg_kmem_enabled_key);
356 EXPORT_SYMBOL(memcg_kmem_enabled_key);
360 * mem_cgroup_css_from_page - css of the memcg associated with a page
361 * @page: page of interest
363 * If memcg is bound to the default hierarchy, css of the memcg associated
364 * with @page is returned. The returned css remains associated with @page
365 * until it is released.
367 * If memcg is bound to a traditional hierarchy, the css of root_mem_cgroup
370 struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page)
372 struct mem_cgroup *memcg;
374 memcg = page_memcg(page);
376 if (!memcg || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
377 memcg = root_mem_cgroup;
383 * page_cgroup_ino - return inode number of the memcg a page is charged to
386 * Look up the closest online ancestor of the memory cgroup @page is charged to
387 * and return its inode number or 0 if @page is not charged to any cgroup. It
388 * is safe to call this function without holding a reference to @page.
390 * Note, this function is inherently racy, because there is nothing to prevent
391 * the cgroup inode from getting torn down and potentially reallocated a moment
392 * after page_cgroup_ino() returns, so it only should be used by callers that
393 * do not care (such as procfs interfaces).
395 ino_t page_cgroup_ino(struct page *page)
397 struct mem_cgroup *memcg;
398 unsigned long ino = 0;
401 memcg = page_memcg_check(page);
403 while (memcg && !(memcg->css.flags & CSS_ONLINE))
404 memcg = parent_mem_cgroup(memcg);
406 ino = cgroup_ino(memcg->css.cgroup);
411 static void __mem_cgroup_insert_exceeded(struct mem_cgroup_per_node *mz,
412 struct mem_cgroup_tree_per_node *mctz,
413 unsigned long new_usage_in_excess)
415 struct rb_node **p = &mctz->rb_root.rb_node;
416 struct rb_node *parent = NULL;
417 struct mem_cgroup_per_node *mz_node;
418 bool rightmost = true;
423 mz->usage_in_excess = new_usage_in_excess;
424 if (!mz->usage_in_excess)
428 mz_node = rb_entry(parent, struct mem_cgroup_per_node,
430 if (mz->usage_in_excess < mz_node->usage_in_excess) {
439 mctz->rb_rightmost = &mz->tree_node;
441 rb_link_node(&mz->tree_node, parent, p);
442 rb_insert_color(&mz->tree_node, &mctz->rb_root);
446 static void __mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
447 struct mem_cgroup_tree_per_node *mctz)
452 if (&mz->tree_node == mctz->rb_rightmost)
453 mctz->rb_rightmost = rb_prev(&mz->tree_node);
455 rb_erase(&mz->tree_node, &mctz->rb_root);
459 static void mem_cgroup_remove_exceeded(struct mem_cgroup_per_node *mz,
460 struct mem_cgroup_tree_per_node *mctz)
464 spin_lock_irqsave(&mctz->lock, flags);
465 __mem_cgroup_remove_exceeded(mz, mctz);
466 spin_unlock_irqrestore(&mctz->lock, flags);
469 static unsigned long soft_limit_excess(struct mem_cgroup *memcg)
471 unsigned long nr_pages = page_counter_read(&memcg->memory);
472 unsigned long soft_limit = READ_ONCE(memcg->soft_limit);
473 unsigned long excess = 0;
475 if (nr_pages > soft_limit)
476 excess = nr_pages - soft_limit;
481 static void mem_cgroup_update_tree(struct mem_cgroup *memcg, int nid)
483 unsigned long excess;
484 struct mem_cgroup_per_node *mz;
485 struct mem_cgroup_tree_per_node *mctz;
487 mctz = soft_limit_tree.rb_tree_per_node[nid];
491 * Necessary to update all ancestors when hierarchy is used.
492 * because their event counter is not touched.
494 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
495 mz = memcg->nodeinfo[nid];
496 excess = soft_limit_excess(memcg);
498 * We have to update the tree if mz is on RB-tree or
499 * mem is over its softlimit.
501 if (excess || mz->on_tree) {
504 spin_lock_irqsave(&mctz->lock, flags);
505 /* if on-tree, remove it */
507 __mem_cgroup_remove_exceeded(mz, mctz);
509 * Insert again. mz->usage_in_excess will be updated.
510 * If excess is 0, no tree ops.
512 __mem_cgroup_insert_exceeded(mz, mctz, excess);
513 spin_unlock_irqrestore(&mctz->lock, flags);
518 static void mem_cgroup_remove_from_trees(struct mem_cgroup *memcg)
520 struct mem_cgroup_tree_per_node *mctz;
521 struct mem_cgroup_per_node *mz;
525 mz = memcg->nodeinfo[nid];
526 mctz = soft_limit_tree.rb_tree_per_node[nid];
528 mem_cgroup_remove_exceeded(mz, mctz);
532 static struct mem_cgroup_per_node *
533 __mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
535 struct mem_cgroup_per_node *mz;
539 if (!mctz->rb_rightmost)
540 goto done; /* Nothing to reclaim from */
542 mz = rb_entry(mctz->rb_rightmost,
543 struct mem_cgroup_per_node, tree_node);
545 * Remove the node now but someone else can add it back,
546 * we will to add it back at the end of reclaim to its correct
547 * position in the tree.
549 __mem_cgroup_remove_exceeded(mz, mctz);
550 if (!soft_limit_excess(mz->memcg) ||
551 !css_tryget(&mz->memcg->css))
557 static struct mem_cgroup_per_node *
558 mem_cgroup_largest_soft_limit_node(struct mem_cgroup_tree_per_node *mctz)
560 struct mem_cgroup_per_node *mz;
562 spin_lock_irq(&mctz->lock);
563 mz = __mem_cgroup_largest_soft_limit_node(mctz);
564 spin_unlock_irq(&mctz->lock);
569 * memcg and lruvec stats flushing
571 * Many codepaths leading to stats update or read are performance sensitive and
572 * adding stats flushing in such codepaths is not desirable. So, to optimize the
573 * flushing the kernel does:
575 * 1) Periodically and asynchronously flush the stats every 2 seconds to not let
576 * rstat update tree grow unbounded.
578 * 2) Flush the stats synchronously on reader side only when there are more than
579 * (MEMCG_CHARGE_BATCH * nr_cpus) update events. Though this optimization
580 * will let stats be out of sync by atmost (MEMCG_CHARGE_BATCH * nr_cpus) but
581 * only for 2 seconds due to (1).
583 static void flush_memcg_stats_dwork(struct work_struct *w);
584 static DECLARE_DEFERRABLE_WORK(stats_flush_dwork, flush_memcg_stats_dwork);
585 static DEFINE_SPINLOCK(stats_flush_lock);
586 static DEFINE_PER_CPU(unsigned int, stats_updates);
587 static atomic_t stats_flush_threshold = ATOMIC_INIT(0);
588 static u64 flush_next_time;
590 #define FLUSH_TIME (2UL*HZ)
593 * Accessors to ensure that preemption is disabled on PREEMPT_RT because it can
594 * not rely on this as part of an acquired spinlock_t lock. These functions are
595 * never used in hardirq context on PREEMPT_RT and therefore disabling preemtion
598 static void memcg_stats_lock(void)
600 #ifdef CONFIG_PREEMPT_RT
603 VM_BUG_ON(!irqs_disabled());
607 static void __memcg_stats_lock(void)
609 #ifdef CONFIG_PREEMPT_RT
614 static void memcg_stats_unlock(void)
616 #ifdef CONFIG_PREEMPT_RT
621 static inline void memcg_rstat_updated(struct mem_cgroup *memcg, int val)
625 cgroup_rstat_updated(memcg->css.cgroup, smp_processor_id());
627 x = __this_cpu_add_return(stats_updates, abs(val));
628 if (x > MEMCG_CHARGE_BATCH) {
629 atomic_add(x / MEMCG_CHARGE_BATCH, &stats_flush_threshold);
630 __this_cpu_write(stats_updates, 0);
634 static void __mem_cgroup_flush_stats(void)
638 if (!spin_trylock_irqsave(&stats_flush_lock, flag))
641 flush_next_time = jiffies_64 + 2*FLUSH_TIME;
642 cgroup_rstat_flush_irqsafe(root_mem_cgroup->css.cgroup);
643 atomic_set(&stats_flush_threshold, 0);
644 spin_unlock_irqrestore(&stats_flush_lock, flag);
647 void mem_cgroup_flush_stats(void)
649 if (atomic_read(&stats_flush_threshold) > num_online_cpus())
650 __mem_cgroup_flush_stats();
653 void mem_cgroup_flush_stats_delayed(void)
655 if (time_after64(jiffies_64, flush_next_time))
656 mem_cgroup_flush_stats();
659 static void flush_memcg_stats_dwork(struct work_struct *w)
661 __mem_cgroup_flush_stats();
662 queue_delayed_work(system_unbound_wq, &stats_flush_dwork, FLUSH_TIME);
666 * __mod_memcg_state - update cgroup memory statistics
667 * @memcg: the memory cgroup
668 * @idx: the stat item - can be enum memcg_stat_item or enum node_stat_item
669 * @val: delta to add to the counter, can be negative
671 void __mod_memcg_state(struct mem_cgroup *memcg, int idx, int val)
673 if (mem_cgroup_disabled())
676 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
677 memcg_rstat_updated(memcg, val);
680 /* idx can be of type enum memcg_stat_item or node_stat_item. */
681 static unsigned long memcg_page_state_local(struct mem_cgroup *memcg, int idx)
686 for_each_possible_cpu(cpu)
687 x += per_cpu(memcg->vmstats_percpu->state[idx], cpu);
695 void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
698 struct mem_cgroup_per_node *pn;
699 struct mem_cgroup *memcg;
701 pn = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
705 * The caller from rmap relay on disabled preemption becase they never
706 * update their counter from in-interrupt context. For these two
707 * counters we check that the update is never performed from an
708 * interrupt context while other caller need to have disabled interrupt.
710 __memcg_stats_lock();
711 if (IS_ENABLED(CONFIG_DEBUG_VM) && !IS_ENABLED(CONFIG_PREEMPT_RT)) {
716 case NR_SHMEM_PMDMAPPED:
717 case NR_FILE_PMDMAPPED:
718 WARN_ON_ONCE(!in_task());
721 WARN_ON_ONCE(!irqs_disabled());
726 __this_cpu_add(memcg->vmstats_percpu->state[idx], val);
729 __this_cpu_add(pn->lruvec_stats_percpu->state[idx], val);
731 memcg_rstat_updated(memcg, val);
732 memcg_stats_unlock();
736 * __mod_lruvec_state - update lruvec memory statistics
737 * @lruvec: the lruvec
738 * @idx: the stat item
739 * @val: delta to add to the counter, can be negative
741 * The lruvec is the intersection of the NUMA node and a cgroup. This
742 * function updates the all three counters that are affected by a
743 * change of state at this level: per-node, per-cgroup, per-lruvec.
745 void __mod_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx,
749 __mod_node_page_state(lruvec_pgdat(lruvec), idx, val);
751 /* Update memcg and lruvec */
752 if (!mem_cgroup_disabled())
753 __mod_memcg_lruvec_state(lruvec, idx, val);
756 void __mod_lruvec_page_state(struct page *page, enum node_stat_item idx,
759 struct page *head = compound_head(page); /* rmap on tail pages */
760 struct mem_cgroup *memcg;
761 pg_data_t *pgdat = page_pgdat(page);
762 struct lruvec *lruvec;
765 memcg = page_memcg(head);
766 /* Untracked pages have no memcg, no lruvec. Update only the node */
769 __mod_node_page_state(pgdat, idx, val);
773 lruvec = mem_cgroup_lruvec(memcg, pgdat);
774 __mod_lruvec_state(lruvec, idx, val);
777 EXPORT_SYMBOL(__mod_lruvec_page_state);
779 void __mod_lruvec_kmem_state(void *p, enum node_stat_item idx, int val)
781 pg_data_t *pgdat = page_pgdat(virt_to_page(p));
782 struct mem_cgroup *memcg;
783 struct lruvec *lruvec;
786 memcg = mem_cgroup_from_obj(p);
789 * Untracked pages have no memcg, no lruvec. Update only the
790 * node. If we reparent the slab objects to the root memcg,
791 * when we free the slab object, we need to update the per-memcg
792 * vmstats to keep it correct for the root memcg.
795 __mod_node_page_state(pgdat, idx, val);
797 lruvec = mem_cgroup_lruvec(memcg, pgdat);
798 __mod_lruvec_state(lruvec, idx, val);
804 * __count_memcg_events - account VM events in a cgroup
805 * @memcg: the memory cgroup
806 * @idx: the event item
807 * @count: the number of events that occurred
809 void __count_memcg_events(struct mem_cgroup *memcg, enum vm_event_item idx,
812 if (mem_cgroup_disabled())
816 __this_cpu_add(memcg->vmstats_percpu->events[idx], count);
817 memcg_rstat_updated(memcg, count);
818 memcg_stats_unlock();
821 static unsigned long memcg_events(struct mem_cgroup *memcg, int event)
823 return READ_ONCE(memcg->vmstats.events[event]);
826 static unsigned long memcg_events_local(struct mem_cgroup *memcg, int event)
831 for_each_possible_cpu(cpu)
832 x += per_cpu(memcg->vmstats_percpu->events[event], cpu);
836 static void mem_cgroup_charge_statistics(struct mem_cgroup *memcg,
839 /* pagein of a big page is an event. So, ignore page size */
841 __count_memcg_events(memcg, PGPGIN, 1);
843 __count_memcg_events(memcg, PGPGOUT, 1);
844 nr_pages = -nr_pages; /* for event */
847 __this_cpu_add(memcg->vmstats_percpu->nr_page_events, nr_pages);
850 static bool mem_cgroup_event_ratelimit(struct mem_cgroup *memcg,
851 enum mem_cgroup_events_target target)
853 unsigned long val, next;
855 val = __this_cpu_read(memcg->vmstats_percpu->nr_page_events);
856 next = __this_cpu_read(memcg->vmstats_percpu->targets[target]);
857 /* from time_after() in jiffies.h */
858 if ((long)(next - val) < 0) {
860 case MEM_CGROUP_TARGET_THRESH:
861 next = val + THRESHOLDS_EVENTS_TARGET;
863 case MEM_CGROUP_TARGET_SOFTLIMIT:
864 next = val + SOFTLIMIT_EVENTS_TARGET;
869 __this_cpu_write(memcg->vmstats_percpu->targets[target], next);
876 * Check events in order.
879 static void memcg_check_events(struct mem_cgroup *memcg, int nid)
881 if (IS_ENABLED(CONFIG_PREEMPT_RT))
884 /* threshold event is triggered in finer grain than soft limit */
885 if (unlikely(mem_cgroup_event_ratelimit(memcg,
886 MEM_CGROUP_TARGET_THRESH))) {
889 do_softlimit = mem_cgroup_event_ratelimit(memcg,
890 MEM_CGROUP_TARGET_SOFTLIMIT);
891 mem_cgroup_threshold(memcg);
892 if (unlikely(do_softlimit))
893 mem_cgroup_update_tree(memcg, nid);
897 struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
900 * mm_update_next_owner() may clear mm->owner to NULL
901 * if it races with swapoff, page migration, etc.
902 * So this can be called with p == NULL.
907 return mem_cgroup_from_css(task_css(p, memory_cgrp_id));
909 EXPORT_SYMBOL(mem_cgroup_from_task);
911 static __always_inline struct mem_cgroup *active_memcg(void)
914 return this_cpu_read(int_active_memcg);
916 return current->active_memcg;
920 * get_mem_cgroup_from_mm: Obtain a reference on given mm_struct's memcg.
921 * @mm: mm from which memcg should be extracted. It can be NULL.
923 * Obtain a reference on mm->memcg and returns it if successful. If mm
924 * is NULL, then the memcg is chosen as follows:
925 * 1) The active memcg, if set.
926 * 2) current->mm->memcg, if available
928 * If mem_cgroup is disabled, NULL is returned.
930 struct mem_cgroup *get_mem_cgroup_from_mm(struct mm_struct *mm)
932 struct mem_cgroup *memcg;
934 if (mem_cgroup_disabled())
938 * Page cache insertions can happen without an
939 * actual mm context, e.g. during disk probing
940 * on boot, loopback IO, acct() writes etc.
942 * No need to css_get on root memcg as the reference
943 * counting is disabled on the root level in the
944 * cgroup core. See CSS_NO_REF.
947 memcg = active_memcg();
948 if (unlikely(memcg)) {
949 /* remote memcg must hold a ref */
950 css_get(&memcg->css);
955 return root_mem_cgroup;
960 memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
961 if (unlikely(!memcg))
962 memcg = root_mem_cgroup;
963 } while (!css_tryget(&memcg->css));
967 EXPORT_SYMBOL(get_mem_cgroup_from_mm);
969 static __always_inline bool memcg_kmem_bypass(void)
971 /* Allow remote memcg charging from any context. */
972 if (unlikely(active_memcg()))
975 /* Memcg to charge can't be determined. */
976 if (!in_task() || !current->mm || (current->flags & PF_KTHREAD))
983 * mem_cgroup_iter - iterate over memory cgroup hierarchy
984 * @root: hierarchy root
985 * @prev: previously returned memcg, NULL on first invocation
986 * @reclaim: cookie for shared reclaim walks, NULL for full walks
988 * Returns references to children of the hierarchy below @root, or
989 * @root itself, or %NULL after a full round-trip.
991 * Caller must pass the return value in @prev on subsequent
992 * invocations for reference counting, or use mem_cgroup_iter_break()
993 * to cancel a hierarchy walk before the round-trip is complete.
995 * Reclaimers can specify a node in @reclaim to divide up the memcgs
996 * in the hierarchy among all concurrent reclaimers operating on the
999 struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *root,
1000 struct mem_cgroup *prev,
1001 struct mem_cgroup_reclaim_cookie *reclaim)
1003 struct mem_cgroup_reclaim_iter *iter;
1004 struct cgroup_subsys_state *css = NULL;
1005 struct mem_cgroup *memcg = NULL;
1006 struct mem_cgroup *pos = NULL;
1008 if (mem_cgroup_disabled())
1012 root = root_mem_cgroup;
1017 struct mem_cgroup_per_node *mz;
1019 mz = root->nodeinfo[reclaim->pgdat->node_id];
1023 * On start, join the current reclaim iteration cycle.
1024 * Exit when a concurrent walker completes it.
1027 reclaim->generation = iter->generation;
1028 else if (reclaim->generation != iter->generation)
1032 pos = READ_ONCE(iter->position);
1033 if (!pos || css_tryget(&pos->css))
1036 * css reference reached zero, so iter->position will
1037 * be cleared by ->css_released. However, we should not
1038 * rely on this happening soon, because ->css_released
1039 * is called from a work queue, and by busy-waiting we
1040 * might block it. So we clear iter->position right
1043 (void)cmpxchg(&iter->position, pos, NULL);
1053 css = css_next_descendant_pre(css, &root->css);
1056 * Reclaimers share the hierarchy walk, and a
1057 * new one might jump in right at the end of
1058 * the hierarchy - make sure they see at least
1059 * one group and restart from the beginning.
1067 * Verify the css and acquire a reference. The root
1068 * is provided by the caller, so we know it's alive
1069 * and kicking, and don't take an extra reference.
1071 if (css == &root->css || css_tryget(css)) {
1072 memcg = mem_cgroup_from_css(css);
1079 * The position could have already been updated by a competing
1080 * thread, so check that the value hasn't changed since we read
1081 * it to avoid reclaiming from the same cgroup twice.
1083 (void)cmpxchg(&iter->position, pos, memcg);
1094 if (prev && prev != root)
1095 css_put(&prev->css);
1101 * mem_cgroup_iter_break - abort a hierarchy walk prematurely
1102 * @root: hierarchy root
1103 * @prev: last visited hierarchy member as returned by mem_cgroup_iter()
1105 void mem_cgroup_iter_break(struct mem_cgroup *root,
1106 struct mem_cgroup *prev)
1109 root = root_mem_cgroup;
1110 if (prev && prev != root)
1111 css_put(&prev->css);
1114 static void __invalidate_reclaim_iterators(struct mem_cgroup *from,
1115 struct mem_cgroup *dead_memcg)
1117 struct mem_cgroup_reclaim_iter *iter;
1118 struct mem_cgroup_per_node *mz;
1121 for_each_node(nid) {
1122 mz = from->nodeinfo[nid];
1124 cmpxchg(&iter->position, dead_memcg, NULL);
1128 static void invalidate_reclaim_iterators(struct mem_cgroup *dead_memcg)
1130 struct mem_cgroup *memcg = dead_memcg;
1131 struct mem_cgroup *last;
1134 __invalidate_reclaim_iterators(memcg, dead_memcg);
1136 } while ((memcg = parent_mem_cgroup(memcg)));
1139 * When cgruop1 non-hierarchy mode is used,
1140 * parent_mem_cgroup() does not walk all the way up to the
1141 * cgroup root (root_mem_cgroup). So we have to handle
1142 * dead_memcg from cgroup root separately.
1144 if (last != root_mem_cgroup)
1145 __invalidate_reclaim_iterators(root_mem_cgroup,
1150 * mem_cgroup_scan_tasks - iterate over tasks of a memory cgroup hierarchy
1151 * @memcg: hierarchy root
1152 * @fn: function to call for each task
1153 * @arg: argument passed to @fn
1155 * This function iterates over tasks attached to @memcg or to any of its
1156 * descendants and calls @fn for each task. If @fn returns a non-zero
1157 * value, the function breaks the iteration loop and returns the value.
1158 * Otherwise, it will iterate over all tasks and return 0.
1160 * This function must not be called for the root memory cgroup.
1162 int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
1163 int (*fn)(struct task_struct *, void *), void *arg)
1165 struct mem_cgroup *iter;
1168 BUG_ON(memcg == root_mem_cgroup);
1170 for_each_mem_cgroup_tree(iter, memcg) {
1171 struct css_task_iter it;
1172 struct task_struct *task;
1174 css_task_iter_start(&iter->css, CSS_TASK_ITER_PROCS, &it);
1175 while (!ret && (task = css_task_iter_next(&it)))
1176 ret = fn(task, arg);
1177 css_task_iter_end(&it);
1179 mem_cgroup_iter_break(memcg, iter);
1186 #ifdef CONFIG_DEBUG_VM
1187 void lruvec_memcg_debug(struct lruvec *lruvec, struct folio *folio)
1189 struct mem_cgroup *memcg;
1191 if (mem_cgroup_disabled())
1194 memcg = folio_memcg(folio);
1197 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != root_mem_cgroup, folio);
1199 VM_BUG_ON_FOLIO(lruvec_memcg(lruvec) != memcg, folio);
1204 * folio_lruvec_lock - Lock the lruvec for a folio.
1205 * @folio: Pointer to the folio.
1207 * These functions are safe to use under any of the following conditions:
1209 * - folio_test_lru false
1210 * - folio_memcg_lock()
1211 * - folio frozen (refcount of 0)
1213 * Return: The lruvec this folio is on with its lock held.
1215 struct lruvec *folio_lruvec_lock(struct folio *folio)
1217 struct lruvec *lruvec = folio_lruvec(folio);
1219 spin_lock(&lruvec->lru_lock);
1220 lruvec_memcg_debug(lruvec, folio);
1226 * folio_lruvec_lock_irq - Lock the lruvec for a folio.
1227 * @folio: Pointer to the folio.
1229 * These functions are safe to use under any of the following conditions:
1231 * - folio_test_lru false
1232 * - folio_memcg_lock()
1233 * - folio frozen (refcount of 0)
1235 * Return: The lruvec this folio is on with its lock held and interrupts
1238 struct lruvec *folio_lruvec_lock_irq(struct folio *folio)
1240 struct lruvec *lruvec = folio_lruvec(folio);
1242 spin_lock_irq(&lruvec->lru_lock);
1243 lruvec_memcg_debug(lruvec, folio);
1249 * folio_lruvec_lock_irqsave - Lock the lruvec for a folio.
1250 * @folio: Pointer to the folio.
1251 * @flags: Pointer to irqsave flags.
1253 * These functions are safe to use under any of the following conditions:
1255 * - folio_test_lru false
1256 * - folio_memcg_lock()
1257 * - folio frozen (refcount of 0)
1259 * Return: The lruvec this folio is on with its lock held and interrupts
1262 struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
1263 unsigned long *flags)
1265 struct lruvec *lruvec = folio_lruvec(folio);
1267 spin_lock_irqsave(&lruvec->lru_lock, *flags);
1268 lruvec_memcg_debug(lruvec, folio);
1274 * mem_cgroup_update_lru_size - account for adding or removing an lru page
1275 * @lruvec: mem_cgroup per zone lru vector
1276 * @lru: index of lru list the page is sitting on
1277 * @zid: zone id of the accounted pages
1278 * @nr_pages: positive when adding or negative when removing
1280 * This function must be called under lru_lock, just before a page is added
1281 * to or just after a page is removed from an lru list.
1283 void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
1284 int zid, int nr_pages)
1286 struct mem_cgroup_per_node *mz;
1287 unsigned long *lru_size;
1290 if (mem_cgroup_disabled())
1293 mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
1294 lru_size = &mz->lru_zone_size[zid][lru];
1297 *lru_size += nr_pages;
1300 if (WARN_ONCE(size < 0,
1301 "%s(%p, %d, %d): lru_size %ld\n",
1302 __func__, lruvec, lru, nr_pages, size)) {
1308 *lru_size += nr_pages;
1312 * mem_cgroup_margin - calculate chargeable space of a memory cgroup
1313 * @memcg: the memory cgroup
1315 * Returns the maximum amount of memory @mem can be charged with, in
1318 static unsigned long mem_cgroup_margin(struct mem_cgroup *memcg)
1320 unsigned long margin = 0;
1321 unsigned long count;
1322 unsigned long limit;
1324 count = page_counter_read(&memcg->memory);
1325 limit = READ_ONCE(memcg->memory.max);
1327 margin = limit - count;
1329 if (do_memsw_account()) {
1330 count = page_counter_read(&memcg->memsw);
1331 limit = READ_ONCE(memcg->memsw.max);
1333 margin = min(margin, limit - count);
1342 * A routine for checking "mem" is under move_account() or not.
1344 * Checking a cgroup is mc.from or mc.to or under hierarchy of
1345 * moving cgroups. This is for waiting at high-memory pressure
1348 static bool mem_cgroup_under_move(struct mem_cgroup *memcg)
1350 struct mem_cgroup *from;
1351 struct mem_cgroup *to;
1354 * Unlike task_move routines, we access mc.to, mc.from not under
1355 * mutual exclusion by cgroup_mutex. Here, we take spinlock instead.
1357 spin_lock(&mc.lock);
1363 ret = mem_cgroup_is_descendant(from, memcg) ||
1364 mem_cgroup_is_descendant(to, memcg);
1366 spin_unlock(&mc.lock);
1370 static bool mem_cgroup_wait_acct_move(struct mem_cgroup *memcg)
1372 if (mc.moving_task && current != mc.moving_task) {
1373 if (mem_cgroup_under_move(memcg)) {
1375 prepare_to_wait(&mc.waitq, &wait, TASK_INTERRUPTIBLE);
1376 /* moving charge context might have finished. */
1379 finish_wait(&mc.waitq, &wait);
1386 struct memory_stat {
1391 static const struct memory_stat memory_stats[] = {
1392 { "anon", NR_ANON_MAPPED },
1393 { "file", NR_FILE_PAGES },
1394 { "kernel", MEMCG_KMEM },
1395 { "kernel_stack", NR_KERNEL_STACK_KB },
1396 { "pagetables", NR_PAGETABLE },
1397 { "percpu", MEMCG_PERCPU_B },
1398 { "sock", MEMCG_SOCK },
1399 { "vmalloc", MEMCG_VMALLOC },
1400 { "shmem", NR_SHMEM },
1401 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_ZSWAP)
1402 { "zswap", MEMCG_ZSWAP_B },
1403 { "zswapped", MEMCG_ZSWAPPED },
1405 { "file_mapped", NR_FILE_MAPPED },
1406 { "file_dirty", NR_FILE_DIRTY },
1407 { "file_writeback", NR_WRITEBACK },
1409 { "swapcached", NR_SWAPCACHE },
1411 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1412 { "anon_thp", NR_ANON_THPS },
1413 { "file_thp", NR_FILE_THPS },
1414 { "shmem_thp", NR_SHMEM_THPS },
1416 { "inactive_anon", NR_INACTIVE_ANON },
1417 { "active_anon", NR_ACTIVE_ANON },
1418 { "inactive_file", NR_INACTIVE_FILE },
1419 { "active_file", NR_ACTIVE_FILE },
1420 { "unevictable", NR_UNEVICTABLE },
1421 { "slab_reclaimable", NR_SLAB_RECLAIMABLE_B },
1422 { "slab_unreclaimable", NR_SLAB_UNRECLAIMABLE_B },
1424 /* The memory events */
1425 { "workingset_refault_anon", WORKINGSET_REFAULT_ANON },
1426 { "workingset_refault_file", WORKINGSET_REFAULT_FILE },
1427 { "workingset_activate_anon", WORKINGSET_ACTIVATE_ANON },
1428 { "workingset_activate_file", WORKINGSET_ACTIVATE_FILE },
1429 { "workingset_restore_anon", WORKINGSET_RESTORE_ANON },
1430 { "workingset_restore_file", WORKINGSET_RESTORE_FILE },
1431 { "workingset_nodereclaim", WORKINGSET_NODERECLAIM },
1434 /* Translate stat items to the correct unit for memory.stat output */
1435 static int memcg_page_state_unit(int item)
1438 case MEMCG_PERCPU_B:
1440 case NR_SLAB_RECLAIMABLE_B:
1441 case NR_SLAB_UNRECLAIMABLE_B:
1442 case WORKINGSET_REFAULT_ANON:
1443 case WORKINGSET_REFAULT_FILE:
1444 case WORKINGSET_ACTIVATE_ANON:
1445 case WORKINGSET_ACTIVATE_FILE:
1446 case WORKINGSET_RESTORE_ANON:
1447 case WORKINGSET_RESTORE_FILE:
1448 case WORKINGSET_NODERECLAIM:
1450 case NR_KERNEL_STACK_KB:
1457 static inline unsigned long memcg_page_state_output(struct mem_cgroup *memcg,
1460 return memcg_page_state(memcg, item) * memcg_page_state_unit(item);
1463 static char *memory_stat_format(struct mem_cgroup *memcg)
1468 seq_buf_init(&s, kmalloc(PAGE_SIZE, GFP_KERNEL), PAGE_SIZE);
1473 * Provide statistics on the state of the memory subsystem as
1474 * well as cumulative event counters that show past behavior.
1476 * This list is ordered following a combination of these gradients:
1477 * 1) generic big picture -> specifics and details
1478 * 2) reflecting userspace activity -> reflecting kernel heuristics
1480 * Current memory state:
1482 mem_cgroup_flush_stats();
1484 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
1487 size = memcg_page_state_output(memcg, memory_stats[i].idx);
1488 seq_buf_printf(&s, "%s %llu\n", memory_stats[i].name, size);
1490 if (unlikely(memory_stats[i].idx == NR_SLAB_UNRECLAIMABLE_B)) {
1491 size += memcg_page_state_output(memcg,
1492 NR_SLAB_RECLAIMABLE_B);
1493 seq_buf_printf(&s, "slab %llu\n", size);
1497 /* Accumulated memory events */
1499 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGFAULT),
1500 memcg_events(memcg, PGFAULT));
1501 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGMAJFAULT),
1502 memcg_events(memcg, PGMAJFAULT));
1503 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGREFILL),
1504 memcg_events(memcg, PGREFILL));
1505 seq_buf_printf(&s, "pgscan %lu\n",
1506 memcg_events(memcg, PGSCAN_KSWAPD) +
1507 memcg_events(memcg, PGSCAN_DIRECT));
1508 seq_buf_printf(&s, "pgsteal %lu\n",
1509 memcg_events(memcg, PGSTEAL_KSWAPD) +
1510 memcg_events(memcg, PGSTEAL_DIRECT));
1511 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGACTIVATE),
1512 memcg_events(memcg, PGACTIVATE));
1513 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGDEACTIVATE),
1514 memcg_events(memcg, PGDEACTIVATE));
1515 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGLAZYFREE),
1516 memcg_events(memcg, PGLAZYFREE));
1517 seq_buf_printf(&s, "%s %lu\n", vm_event_name(PGLAZYFREED),
1518 memcg_events(memcg, PGLAZYFREED));
1520 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_ZSWAP)
1521 seq_buf_printf(&s, "%s %lu\n", vm_event_name(ZSWPIN),
1522 memcg_events(memcg, ZSWPIN));
1523 seq_buf_printf(&s, "%s %lu\n", vm_event_name(ZSWPOUT),
1524 memcg_events(memcg, ZSWPOUT));
1527 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1528 seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_FAULT_ALLOC),
1529 memcg_events(memcg, THP_FAULT_ALLOC));
1530 seq_buf_printf(&s, "%s %lu\n", vm_event_name(THP_COLLAPSE_ALLOC),
1531 memcg_events(memcg, THP_COLLAPSE_ALLOC));
1532 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1534 /* The above should easily fit into one page */
1535 WARN_ON_ONCE(seq_buf_has_overflowed(&s));
1540 #define K(x) ((x) << (PAGE_SHIFT-10))
1542 * mem_cgroup_print_oom_context: Print OOM information relevant to
1543 * memory controller.
1544 * @memcg: The memory cgroup that went over limit
1545 * @p: Task that is going to be killed
1547 * NOTE: @memcg and @p's mem_cgroup can be different when hierarchy is
1550 void mem_cgroup_print_oom_context(struct mem_cgroup *memcg, struct task_struct *p)
1555 pr_cont(",oom_memcg=");
1556 pr_cont_cgroup_path(memcg->css.cgroup);
1558 pr_cont(",global_oom");
1560 pr_cont(",task_memcg=");
1561 pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1567 * mem_cgroup_print_oom_meminfo: Print OOM memory information relevant to
1568 * memory controller.
1569 * @memcg: The memory cgroup that went over limit
1571 void mem_cgroup_print_oom_meminfo(struct mem_cgroup *memcg)
1575 pr_info("memory: usage %llukB, limit %llukB, failcnt %lu\n",
1576 K((u64)page_counter_read(&memcg->memory)),
1577 K((u64)READ_ONCE(memcg->memory.max)), memcg->memory.failcnt);
1578 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
1579 pr_info("swap: usage %llukB, limit %llukB, failcnt %lu\n",
1580 K((u64)page_counter_read(&memcg->swap)),
1581 K((u64)READ_ONCE(memcg->swap.max)), memcg->swap.failcnt);
1583 pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %lu\n",
1584 K((u64)page_counter_read(&memcg->memsw)),
1585 K((u64)memcg->memsw.max), memcg->memsw.failcnt);
1586 pr_info("kmem: usage %llukB, limit %llukB, failcnt %lu\n",
1587 K((u64)page_counter_read(&memcg->kmem)),
1588 K((u64)memcg->kmem.max), memcg->kmem.failcnt);
1591 pr_info("Memory cgroup stats for ");
1592 pr_cont_cgroup_path(memcg->css.cgroup);
1594 buf = memory_stat_format(memcg);
1602 * Return the memory (and swap, if configured) limit for a memcg.
1604 unsigned long mem_cgroup_get_max(struct mem_cgroup *memcg)
1606 unsigned long max = READ_ONCE(memcg->memory.max);
1608 if (cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
1609 if (mem_cgroup_swappiness(memcg))
1610 max += min(READ_ONCE(memcg->swap.max),
1611 (unsigned long)total_swap_pages);
1613 if (mem_cgroup_swappiness(memcg)) {
1614 /* Calculate swap excess capacity from memsw limit */
1615 unsigned long swap = READ_ONCE(memcg->memsw.max) - max;
1617 max += min(swap, (unsigned long)total_swap_pages);
1623 unsigned long mem_cgroup_size(struct mem_cgroup *memcg)
1625 return page_counter_read(&memcg->memory);
1628 static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
1631 struct oom_control oc = {
1635 .gfp_mask = gfp_mask,
1640 if (mutex_lock_killable(&oom_lock))
1643 if (mem_cgroup_margin(memcg) >= (1 << order))
1647 * A few threads which were not waiting at mutex_lock_killable() can
1648 * fail to bail out. Therefore, check again after holding oom_lock.
1650 ret = task_is_dying() || out_of_memory(&oc);
1653 mutex_unlock(&oom_lock);
1657 static int mem_cgroup_soft_reclaim(struct mem_cgroup *root_memcg,
1660 unsigned long *total_scanned)
1662 struct mem_cgroup *victim = NULL;
1665 unsigned long excess;
1666 unsigned long nr_scanned;
1667 struct mem_cgroup_reclaim_cookie reclaim = {
1671 excess = soft_limit_excess(root_memcg);
1674 victim = mem_cgroup_iter(root_memcg, victim, &reclaim);
1679 * If we have not been able to reclaim
1680 * anything, it might because there are
1681 * no reclaimable pages under this hierarchy
1686 * We want to do more targeted reclaim.
1687 * excess >> 2 is not to excessive so as to
1688 * reclaim too much, nor too less that we keep
1689 * coming back to reclaim from this cgroup
1691 if (total >= (excess >> 2) ||
1692 (loop > MEM_CGROUP_MAX_RECLAIM_LOOPS))
1697 total += mem_cgroup_shrink_node(victim, gfp_mask, false,
1698 pgdat, &nr_scanned);
1699 *total_scanned += nr_scanned;
1700 if (!soft_limit_excess(root_memcg))
1703 mem_cgroup_iter_break(root_memcg, victim);
1707 #ifdef CONFIG_LOCKDEP
1708 static struct lockdep_map memcg_oom_lock_dep_map = {
1709 .name = "memcg_oom_lock",
1713 static DEFINE_SPINLOCK(memcg_oom_lock);
1716 * Check OOM-Killer is already running under our hierarchy.
1717 * If someone is running, return false.
1719 static bool mem_cgroup_oom_trylock(struct mem_cgroup *memcg)
1721 struct mem_cgroup *iter, *failed = NULL;
1723 spin_lock(&memcg_oom_lock);
1725 for_each_mem_cgroup_tree(iter, memcg) {
1726 if (iter->oom_lock) {
1728 * this subtree of our hierarchy is already locked
1729 * so we cannot give a lock.
1732 mem_cgroup_iter_break(memcg, iter);
1735 iter->oom_lock = true;
1740 * OK, we failed to lock the whole subtree so we have
1741 * to clean up what we set up to the failing subtree
1743 for_each_mem_cgroup_tree(iter, memcg) {
1744 if (iter == failed) {
1745 mem_cgroup_iter_break(memcg, iter);
1748 iter->oom_lock = false;
1751 mutex_acquire(&memcg_oom_lock_dep_map, 0, 1, _RET_IP_);
1753 spin_unlock(&memcg_oom_lock);
1758 static void mem_cgroup_oom_unlock(struct mem_cgroup *memcg)
1760 struct mem_cgroup *iter;
1762 spin_lock(&memcg_oom_lock);
1763 mutex_release(&memcg_oom_lock_dep_map, _RET_IP_);
1764 for_each_mem_cgroup_tree(iter, memcg)
1765 iter->oom_lock = false;
1766 spin_unlock(&memcg_oom_lock);
1769 static void mem_cgroup_mark_under_oom(struct mem_cgroup *memcg)
1771 struct mem_cgroup *iter;
1773 spin_lock(&memcg_oom_lock);
1774 for_each_mem_cgroup_tree(iter, memcg)
1776 spin_unlock(&memcg_oom_lock);
1779 static void mem_cgroup_unmark_under_oom(struct mem_cgroup *memcg)
1781 struct mem_cgroup *iter;
1784 * Be careful about under_oom underflows because a child memcg
1785 * could have been added after mem_cgroup_mark_under_oom.
1787 spin_lock(&memcg_oom_lock);
1788 for_each_mem_cgroup_tree(iter, memcg)
1789 if (iter->under_oom > 0)
1791 spin_unlock(&memcg_oom_lock);
1794 static DECLARE_WAIT_QUEUE_HEAD(memcg_oom_waitq);
1796 struct oom_wait_info {
1797 struct mem_cgroup *memcg;
1798 wait_queue_entry_t wait;
1801 static int memcg_oom_wake_function(wait_queue_entry_t *wait,
1802 unsigned mode, int sync, void *arg)
1804 struct mem_cgroup *wake_memcg = (struct mem_cgroup *)arg;
1805 struct mem_cgroup *oom_wait_memcg;
1806 struct oom_wait_info *oom_wait_info;
1808 oom_wait_info = container_of(wait, struct oom_wait_info, wait);
1809 oom_wait_memcg = oom_wait_info->memcg;
1811 if (!mem_cgroup_is_descendant(wake_memcg, oom_wait_memcg) &&
1812 !mem_cgroup_is_descendant(oom_wait_memcg, wake_memcg))
1814 return autoremove_wake_function(wait, mode, sync, arg);
1817 static void memcg_oom_recover(struct mem_cgroup *memcg)
1820 * For the following lockless ->under_oom test, the only required
1821 * guarantee is that it must see the state asserted by an OOM when
1822 * this function is called as a result of userland actions
1823 * triggered by the notification of the OOM. This is trivially
1824 * achieved by invoking mem_cgroup_mark_under_oom() before
1825 * triggering notification.
1827 if (memcg && memcg->under_oom)
1828 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg);
1832 * Returns true if successfully killed one or more processes. Though in some
1833 * corner cases it can return true even without killing any process.
1835 static bool mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
1839 if (order > PAGE_ALLOC_COSTLY_ORDER)
1842 memcg_memory_event(memcg, MEMCG_OOM);
1845 * We are in the middle of the charge context here, so we
1846 * don't want to block when potentially sitting on a callstack
1847 * that holds all kinds of filesystem and mm locks.
1849 * cgroup1 allows disabling the OOM killer and waiting for outside
1850 * handling until the charge can succeed; remember the context and put
1851 * the task to sleep at the end of the page fault when all locks are
1854 * On the other hand, in-kernel OOM killer allows for an async victim
1855 * memory reclaim (oom_reaper) and that means that we are not solely
1856 * relying on the oom victim to make a forward progress and we can
1857 * invoke the oom killer here.
1859 * Please note that mem_cgroup_out_of_memory might fail to find a
1860 * victim and then we have to bail out from the charge path.
1862 if (memcg->oom_kill_disable) {
1863 if (current->in_user_fault) {
1864 css_get(&memcg->css);
1865 current->memcg_in_oom = memcg;
1866 current->memcg_oom_gfp_mask = mask;
1867 current->memcg_oom_order = order;
1872 mem_cgroup_mark_under_oom(memcg);
1874 locked = mem_cgroup_oom_trylock(memcg);
1877 mem_cgroup_oom_notify(memcg);
1879 mem_cgroup_unmark_under_oom(memcg);
1880 ret = mem_cgroup_out_of_memory(memcg, mask, order);
1883 mem_cgroup_oom_unlock(memcg);
1889 * mem_cgroup_oom_synchronize - complete memcg OOM handling
1890 * @handle: actually kill/wait or just clean up the OOM state
1892 * This has to be called at the end of a page fault if the memcg OOM
1893 * handler was enabled.
1895 * Memcg supports userspace OOM handling where failed allocations must
1896 * sleep on a waitqueue until the userspace task resolves the
1897 * situation. Sleeping directly in the charge context with all kinds
1898 * of locks held is not a good idea, instead we remember an OOM state
1899 * in the task and mem_cgroup_oom_synchronize() has to be called at
1900 * the end of the page fault to complete the OOM handling.
1902 * Returns %true if an ongoing memcg OOM situation was detected and
1903 * completed, %false otherwise.
1905 bool mem_cgroup_oom_synchronize(bool handle)
1907 struct mem_cgroup *memcg = current->memcg_in_oom;
1908 struct oom_wait_info owait;
1911 /* OOM is global, do not handle */
1918 owait.memcg = memcg;
1919 owait.wait.flags = 0;
1920 owait.wait.func = memcg_oom_wake_function;
1921 owait.wait.private = current;
1922 INIT_LIST_HEAD(&owait.wait.entry);
1924 prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
1925 mem_cgroup_mark_under_oom(memcg);
1927 locked = mem_cgroup_oom_trylock(memcg);
1930 mem_cgroup_oom_notify(memcg);
1932 if (locked && !memcg->oom_kill_disable) {
1933 mem_cgroup_unmark_under_oom(memcg);
1934 finish_wait(&memcg_oom_waitq, &owait.wait);
1935 mem_cgroup_out_of_memory(memcg, current->memcg_oom_gfp_mask,
1936 current->memcg_oom_order);
1939 mem_cgroup_unmark_under_oom(memcg);
1940 finish_wait(&memcg_oom_waitq, &owait.wait);
1944 mem_cgroup_oom_unlock(memcg);
1946 * There is no guarantee that an OOM-lock contender
1947 * sees the wakeups triggered by the OOM kill
1948 * uncharges. Wake any sleepers explicitly.
1950 memcg_oom_recover(memcg);
1953 current->memcg_in_oom = NULL;
1954 css_put(&memcg->css);
1959 * mem_cgroup_get_oom_group - get a memory cgroup to clean up after OOM
1960 * @victim: task to be killed by the OOM killer
1961 * @oom_domain: memcg in case of memcg OOM, NULL in case of system-wide OOM
1963 * Returns a pointer to a memory cgroup, which has to be cleaned up
1964 * by killing all belonging OOM-killable tasks.
1966 * Caller has to call mem_cgroup_put() on the returned non-NULL memcg.
1968 struct mem_cgroup *mem_cgroup_get_oom_group(struct task_struct *victim,
1969 struct mem_cgroup *oom_domain)
1971 struct mem_cgroup *oom_group = NULL;
1972 struct mem_cgroup *memcg;
1974 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
1978 oom_domain = root_mem_cgroup;
1982 memcg = mem_cgroup_from_task(victim);
1983 if (memcg == root_mem_cgroup)
1987 * If the victim task has been asynchronously moved to a different
1988 * memory cgroup, we might end up killing tasks outside oom_domain.
1989 * In this case it's better to ignore memory.group.oom.
1991 if (unlikely(!mem_cgroup_is_descendant(memcg, oom_domain)))
1995 * Traverse the memory cgroup hierarchy from the victim task's
1996 * cgroup up to the OOMing cgroup (or root) to find the
1997 * highest-level memory cgroup with oom.group set.
1999 for (; memcg; memcg = parent_mem_cgroup(memcg)) {
2000 if (memcg->oom_group)
2003 if (memcg == oom_domain)
2008 css_get(&oom_group->css);
2015 void mem_cgroup_print_oom_group(struct mem_cgroup *memcg)
2017 pr_info("Tasks in ");
2018 pr_cont_cgroup_path(memcg->css.cgroup);
2019 pr_cont(" are going to be killed due to memory.oom.group set\n");
2023 * folio_memcg_lock - Bind a folio to its memcg.
2024 * @folio: The folio.
2026 * This function prevents unlocked LRU folios from being moved to
2029 * It ensures lifetime of the bound memcg. The caller is responsible
2030 * for the lifetime of the folio.
2032 void folio_memcg_lock(struct folio *folio)
2034 struct mem_cgroup *memcg;
2035 unsigned long flags;
2038 * The RCU lock is held throughout the transaction. The fast
2039 * path can get away without acquiring the memcg->move_lock
2040 * because page moving starts with an RCU grace period.
2044 if (mem_cgroup_disabled())
2047 memcg = folio_memcg(folio);
2048 if (unlikely(!memcg))
2051 #ifdef CONFIG_PROVE_LOCKING
2052 local_irq_save(flags);
2053 might_lock(&memcg->move_lock);
2054 local_irq_restore(flags);
2057 if (atomic_read(&memcg->moving_account) <= 0)
2060 spin_lock_irqsave(&memcg->move_lock, flags);
2061 if (memcg != folio_memcg(folio)) {
2062 spin_unlock_irqrestore(&memcg->move_lock, flags);
2067 * When charge migration first begins, we can have multiple
2068 * critical sections holding the fast-path RCU lock and one
2069 * holding the slowpath move_lock. Track the task who has the
2070 * move_lock for unlock_page_memcg().
2072 memcg->move_lock_task = current;
2073 memcg->move_lock_flags = flags;
2076 void lock_page_memcg(struct page *page)
2078 folio_memcg_lock(page_folio(page));
2081 static void __folio_memcg_unlock(struct mem_cgroup *memcg)
2083 if (memcg && memcg->move_lock_task == current) {
2084 unsigned long flags = memcg->move_lock_flags;
2086 memcg->move_lock_task = NULL;
2087 memcg->move_lock_flags = 0;
2089 spin_unlock_irqrestore(&memcg->move_lock, flags);
2096 * folio_memcg_unlock - Release the binding between a folio and its memcg.
2097 * @folio: The folio.
2099 * This releases the binding created by folio_memcg_lock(). This does
2100 * not change the accounting of this folio to its memcg, but it does
2101 * permit others to change it.
2103 void folio_memcg_unlock(struct folio *folio)
2105 __folio_memcg_unlock(folio_memcg(folio));
2108 void unlock_page_memcg(struct page *page)
2110 folio_memcg_unlock(page_folio(page));
2113 struct memcg_stock_pcp {
2114 local_lock_t stock_lock;
2115 struct mem_cgroup *cached; /* this never be root cgroup */
2116 unsigned int nr_pages;
2118 #ifdef CONFIG_MEMCG_KMEM
2119 struct obj_cgroup *cached_objcg;
2120 struct pglist_data *cached_pgdat;
2121 unsigned int nr_bytes;
2122 int nr_slab_reclaimable_b;
2123 int nr_slab_unreclaimable_b;
2126 struct work_struct work;
2127 unsigned long flags;
2128 #define FLUSHING_CACHED_CHARGE 0
2130 static DEFINE_PER_CPU(struct memcg_stock_pcp, memcg_stock) = {
2131 .stock_lock = INIT_LOCAL_LOCK(stock_lock),
2133 static DEFINE_MUTEX(percpu_charge_mutex);
2135 #ifdef CONFIG_MEMCG_KMEM
2136 static struct obj_cgroup *drain_obj_stock(struct memcg_stock_pcp *stock);
2137 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2138 struct mem_cgroup *root_memcg);
2139 static void memcg_account_kmem(struct mem_cgroup *memcg, int nr_pages);
2142 static inline struct obj_cgroup *drain_obj_stock(struct memcg_stock_pcp *stock)
2146 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
2147 struct mem_cgroup *root_memcg)
2151 static void memcg_account_kmem(struct mem_cgroup *memcg, int nr_pages)
2157 * consume_stock: Try to consume stocked charge on this cpu.
2158 * @memcg: memcg to consume from.
2159 * @nr_pages: how many pages to charge.
2161 * The charges will only happen if @memcg matches the current cpu's memcg
2162 * stock, and at least @nr_pages are available in that stock. Failure to
2163 * service an allocation will refill the stock.
2165 * returns true if successful, false otherwise.
2167 static bool consume_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2169 struct memcg_stock_pcp *stock;
2170 unsigned long flags;
2173 if (nr_pages > MEMCG_CHARGE_BATCH)
2176 local_lock_irqsave(&memcg_stock.stock_lock, flags);
2178 stock = this_cpu_ptr(&memcg_stock);
2179 if (memcg == stock->cached && stock->nr_pages >= nr_pages) {
2180 stock->nr_pages -= nr_pages;
2184 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
2190 * Returns stocks cached in percpu and reset cached information.
2192 static void drain_stock(struct memcg_stock_pcp *stock)
2194 struct mem_cgroup *old = stock->cached;
2199 if (stock->nr_pages) {
2200 page_counter_uncharge(&old->memory, stock->nr_pages);
2201 if (do_memsw_account())
2202 page_counter_uncharge(&old->memsw, stock->nr_pages);
2203 stock->nr_pages = 0;
2207 stock->cached = NULL;
2210 static void drain_local_stock(struct work_struct *dummy)
2212 struct memcg_stock_pcp *stock;
2213 struct obj_cgroup *old = NULL;
2214 unsigned long flags;
2217 * The only protection from cpu hotplug (memcg_hotplug_cpu_dead) vs.
2218 * drain_stock races is that we always operate on local CPU stock
2219 * here with IRQ disabled
2221 local_lock_irqsave(&memcg_stock.stock_lock, flags);
2223 stock = this_cpu_ptr(&memcg_stock);
2224 old = drain_obj_stock(stock);
2226 clear_bit(FLUSHING_CACHED_CHARGE, &stock->flags);
2228 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
2230 obj_cgroup_put(old);
2234 * Cache charges(val) to local per_cpu area.
2235 * This will be consumed by consume_stock() function, later.
2237 static void __refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2239 struct memcg_stock_pcp *stock;
2241 stock = this_cpu_ptr(&memcg_stock);
2242 if (stock->cached != memcg) { /* reset if necessary */
2244 css_get(&memcg->css);
2245 stock->cached = memcg;
2247 stock->nr_pages += nr_pages;
2249 if (stock->nr_pages > MEMCG_CHARGE_BATCH)
2253 static void refill_stock(struct mem_cgroup *memcg, unsigned int nr_pages)
2255 unsigned long flags;
2257 local_lock_irqsave(&memcg_stock.stock_lock, flags);
2258 __refill_stock(memcg, nr_pages);
2259 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
2263 * Drains all per-CPU charge caches for given root_memcg resp. subtree
2264 * of the hierarchy under it.
2266 static void drain_all_stock(struct mem_cgroup *root_memcg)
2270 /* If someone's already draining, avoid adding running more workers. */
2271 if (!mutex_trylock(&percpu_charge_mutex))
2274 * Notify other cpus that system-wide "drain" is running
2275 * We do not care about races with the cpu hotplug because cpu down
2276 * as well as workers from this path always operate on the local
2277 * per-cpu data. CPU up doesn't touch memcg_stock at all.
2280 curcpu = smp_processor_id();
2281 for_each_online_cpu(cpu) {
2282 struct memcg_stock_pcp *stock = &per_cpu(memcg_stock, cpu);
2283 struct mem_cgroup *memcg;
2287 memcg = stock->cached;
2288 if (memcg && stock->nr_pages &&
2289 mem_cgroup_is_descendant(memcg, root_memcg))
2291 else if (obj_stock_flush_required(stock, root_memcg))
2296 !test_and_set_bit(FLUSHING_CACHED_CHARGE, &stock->flags)) {
2298 drain_local_stock(&stock->work);
2300 schedule_work_on(cpu, &stock->work);
2304 mutex_unlock(&percpu_charge_mutex);
2307 static int memcg_hotplug_cpu_dead(unsigned int cpu)
2309 struct memcg_stock_pcp *stock;
2311 stock = &per_cpu(memcg_stock, cpu);
2317 static unsigned long reclaim_high(struct mem_cgroup *memcg,
2318 unsigned int nr_pages,
2321 unsigned long nr_reclaimed = 0;
2324 unsigned long pflags;
2326 if (page_counter_read(&memcg->memory) <=
2327 READ_ONCE(memcg->memory.high))
2330 memcg_memory_event(memcg, MEMCG_HIGH);
2332 psi_memstall_enter(&pflags);
2333 nr_reclaimed += try_to_free_mem_cgroup_pages(memcg, nr_pages,
2335 psi_memstall_leave(&pflags);
2336 } while ((memcg = parent_mem_cgroup(memcg)) &&
2337 !mem_cgroup_is_root(memcg));
2339 return nr_reclaimed;
2342 static void high_work_func(struct work_struct *work)
2344 struct mem_cgroup *memcg;
2346 memcg = container_of(work, struct mem_cgroup, high_work);
2347 reclaim_high(memcg, MEMCG_CHARGE_BATCH, GFP_KERNEL);
2351 * Clamp the maximum sleep time per allocation batch to 2 seconds. This is
2352 * enough to still cause a significant slowdown in most cases, while still
2353 * allowing diagnostics and tracing to proceed without becoming stuck.
2355 #define MEMCG_MAX_HIGH_DELAY_JIFFIES (2UL*HZ)
2358 * When calculating the delay, we use these either side of the exponentiation to
2359 * maintain precision and scale to a reasonable number of jiffies (see the table
2362 * - MEMCG_DELAY_PRECISION_SHIFT: Extra precision bits while translating the
2363 * overage ratio to a delay.
2364 * - MEMCG_DELAY_SCALING_SHIFT: The number of bits to scale down the
2365 * proposed penalty in order to reduce to a reasonable number of jiffies, and
2366 * to produce a reasonable delay curve.
2368 * MEMCG_DELAY_SCALING_SHIFT just happens to be a number that produces a
2369 * reasonable delay curve compared to precision-adjusted overage, not
2370 * penalising heavily at first, but still making sure that growth beyond the
2371 * limit penalises misbehaviour cgroups by slowing them down exponentially. For
2372 * example, with a high of 100 megabytes:
2374 * +-------+------------------------+
2375 * | usage | time to allocate in ms |
2376 * +-------+------------------------+
2398 * +-------+------------------------+
2400 #define MEMCG_DELAY_PRECISION_SHIFT 20
2401 #define MEMCG_DELAY_SCALING_SHIFT 14
2403 static u64 calculate_overage(unsigned long usage, unsigned long high)
2411 * Prevent division by 0 in overage calculation by acting as if
2412 * it was a threshold of 1 page
2414 high = max(high, 1UL);
2416 overage = usage - high;
2417 overage <<= MEMCG_DELAY_PRECISION_SHIFT;
2418 return div64_u64(overage, high);
2421 static u64 mem_find_max_overage(struct mem_cgroup *memcg)
2423 u64 overage, max_overage = 0;
2426 overage = calculate_overage(page_counter_read(&memcg->memory),
2427 READ_ONCE(memcg->memory.high));
2428 max_overage = max(overage, max_overage);
2429 } while ((memcg = parent_mem_cgroup(memcg)) &&
2430 !mem_cgroup_is_root(memcg));
2435 static u64 swap_find_max_overage(struct mem_cgroup *memcg)
2437 u64 overage, max_overage = 0;
2440 overage = calculate_overage(page_counter_read(&memcg->swap),
2441 READ_ONCE(memcg->swap.high));
2443 memcg_memory_event(memcg, MEMCG_SWAP_HIGH);
2444 max_overage = max(overage, max_overage);
2445 } while ((memcg = parent_mem_cgroup(memcg)) &&
2446 !mem_cgroup_is_root(memcg));
2452 * Get the number of jiffies that we should penalise a mischievous cgroup which
2453 * is exceeding its memory.high by checking both it and its ancestors.
2455 static unsigned long calculate_high_delay(struct mem_cgroup *memcg,
2456 unsigned int nr_pages,
2459 unsigned long penalty_jiffies;
2465 * We use overage compared to memory.high to calculate the number of
2466 * jiffies to sleep (penalty_jiffies). Ideally this value should be
2467 * fairly lenient on small overages, and increasingly harsh when the
2468 * memcg in question makes it clear that it has no intention of stopping
2469 * its crazy behaviour, so we exponentially increase the delay based on
2472 penalty_jiffies = max_overage * max_overage * HZ;
2473 penalty_jiffies >>= MEMCG_DELAY_PRECISION_SHIFT;
2474 penalty_jiffies >>= MEMCG_DELAY_SCALING_SHIFT;
2477 * Factor in the task's own contribution to the overage, such that four
2478 * N-sized allocations are throttled approximately the same as one
2479 * 4N-sized allocation.
2481 * MEMCG_CHARGE_BATCH pages is nominal, so work out how much smaller or
2482 * larger the current charge patch is than that.
2484 return penalty_jiffies * nr_pages / MEMCG_CHARGE_BATCH;
2488 * Scheduled by try_charge() to be executed from the userland return path
2489 * and reclaims memory over the high limit.
2491 void mem_cgroup_handle_over_high(void)
2493 unsigned long penalty_jiffies;
2494 unsigned long pflags;
2495 unsigned long nr_reclaimed;
2496 unsigned int nr_pages = current->memcg_nr_pages_over_high;
2497 int nr_retries = MAX_RECLAIM_RETRIES;
2498 struct mem_cgroup *memcg;
2499 bool in_retry = false;
2501 if (likely(!nr_pages))
2504 memcg = get_mem_cgroup_from_mm(current->mm);
2505 current->memcg_nr_pages_over_high = 0;
2509 * The allocating task should reclaim at least the batch size, but for
2510 * subsequent retries we only want to do what's necessary to prevent oom
2511 * or breaching resource isolation.
2513 * This is distinct from memory.max or page allocator behaviour because
2514 * memory.high is currently batched, whereas memory.max and the page
2515 * allocator run every time an allocation is made.
2517 nr_reclaimed = reclaim_high(memcg,
2518 in_retry ? SWAP_CLUSTER_MAX : nr_pages,
2522 * memory.high is breached and reclaim is unable to keep up. Throttle
2523 * allocators proactively to slow down excessive growth.
2525 penalty_jiffies = calculate_high_delay(memcg, nr_pages,
2526 mem_find_max_overage(memcg));
2528 penalty_jiffies += calculate_high_delay(memcg, nr_pages,
2529 swap_find_max_overage(memcg));
2532 * Clamp the max delay per usermode return so as to still keep the
2533 * application moving forwards and also permit diagnostics, albeit
2536 penalty_jiffies = min(penalty_jiffies, MEMCG_MAX_HIGH_DELAY_JIFFIES);
2539 * Don't sleep if the amount of jiffies this memcg owes us is so low
2540 * that it's not even worth doing, in an attempt to be nice to those who
2541 * go only a small amount over their memory.high value and maybe haven't
2542 * been aggressively reclaimed enough yet.
2544 if (penalty_jiffies <= HZ / 100)
2548 * If reclaim is making forward progress but we're still over
2549 * memory.high, we want to encourage that rather than doing allocator
2552 if (nr_reclaimed || nr_retries--) {
2558 * If we exit early, we're guaranteed to die (since
2559 * schedule_timeout_killable sets TASK_KILLABLE). This means we don't
2560 * need to account for any ill-begotten jiffies to pay them off later.
2562 psi_memstall_enter(&pflags);
2563 schedule_timeout_killable(penalty_jiffies);
2564 psi_memstall_leave(&pflags);
2567 css_put(&memcg->css);
2570 static int try_charge_memcg(struct mem_cgroup *memcg, gfp_t gfp_mask,
2571 unsigned int nr_pages)
2573 unsigned int batch = max(MEMCG_CHARGE_BATCH, nr_pages);
2574 int nr_retries = MAX_RECLAIM_RETRIES;
2575 struct mem_cgroup *mem_over_limit;
2576 struct page_counter *counter;
2577 unsigned long nr_reclaimed;
2578 bool passed_oom = false;
2579 bool may_swap = true;
2580 bool drained = false;
2581 unsigned long pflags;
2584 if (consume_stock(memcg, nr_pages))
2587 if (!do_memsw_account() ||
2588 page_counter_try_charge(&memcg->memsw, batch, &counter)) {
2589 if (page_counter_try_charge(&memcg->memory, batch, &counter))
2591 if (do_memsw_account())
2592 page_counter_uncharge(&memcg->memsw, batch);
2593 mem_over_limit = mem_cgroup_from_counter(counter, memory);
2595 mem_over_limit = mem_cgroup_from_counter(counter, memsw);
2599 if (batch > nr_pages) {
2605 * Prevent unbounded recursion when reclaim operations need to
2606 * allocate memory. This might exceed the limits temporarily,
2607 * but we prefer facilitating memory reclaim and getting back
2608 * under the limit over triggering OOM kills in these cases.
2610 if (unlikely(current->flags & PF_MEMALLOC))
2613 if (unlikely(task_in_memcg_oom(current)))
2616 if (!gfpflags_allow_blocking(gfp_mask))
2619 memcg_memory_event(mem_over_limit, MEMCG_MAX);
2621 psi_memstall_enter(&pflags);
2622 nr_reclaimed = try_to_free_mem_cgroup_pages(mem_over_limit, nr_pages,
2623 gfp_mask, may_swap);
2624 psi_memstall_leave(&pflags);
2626 if (mem_cgroup_margin(mem_over_limit) >= nr_pages)
2630 drain_all_stock(mem_over_limit);
2635 if (gfp_mask & __GFP_NORETRY)
2638 * Even though the limit is exceeded at this point, reclaim
2639 * may have been able to free some pages. Retry the charge
2640 * before killing the task.
2642 * Only for regular pages, though: huge pages are rather
2643 * unlikely to succeed so close to the limit, and we fall back
2644 * to regular pages anyway in case of failure.
2646 if (nr_reclaimed && nr_pages <= (1 << PAGE_ALLOC_COSTLY_ORDER))
2649 * At task move, charge accounts can be doubly counted. So, it's
2650 * better to wait until the end of task_move if something is going on.
2652 if (mem_cgroup_wait_acct_move(mem_over_limit))
2658 if (gfp_mask & __GFP_RETRY_MAYFAIL)
2661 /* Avoid endless loop for tasks bypassed by the oom killer */
2662 if (passed_oom && task_is_dying())
2666 * keep retrying as long as the memcg oom killer is able to make
2667 * a forward progress or bypass the charge if the oom killer
2668 * couldn't make any progress.
2670 if (mem_cgroup_oom(mem_over_limit, gfp_mask,
2671 get_order(nr_pages * PAGE_SIZE))) {
2673 nr_retries = MAX_RECLAIM_RETRIES;
2678 * Memcg doesn't have a dedicated reserve for atomic
2679 * allocations. But like the global atomic pool, we need to
2680 * put the burden of reclaim on regular allocation requests
2681 * and let these go through as privileged allocations.
2683 if (!(gfp_mask & (__GFP_NOFAIL | __GFP_HIGH)))
2687 * The allocation either can't fail or will lead to more memory
2688 * being freed very soon. Allow memory usage go over the limit
2689 * temporarily by force charging it.
2691 page_counter_charge(&memcg->memory, nr_pages);
2692 if (do_memsw_account())
2693 page_counter_charge(&memcg->memsw, nr_pages);
2698 if (batch > nr_pages)
2699 refill_stock(memcg, batch - nr_pages);
2702 * If the hierarchy is above the normal consumption range, schedule
2703 * reclaim on returning to userland. We can perform reclaim here
2704 * if __GFP_RECLAIM but let's always punt for simplicity and so that
2705 * GFP_KERNEL can consistently be used during reclaim. @memcg is
2706 * not recorded as it most likely matches current's and won't
2707 * change in the meantime. As high limit is checked again before
2708 * reclaim, the cost of mismatch is negligible.
2711 bool mem_high, swap_high;
2713 mem_high = page_counter_read(&memcg->memory) >
2714 READ_ONCE(memcg->memory.high);
2715 swap_high = page_counter_read(&memcg->swap) >
2716 READ_ONCE(memcg->swap.high);
2718 /* Don't bother a random interrupted task */
2721 schedule_work(&memcg->high_work);
2727 if (mem_high || swap_high) {
2729 * The allocating tasks in this cgroup will need to do
2730 * reclaim or be throttled to prevent further growth
2731 * of the memory or swap footprints.
2733 * Target some best-effort fairness between the tasks,
2734 * and distribute reclaim work and delay penalties
2735 * based on how much each task is actually allocating.
2737 current->memcg_nr_pages_over_high += batch;
2738 set_notify_resume(current);
2741 } while ((memcg = parent_mem_cgroup(memcg)));
2743 if (current->memcg_nr_pages_over_high > MEMCG_CHARGE_BATCH &&
2744 !(current->flags & PF_MEMALLOC) &&
2745 gfpflags_allow_blocking(gfp_mask)) {
2746 mem_cgroup_handle_over_high();
2751 static inline int try_charge(struct mem_cgroup *memcg, gfp_t gfp_mask,
2752 unsigned int nr_pages)
2754 if (mem_cgroup_is_root(memcg))
2757 return try_charge_memcg(memcg, gfp_mask, nr_pages);
2760 static inline void cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages)
2762 if (mem_cgroup_is_root(memcg))
2765 page_counter_uncharge(&memcg->memory, nr_pages);
2766 if (do_memsw_account())
2767 page_counter_uncharge(&memcg->memsw, nr_pages);
2770 static void commit_charge(struct folio *folio, struct mem_cgroup *memcg)
2772 VM_BUG_ON_FOLIO(folio_memcg(folio), folio);
2774 * Any of the following ensures page's memcg stability:
2778 * - lock_page_memcg()
2779 * - exclusive reference
2781 folio->memcg_data = (unsigned long)memcg;
2784 #ifdef CONFIG_MEMCG_KMEM
2786 * The allocated objcg pointers array is not accounted directly.
2787 * Moreover, it should not come from DMA buffer and is not readily
2788 * reclaimable. So those GFP bits should be masked off.
2790 #define OBJCGS_CLEAR_MASK (__GFP_DMA | __GFP_RECLAIMABLE | __GFP_ACCOUNT)
2793 * mod_objcg_mlstate() may be called with irq enabled, so
2794 * mod_memcg_lruvec_state() should be used.
2796 static inline void mod_objcg_mlstate(struct obj_cgroup *objcg,
2797 struct pglist_data *pgdat,
2798 enum node_stat_item idx, int nr)
2800 struct mem_cgroup *memcg;
2801 struct lruvec *lruvec;
2804 memcg = obj_cgroup_memcg(objcg);
2805 lruvec = mem_cgroup_lruvec(memcg, pgdat);
2806 mod_memcg_lruvec_state(lruvec, idx, nr);
2810 int memcg_alloc_slab_cgroups(struct slab *slab, struct kmem_cache *s,
2811 gfp_t gfp, bool new_slab)
2813 unsigned int objects = objs_per_slab(s, slab);
2814 unsigned long memcg_data;
2817 gfp &= ~OBJCGS_CLEAR_MASK;
2818 vec = kcalloc_node(objects, sizeof(struct obj_cgroup *), gfp,
2823 memcg_data = (unsigned long) vec | MEMCG_DATA_OBJCGS;
2826 * If the slab is brand new and nobody can yet access its
2827 * memcg_data, no synchronization is required and memcg_data can
2828 * be simply assigned.
2830 slab->memcg_data = memcg_data;
2831 } else if (cmpxchg(&slab->memcg_data, 0, memcg_data)) {
2833 * If the slab is already in use, somebody can allocate and
2834 * assign obj_cgroups in parallel. In this case the existing
2835 * objcg vector should be reused.
2841 kmemleak_not_leak(vec);
2846 * Returns a pointer to the memory cgroup to which the kernel object is charged.
2848 * A passed kernel object can be a slab object or a generic kernel page, so
2849 * different mechanisms for getting the memory cgroup pointer should be used.
2850 * In certain cases (e.g. kernel stacks or large kmallocs with SLUB) the caller
2851 * can not know for sure how the kernel object is implemented.
2852 * mem_cgroup_from_obj() can be safely used in such cases.
2854 * The caller must ensure the memcg lifetime, e.g. by taking rcu_read_lock(),
2855 * cgroup_mutex, etc.
2857 struct mem_cgroup *mem_cgroup_from_obj(void *p)
2859 struct folio *folio;
2861 if (mem_cgroup_disabled())
2864 folio = virt_to_folio(p);
2867 * Slab objects are accounted individually, not per-page.
2868 * Memcg membership data for each individual object is saved in
2871 if (folio_test_slab(folio)) {
2872 struct obj_cgroup **objcgs;
2876 slab = folio_slab(folio);
2877 objcgs = slab_objcgs(slab);
2881 off = obj_to_index(slab->slab_cache, slab, p);
2883 return obj_cgroup_memcg(objcgs[off]);
2889 * page_memcg_check() is used here, because in theory we can encounter
2890 * a folio where the slab flag has been cleared already, but
2891 * slab->memcg_data has not been freed yet
2892 * page_memcg_check(page) will guarantee that a proper memory
2893 * cgroup pointer or NULL will be returned.
2895 return page_memcg_check(folio_page(folio, 0));
2898 static struct obj_cgroup *__get_obj_cgroup_from_memcg(struct mem_cgroup *memcg)
2900 struct obj_cgroup *objcg = NULL;
2902 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
2903 objcg = rcu_dereference(memcg->objcg);
2904 if (objcg && obj_cgroup_tryget(objcg))
2911 __always_inline struct obj_cgroup *get_obj_cgroup_from_current(void)
2913 struct obj_cgroup *objcg = NULL;
2914 struct mem_cgroup *memcg;
2916 if (memcg_kmem_bypass())
2920 if (unlikely(active_memcg()))
2921 memcg = active_memcg();
2923 memcg = mem_cgroup_from_task(current);
2924 objcg = __get_obj_cgroup_from_memcg(memcg);
2929 struct obj_cgroup *get_obj_cgroup_from_page(struct page *page)
2931 struct obj_cgroup *objcg;
2933 if (!memcg_kmem_enabled() || memcg_kmem_bypass())
2936 if (PageMemcgKmem(page)) {
2937 objcg = __folio_objcg(page_folio(page));
2938 obj_cgroup_get(objcg);
2940 struct mem_cgroup *memcg;
2943 memcg = __folio_memcg(page_folio(page));
2945 objcg = __get_obj_cgroup_from_memcg(memcg);
2953 static void memcg_account_kmem(struct mem_cgroup *memcg, int nr_pages)
2955 mod_memcg_state(memcg, MEMCG_KMEM, nr_pages);
2956 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
2958 page_counter_charge(&memcg->kmem, nr_pages);
2960 page_counter_uncharge(&memcg->kmem, -nr_pages);
2966 * obj_cgroup_uncharge_pages: uncharge a number of kernel pages from a objcg
2967 * @objcg: object cgroup to uncharge
2968 * @nr_pages: number of pages to uncharge
2970 static void obj_cgroup_uncharge_pages(struct obj_cgroup *objcg,
2971 unsigned int nr_pages)
2973 struct mem_cgroup *memcg;
2975 memcg = get_mem_cgroup_from_objcg(objcg);
2977 memcg_account_kmem(memcg, -nr_pages);
2978 refill_stock(memcg, nr_pages);
2980 css_put(&memcg->css);
2984 * obj_cgroup_charge_pages: charge a number of kernel pages to a objcg
2985 * @objcg: object cgroup to charge
2986 * @gfp: reclaim mode
2987 * @nr_pages: number of pages to charge
2989 * Returns 0 on success, an error code on failure.
2991 static int obj_cgroup_charge_pages(struct obj_cgroup *objcg, gfp_t gfp,
2992 unsigned int nr_pages)
2994 struct mem_cgroup *memcg;
2997 memcg = get_mem_cgroup_from_objcg(objcg);
2999 ret = try_charge_memcg(memcg, gfp, nr_pages);
3003 memcg_account_kmem(memcg, nr_pages);
3005 css_put(&memcg->css);
3011 * __memcg_kmem_charge_page: charge a kmem page to the current memory cgroup
3012 * @page: page to charge
3013 * @gfp: reclaim mode
3014 * @order: allocation order
3016 * Returns 0 on success, an error code on failure.
3018 int __memcg_kmem_charge_page(struct page *page, gfp_t gfp, int order)
3020 struct obj_cgroup *objcg;
3023 objcg = get_obj_cgroup_from_current();
3025 ret = obj_cgroup_charge_pages(objcg, gfp, 1 << order);
3027 page->memcg_data = (unsigned long)objcg |
3031 obj_cgroup_put(objcg);
3037 * __memcg_kmem_uncharge_page: uncharge a kmem page
3038 * @page: page to uncharge
3039 * @order: allocation order
3041 void __memcg_kmem_uncharge_page(struct page *page, int order)
3043 struct folio *folio = page_folio(page);
3044 struct obj_cgroup *objcg;
3045 unsigned int nr_pages = 1 << order;
3047 if (!folio_memcg_kmem(folio))
3050 objcg = __folio_objcg(folio);
3051 obj_cgroup_uncharge_pages(objcg, nr_pages);
3052 folio->memcg_data = 0;
3053 obj_cgroup_put(objcg);
3056 void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat,
3057 enum node_stat_item idx, int nr)
3059 struct memcg_stock_pcp *stock;
3060 struct obj_cgroup *old = NULL;
3061 unsigned long flags;
3064 local_lock_irqsave(&memcg_stock.stock_lock, flags);
3065 stock = this_cpu_ptr(&memcg_stock);
3068 * Save vmstat data in stock and skip vmstat array update unless
3069 * accumulating over a page of vmstat data or when pgdat or idx
3072 if (stock->cached_objcg != objcg) {
3073 old = drain_obj_stock(stock);
3074 obj_cgroup_get(objcg);
3075 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3076 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3077 stock->cached_objcg = objcg;
3078 stock->cached_pgdat = pgdat;
3079 } else if (stock->cached_pgdat != pgdat) {
3080 /* Flush the existing cached vmstat data */
3081 struct pglist_data *oldpg = stock->cached_pgdat;
3083 if (stock->nr_slab_reclaimable_b) {
3084 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_RECLAIMABLE_B,
3085 stock->nr_slab_reclaimable_b);
3086 stock->nr_slab_reclaimable_b = 0;
3088 if (stock->nr_slab_unreclaimable_b) {
3089 mod_objcg_mlstate(objcg, oldpg, NR_SLAB_UNRECLAIMABLE_B,
3090 stock->nr_slab_unreclaimable_b);
3091 stock->nr_slab_unreclaimable_b = 0;
3093 stock->cached_pgdat = pgdat;
3096 bytes = (idx == NR_SLAB_RECLAIMABLE_B) ? &stock->nr_slab_reclaimable_b
3097 : &stock->nr_slab_unreclaimable_b;
3099 * Even for large object >= PAGE_SIZE, the vmstat data will still be
3100 * cached locally at least once before pushing it out.
3107 if (abs(*bytes) > PAGE_SIZE) {
3115 mod_objcg_mlstate(objcg, pgdat, idx, nr);
3117 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
3119 obj_cgroup_put(old);
3122 static bool consume_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes)
3124 struct memcg_stock_pcp *stock;
3125 unsigned long flags;
3128 local_lock_irqsave(&memcg_stock.stock_lock, flags);
3130 stock = this_cpu_ptr(&memcg_stock);
3131 if (objcg == stock->cached_objcg && stock->nr_bytes >= nr_bytes) {
3132 stock->nr_bytes -= nr_bytes;
3136 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
3141 static struct obj_cgroup *drain_obj_stock(struct memcg_stock_pcp *stock)
3143 struct obj_cgroup *old = stock->cached_objcg;
3148 if (stock->nr_bytes) {
3149 unsigned int nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3150 unsigned int nr_bytes = stock->nr_bytes & (PAGE_SIZE - 1);
3153 struct mem_cgroup *memcg;
3155 memcg = get_mem_cgroup_from_objcg(old);
3157 memcg_account_kmem(memcg, -nr_pages);
3158 __refill_stock(memcg, nr_pages);
3160 css_put(&memcg->css);
3164 * The leftover is flushed to the centralized per-memcg value.
3165 * On the next attempt to refill obj stock it will be moved
3166 * to a per-cpu stock (probably, on an other CPU), see
3167 * refill_obj_stock().
3169 * How often it's flushed is a trade-off between the memory
3170 * limit enforcement accuracy and potential CPU contention,
3171 * so it might be changed in the future.
3173 atomic_add(nr_bytes, &old->nr_charged_bytes);
3174 stock->nr_bytes = 0;
3178 * Flush the vmstat data in current stock
3180 if (stock->nr_slab_reclaimable_b || stock->nr_slab_unreclaimable_b) {
3181 if (stock->nr_slab_reclaimable_b) {
3182 mod_objcg_mlstate(old, stock->cached_pgdat,
3183 NR_SLAB_RECLAIMABLE_B,
3184 stock->nr_slab_reclaimable_b);
3185 stock->nr_slab_reclaimable_b = 0;
3187 if (stock->nr_slab_unreclaimable_b) {
3188 mod_objcg_mlstate(old, stock->cached_pgdat,
3189 NR_SLAB_UNRECLAIMABLE_B,
3190 stock->nr_slab_unreclaimable_b);
3191 stock->nr_slab_unreclaimable_b = 0;
3193 stock->cached_pgdat = NULL;
3196 stock->cached_objcg = NULL;
3198 * The `old' objects needs to be released by the caller via
3199 * obj_cgroup_put() outside of memcg_stock_pcp::stock_lock.
3204 static bool obj_stock_flush_required(struct memcg_stock_pcp *stock,
3205 struct mem_cgroup *root_memcg)
3207 struct mem_cgroup *memcg;
3209 if (stock->cached_objcg) {
3210 memcg = obj_cgroup_memcg(stock->cached_objcg);
3211 if (memcg && mem_cgroup_is_descendant(memcg, root_memcg))
3218 static void refill_obj_stock(struct obj_cgroup *objcg, unsigned int nr_bytes,
3219 bool allow_uncharge)
3221 struct memcg_stock_pcp *stock;
3222 struct obj_cgroup *old = NULL;
3223 unsigned long flags;
3224 unsigned int nr_pages = 0;
3226 local_lock_irqsave(&memcg_stock.stock_lock, flags);
3228 stock = this_cpu_ptr(&memcg_stock);
3229 if (stock->cached_objcg != objcg) { /* reset if necessary */
3230 old = drain_obj_stock(stock);
3231 obj_cgroup_get(objcg);
3232 stock->cached_objcg = objcg;
3233 stock->nr_bytes = atomic_read(&objcg->nr_charged_bytes)
3234 ? atomic_xchg(&objcg->nr_charged_bytes, 0) : 0;
3235 allow_uncharge = true; /* Allow uncharge when objcg changes */
3237 stock->nr_bytes += nr_bytes;
3239 if (allow_uncharge && (stock->nr_bytes > PAGE_SIZE)) {
3240 nr_pages = stock->nr_bytes >> PAGE_SHIFT;
3241 stock->nr_bytes &= (PAGE_SIZE - 1);
3244 local_unlock_irqrestore(&memcg_stock.stock_lock, flags);
3246 obj_cgroup_put(old);
3249 obj_cgroup_uncharge_pages(objcg, nr_pages);
3252 int obj_cgroup_charge(struct obj_cgroup *objcg, gfp_t gfp, size_t size)
3254 unsigned int nr_pages, nr_bytes;
3257 if (consume_obj_stock(objcg, size))
3261 * In theory, objcg->nr_charged_bytes can have enough
3262 * pre-charged bytes to satisfy the allocation. However,
3263 * flushing objcg->nr_charged_bytes requires two atomic
3264 * operations, and objcg->nr_charged_bytes can't be big.
3265 * The shared objcg->nr_charged_bytes can also become a
3266 * performance bottleneck if all tasks of the same memcg are
3267 * trying to update it. So it's better to ignore it and try
3268 * grab some new pages. The stock's nr_bytes will be flushed to
3269 * objcg->nr_charged_bytes later on when objcg changes.
3271 * The stock's nr_bytes may contain enough pre-charged bytes
3272 * to allow one less page from being charged, but we can't rely
3273 * on the pre-charged bytes not being changed outside of
3274 * consume_obj_stock() or refill_obj_stock(). So ignore those
3275 * pre-charged bytes as well when charging pages. To avoid a
3276 * page uncharge right after a page charge, we set the
3277 * allow_uncharge flag to false when calling refill_obj_stock()
3278 * to temporarily allow the pre-charged bytes to exceed the page
3279 * size limit. The maximum reachable value of the pre-charged
3280 * bytes is (sizeof(object) + PAGE_SIZE - 2) if there is no data
3283 nr_pages = size >> PAGE_SHIFT;
3284 nr_bytes = size & (PAGE_SIZE - 1);
3289 ret = obj_cgroup_charge_pages(objcg, gfp, nr_pages);
3290 if (!ret && nr_bytes)
3291 refill_obj_stock(objcg, PAGE_SIZE - nr_bytes, false);
3296 void obj_cgroup_uncharge(struct obj_cgroup *objcg, size_t size)
3298 refill_obj_stock(objcg, size, true);
3301 #endif /* CONFIG_MEMCG_KMEM */
3304 * Because page_memcg(head) is not set on tails, set it now.
3306 void split_page_memcg(struct page *head, unsigned int nr)
3308 struct folio *folio = page_folio(head);
3309 struct mem_cgroup *memcg = folio_memcg(folio);
3312 if (mem_cgroup_disabled() || !memcg)
3315 for (i = 1; i < nr; i++)
3316 folio_page(folio, i)->memcg_data = folio->memcg_data;
3318 if (folio_memcg_kmem(folio))
3319 obj_cgroup_get_many(__folio_objcg(folio), nr - 1);
3321 css_get_many(&memcg->css, nr - 1);
3324 #ifdef CONFIG_MEMCG_SWAP
3326 * mem_cgroup_move_swap_account - move swap charge and swap_cgroup's record.
3327 * @entry: swap entry to be moved
3328 * @from: mem_cgroup which the entry is moved from
3329 * @to: mem_cgroup which the entry is moved to
3331 * It succeeds only when the swap_cgroup's record for this entry is the same
3332 * as the mem_cgroup's id of @from.
3334 * Returns 0 on success, -EINVAL on failure.
3336 * The caller must have charged to @to, IOW, called page_counter_charge() about
3337 * both res and memsw, and called css_get().
3339 static int mem_cgroup_move_swap_account(swp_entry_t entry,
3340 struct mem_cgroup *from, struct mem_cgroup *to)
3342 unsigned short old_id, new_id;
3344 old_id = mem_cgroup_id(from);
3345 new_id = mem_cgroup_id(to);
3347 if (swap_cgroup_cmpxchg(entry, old_id, new_id) == old_id) {
3348 mod_memcg_state(from, MEMCG_SWAP, -1);
3349 mod_memcg_state(to, MEMCG_SWAP, 1);
3355 static inline int mem_cgroup_move_swap_account(swp_entry_t entry,
3356 struct mem_cgroup *from, struct mem_cgroup *to)
3362 static DEFINE_MUTEX(memcg_max_mutex);
3364 static int mem_cgroup_resize_max(struct mem_cgroup *memcg,
3365 unsigned long max, bool memsw)
3367 bool enlarge = false;
3368 bool drained = false;
3370 bool limits_invariant;
3371 struct page_counter *counter = memsw ? &memcg->memsw : &memcg->memory;
3374 if (signal_pending(current)) {
3379 mutex_lock(&memcg_max_mutex);
3381 * Make sure that the new limit (memsw or memory limit) doesn't
3382 * break our basic invariant rule memory.max <= memsw.max.
3384 limits_invariant = memsw ? max >= READ_ONCE(memcg->memory.max) :
3385 max <= memcg->memsw.max;
3386 if (!limits_invariant) {
3387 mutex_unlock(&memcg_max_mutex);
3391 if (max > counter->max)
3393 ret = page_counter_set_max(counter, max);
3394 mutex_unlock(&memcg_max_mutex);
3400 drain_all_stock(memcg);
3405 if (!try_to_free_mem_cgroup_pages(memcg, 1,
3406 GFP_KERNEL, !memsw)) {
3412 if (!ret && enlarge)
3413 memcg_oom_recover(memcg);
3418 unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
3420 unsigned long *total_scanned)
3422 unsigned long nr_reclaimed = 0;
3423 struct mem_cgroup_per_node *mz, *next_mz = NULL;
3424 unsigned long reclaimed;
3426 struct mem_cgroup_tree_per_node *mctz;
3427 unsigned long excess;
3432 mctz = soft_limit_tree.rb_tree_per_node[pgdat->node_id];
3435 * Do not even bother to check the largest node if the root
3436 * is empty. Do it lockless to prevent lock bouncing. Races
3437 * are acceptable as soft limit is best effort anyway.
3439 if (!mctz || RB_EMPTY_ROOT(&mctz->rb_root))
3443 * This loop can run a while, specially if mem_cgroup's continuously
3444 * keep exceeding their soft limit and putting the system under
3451 mz = mem_cgroup_largest_soft_limit_node(mctz);
3455 reclaimed = mem_cgroup_soft_reclaim(mz->memcg, pgdat,
3456 gfp_mask, total_scanned);
3457 nr_reclaimed += reclaimed;
3458 spin_lock_irq(&mctz->lock);
3461 * If we failed to reclaim anything from this memory cgroup
3462 * it is time to move on to the next cgroup
3466 next_mz = __mem_cgroup_largest_soft_limit_node(mctz);
3468 excess = soft_limit_excess(mz->memcg);
3470 * One school of thought says that we should not add
3471 * back the node to the tree if reclaim returns 0.
3472 * But our reclaim could return 0, simply because due
3473 * to priority we are exposing a smaller subset of
3474 * memory to reclaim from. Consider this as a longer
3477 /* If excess == 0, no tree ops */
3478 __mem_cgroup_insert_exceeded(mz, mctz, excess);
3479 spin_unlock_irq(&mctz->lock);
3480 css_put(&mz->memcg->css);
3483 * Could not reclaim anything and there are no more
3484 * mem cgroups to try or we seem to be looping without
3485 * reclaiming anything.
3487 if (!nr_reclaimed &&
3489 loop > MEM_CGROUP_MAX_SOFT_LIMIT_RECLAIM_LOOPS))
3491 } while (!nr_reclaimed);
3493 css_put(&next_mz->memcg->css);
3494 return nr_reclaimed;
3498 * Reclaims as many pages from the given memcg as possible.
3500 * Caller is responsible for holding css reference for memcg.
3502 static int mem_cgroup_force_empty(struct mem_cgroup *memcg)
3504 int nr_retries = MAX_RECLAIM_RETRIES;
3506 /* we call try-to-free pages for make this cgroup empty */
3507 lru_add_drain_all();
3509 drain_all_stock(memcg);
3511 /* try to free all pages in this cgroup */
3512 while (nr_retries && page_counter_read(&memcg->memory)) {
3513 if (signal_pending(current))
3516 if (!try_to_free_mem_cgroup_pages(memcg, 1, GFP_KERNEL, true))
3523 static ssize_t mem_cgroup_force_empty_write(struct kernfs_open_file *of,
3524 char *buf, size_t nbytes,
3527 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3529 if (mem_cgroup_is_root(memcg))
3531 return mem_cgroup_force_empty(memcg) ?: nbytes;
3534 static u64 mem_cgroup_hierarchy_read(struct cgroup_subsys_state *css,
3540 static int mem_cgroup_hierarchy_write(struct cgroup_subsys_state *css,
3541 struct cftype *cft, u64 val)
3546 pr_warn_once("Non-hierarchical mode is deprecated. "
3547 "Please report your usecase to linux-mm@kvack.org if you "
3548 "depend on this functionality.\n");
3553 static unsigned long mem_cgroup_usage(struct mem_cgroup *memcg, bool swap)
3557 if (mem_cgroup_is_root(memcg)) {
3558 mem_cgroup_flush_stats();
3559 val = memcg_page_state(memcg, NR_FILE_PAGES) +
3560 memcg_page_state(memcg, NR_ANON_MAPPED);
3562 val += memcg_page_state(memcg, MEMCG_SWAP);
3565 val = page_counter_read(&memcg->memory);
3567 val = page_counter_read(&memcg->memsw);
3580 static u64 mem_cgroup_read_u64(struct cgroup_subsys_state *css,
3583 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3584 struct page_counter *counter;
3586 switch (MEMFILE_TYPE(cft->private)) {
3588 counter = &memcg->memory;
3591 counter = &memcg->memsw;
3594 counter = &memcg->kmem;
3597 counter = &memcg->tcpmem;
3603 switch (MEMFILE_ATTR(cft->private)) {
3605 if (counter == &memcg->memory)
3606 return (u64)mem_cgroup_usage(memcg, false) * PAGE_SIZE;
3607 if (counter == &memcg->memsw)
3608 return (u64)mem_cgroup_usage(memcg, true) * PAGE_SIZE;
3609 return (u64)page_counter_read(counter) * PAGE_SIZE;
3611 return (u64)counter->max * PAGE_SIZE;
3613 return (u64)counter->watermark * PAGE_SIZE;
3615 return counter->failcnt;
3616 case RES_SOFT_LIMIT:
3617 return (u64)memcg->soft_limit * PAGE_SIZE;
3623 #ifdef CONFIG_MEMCG_KMEM
3624 static int memcg_online_kmem(struct mem_cgroup *memcg)
3626 struct obj_cgroup *objcg;
3628 if (cgroup_memory_nokmem)
3631 if (unlikely(mem_cgroup_is_root(memcg)))
3634 objcg = obj_cgroup_alloc();
3638 objcg->memcg = memcg;
3639 rcu_assign_pointer(memcg->objcg, objcg);
3641 static_branch_enable(&memcg_kmem_enabled_key);
3643 memcg->kmemcg_id = memcg->id.id;
3648 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3650 struct mem_cgroup *parent;
3652 if (cgroup_memory_nokmem)
3655 if (unlikely(mem_cgroup_is_root(memcg)))
3658 parent = parent_mem_cgroup(memcg);
3660 parent = root_mem_cgroup;
3662 memcg_reparent_objcgs(memcg, parent);
3665 * After we have finished memcg_reparent_objcgs(), all list_lrus
3666 * corresponding to this cgroup are guaranteed to remain empty.
3667 * The ordering is imposed by list_lru_node->lock taken by
3668 * memcg_reparent_list_lrus().
3670 memcg_reparent_list_lrus(memcg, parent);
3673 static int memcg_online_kmem(struct mem_cgroup *memcg)
3677 static void memcg_offline_kmem(struct mem_cgroup *memcg)
3680 #endif /* CONFIG_MEMCG_KMEM */
3682 static int memcg_update_tcp_max(struct mem_cgroup *memcg, unsigned long max)
3686 mutex_lock(&memcg_max_mutex);
3688 ret = page_counter_set_max(&memcg->tcpmem, max);
3692 if (!memcg->tcpmem_active) {
3694 * The active flag needs to be written after the static_key
3695 * update. This is what guarantees that the socket activation
3696 * function is the last one to run. See mem_cgroup_sk_alloc()
3697 * for details, and note that we don't mark any socket as
3698 * belonging to this memcg until that flag is up.
3700 * We need to do this, because static_keys will span multiple
3701 * sites, but we can't control their order. If we mark a socket
3702 * as accounted, but the accounting functions are not patched in
3703 * yet, we'll lose accounting.
3705 * We never race with the readers in mem_cgroup_sk_alloc(),
3706 * because when this value change, the code to process it is not
3709 static_branch_inc(&memcg_sockets_enabled_key);
3710 memcg->tcpmem_active = true;
3713 mutex_unlock(&memcg_max_mutex);
3718 * The user of this function is...
3721 static ssize_t mem_cgroup_write(struct kernfs_open_file *of,
3722 char *buf, size_t nbytes, loff_t off)
3724 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3725 unsigned long nr_pages;
3728 buf = strstrip(buf);
3729 ret = page_counter_memparse(buf, "-1", &nr_pages);
3733 switch (MEMFILE_ATTR(of_cft(of)->private)) {
3735 if (mem_cgroup_is_root(memcg)) { /* Can't set limit on root */
3739 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3741 ret = mem_cgroup_resize_max(memcg, nr_pages, false);
3744 ret = mem_cgroup_resize_max(memcg, nr_pages, true);
3747 /* kmem.limit_in_bytes is deprecated. */
3751 ret = memcg_update_tcp_max(memcg, nr_pages);
3755 case RES_SOFT_LIMIT:
3756 if (IS_ENABLED(CONFIG_PREEMPT_RT)) {
3759 memcg->soft_limit = nr_pages;
3764 return ret ?: nbytes;
3767 static ssize_t mem_cgroup_reset(struct kernfs_open_file *of, char *buf,
3768 size_t nbytes, loff_t off)
3770 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
3771 struct page_counter *counter;
3773 switch (MEMFILE_TYPE(of_cft(of)->private)) {
3775 counter = &memcg->memory;
3778 counter = &memcg->memsw;
3781 counter = &memcg->kmem;
3784 counter = &memcg->tcpmem;
3790 switch (MEMFILE_ATTR(of_cft(of)->private)) {
3792 page_counter_reset_watermark(counter);
3795 counter->failcnt = 0;
3804 static u64 mem_cgroup_move_charge_read(struct cgroup_subsys_state *css,
3807 return mem_cgroup_from_css(css)->move_charge_at_immigrate;
3811 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3812 struct cftype *cft, u64 val)
3814 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
3816 if (val & ~MOVE_MASK)
3820 * No kind of locking is needed in here, because ->can_attach() will
3821 * check this value once in the beginning of the process, and then carry
3822 * on with stale data. This means that changes to this value will only
3823 * affect task migrations starting after the change.
3825 memcg->move_charge_at_immigrate = val;
3829 static int mem_cgroup_move_charge_write(struct cgroup_subsys_state *css,
3830 struct cftype *cft, u64 val)
3838 #define LRU_ALL_FILE (BIT(LRU_INACTIVE_FILE) | BIT(LRU_ACTIVE_FILE))
3839 #define LRU_ALL_ANON (BIT(LRU_INACTIVE_ANON) | BIT(LRU_ACTIVE_ANON))
3840 #define LRU_ALL ((1 << NR_LRU_LISTS) - 1)
3842 static unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
3843 int nid, unsigned int lru_mask, bool tree)
3845 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
3846 unsigned long nr = 0;
3849 VM_BUG_ON((unsigned)nid >= nr_node_ids);
3852 if (!(BIT(lru) & lru_mask))
3855 nr += lruvec_page_state(lruvec, NR_LRU_BASE + lru);
3857 nr += lruvec_page_state_local(lruvec, NR_LRU_BASE + lru);
3862 static unsigned long mem_cgroup_nr_lru_pages(struct mem_cgroup *memcg,
3863 unsigned int lru_mask,
3866 unsigned long nr = 0;
3870 if (!(BIT(lru) & lru_mask))
3873 nr += memcg_page_state(memcg, NR_LRU_BASE + lru);
3875 nr += memcg_page_state_local(memcg, NR_LRU_BASE + lru);
3880 static int memcg_numa_stat_show(struct seq_file *m, void *v)
3884 unsigned int lru_mask;
3887 static const struct numa_stat stats[] = {
3888 { "total", LRU_ALL },
3889 { "file", LRU_ALL_FILE },
3890 { "anon", LRU_ALL_ANON },
3891 { "unevictable", BIT(LRU_UNEVICTABLE) },
3893 const struct numa_stat *stat;
3895 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3897 mem_cgroup_flush_stats();
3899 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3900 seq_printf(m, "%s=%lu", stat->name,
3901 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3903 for_each_node_state(nid, N_MEMORY)
3904 seq_printf(m, " N%d=%lu", nid,
3905 mem_cgroup_node_nr_lru_pages(memcg, nid,
3906 stat->lru_mask, false));
3910 for (stat = stats; stat < stats + ARRAY_SIZE(stats); stat++) {
3912 seq_printf(m, "hierarchical_%s=%lu", stat->name,
3913 mem_cgroup_nr_lru_pages(memcg, stat->lru_mask,
3915 for_each_node_state(nid, N_MEMORY)
3916 seq_printf(m, " N%d=%lu", nid,
3917 mem_cgroup_node_nr_lru_pages(memcg, nid,
3918 stat->lru_mask, true));
3924 #endif /* CONFIG_NUMA */
3926 static const unsigned int memcg1_stats[] = {
3929 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3939 static const char *const memcg1_stat_names[] = {
3942 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3952 /* Universal VM events cgroup1 shows, original sort order */
3953 static const unsigned int memcg1_events[] = {
3960 static int memcg_stat_show(struct seq_file *m, void *v)
3962 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
3963 unsigned long memory, memsw;
3964 struct mem_cgroup *mi;
3967 BUILD_BUG_ON(ARRAY_SIZE(memcg1_stat_names) != ARRAY_SIZE(memcg1_stats));
3969 mem_cgroup_flush_stats();
3971 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
3974 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
3976 nr = memcg_page_state_local(memcg, memcg1_stats[i]);
3977 seq_printf(m, "%s %lu\n", memcg1_stat_names[i], nr * PAGE_SIZE);
3980 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
3981 seq_printf(m, "%s %lu\n", vm_event_name(memcg1_events[i]),
3982 memcg_events_local(memcg, memcg1_events[i]));
3984 for (i = 0; i < NR_LRU_LISTS; i++)
3985 seq_printf(m, "%s %lu\n", lru_list_name(i),
3986 memcg_page_state_local(memcg, NR_LRU_BASE + i) *
3989 /* Hierarchical information */
3990 memory = memsw = PAGE_COUNTER_MAX;
3991 for (mi = memcg; mi; mi = parent_mem_cgroup(mi)) {
3992 memory = min(memory, READ_ONCE(mi->memory.max));
3993 memsw = min(memsw, READ_ONCE(mi->memsw.max));
3995 seq_printf(m, "hierarchical_memory_limit %llu\n",
3996 (u64)memory * PAGE_SIZE);
3997 if (do_memsw_account())
3998 seq_printf(m, "hierarchical_memsw_limit %llu\n",
3999 (u64)memsw * PAGE_SIZE);
4001 for (i = 0; i < ARRAY_SIZE(memcg1_stats); i++) {
4004 if (memcg1_stats[i] == MEMCG_SWAP && !do_memsw_account())
4006 nr = memcg_page_state(memcg, memcg1_stats[i]);
4007 seq_printf(m, "total_%s %llu\n", memcg1_stat_names[i],
4008 (u64)nr * PAGE_SIZE);
4011 for (i = 0; i < ARRAY_SIZE(memcg1_events); i++)
4012 seq_printf(m, "total_%s %llu\n",
4013 vm_event_name(memcg1_events[i]),
4014 (u64)memcg_events(memcg, memcg1_events[i]));
4016 for (i = 0; i < NR_LRU_LISTS; i++)
4017 seq_printf(m, "total_%s %llu\n", lru_list_name(i),
4018 (u64)memcg_page_state(memcg, NR_LRU_BASE + i) *
4021 #ifdef CONFIG_DEBUG_VM
4024 struct mem_cgroup_per_node *mz;
4025 unsigned long anon_cost = 0;
4026 unsigned long file_cost = 0;
4028 for_each_online_pgdat(pgdat) {
4029 mz = memcg->nodeinfo[pgdat->node_id];
4031 anon_cost += mz->lruvec.anon_cost;
4032 file_cost += mz->lruvec.file_cost;
4034 seq_printf(m, "anon_cost %lu\n", anon_cost);
4035 seq_printf(m, "file_cost %lu\n", file_cost);
4042 static u64 mem_cgroup_swappiness_read(struct cgroup_subsys_state *css,
4045 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4047 return mem_cgroup_swappiness(memcg);
4050 static int mem_cgroup_swappiness_write(struct cgroup_subsys_state *css,
4051 struct cftype *cft, u64 val)
4053 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4058 if (!mem_cgroup_is_root(memcg))
4059 memcg->swappiness = val;
4061 vm_swappiness = val;
4066 static void __mem_cgroup_threshold(struct mem_cgroup *memcg, bool swap)
4068 struct mem_cgroup_threshold_ary *t;
4069 unsigned long usage;
4074 t = rcu_dereference(memcg->thresholds.primary);
4076 t = rcu_dereference(memcg->memsw_thresholds.primary);
4081 usage = mem_cgroup_usage(memcg, swap);
4084 * current_threshold points to threshold just below or equal to usage.
4085 * If it's not true, a threshold was crossed after last
4086 * call of __mem_cgroup_threshold().
4088 i = t->current_threshold;
4091 * Iterate backward over array of thresholds starting from
4092 * current_threshold and check if a threshold is crossed.
4093 * If none of thresholds below usage is crossed, we read
4094 * only one element of the array here.
4096 for (; i >= 0 && unlikely(t->entries[i].threshold > usage); i--)
4097 eventfd_signal(t->entries[i].eventfd, 1);
4099 /* i = current_threshold + 1 */
4103 * Iterate forward over array of thresholds starting from
4104 * current_threshold+1 and check if a threshold is crossed.
4105 * If none of thresholds above usage is crossed, we read
4106 * only one element of the array here.
4108 for (; i < t->size && unlikely(t->entries[i].threshold <= usage); i++)
4109 eventfd_signal(t->entries[i].eventfd, 1);
4111 /* Update current_threshold */
4112 t->current_threshold = i - 1;
4117 static void mem_cgroup_threshold(struct mem_cgroup *memcg)
4120 __mem_cgroup_threshold(memcg, false);
4121 if (do_memsw_account())
4122 __mem_cgroup_threshold(memcg, true);
4124 memcg = parent_mem_cgroup(memcg);
4128 static int compare_thresholds(const void *a, const void *b)
4130 const struct mem_cgroup_threshold *_a = a;
4131 const struct mem_cgroup_threshold *_b = b;
4133 if (_a->threshold > _b->threshold)
4136 if (_a->threshold < _b->threshold)
4142 static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
4144 struct mem_cgroup_eventfd_list *ev;
4146 spin_lock(&memcg_oom_lock);
4148 list_for_each_entry(ev, &memcg->oom_notify, list)
4149 eventfd_signal(ev->eventfd, 1);
4151 spin_unlock(&memcg_oom_lock);
4155 static void mem_cgroup_oom_notify(struct mem_cgroup *memcg)
4157 struct mem_cgroup *iter;
4159 for_each_mem_cgroup_tree(iter, memcg)
4160 mem_cgroup_oom_notify_cb(iter);
4163 static int __mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4164 struct eventfd_ctx *eventfd, const char *args, enum res_type type)
4166 struct mem_cgroup_thresholds *thresholds;
4167 struct mem_cgroup_threshold_ary *new;
4168 unsigned long threshold;
4169 unsigned long usage;
4172 ret = page_counter_memparse(args, "-1", &threshold);
4176 mutex_lock(&memcg->thresholds_lock);
4179 thresholds = &memcg->thresholds;
4180 usage = mem_cgroup_usage(memcg, false);
4181 } else if (type == _MEMSWAP) {
4182 thresholds = &memcg->memsw_thresholds;
4183 usage = mem_cgroup_usage(memcg, true);
4187 /* Check if a threshold crossed before adding a new one */
4188 if (thresholds->primary)
4189 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4191 size = thresholds->primary ? thresholds->primary->size + 1 : 1;
4193 /* Allocate memory for new array of thresholds */
4194 new = kmalloc(struct_size(new, entries, size), GFP_KERNEL);
4201 /* Copy thresholds (if any) to new array */
4202 if (thresholds->primary)
4203 memcpy(new->entries, thresholds->primary->entries,
4204 flex_array_size(new, entries, size - 1));
4206 /* Add new threshold */
4207 new->entries[size - 1].eventfd = eventfd;
4208 new->entries[size - 1].threshold = threshold;
4210 /* Sort thresholds. Registering of new threshold isn't time-critical */
4211 sort(new->entries, size, sizeof(*new->entries),
4212 compare_thresholds, NULL);
4214 /* Find current threshold */
4215 new->current_threshold = -1;
4216 for (i = 0; i < size; i++) {
4217 if (new->entries[i].threshold <= usage) {
4219 * new->current_threshold will not be used until
4220 * rcu_assign_pointer(), so it's safe to increment
4223 ++new->current_threshold;
4228 /* Free old spare buffer and save old primary buffer as spare */
4229 kfree(thresholds->spare);
4230 thresholds->spare = thresholds->primary;
4232 rcu_assign_pointer(thresholds->primary, new);
4234 /* To be sure that nobody uses thresholds */
4238 mutex_unlock(&memcg->thresholds_lock);
4243 static int mem_cgroup_usage_register_event(struct mem_cgroup *memcg,
4244 struct eventfd_ctx *eventfd, const char *args)
4246 return __mem_cgroup_usage_register_event(memcg, eventfd, args, _MEM);
4249 static int memsw_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, _MEMSWAP);
4255 static void __mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4256 struct eventfd_ctx *eventfd, enum res_type type)
4258 struct mem_cgroup_thresholds *thresholds;
4259 struct mem_cgroup_threshold_ary *new;
4260 unsigned long usage;
4261 int i, j, size, entries;
4263 mutex_lock(&memcg->thresholds_lock);
4266 thresholds = &memcg->thresholds;
4267 usage = mem_cgroup_usage(memcg, false);
4268 } else if (type == _MEMSWAP) {
4269 thresholds = &memcg->memsw_thresholds;
4270 usage = mem_cgroup_usage(memcg, true);
4274 if (!thresholds->primary)
4277 /* Check if a threshold crossed before removing */
4278 __mem_cgroup_threshold(memcg, type == _MEMSWAP);
4280 /* Calculate new number of threshold */
4282 for (i = 0; i < thresholds->primary->size; i++) {
4283 if (thresholds->primary->entries[i].eventfd != eventfd)
4289 new = thresholds->spare;
4291 /* If no items related to eventfd have been cleared, nothing to do */
4295 /* Set thresholds array to NULL if we don't have thresholds */
4304 /* Copy thresholds and find current threshold */
4305 new->current_threshold = -1;
4306 for (i = 0, j = 0; i < thresholds->primary->size; i++) {
4307 if (thresholds->primary->entries[i].eventfd == eventfd)
4310 new->entries[j] = thresholds->primary->entries[i];
4311 if (new->entries[j].threshold <= usage) {
4313 * new->current_threshold will not be used
4314 * until rcu_assign_pointer(), so it's safe to increment
4317 ++new->current_threshold;
4323 /* Swap primary and spare array */
4324 thresholds->spare = thresholds->primary;
4326 rcu_assign_pointer(thresholds->primary, new);
4328 /* To be sure that nobody uses thresholds */
4331 /* If all events are unregistered, free the spare array */
4333 kfree(thresholds->spare);
4334 thresholds->spare = NULL;
4337 mutex_unlock(&memcg->thresholds_lock);
4340 static void mem_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4341 struct eventfd_ctx *eventfd)
4343 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEM);
4346 static void memsw_cgroup_usage_unregister_event(struct mem_cgroup *memcg,
4347 struct eventfd_ctx *eventfd)
4349 return __mem_cgroup_usage_unregister_event(memcg, eventfd, _MEMSWAP);
4352 static int mem_cgroup_oom_register_event(struct mem_cgroup *memcg,
4353 struct eventfd_ctx *eventfd, const char *args)
4355 struct mem_cgroup_eventfd_list *event;
4357 event = kmalloc(sizeof(*event), GFP_KERNEL);
4361 spin_lock(&memcg_oom_lock);
4363 event->eventfd = eventfd;
4364 list_add(&event->list, &memcg->oom_notify);
4366 /* already in OOM ? */
4367 if (memcg->under_oom)
4368 eventfd_signal(eventfd, 1);
4369 spin_unlock(&memcg_oom_lock);
4374 static void mem_cgroup_oom_unregister_event(struct mem_cgroup *memcg,
4375 struct eventfd_ctx *eventfd)
4377 struct mem_cgroup_eventfd_list *ev, *tmp;
4379 spin_lock(&memcg_oom_lock);
4381 list_for_each_entry_safe(ev, tmp, &memcg->oom_notify, list) {
4382 if (ev->eventfd == eventfd) {
4383 list_del(&ev->list);
4388 spin_unlock(&memcg_oom_lock);
4391 static int mem_cgroup_oom_control_read(struct seq_file *sf, void *v)
4393 struct mem_cgroup *memcg = mem_cgroup_from_seq(sf);
4395 seq_printf(sf, "oom_kill_disable %d\n", memcg->oom_kill_disable);
4396 seq_printf(sf, "under_oom %d\n", (bool)memcg->under_oom);
4397 seq_printf(sf, "oom_kill %lu\n",
4398 atomic_long_read(&memcg->memory_events[MEMCG_OOM_KILL]));
4402 static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
4403 struct cftype *cft, u64 val)
4405 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4407 /* cannot set to root cgroup and only 0 and 1 are allowed */
4408 if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1)))
4411 memcg->oom_kill_disable = val;
4413 memcg_oom_recover(memcg);
4418 #ifdef CONFIG_CGROUP_WRITEBACK
4420 #include <trace/events/writeback.h>
4422 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4424 return wb_domain_init(&memcg->cgwb_domain, gfp);
4427 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4429 wb_domain_exit(&memcg->cgwb_domain);
4432 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4434 wb_domain_size_changed(&memcg->cgwb_domain);
4437 struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
4439 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4441 if (!memcg->css.parent)
4444 return &memcg->cgwb_domain;
4448 * mem_cgroup_wb_stats - retrieve writeback related stats from its memcg
4449 * @wb: bdi_writeback in question
4450 * @pfilepages: out parameter for number of file pages
4451 * @pheadroom: out parameter for number of allocatable pages according to memcg
4452 * @pdirty: out parameter for number of dirty pages
4453 * @pwriteback: out parameter for number of pages under writeback
4455 * Determine the numbers of file, headroom, dirty, and writeback pages in
4456 * @wb's memcg. File, dirty and writeback are self-explanatory. Headroom
4457 * is a bit more involved.
4459 * A memcg's headroom is "min(max, high) - used". In the hierarchy, the
4460 * headroom is calculated as the lowest headroom of itself and the
4461 * ancestors. Note that this doesn't consider the actual amount of
4462 * available memory in the system. The caller should further cap
4463 * *@pheadroom accordingly.
4465 void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
4466 unsigned long *pheadroom, unsigned long *pdirty,
4467 unsigned long *pwriteback)
4469 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4470 struct mem_cgroup *parent;
4472 mem_cgroup_flush_stats();
4474 *pdirty = memcg_page_state(memcg, NR_FILE_DIRTY);
4475 *pwriteback = memcg_page_state(memcg, NR_WRITEBACK);
4476 *pfilepages = memcg_page_state(memcg, NR_INACTIVE_FILE) +
4477 memcg_page_state(memcg, NR_ACTIVE_FILE);
4479 *pheadroom = PAGE_COUNTER_MAX;
4480 while ((parent = parent_mem_cgroup(memcg))) {
4481 unsigned long ceiling = min(READ_ONCE(memcg->memory.max),
4482 READ_ONCE(memcg->memory.high));
4483 unsigned long used = page_counter_read(&memcg->memory);
4485 *pheadroom = min(*pheadroom, ceiling - min(ceiling, used));
4491 * Foreign dirty flushing
4493 * There's an inherent mismatch between memcg and writeback. The former
4494 * tracks ownership per-page while the latter per-inode. This was a
4495 * deliberate design decision because honoring per-page ownership in the
4496 * writeback path is complicated, may lead to higher CPU and IO overheads
4497 * and deemed unnecessary given that write-sharing an inode across
4498 * different cgroups isn't a common use-case.
4500 * Combined with inode majority-writer ownership switching, this works well
4501 * enough in most cases but there are some pathological cases. For
4502 * example, let's say there are two cgroups A and B which keep writing to
4503 * different but confined parts of the same inode. B owns the inode and
4504 * A's memory is limited far below B's. A's dirty ratio can rise enough to
4505 * trigger balance_dirty_pages() sleeps but B's can be low enough to avoid
4506 * triggering background writeback. A will be slowed down without a way to
4507 * make writeback of the dirty pages happen.
4509 * Conditions like the above can lead to a cgroup getting repeatedly and
4510 * severely throttled after making some progress after each
4511 * dirty_expire_interval while the underlying IO device is almost
4514 * Solving this problem completely requires matching the ownership tracking
4515 * granularities between memcg and writeback in either direction. However,
4516 * the more egregious behaviors can be avoided by simply remembering the
4517 * most recent foreign dirtying events and initiating remote flushes on
4518 * them when local writeback isn't enough to keep the memory clean enough.
4520 * The following two functions implement such mechanism. When a foreign
4521 * page - a page whose memcg and writeback ownerships don't match - is
4522 * dirtied, mem_cgroup_track_foreign_dirty() records the inode owning
4523 * bdi_writeback on the page owning memcg. When balance_dirty_pages()
4524 * decides that the memcg needs to sleep due to high dirty ratio, it calls
4525 * mem_cgroup_flush_foreign() which queues writeback on the recorded
4526 * foreign bdi_writebacks which haven't expired. Both the numbers of
4527 * recorded bdi_writebacks and concurrent in-flight foreign writebacks are
4528 * limited to MEMCG_CGWB_FRN_CNT.
4530 * The mechanism only remembers IDs and doesn't hold any object references.
4531 * As being wrong occasionally doesn't matter, updates and accesses to the
4532 * records are lockless and racy.
4534 void mem_cgroup_track_foreign_dirty_slowpath(struct folio *folio,
4535 struct bdi_writeback *wb)
4537 struct mem_cgroup *memcg = folio_memcg(folio);
4538 struct memcg_cgwb_frn *frn;
4539 u64 now = get_jiffies_64();
4540 u64 oldest_at = now;
4544 trace_track_foreign_dirty(folio, wb);
4547 * Pick the slot to use. If there is already a slot for @wb, keep
4548 * using it. If not replace the oldest one which isn't being
4551 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4552 frn = &memcg->cgwb_frn[i];
4553 if (frn->bdi_id == wb->bdi->id &&
4554 frn->memcg_id == wb->memcg_css->id)
4556 if (time_before64(frn->at, oldest_at) &&
4557 atomic_read(&frn->done.cnt) == 1) {
4559 oldest_at = frn->at;
4563 if (i < MEMCG_CGWB_FRN_CNT) {
4565 * Re-using an existing one. Update timestamp lazily to
4566 * avoid making the cacheline hot. We want them to be
4567 * reasonably up-to-date and significantly shorter than
4568 * dirty_expire_interval as that's what expires the record.
4569 * Use the shorter of 1s and dirty_expire_interval / 8.
4571 unsigned long update_intv =
4572 min_t(unsigned long, HZ,
4573 msecs_to_jiffies(dirty_expire_interval * 10) / 8);
4575 if (time_before64(frn->at, now - update_intv))
4577 } else if (oldest >= 0) {
4578 /* replace the oldest free one */
4579 frn = &memcg->cgwb_frn[oldest];
4580 frn->bdi_id = wb->bdi->id;
4581 frn->memcg_id = wb->memcg_css->id;
4586 /* issue foreign writeback flushes for recorded foreign dirtying events */
4587 void mem_cgroup_flush_foreign(struct bdi_writeback *wb)
4589 struct mem_cgroup *memcg = mem_cgroup_from_css(wb->memcg_css);
4590 unsigned long intv = msecs_to_jiffies(dirty_expire_interval * 10);
4591 u64 now = jiffies_64;
4594 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++) {
4595 struct memcg_cgwb_frn *frn = &memcg->cgwb_frn[i];
4598 * If the record is older than dirty_expire_interval,
4599 * writeback on it has already started. No need to kick it
4600 * off again. Also, don't start a new one if there's
4601 * already one in flight.
4603 if (time_after64(frn->at, now - intv) &&
4604 atomic_read(&frn->done.cnt) == 1) {
4606 trace_flush_foreign(wb, frn->bdi_id, frn->memcg_id);
4607 cgroup_writeback_by_id(frn->bdi_id, frn->memcg_id,
4608 WB_REASON_FOREIGN_FLUSH,
4614 #else /* CONFIG_CGROUP_WRITEBACK */
4616 static int memcg_wb_domain_init(struct mem_cgroup *memcg, gfp_t gfp)
4621 static void memcg_wb_domain_exit(struct mem_cgroup *memcg)
4625 static void memcg_wb_domain_size_changed(struct mem_cgroup *memcg)
4629 #endif /* CONFIG_CGROUP_WRITEBACK */
4632 * DO NOT USE IN NEW FILES.
4634 * "cgroup.event_control" implementation.
4636 * This is way over-engineered. It tries to support fully configurable
4637 * events for each user. Such level of flexibility is completely
4638 * unnecessary especially in the light of the planned unified hierarchy.
4640 * Please deprecate this and replace with something simpler if at all
4645 * Unregister event and free resources.
4647 * Gets called from workqueue.
4649 static void memcg_event_remove(struct work_struct *work)
4651 struct mem_cgroup_event *event =
4652 container_of(work, struct mem_cgroup_event, remove);
4653 struct mem_cgroup *memcg = event->memcg;
4655 remove_wait_queue(event->wqh, &event->wait);
4657 event->unregister_event(memcg, event->eventfd);
4659 /* Notify userspace the event is going away. */
4660 eventfd_signal(event->eventfd, 1);
4662 eventfd_ctx_put(event->eventfd);
4664 css_put(&memcg->css);
4668 * Gets called on EPOLLHUP on eventfd when user closes it.
4670 * Called with wqh->lock held and interrupts disabled.
4672 static int memcg_event_wake(wait_queue_entry_t *wait, unsigned mode,
4673 int sync, void *key)
4675 struct mem_cgroup_event *event =
4676 container_of(wait, struct mem_cgroup_event, wait);
4677 struct mem_cgroup *memcg = event->memcg;
4678 __poll_t flags = key_to_poll(key);
4680 if (flags & EPOLLHUP) {
4682 * If the event has been detached at cgroup removal, we
4683 * can simply return knowing the other side will cleanup
4686 * We can't race against event freeing since the other
4687 * side will require wqh->lock via remove_wait_queue(),
4690 spin_lock(&memcg->event_list_lock);
4691 if (!list_empty(&event->list)) {
4692 list_del_init(&event->list);
4694 * We are in atomic context, but cgroup_event_remove()
4695 * may sleep, so we have to call it in workqueue.
4697 schedule_work(&event->remove);
4699 spin_unlock(&memcg->event_list_lock);
4705 static void memcg_event_ptable_queue_proc(struct file *file,
4706 wait_queue_head_t *wqh, poll_table *pt)
4708 struct mem_cgroup_event *event =
4709 container_of(pt, struct mem_cgroup_event, pt);
4712 add_wait_queue(wqh, &event->wait);
4716 * DO NOT USE IN NEW FILES.
4718 * Parse input and register new cgroup event handler.
4720 * Input must be in format '<event_fd> <control_fd> <args>'.
4721 * Interpretation of args is defined by control file implementation.
4723 static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
4724 char *buf, size_t nbytes, loff_t off)
4726 struct cgroup_subsys_state *css = of_css(of);
4727 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
4728 struct mem_cgroup_event *event;
4729 struct cgroup_subsys_state *cfile_css;
4730 unsigned int efd, cfd;
4737 if (IS_ENABLED(CONFIG_PREEMPT_RT))
4740 buf = strstrip(buf);
4742 efd = simple_strtoul(buf, &endp, 10);
4747 cfd = simple_strtoul(buf, &endp, 10);
4748 if ((*endp != ' ') && (*endp != '\0'))
4752 event = kzalloc(sizeof(*event), GFP_KERNEL);
4756 event->memcg = memcg;
4757 INIT_LIST_HEAD(&event->list);
4758 init_poll_funcptr(&event->pt, memcg_event_ptable_queue_proc);
4759 init_waitqueue_func_entry(&event->wait, memcg_event_wake);
4760 INIT_WORK(&event->remove, memcg_event_remove);
4768 event->eventfd = eventfd_ctx_fileget(efile.file);
4769 if (IS_ERR(event->eventfd)) {
4770 ret = PTR_ERR(event->eventfd);
4777 goto out_put_eventfd;
4780 /* the process need read permission on control file */
4781 /* AV: shouldn't we check that it's been opened for read instead? */
4782 ret = file_permission(cfile.file, MAY_READ);
4787 * Determine the event callbacks and set them in @event. This used
4788 * to be done via struct cftype but cgroup core no longer knows
4789 * about these events. The following is crude but the whole thing
4790 * is for compatibility anyway.
4792 * DO NOT ADD NEW FILES.
4794 name = cfile.file->f_path.dentry->d_name.name;
4796 if (!strcmp(name, "memory.usage_in_bytes")) {
4797 event->register_event = mem_cgroup_usage_register_event;
4798 event->unregister_event = mem_cgroup_usage_unregister_event;
4799 } else if (!strcmp(name, "memory.oom_control")) {
4800 event->register_event = mem_cgroup_oom_register_event;
4801 event->unregister_event = mem_cgroup_oom_unregister_event;
4802 } else if (!strcmp(name, "memory.pressure_level")) {
4803 event->register_event = vmpressure_register_event;
4804 event->unregister_event = vmpressure_unregister_event;
4805 } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) {
4806 event->register_event = memsw_cgroup_usage_register_event;
4807 event->unregister_event = memsw_cgroup_usage_unregister_event;
4814 * Verify @cfile should belong to @css. Also, remaining events are
4815 * automatically removed on cgroup destruction but the removal is
4816 * asynchronous, so take an extra ref on @css.
4818 cfile_css = css_tryget_online_from_dir(cfile.file->f_path.dentry->d_parent,
4819 &memory_cgrp_subsys);
4821 if (IS_ERR(cfile_css))
4823 if (cfile_css != css) {
4828 ret = event->register_event(memcg, event->eventfd, buf);
4832 vfs_poll(efile.file, &event->pt);
4834 spin_lock_irq(&memcg->event_list_lock);
4835 list_add(&event->list, &memcg->event_list);
4836 spin_unlock_irq(&memcg->event_list_lock);
4848 eventfd_ctx_put(event->eventfd);
4857 #if defined(CONFIG_MEMCG_KMEM) && (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4858 static int mem_cgroup_slab_show(struct seq_file *m, void *p)
4862 * Please, take a look at tools/cgroup/memcg_slabinfo.py .
4868 static struct cftype mem_cgroup_legacy_files[] = {
4870 .name = "usage_in_bytes",
4871 .private = MEMFILE_PRIVATE(_MEM, RES_USAGE),
4872 .read_u64 = mem_cgroup_read_u64,
4875 .name = "max_usage_in_bytes",
4876 .private = MEMFILE_PRIVATE(_MEM, RES_MAX_USAGE),
4877 .write = mem_cgroup_reset,
4878 .read_u64 = mem_cgroup_read_u64,
4881 .name = "limit_in_bytes",
4882 .private = MEMFILE_PRIVATE(_MEM, RES_LIMIT),
4883 .write = mem_cgroup_write,
4884 .read_u64 = mem_cgroup_read_u64,
4887 .name = "soft_limit_in_bytes",
4888 .private = MEMFILE_PRIVATE(_MEM, RES_SOFT_LIMIT),
4889 .write = mem_cgroup_write,
4890 .read_u64 = mem_cgroup_read_u64,
4894 .private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
4895 .write = mem_cgroup_reset,
4896 .read_u64 = mem_cgroup_read_u64,
4900 .seq_show = memcg_stat_show,
4903 .name = "force_empty",
4904 .write = mem_cgroup_force_empty_write,
4907 .name = "use_hierarchy",
4908 .write_u64 = mem_cgroup_hierarchy_write,
4909 .read_u64 = mem_cgroup_hierarchy_read,
4912 .name = "cgroup.event_control", /* XXX: for compat */
4913 .write = memcg_write_event_control,
4914 .flags = CFTYPE_NO_PREFIX | CFTYPE_WORLD_WRITABLE,
4917 .name = "swappiness",
4918 .read_u64 = mem_cgroup_swappiness_read,
4919 .write_u64 = mem_cgroup_swappiness_write,
4922 .name = "move_charge_at_immigrate",
4923 .read_u64 = mem_cgroup_move_charge_read,
4924 .write_u64 = mem_cgroup_move_charge_write,
4927 .name = "oom_control",
4928 .seq_show = mem_cgroup_oom_control_read,
4929 .write_u64 = mem_cgroup_oom_control_write,
4932 .name = "pressure_level",
4936 .name = "numa_stat",
4937 .seq_show = memcg_numa_stat_show,
4941 .name = "kmem.limit_in_bytes",
4942 .private = MEMFILE_PRIVATE(_KMEM, RES_LIMIT),
4943 .write = mem_cgroup_write,
4944 .read_u64 = mem_cgroup_read_u64,
4947 .name = "kmem.usage_in_bytes",
4948 .private = MEMFILE_PRIVATE(_KMEM, RES_USAGE),
4949 .read_u64 = mem_cgroup_read_u64,
4952 .name = "kmem.failcnt",
4953 .private = MEMFILE_PRIVATE(_KMEM, RES_FAILCNT),
4954 .write = mem_cgroup_reset,
4955 .read_u64 = mem_cgroup_read_u64,
4958 .name = "kmem.max_usage_in_bytes",
4959 .private = MEMFILE_PRIVATE(_KMEM, RES_MAX_USAGE),
4960 .write = mem_cgroup_reset,
4961 .read_u64 = mem_cgroup_read_u64,
4963 #if defined(CONFIG_MEMCG_KMEM) && \
4964 (defined(CONFIG_SLAB) || defined(CONFIG_SLUB_DEBUG))
4966 .name = "kmem.slabinfo",
4967 .seq_show = mem_cgroup_slab_show,
4971 .name = "kmem.tcp.limit_in_bytes",
4972 .private = MEMFILE_PRIVATE(_TCP, RES_LIMIT),
4973 .write = mem_cgroup_write,
4974 .read_u64 = mem_cgroup_read_u64,
4977 .name = "kmem.tcp.usage_in_bytes",
4978 .private = MEMFILE_PRIVATE(_TCP, RES_USAGE),
4979 .read_u64 = mem_cgroup_read_u64,
4982 .name = "kmem.tcp.failcnt",
4983 .private = MEMFILE_PRIVATE(_TCP, RES_FAILCNT),
4984 .write = mem_cgroup_reset,
4985 .read_u64 = mem_cgroup_read_u64,
4988 .name = "kmem.tcp.max_usage_in_bytes",
4989 .private = MEMFILE_PRIVATE(_TCP, RES_MAX_USAGE),
4990 .write = mem_cgroup_reset,
4991 .read_u64 = mem_cgroup_read_u64,
4993 { }, /* terminate */
4997 * Private memory cgroup IDR
4999 * Swap-out records and page cache shadow entries need to store memcg
5000 * references in constrained space, so we maintain an ID space that is
5001 * limited to 16 bit (MEM_CGROUP_ID_MAX), limiting the total number of
5002 * memory-controlled cgroups to 64k.
5004 * However, there usually are many references to the offline CSS after
5005 * the cgroup has been destroyed, such as page cache or reclaimable
5006 * slab objects, that don't need to hang on to the ID. We want to keep
5007 * those dead CSS from occupying IDs, or we might quickly exhaust the
5008 * relatively small ID space and prevent the creation of new cgroups
5009 * even when there are much fewer than 64k cgroups - possibly none.
5011 * Maintain a private 16-bit ID space for memcg, and allow the ID to
5012 * be freed and recycled when it's no longer needed, which is usually
5013 * when the CSS is offlined.
5015 * The only exception to that are records of swapped out tmpfs/shmem
5016 * pages that need to be attributed to live ancestors on swapin. But
5017 * those references are manageable from userspace.
5020 static DEFINE_IDR(mem_cgroup_idr);
5022 static void mem_cgroup_id_remove(struct mem_cgroup *memcg)
5024 if (memcg->id.id > 0) {
5025 idr_remove(&mem_cgroup_idr, memcg->id.id);
5030 static void __maybe_unused mem_cgroup_id_get_many(struct mem_cgroup *memcg,
5033 refcount_add(n, &memcg->id.ref);
5036 static void mem_cgroup_id_put_many(struct mem_cgroup *memcg, unsigned int n)
5038 if (refcount_sub_and_test(n, &memcg->id.ref)) {
5039 mem_cgroup_id_remove(memcg);
5041 /* Memcg ID pins CSS */
5042 css_put(&memcg->css);
5046 static inline void mem_cgroup_id_put(struct mem_cgroup *memcg)
5048 mem_cgroup_id_put_many(memcg, 1);
5052 * mem_cgroup_from_id - look up a memcg from a memcg id
5053 * @id: the memcg id to look up
5055 * Caller must hold rcu_read_lock().
5057 struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
5059 WARN_ON_ONCE(!rcu_read_lock_held());
5060 return idr_find(&mem_cgroup_idr, id);
5063 static int alloc_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5065 struct mem_cgroup_per_node *pn;
5067 pn = kzalloc_node(sizeof(*pn), GFP_KERNEL, node);
5071 pn->lruvec_stats_percpu = alloc_percpu_gfp(struct lruvec_stats_percpu,
5072 GFP_KERNEL_ACCOUNT);
5073 if (!pn->lruvec_stats_percpu) {
5078 lruvec_init(&pn->lruvec);
5081 memcg->nodeinfo[node] = pn;
5085 static void free_mem_cgroup_per_node_info(struct mem_cgroup *memcg, int node)
5087 struct mem_cgroup_per_node *pn = memcg->nodeinfo[node];
5092 free_percpu(pn->lruvec_stats_percpu);
5096 static void __mem_cgroup_free(struct mem_cgroup *memcg)
5101 free_mem_cgroup_per_node_info(memcg, node);
5102 free_percpu(memcg->vmstats_percpu);
5106 static void mem_cgroup_free(struct mem_cgroup *memcg)
5108 memcg_wb_domain_exit(memcg);
5109 __mem_cgroup_free(memcg);
5112 static struct mem_cgroup *mem_cgroup_alloc(void)
5114 struct mem_cgroup *memcg;
5116 int __maybe_unused i;
5117 long error = -ENOMEM;
5119 memcg = kzalloc(struct_size(memcg, nodeinfo, nr_node_ids), GFP_KERNEL);
5121 return ERR_PTR(error);
5123 memcg->id.id = idr_alloc(&mem_cgroup_idr, NULL,
5124 1, MEM_CGROUP_ID_MAX + 1, GFP_KERNEL);
5125 if (memcg->id.id < 0) {
5126 error = memcg->id.id;
5130 memcg->vmstats_percpu = alloc_percpu_gfp(struct memcg_vmstats_percpu,
5131 GFP_KERNEL_ACCOUNT);
5132 if (!memcg->vmstats_percpu)
5136 if (alloc_mem_cgroup_per_node_info(memcg, node))
5139 if (memcg_wb_domain_init(memcg, GFP_KERNEL))
5142 INIT_WORK(&memcg->high_work, high_work_func);
5143 INIT_LIST_HEAD(&memcg->oom_notify);
5144 mutex_init(&memcg->thresholds_lock);
5145 spin_lock_init(&memcg->move_lock);
5146 vmpressure_init(&memcg->vmpressure);
5147 INIT_LIST_HEAD(&memcg->event_list);
5148 spin_lock_init(&memcg->event_list_lock);
5149 memcg->socket_pressure = jiffies;
5150 #ifdef CONFIG_MEMCG_KMEM
5151 memcg->kmemcg_id = -1;
5152 INIT_LIST_HEAD(&memcg->objcg_list);
5154 #ifdef CONFIG_CGROUP_WRITEBACK
5155 INIT_LIST_HEAD(&memcg->cgwb_list);
5156 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5157 memcg->cgwb_frn[i].done =
5158 __WB_COMPLETION_INIT(&memcg_cgwb_frn_waitq);
5160 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5161 spin_lock_init(&memcg->deferred_split_queue.split_queue_lock);
5162 INIT_LIST_HEAD(&memcg->deferred_split_queue.split_queue);
5163 memcg->deferred_split_queue.split_queue_len = 0;
5165 idr_replace(&mem_cgroup_idr, memcg, memcg->id.id);
5168 mem_cgroup_id_remove(memcg);
5169 __mem_cgroup_free(memcg);
5170 return ERR_PTR(error);
5173 static struct cgroup_subsys_state * __ref
5174 mem_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
5176 struct mem_cgroup *parent = mem_cgroup_from_css(parent_css);
5177 struct mem_cgroup *memcg, *old_memcg;
5179 old_memcg = set_active_memcg(parent);
5180 memcg = mem_cgroup_alloc();
5181 set_active_memcg(old_memcg);
5183 return ERR_CAST(memcg);
5185 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5186 memcg->soft_limit = PAGE_COUNTER_MAX;
5187 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_ZSWAP)
5188 memcg->zswap_max = PAGE_COUNTER_MAX;
5190 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5192 memcg->swappiness = mem_cgroup_swappiness(parent);
5193 memcg->oom_kill_disable = parent->oom_kill_disable;
5195 page_counter_init(&memcg->memory, &parent->memory);
5196 page_counter_init(&memcg->swap, &parent->swap);
5197 page_counter_init(&memcg->kmem, &parent->kmem);
5198 page_counter_init(&memcg->tcpmem, &parent->tcpmem);
5200 page_counter_init(&memcg->memory, NULL);
5201 page_counter_init(&memcg->swap, NULL);
5202 page_counter_init(&memcg->kmem, NULL);
5203 page_counter_init(&memcg->tcpmem, NULL);
5205 root_mem_cgroup = memcg;
5209 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5210 static_branch_inc(&memcg_sockets_enabled_key);
5215 static int mem_cgroup_css_online(struct cgroup_subsys_state *css)
5217 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5219 if (memcg_online_kmem(memcg))
5223 * A memcg must be visible for expand_shrinker_info()
5224 * by the time the maps are allocated. So, we allocate maps
5225 * here, when for_each_mem_cgroup() can't skip it.
5227 if (alloc_shrinker_info(memcg))
5230 /* Online state pins memcg ID, memcg ID pins CSS */
5231 refcount_set(&memcg->id.ref, 1);
5234 if (unlikely(mem_cgroup_is_root(memcg)))
5235 queue_delayed_work(system_unbound_wq, &stats_flush_dwork,
5239 memcg_offline_kmem(memcg);
5241 mem_cgroup_id_remove(memcg);
5245 static void mem_cgroup_css_offline(struct cgroup_subsys_state *css)
5247 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5248 struct mem_cgroup_event *event, *tmp;
5251 * Unregister events and notify userspace.
5252 * Notify userspace about cgroup removing only after rmdir of cgroup
5253 * directory to avoid race between userspace and kernelspace.
5255 spin_lock_irq(&memcg->event_list_lock);
5256 list_for_each_entry_safe(event, tmp, &memcg->event_list, list) {
5257 list_del_init(&event->list);
5258 schedule_work(&event->remove);
5260 spin_unlock_irq(&memcg->event_list_lock);
5262 page_counter_set_min(&memcg->memory, 0);
5263 page_counter_set_low(&memcg->memory, 0);
5265 memcg_offline_kmem(memcg);
5266 reparent_shrinker_deferred(memcg);
5267 wb_memcg_offline(memcg);
5269 drain_all_stock(memcg);
5271 mem_cgroup_id_put(memcg);
5274 static void mem_cgroup_css_released(struct cgroup_subsys_state *css)
5276 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5278 invalidate_reclaim_iterators(memcg);
5281 static void mem_cgroup_css_free(struct cgroup_subsys_state *css)
5283 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5284 int __maybe_unused i;
5286 #ifdef CONFIG_CGROUP_WRITEBACK
5287 for (i = 0; i < MEMCG_CGWB_FRN_CNT; i++)
5288 wb_wait_for_completion(&memcg->cgwb_frn[i].done);
5290 if (cgroup_subsys_on_dfl(memory_cgrp_subsys) && !cgroup_memory_nosocket)
5291 static_branch_dec(&memcg_sockets_enabled_key);
5293 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_active)
5294 static_branch_dec(&memcg_sockets_enabled_key);
5296 vmpressure_cleanup(&memcg->vmpressure);
5297 cancel_work_sync(&memcg->high_work);
5298 mem_cgroup_remove_from_trees(memcg);
5299 free_shrinker_info(memcg);
5300 mem_cgroup_free(memcg);
5304 * mem_cgroup_css_reset - reset the states of a mem_cgroup
5305 * @css: the target css
5307 * Reset the states of the mem_cgroup associated with @css. This is
5308 * invoked when the userland requests disabling on the default hierarchy
5309 * but the memcg is pinned through dependency. The memcg should stop
5310 * applying policies and should revert to the vanilla state as it may be
5311 * made visible again.
5313 * The current implementation only resets the essential configurations.
5314 * This needs to be expanded to cover all the visible parts.
5316 static void mem_cgroup_css_reset(struct cgroup_subsys_state *css)
5318 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5320 page_counter_set_max(&memcg->memory, PAGE_COUNTER_MAX);
5321 page_counter_set_max(&memcg->swap, PAGE_COUNTER_MAX);
5322 page_counter_set_max(&memcg->kmem, PAGE_COUNTER_MAX);
5323 page_counter_set_max(&memcg->tcpmem, PAGE_COUNTER_MAX);
5324 page_counter_set_min(&memcg->memory, 0);
5325 page_counter_set_low(&memcg->memory, 0);
5326 page_counter_set_high(&memcg->memory, PAGE_COUNTER_MAX);
5327 memcg->soft_limit = PAGE_COUNTER_MAX;
5328 page_counter_set_high(&memcg->swap, PAGE_COUNTER_MAX);
5329 memcg_wb_domain_size_changed(memcg);
5332 static void mem_cgroup_css_rstat_flush(struct cgroup_subsys_state *css, int cpu)
5334 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
5335 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
5336 struct memcg_vmstats_percpu *statc;
5340 statc = per_cpu_ptr(memcg->vmstats_percpu, cpu);
5342 for (i = 0; i < MEMCG_NR_STAT; i++) {
5344 * Collect the aggregated propagation counts of groups
5345 * below us. We're in a per-cpu loop here and this is
5346 * a global counter, so the first cycle will get them.
5348 delta = memcg->vmstats.state_pending[i];
5350 memcg->vmstats.state_pending[i] = 0;
5352 /* Add CPU changes on this level since the last flush */
5353 v = READ_ONCE(statc->state[i]);
5354 if (v != statc->state_prev[i]) {
5355 delta += v - statc->state_prev[i];
5356 statc->state_prev[i] = v;
5362 /* Aggregate counts on this level and propagate upwards */
5363 memcg->vmstats.state[i] += delta;
5365 parent->vmstats.state_pending[i] += delta;
5368 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
5369 delta = memcg->vmstats.events_pending[i];
5371 memcg->vmstats.events_pending[i] = 0;
5373 v = READ_ONCE(statc->events[i]);
5374 if (v != statc->events_prev[i]) {
5375 delta += v - statc->events_prev[i];
5376 statc->events_prev[i] = v;
5382 memcg->vmstats.events[i] += delta;
5384 parent->vmstats.events_pending[i] += delta;
5387 for_each_node_state(nid, N_MEMORY) {
5388 struct mem_cgroup_per_node *pn = memcg->nodeinfo[nid];
5389 struct mem_cgroup_per_node *ppn = NULL;
5390 struct lruvec_stats_percpu *lstatc;
5393 ppn = parent->nodeinfo[nid];
5395 lstatc = per_cpu_ptr(pn->lruvec_stats_percpu, cpu);
5397 for (i = 0; i < NR_VM_NODE_STAT_ITEMS; i++) {
5398 delta = pn->lruvec_stats.state_pending[i];
5400 pn->lruvec_stats.state_pending[i] = 0;
5402 v = READ_ONCE(lstatc->state[i]);
5403 if (v != lstatc->state_prev[i]) {
5404 delta += v - lstatc->state_prev[i];
5405 lstatc->state_prev[i] = v;
5411 pn->lruvec_stats.state[i] += delta;
5413 ppn->lruvec_stats.state_pending[i] += delta;
5419 /* Handlers for move charge at task migration. */
5420 static int mem_cgroup_do_precharge(unsigned long count)
5424 /* Try a single bulk charge without reclaim first, kswapd may wake */
5425 ret = try_charge(mc.to, GFP_KERNEL & ~__GFP_DIRECT_RECLAIM, count);
5427 mc.precharge += count;
5431 /* Try charges one by one with reclaim, but do not retry */
5433 ret = try_charge(mc.to, GFP_KERNEL | __GFP_NORETRY, 1);
5447 enum mc_target_type {
5454 static struct page *mc_handle_present_pte(struct vm_area_struct *vma,
5455 unsigned long addr, pte_t ptent)
5457 struct page *page = vm_normal_page(vma, addr, ptent);
5459 if (!page || !page_mapped(page))
5461 if (PageAnon(page)) {
5462 if (!(mc.flags & MOVE_ANON))
5465 if (!(mc.flags & MOVE_FILE))
5468 if (!get_page_unless_zero(page))
5474 #if defined(CONFIG_SWAP) || defined(CONFIG_DEVICE_PRIVATE)
5475 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5476 pte_t ptent, swp_entry_t *entry)
5478 struct page *page = NULL;
5479 swp_entry_t ent = pte_to_swp_entry(ptent);
5481 if (!(mc.flags & MOVE_ANON))
5485 * Handle device private pages that are not accessible by the CPU, but
5486 * stored as special swap entries in the page table.
5488 if (is_device_private_entry(ent)) {
5489 page = pfn_swap_entry_to_page(ent);
5490 if (!get_page_unless_zero(page))
5495 if (non_swap_entry(ent))
5499 * Because lookup_swap_cache() updates some statistics counter,
5500 * we call find_get_page() with swapper_space directly.
5502 page = find_get_page(swap_address_space(ent), swp_offset(ent));
5503 entry->val = ent.val;
5508 static struct page *mc_handle_swap_pte(struct vm_area_struct *vma,
5509 pte_t ptent, swp_entry_t *entry)
5515 static struct page *mc_handle_file_pte(struct vm_area_struct *vma,
5516 unsigned long addr, pte_t ptent)
5518 if (!vma->vm_file) /* anonymous vma */
5520 if (!(mc.flags & MOVE_FILE))
5523 /* page is moved even if it's not RSS of this task(page-faulted). */
5524 /* shmem/tmpfs may report page out on swap: account for that too. */
5525 return find_get_incore_page(vma->vm_file->f_mapping,
5526 linear_page_index(vma, addr));
5530 * mem_cgroup_move_account - move account of the page
5532 * @compound: charge the page as compound or small page
5533 * @from: mem_cgroup which the page is moved from.
5534 * @to: mem_cgroup which the page is moved to. @from != @to.
5536 * The caller must make sure the page is not on LRU (isolate_page() is useful.)
5538 * This function doesn't do "charge" to new cgroup and doesn't do "uncharge"
5541 static int mem_cgroup_move_account(struct page *page,
5543 struct mem_cgroup *from,
5544 struct mem_cgroup *to)
5546 struct folio *folio = page_folio(page);
5547 struct lruvec *from_vec, *to_vec;
5548 struct pglist_data *pgdat;
5549 unsigned int nr_pages = compound ? folio_nr_pages(folio) : 1;
5552 VM_BUG_ON(from == to);
5553 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
5554 VM_BUG_ON(compound && !folio_test_large(folio));
5557 * Prevent mem_cgroup_migrate() from looking at
5558 * page's memory cgroup of its source page while we change it.
5561 if (!folio_trylock(folio))
5565 if (folio_memcg(folio) != from)
5568 pgdat = folio_pgdat(folio);
5569 from_vec = mem_cgroup_lruvec(from, pgdat);
5570 to_vec = mem_cgroup_lruvec(to, pgdat);
5572 folio_memcg_lock(folio);
5574 if (folio_test_anon(folio)) {
5575 if (folio_mapped(folio)) {
5576 __mod_lruvec_state(from_vec, NR_ANON_MAPPED, -nr_pages);
5577 __mod_lruvec_state(to_vec, NR_ANON_MAPPED, nr_pages);
5578 if (folio_test_transhuge(folio)) {
5579 __mod_lruvec_state(from_vec, NR_ANON_THPS,
5581 __mod_lruvec_state(to_vec, NR_ANON_THPS,
5586 __mod_lruvec_state(from_vec, NR_FILE_PAGES, -nr_pages);
5587 __mod_lruvec_state(to_vec, NR_FILE_PAGES, nr_pages);
5589 if (folio_test_swapbacked(folio)) {
5590 __mod_lruvec_state(from_vec, NR_SHMEM, -nr_pages);
5591 __mod_lruvec_state(to_vec, NR_SHMEM, nr_pages);
5594 if (folio_mapped(folio)) {
5595 __mod_lruvec_state(from_vec, NR_FILE_MAPPED, -nr_pages);
5596 __mod_lruvec_state(to_vec, NR_FILE_MAPPED, nr_pages);
5599 if (folio_test_dirty(folio)) {
5600 struct address_space *mapping = folio_mapping(folio);
5602 if (mapping_can_writeback(mapping)) {
5603 __mod_lruvec_state(from_vec, NR_FILE_DIRTY,
5605 __mod_lruvec_state(to_vec, NR_FILE_DIRTY,
5611 if (folio_test_writeback(folio)) {
5612 __mod_lruvec_state(from_vec, NR_WRITEBACK, -nr_pages);
5613 __mod_lruvec_state(to_vec, NR_WRITEBACK, nr_pages);
5617 * All state has been migrated, let's switch to the new memcg.
5619 * It is safe to change page's memcg here because the page
5620 * is referenced, charged, isolated, and locked: we can't race
5621 * with (un)charging, migration, LRU putback, or anything else
5622 * that would rely on a stable page's memory cgroup.
5624 * Note that lock_page_memcg is a memcg lock, not a page lock,
5625 * to save space. As soon as we switch page's memory cgroup to a
5626 * new memcg that isn't locked, the above state can change
5627 * concurrently again. Make sure we're truly done with it.
5632 css_put(&from->css);
5634 folio->memcg_data = (unsigned long)to;
5636 __folio_memcg_unlock(from);
5639 nid = folio_nid(folio);
5641 local_irq_disable();
5642 mem_cgroup_charge_statistics(to, nr_pages);
5643 memcg_check_events(to, nid);
5644 mem_cgroup_charge_statistics(from, -nr_pages);
5645 memcg_check_events(from, nid);
5648 folio_unlock(folio);
5654 * get_mctgt_type - get target type of moving charge
5655 * @vma: the vma the pte to be checked belongs
5656 * @addr: the address corresponding to the pte to be checked
5657 * @ptent: the pte to be checked
5658 * @target: the pointer the target page or swap ent will be stored(can be NULL)
5661 * 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5662 * 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5663 * move charge. if @target is not NULL, the page is stored in target->page
5664 * with extra refcnt got(Callers should handle it).
5665 * 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5666 * target for charge migration. if @target is not NULL, the entry is stored
5668 * 3(MC_TARGET_DEVICE): like MC_TARGET_PAGE but page is MEMORY_DEVICE_PRIVATE
5669 * (so ZONE_DEVICE page and thus not on the lru).
5670 * For now we such page is charge like a regular page would be as for all
5671 * intent and purposes it is just special memory taking the place of a
5674 * See Documentations/vm/hmm.txt and include/linux/hmm.h
5676 * Called with pte lock held.
5679 static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
5680 unsigned long addr, pte_t ptent, union mc_target *target)
5682 struct page *page = NULL;
5683 enum mc_target_type ret = MC_TARGET_NONE;
5684 swp_entry_t ent = { .val = 0 };
5686 if (pte_present(ptent))
5687 page = mc_handle_present_pte(vma, addr, ptent);
5688 else if (pte_none_mostly(ptent))
5690 * PTE markers should be treated as a none pte here, separated
5691 * from other swap handling below.
5693 page = mc_handle_file_pte(vma, addr, ptent);
5694 else if (is_swap_pte(ptent))
5695 page = mc_handle_swap_pte(vma, ptent, &ent);
5697 if (!page && !ent.val)
5701 * Do only loose check w/o serialization.
5702 * mem_cgroup_move_account() checks the page is valid or
5703 * not under LRU exclusion.
5705 if (page_memcg(page) == mc.from) {
5706 ret = MC_TARGET_PAGE;
5707 if (is_device_private_page(page))
5708 ret = MC_TARGET_DEVICE;
5710 target->page = page;
5712 if (!ret || !target)
5716 * There is a swap entry and a page doesn't exist or isn't charged.
5717 * But we cannot move a tail-page in a THP.
5719 if (ent.val && !ret && (!page || !PageTransCompound(page)) &&
5720 mem_cgroup_id(mc.from) == lookup_swap_cgroup_id(ent)) {
5721 ret = MC_TARGET_SWAP;
5728 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
5730 * We don't consider PMD mapped swapping or file mapped pages because THP does
5731 * not support them for now.
5732 * Caller should make sure that pmd_trans_huge(pmd) is true.
5734 static enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5735 unsigned long addr, pmd_t pmd, union mc_target *target)
5737 struct page *page = NULL;
5738 enum mc_target_type ret = MC_TARGET_NONE;
5740 if (unlikely(is_swap_pmd(pmd))) {
5741 VM_BUG_ON(thp_migration_supported() &&
5742 !is_pmd_migration_entry(pmd));
5745 page = pmd_page(pmd);
5746 VM_BUG_ON_PAGE(!page || !PageHead(page), page);
5747 if (!(mc.flags & MOVE_ANON))
5749 if (page_memcg(page) == mc.from) {
5750 ret = MC_TARGET_PAGE;
5753 target->page = page;
5759 static inline enum mc_target_type get_mctgt_type_thp(struct vm_area_struct *vma,
5760 unsigned long addr, pmd_t pmd, union mc_target *target)
5762 return MC_TARGET_NONE;
5766 static int mem_cgroup_count_precharge_pte_range(pmd_t *pmd,
5767 unsigned long addr, unsigned long end,
5768 struct mm_walk *walk)
5770 struct vm_area_struct *vma = walk->vma;
5774 ptl = pmd_trans_huge_lock(pmd, vma);
5777 * Note their can not be MC_TARGET_DEVICE for now as we do not
5778 * support transparent huge page with MEMORY_DEVICE_PRIVATE but
5779 * this might change.
5781 if (get_mctgt_type_thp(vma, addr, *pmd, NULL) == MC_TARGET_PAGE)
5782 mc.precharge += HPAGE_PMD_NR;
5787 if (pmd_trans_unstable(pmd))
5789 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
5790 for (; addr != end; pte++, addr += PAGE_SIZE)
5791 if (get_mctgt_type(vma, addr, *pte, NULL))
5792 mc.precharge++; /* increment precharge temporarily */
5793 pte_unmap_unlock(pte - 1, ptl);
5799 static const struct mm_walk_ops precharge_walk_ops = {
5800 .pmd_entry = mem_cgroup_count_precharge_pte_range,
5803 static unsigned long mem_cgroup_count_precharge(struct mm_struct *mm)
5805 unsigned long precharge;
5808 walk_page_range(mm, 0, mm->highest_vm_end, &precharge_walk_ops, NULL);
5809 mmap_read_unlock(mm);
5811 precharge = mc.precharge;
5817 static int mem_cgroup_precharge_mc(struct mm_struct *mm)
5819 unsigned long precharge = mem_cgroup_count_precharge(mm);
5821 VM_BUG_ON(mc.moving_task);
5822 mc.moving_task = current;
5823 return mem_cgroup_do_precharge(precharge);
5826 /* cancels all extra charges on mc.from and mc.to, and wakes up all waiters. */
5827 static void __mem_cgroup_clear_mc(void)
5829 struct mem_cgroup *from = mc.from;
5830 struct mem_cgroup *to = mc.to;
5832 /* we must uncharge all the leftover precharges from mc.to */
5834 cancel_charge(mc.to, mc.precharge);
5838 * we didn't uncharge from mc.from at mem_cgroup_move_account(), so
5839 * we must uncharge here.
5841 if (mc.moved_charge) {
5842 cancel_charge(mc.from, mc.moved_charge);
5843 mc.moved_charge = 0;
5845 /* we must fixup refcnts and charges */
5846 if (mc.moved_swap) {
5847 /* uncharge swap account from the old cgroup */
5848 if (!mem_cgroup_is_root(mc.from))
5849 page_counter_uncharge(&mc.from->memsw, mc.moved_swap);
5851 mem_cgroup_id_put_many(mc.from, mc.moved_swap);
5854 * we charged both to->memory and to->memsw, so we
5855 * should uncharge to->memory.
5857 if (!mem_cgroup_is_root(mc.to))
5858 page_counter_uncharge(&mc.to->memory, mc.moved_swap);
5862 memcg_oom_recover(from);
5863 memcg_oom_recover(to);
5864 wake_up_all(&mc.waitq);
5867 static void mem_cgroup_clear_mc(void)
5869 struct mm_struct *mm = mc.mm;
5872 * we must clear moving_task before waking up waiters at the end of
5875 mc.moving_task = NULL;
5876 __mem_cgroup_clear_mc();
5877 spin_lock(&mc.lock);
5881 spin_unlock(&mc.lock);
5886 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
5888 struct cgroup_subsys_state *css;
5889 struct mem_cgroup *memcg = NULL; /* unneeded init to make gcc happy */
5890 struct mem_cgroup *from;
5891 struct task_struct *leader, *p;
5892 struct mm_struct *mm;
5893 unsigned long move_flags;
5896 /* charge immigration isn't supported on the default hierarchy */
5897 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
5901 * Multi-process migrations only happen on the default hierarchy
5902 * where charge immigration is not used. Perform charge
5903 * immigration if @tset contains a leader and whine if there are
5907 cgroup_taskset_for_each_leader(leader, css, tset) {
5910 memcg = mem_cgroup_from_css(css);
5916 * We are now committed to this value whatever it is. Changes in this
5917 * tunable will only affect upcoming migrations, not the current one.
5918 * So we need to save it, and keep it going.
5920 move_flags = READ_ONCE(memcg->move_charge_at_immigrate);
5924 from = mem_cgroup_from_task(p);
5926 VM_BUG_ON(from == memcg);
5928 mm = get_task_mm(p);
5931 /* We move charges only when we move a owner of the mm */
5932 if (mm->owner == p) {
5935 VM_BUG_ON(mc.precharge);
5936 VM_BUG_ON(mc.moved_charge);
5937 VM_BUG_ON(mc.moved_swap);
5939 spin_lock(&mc.lock);
5943 mc.flags = move_flags;
5944 spin_unlock(&mc.lock);
5945 /* We set mc.moving_task later */
5947 ret = mem_cgroup_precharge_mc(mm);
5949 mem_cgroup_clear_mc();
5956 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
5959 mem_cgroup_clear_mc();
5962 static int mem_cgroup_move_charge_pte_range(pmd_t *pmd,
5963 unsigned long addr, unsigned long end,
5964 struct mm_walk *walk)
5967 struct vm_area_struct *vma = walk->vma;
5970 enum mc_target_type target_type;
5971 union mc_target target;
5974 ptl = pmd_trans_huge_lock(pmd, vma);
5976 if (mc.precharge < HPAGE_PMD_NR) {
5980 target_type = get_mctgt_type_thp(vma, addr, *pmd, &target);
5981 if (target_type == MC_TARGET_PAGE) {
5983 if (!isolate_lru_page(page)) {
5984 if (!mem_cgroup_move_account(page, true,
5986 mc.precharge -= HPAGE_PMD_NR;
5987 mc.moved_charge += HPAGE_PMD_NR;
5989 putback_lru_page(page);
5992 } else if (target_type == MC_TARGET_DEVICE) {
5994 if (!mem_cgroup_move_account(page, true,
5996 mc.precharge -= HPAGE_PMD_NR;
5997 mc.moved_charge += HPAGE_PMD_NR;
6005 if (pmd_trans_unstable(pmd))
6008 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
6009 for (; addr != end; addr += PAGE_SIZE) {
6010 pte_t ptent = *(pte++);
6011 bool device = false;
6017 switch (get_mctgt_type(vma, addr, ptent, &target)) {
6018 case MC_TARGET_DEVICE:
6021 case MC_TARGET_PAGE:
6024 * We can have a part of the split pmd here. Moving it
6025 * can be done but it would be too convoluted so simply
6026 * ignore such a partial THP and keep it in original
6027 * memcg. There should be somebody mapping the head.
6029 if (PageTransCompound(page))
6031 if (!device && isolate_lru_page(page))
6033 if (!mem_cgroup_move_account(page, false,
6036 /* we uncharge from mc.from later. */
6040 putback_lru_page(page);
6041 put: /* get_mctgt_type() gets the page */
6044 case MC_TARGET_SWAP:
6046 if (!mem_cgroup_move_swap_account(ent, mc.from, mc.to)) {
6048 mem_cgroup_id_get_many(mc.to, 1);
6049 /* we fixup other refcnts and charges later. */
6057 pte_unmap_unlock(pte - 1, ptl);
6062 * We have consumed all precharges we got in can_attach().
6063 * We try charge one by one, but don't do any additional
6064 * charges to mc.to if we have failed in charge once in attach()
6067 ret = mem_cgroup_do_precharge(1);
6075 static const struct mm_walk_ops charge_walk_ops = {
6076 .pmd_entry = mem_cgroup_move_charge_pte_range,
6079 static void mem_cgroup_move_charge(void)
6081 lru_add_drain_all();
6083 * Signal lock_page_memcg() to take the memcg's move_lock
6084 * while we're moving its pages to another memcg. Then wait
6085 * for already started RCU-only updates to finish.
6087 atomic_inc(&mc.from->moving_account);
6090 if (unlikely(!mmap_read_trylock(mc.mm))) {
6092 * Someone who are holding the mmap_lock might be waiting in
6093 * waitq. So we cancel all extra charges, wake up all waiters,
6094 * and retry. Because we cancel precharges, we might not be able
6095 * to move enough charges, but moving charge is a best-effort
6096 * feature anyway, so it wouldn't be a big problem.
6098 __mem_cgroup_clear_mc();
6103 * When we have consumed all precharges and failed in doing
6104 * additional charge, the page walk just aborts.
6106 walk_page_range(mc.mm, 0, mc.mm->highest_vm_end, &charge_walk_ops,
6109 mmap_read_unlock(mc.mm);
6110 atomic_dec(&mc.from->moving_account);
6113 static void mem_cgroup_move_task(void)
6116 mem_cgroup_move_charge();
6117 mem_cgroup_clear_mc();
6120 #else /* !CONFIG_MMU */
6121 static int mem_cgroup_can_attach(struct cgroup_taskset *tset)
6125 static void mem_cgroup_cancel_attach(struct cgroup_taskset *tset)
6128 static void mem_cgroup_move_task(void)
6133 static int seq_puts_memcg_tunable(struct seq_file *m, unsigned long value)
6135 if (value == PAGE_COUNTER_MAX)
6136 seq_puts(m, "max\n");
6138 seq_printf(m, "%llu\n", (u64)value * PAGE_SIZE);
6143 static u64 memory_current_read(struct cgroup_subsys_state *css,
6146 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6148 return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE;
6151 static u64 memory_peak_read(struct cgroup_subsys_state *css,
6154 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
6156 return (u64)memcg->memory.watermark * PAGE_SIZE;
6159 static int memory_min_show(struct seq_file *m, void *v)
6161 return seq_puts_memcg_tunable(m,
6162 READ_ONCE(mem_cgroup_from_seq(m)->memory.min));
6165 static ssize_t memory_min_write(struct kernfs_open_file *of,
6166 char *buf, size_t nbytes, loff_t off)
6168 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6172 buf = strstrip(buf);
6173 err = page_counter_memparse(buf, "max", &min);
6177 page_counter_set_min(&memcg->memory, min);
6182 static int memory_low_show(struct seq_file *m, void *v)
6184 return seq_puts_memcg_tunable(m,
6185 READ_ONCE(mem_cgroup_from_seq(m)->memory.low));
6188 static ssize_t memory_low_write(struct kernfs_open_file *of,
6189 char *buf, size_t nbytes, loff_t off)
6191 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6195 buf = strstrip(buf);
6196 err = page_counter_memparse(buf, "max", &low);
6200 page_counter_set_low(&memcg->memory, low);
6205 static int memory_high_show(struct seq_file *m, void *v)
6207 return seq_puts_memcg_tunable(m,
6208 READ_ONCE(mem_cgroup_from_seq(m)->memory.high));
6211 static ssize_t memory_high_write(struct kernfs_open_file *of,
6212 char *buf, size_t nbytes, loff_t off)
6214 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6215 unsigned int nr_retries = MAX_RECLAIM_RETRIES;
6216 bool drained = false;
6220 buf = strstrip(buf);
6221 err = page_counter_memparse(buf, "max", &high);
6225 page_counter_set_high(&memcg->memory, high);
6228 unsigned long nr_pages = page_counter_read(&memcg->memory);
6229 unsigned long reclaimed;
6231 if (nr_pages <= high)
6234 if (signal_pending(current))
6238 drain_all_stock(memcg);
6243 reclaimed = try_to_free_mem_cgroup_pages(memcg, nr_pages - high,
6246 if (!reclaimed && !nr_retries--)
6250 memcg_wb_domain_size_changed(memcg);
6254 static int memory_max_show(struct seq_file *m, void *v)
6256 return seq_puts_memcg_tunable(m,
6257 READ_ONCE(mem_cgroup_from_seq(m)->memory.max));
6260 static ssize_t memory_max_write(struct kernfs_open_file *of,
6261 char *buf, size_t nbytes, loff_t off)
6263 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6264 unsigned int nr_reclaims = MAX_RECLAIM_RETRIES;
6265 bool drained = false;
6269 buf = strstrip(buf);
6270 err = page_counter_memparse(buf, "max", &max);
6274 xchg(&memcg->memory.max, max);
6277 unsigned long nr_pages = page_counter_read(&memcg->memory);
6279 if (nr_pages <= max)
6282 if (signal_pending(current))
6286 drain_all_stock(memcg);
6292 if (!try_to_free_mem_cgroup_pages(memcg, nr_pages - max,
6298 memcg_memory_event(memcg, MEMCG_OOM);
6299 if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0))
6303 memcg_wb_domain_size_changed(memcg);
6307 static void __memory_events_show(struct seq_file *m, atomic_long_t *events)
6309 seq_printf(m, "low %lu\n", atomic_long_read(&events[MEMCG_LOW]));
6310 seq_printf(m, "high %lu\n", atomic_long_read(&events[MEMCG_HIGH]));
6311 seq_printf(m, "max %lu\n", atomic_long_read(&events[MEMCG_MAX]));
6312 seq_printf(m, "oom %lu\n", atomic_long_read(&events[MEMCG_OOM]));
6313 seq_printf(m, "oom_kill %lu\n",
6314 atomic_long_read(&events[MEMCG_OOM_KILL]));
6315 seq_printf(m, "oom_group_kill %lu\n",
6316 atomic_long_read(&events[MEMCG_OOM_GROUP_KILL]));
6319 static int memory_events_show(struct seq_file *m, void *v)
6321 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6323 __memory_events_show(m, memcg->memory_events);
6327 static int memory_events_local_show(struct seq_file *m, void *v)
6329 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6331 __memory_events_show(m, memcg->memory_events_local);
6335 static int memory_stat_show(struct seq_file *m, void *v)
6337 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6340 buf = memory_stat_format(memcg);
6349 static inline unsigned long lruvec_page_state_output(struct lruvec *lruvec,
6352 return lruvec_page_state(lruvec, item) * memcg_page_state_unit(item);
6355 static int memory_numa_stat_show(struct seq_file *m, void *v)
6358 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6360 mem_cgroup_flush_stats();
6362 for (i = 0; i < ARRAY_SIZE(memory_stats); i++) {
6365 if (memory_stats[i].idx >= NR_VM_NODE_STAT_ITEMS)
6368 seq_printf(m, "%s", memory_stats[i].name);
6369 for_each_node_state(nid, N_MEMORY) {
6371 struct lruvec *lruvec;
6373 lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(nid));
6374 size = lruvec_page_state_output(lruvec,
6375 memory_stats[i].idx);
6376 seq_printf(m, " N%d=%llu", nid, size);
6385 static int memory_oom_group_show(struct seq_file *m, void *v)
6387 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
6389 seq_printf(m, "%d\n", memcg->oom_group);
6394 static ssize_t memory_oom_group_write(struct kernfs_open_file *of,
6395 char *buf, size_t nbytes, loff_t off)
6397 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6400 buf = strstrip(buf);
6404 ret = kstrtoint(buf, 0, &oom_group);
6408 if (oom_group != 0 && oom_group != 1)
6411 memcg->oom_group = oom_group;
6416 static ssize_t memory_reclaim(struct kernfs_open_file *of, char *buf,
6417 size_t nbytes, loff_t off)
6419 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
6420 unsigned int nr_retries = MAX_RECLAIM_RETRIES;
6421 unsigned long nr_to_reclaim, nr_reclaimed = 0;
6424 buf = strstrip(buf);
6425 err = page_counter_memparse(buf, "", &nr_to_reclaim);
6429 while (nr_reclaimed < nr_to_reclaim) {
6430 unsigned long reclaimed;
6432 if (signal_pending(current))
6436 * This is the final attempt, drain percpu lru caches in the
6437 * hope of introducing more evictable pages for
6438 * try_to_free_mem_cgroup_pages().
6441 lru_add_drain_all();
6443 reclaimed = try_to_free_mem_cgroup_pages(memcg,
6444 nr_to_reclaim - nr_reclaimed,
6447 if (!reclaimed && !nr_retries--)
6450 nr_reclaimed += reclaimed;
6456 static struct cftype memory_files[] = {
6459 .flags = CFTYPE_NOT_ON_ROOT,
6460 .read_u64 = memory_current_read,
6464 .flags = CFTYPE_NOT_ON_ROOT,
6465 .read_u64 = memory_peak_read,
6469 .flags = CFTYPE_NOT_ON_ROOT,
6470 .seq_show = memory_min_show,
6471 .write = memory_min_write,
6475 .flags = CFTYPE_NOT_ON_ROOT,
6476 .seq_show = memory_low_show,
6477 .write = memory_low_write,
6481 .flags = CFTYPE_NOT_ON_ROOT,
6482 .seq_show = memory_high_show,
6483 .write = memory_high_write,
6487 .flags = CFTYPE_NOT_ON_ROOT,
6488 .seq_show = memory_max_show,
6489 .write = memory_max_write,
6493 .flags = CFTYPE_NOT_ON_ROOT,
6494 .file_offset = offsetof(struct mem_cgroup, events_file),
6495 .seq_show = memory_events_show,
6498 .name = "events.local",
6499 .flags = CFTYPE_NOT_ON_ROOT,
6500 .file_offset = offsetof(struct mem_cgroup, events_local_file),
6501 .seq_show = memory_events_local_show,
6505 .seq_show = memory_stat_show,
6509 .name = "numa_stat",
6510 .seq_show = memory_numa_stat_show,
6514 .name = "oom.group",
6515 .flags = CFTYPE_NOT_ON_ROOT | CFTYPE_NS_DELEGATABLE,
6516 .seq_show = memory_oom_group_show,
6517 .write = memory_oom_group_write,
6521 .flags = CFTYPE_NS_DELEGATABLE,
6522 .write = memory_reclaim,
6527 struct cgroup_subsys memory_cgrp_subsys = {
6528 .css_alloc = mem_cgroup_css_alloc,
6529 .css_online = mem_cgroup_css_online,
6530 .css_offline = mem_cgroup_css_offline,
6531 .css_released = mem_cgroup_css_released,
6532 .css_free = mem_cgroup_css_free,
6533 .css_reset = mem_cgroup_css_reset,
6534 .css_rstat_flush = mem_cgroup_css_rstat_flush,
6535 .can_attach = mem_cgroup_can_attach,
6536 .cancel_attach = mem_cgroup_cancel_attach,
6537 .post_attach = mem_cgroup_move_task,
6538 .dfl_cftypes = memory_files,
6539 .legacy_cftypes = mem_cgroup_legacy_files,
6544 * This function calculates an individual cgroup's effective
6545 * protection which is derived from its own memory.min/low, its
6546 * parent's and siblings' settings, as well as the actual memory
6547 * distribution in the tree.
6549 * The following rules apply to the effective protection values:
6551 * 1. At the first level of reclaim, effective protection is equal to
6552 * the declared protection in memory.min and memory.low.
6554 * 2. To enable safe delegation of the protection configuration, at
6555 * subsequent levels the effective protection is capped to the
6556 * parent's effective protection.
6558 * 3. To make complex and dynamic subtrees easier to configure, the
6559 * user is allowed to overcommit the declared protection at a given
6560 * level. If that is the case, the parent's effective protection is
6561 * distributed to the children in proportion to how much protection
6562 * they have declared and how much of it they are utilizing.
6564 * This makes distribution proportional, but also work-conserving:
6565 * if one cgroup claims much more protection than it uses memory,
6566 * the unused remainder is available to its siblings.
6568 * 4. Conversely, when the declared protection is undercommitted at a
6569 * given level, the distribution of the larger parental protection
6570 * budget is NOT proportional. A cgroup's protection from a sibling
6571 * is capped to its own memory.min/low setting.
6573 * 5. However, to allow protecting recursive subtrees from each other
6574 * without having to declare each individual cgroup's fixed share
6575 * of the ancestor's claim to protection, any unutilized -
6576 * "floating" - protection from up the tree is distributed in
6577 * proportion to each cgroup's *usage*. This makes the protection
6578 * neutral wrt sibling cgroups and lets them compete freely over
6579 * the shared parental protection budget, but it protects the
6580 * subtree as a whole from neighboring subtrees.
6582 * Note that 4. and 5. are not in conflict: 4. is about protecting
6583 * against immediate siblings whereas 5. is about protecting against
6584 * neighboring subtrees.
6586 static unsigned long effective_protection(unsigned long usage,
6587 unsigned long parent_usage,
6588 unsigned long setting,
6589 unsigned long parent_effective,
6590 unsigned long siblings_protected)
6592 unsigned long protected;
6595 protected = min(usage, setting);
6597 * If all cgroups at this level combined claim and use more
6598 * protection then what the parent affords them, distribute
6599 * shares in proportion to utilization.
6601 * We are using actual utilization rather than the statically
6602 * claimed protection in order to be work-conserving: claimed
6603 * but unused protection is available to siblings that would
6604 * otherwise get a smaller chunk than what they claimed.
6606 if (siblings_protected > parent_effective)
6607 return protected * parent_effective / siblings_protected;
6610 * Ok, utilized protection of all children is within what the
6611 * parent affords them, so we know whatever this child claims
6612 * and utilizes is effectively protected.
6614 * If there is unprotected usage beyond this value, reclaim
6615 * will apply pressure in proportion to that amount.
6617 * If there is unutilized protection, the cgroup will be fully
6618 * shielded from reclaim, but we do return a smaller value for
6619 * protection than what the group could enjoy in theory. This
6620 * is okay. With the overcommit distribution above, effective
6621 * protection is always dependent on how memory is actually
6622 * consumed among the siblings anyway.
6627 * If the children aren't claiming (all of) the protection
6628 * afforded to them by the parent, distribute the remainder in
6629 * proportion to the (unprotected) memory of each cgroup. That
6630 * way, cgroups that aren't explicitly prioritized wrt each
6631 * other compete freely over the allowance, but they are
6632 * collectively protected from neighboring trees.
6634 * We're using unprotected memory for the weight so that if
6635 * some cgroups DO claim explicit protection, we don't protect
6636 * the same bytes twice.
6638 * Check both usage and parent_usage against the respective
6639 * protected values. One should imply the other, but they
6640 * aren't read atomically - make sure the division is sane.
6642 if (!(cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT))
6644 if (parent_effective > siblings_protected &&
6645 parent_usage > siblings_protected &&
6646 usage > protected) {
6647 unsigned long unclaimed;
6649 unclaimed = parent_effective - siblings_protected;
6650 unclaimed *= usage - protected;
6651 unclaimed /= parent_usage - siblings_protected;
6660 * mem_cgroup_calculate_protection - check if memory consumption is in the normal range
6661 * @root: the top ancestor of the sub-tree being checked
6662 * @memcg: the memory cgroup to check
6664 * WARNING: This function is not stateless! It can only be used as part
6665 * of a top-down tree iteration, not for isolated queries.
6667 void mem_cgroup_calculate_protection(struct mem_cgroup *root,
6668 struct mem_cgroup *memcg)
6670 unsigned long usage, parent_usage;
6671 struct mem_cgroup *parent;
6673 if (mem_cgroup_disabled())
6677 root = root_mem_cgroup;
6680 * Effective values of the reclaim targets are ignored so they
6681 * can be stale. Have a look at mem_cgroup_protection for more
6683 * TODO: calculation should be more robust so that we do not need
6684 * that special casing.
6689 usage = page_counter_read(&memcg->memory);
6693 parent = parent_mem_cgroup(memcg);
6695 if (parent == root) {
6696 memcg->memory.emin = READ_ONCE(memcg->memory.min);
6697 memcg->memory.elow = READ_ONCE(memcg->memory.low);
6701 parent_usage = page_counter_read(&parent->memory);
6703 WRITE_ONCE(memcg->memory.emin, effective_protection(usage, parent_usage,
6704 READ_ONCE(memcg->memory.min),
6705 READ_ONCE(parent->memory.emin),
6706 atomic_long_read(&parent->memory.children_min_usage)));
6708 WRITE_ONCE(memcg->memory.elow, effective_protection(usage, parent_usage,
6709 READ_ONCE(memcg->memory.low),
6710 READ_ONCE(parent->memory.elow),
6711 atomic_long_read(&parent->memory.children_low_usage)));
6714 static int charge_memcg(struct folio *folio, struct mem_cgroup *memcg,
6717 long nr_pages = folio_nr_pages(folio);
6720 ret = try_charge(memcg, gfp, nr_pages);
6724 css_get(&memcg->css);
6725 commit_charge(folio, memcg);
6727 local_irq_disable();
6728 mem_cgroup_charge_statistics(memcg, nr_pages);
6729 memcg_check_events(memcg, folio_nid(folio));
6735 int __mem_cgroup_charge(struct folio *folio, struct mm_struct *mm, gfp_t gfp)
6737 struct mem_cgroup *memcg;
6740 memcg = get_mem_cgroup_from_mm(mm);
6741 ret = charge_memcg(folio, memcg, gfp);
6742 css_put(&memcg->css);
6748 * mem_cgroup_swapin_charge_page - charge a newly allocated page for swapin
6749 * @page: page to charge
6750 * @mm: mm context of the victim
6751 * @gfp: reclaim mode
6752 * @entry: swap entry for which the page is allocated
6754 * This function charges a page allocated for swapin. Please call this before
6755 * adding the page to the swapcache.
6757 * Returns 0 on success. Otherwise, an error code is returned.
6759 int mem_cgroup_swapin_charge_page(struct page *page, struct mm_struct *mm,
6760 gfp_t gfp, swp_entry_t entry)
6762 struct folio *folio = page_folio(page);
6763 struct mem_cgroup *memcg;
6767 if (mem_cgroup_disabled())
6770 id = lookup_swap_cgroup_id(entry);
6772 memcg = mem_cgroup_from_id(id);
6773 if (!memcg || !css_tryget_online(&memcg->css))
6774 memcg = get_mem_cgroup_from_mm(mm);
6777 ret = charge_memcg(folio, memcg, gfp);
6779 css_put(&memcg->css);
6784 * mem_cgroup_swapin_uncharge_swap - uncharge swap slot
6785 * @entry: swap entry for which the page is charged
6787 * Call this function after successfully adding the charged page to swapcache.
6789 * Note: This function assumes the page for which swap slot is being uncharged
6792 void mem_cgroup_swapin_uncharge_swap(swp_entry_t entry)
6795 * Cgroup1's unified memory+swap counter has been charged with the
6796 * new swapcache page, finish the transfer by uncharging the swap
6797 * slot. The swap slot would also get uncharged when it dies, but
6798 * it can stick around indefinitely and we'd count the page twice
6801 * Cgroup2 has separate resource counters for memory and swap,
6802 * so this is a non-issue here. Memory and swap charge lifetimes
6803 * correspond 1:1 to page and swap slot lifetimes: we charge the
6804 * page to memory here, and uncharge swap when the slot is freed.
6806 if (!mem_cgroup_disabled() && do_memsw_account()) {
6808 * The swap entry might not get freed for a long time,
6809 * let's not wait for it. The page already received a
6810 * memory+swap charge, drop the swap entry duplicate.
6812 mem_cgroup_uncharge_swap(entry, 1);
6816 struct uncharge_gather {
6817 struct mem_cgroup *memcg;
6818 unsigned long nr_memory;
6819 unsigned long pgpgout;
6820 unsigned long nr_kmem;
6824 static inline void uncharge_gather_clear(struct uncharge_gather *ug)
6826 memset(ug, 0, sizeof(*ug));
6829 static void uncharge_batch(const struct uncharge_gather *ug)
6831 unsigned long flags;
6833 if (ug->nr_memory) {
6834 page_counter_uncharge(&ug->memcg->memory, ug->nr_memory);
6835 if (do_memsw_account())
6836 page_counter_uncharge(&ug->memcg->memsw, ug->nr_memory);
6838 memcg_account_kmem(ug->memcg, -ug->nr_kmem);
6839 memcg_oom_recover(ug->memcg);
6842 local_irq_save(flags);
6843 __count_memcg_events(ug->memcg, PGPGOUT, ug->pgpgout);
6844 __this_cpu_add(ug->memcg->vmstats_percpu->nr_page_events, ug->nr_memory);
6845 memcg_check_events(ug->memcg, ug->nid);
6846 local_irq_restore(flags);
6848 /* drop reference from uncharge_folio */
6849 css_put(&ug->memcg->css);
6852 static void uncharge_folio(struct folio *folio, struct uncharge_gather *ug)
6855 struct mem_cgroup *memcg;
6856 struct obj_cgroup *objcg;
6858 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
6861 * Nobody should be changing or seriously looking at
6862 * folio memcg or objcg at this point, we have fully
6863 * exclusive access to the folio.
6865 if (folio_memcg_kmem(folio)) {
6866 objcg = __folio_objcg(folio);
6868 * This get matches the put at the end of the function and
6869 * kmem pages do not hold memcg references anymore.
6871 memcg = get_mem_cgroup_from_objcg(objcg);
6873 memcg = __folio_memcg(folio);
6879 if (ug->memcg != memcg) {
6882 uncharge_gather_clear(ug);
6885 ug->nid = folio_nid(folio);
6887 /* pairs with css_put in uncharge_batch */
6888 css_get(&memcg->css);
6891 nr_pages = folio_nr_pages(folio);
6893 if (folio_memcg_kmem(folio)) {
6894 ug->nr_memory += nr_pages;
6895 ug->nr_kmem += nr_pages;
6897 folio->memcg_data = 0;
6898 obj_cgroup_put(objcg);
6900 /* LRU pages aren't accounted at the root level */
6901 if (!mem_cgroup_is_root(memcg))
6902 ug->nr_memory += nr_pages;
6905 folio->memcg_data = 0;
6908 css_put(&memcg->css);
6911 void __mem_cgroup_uncharge(struct folio *folio)
6913 struct uncharge_gather ug;
6915 /* Don't touch folio->lru of any random page, pre-check: */
6916 if (!folio_memcg(folio))
6919 uncharge_gather_clear(&ug);
6920 uncharge_folio(folio, &ug);
6921 uncharge_batch(&ug);
6925 * __mem_cgroup_uncharge_list - uncharge a list of page
6926 * @page_list: list of pages to uncharge
6928 * Uncharge a list of pages previously charged with
6929 * __mem_cgroup_charge().
6931 void __mem_cgroup_uncharge_list(struct list_head *page_list)
6933 struct uncharge_gather ug;
6934 struct folio *folio;
6936 uncharge_gather_clear(&ug);
6937 list_for_each_entry(folio, page_list, lru)
6938 uncharge_folio(folio, &ug);
6940 uncharge_batch(&ug);
6944 * mem_cgroup_migrate - Charge a folio's replacement.
6945 * @old: Currently circulating folio.
6946 * @new: Replacement folio.
6948 * Charge @new as a replacement folio for @old. @old will
6949 * be uncharged upon free.
6951 * Both folios must be locked, @new->mapping must be set up.
6953 void mem_cgroup_migrate(struct folio *old, struct folio *new)
6955 struct mem_cgroup *memcg;
6956 long nr_pages = folio_nr_pages(new);
6957 unsigned long flags;
6959 VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
6960 VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
6961 VM_BUG_ON_FOLIO(folio_test_anon(old) != folio_test_anon(new), new);
6962 VM_BUG_ON_FOLIO(folio_nr_pages(old) != nr_pages, new);
6964 if (mem_cgroup_disabled())
6967 /* Page cache replacement: new folio already charged? */
6968 if (folio_memcg(new))
6971 memcg = folio_memcg(old);
6972 VM_WARN_ON_ONCE_FOLIO(!memcg, old);
6976 /* Force-charge the new page. The old one will be freed soon */
6977 if (!mem_cgroup_is_root(memcg)) {
6978 page_counter_charge(&memcg->memory, nr_pages);
6979 if (do_memsw_account())
6980 page_counter_charge(&memcg->memsw, nr_pages);
6983 css_get(&memcg->css);
6984 commit_charge(new, memcg);
6986 local_irq_save(flags);
6987 mem_cgroup_charge_statistics(memcg, nr_pages);
6988 memcg_check_events(memcg, folio_nid(new));
6989 local_irq_restore(flags);
6992 DEFINE_STATIC_KEY_FALSE(memcg_sockets_enabled_key);
6993 EXPORT_SYMBOL(memcg_sockets_enabled_key);
6995 void mem_cgroup_sk_alloc(struct sock *sk)
6997 struct mem_cgroup *memcg;
6999 if (!mem_cgroup_sockets_enabled)
7002 /* Do not associate the sock with unrelated interrupted task's memcg. */
7007 memcg = mem_cgroup_from_task(current);
7008 if (memcg == root_mem_cgroup)
7010 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && !memcg->tcpmem_active)
7012 if (css_tryget(&memcg->css))
7013 sk->sk_memcg = memcg;
7018 void mem_cgroup_sk_free(struct sock *sk)
7021 css_put(&sk->sk_memcg->css);
7025 * mem_cgroup_charge_skmem - charge socket memory
7026 * @memcg: memcg to charge
7027 * @nr_pages: number of pages to charge
7028 * @gfp_mask: reclaim mode
7030 * Charges @nr_pages to @memcg. Returns %true if the charge fit within
7031 * @memcg's configured limit, %false if it doesn't.
7033 bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages,
7036 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7037 struct page_counter *fail;
7039 if (page_counter_try_charge(&memcg->tcpmem, nr_pages, &fail)) {
7040 memcg->tcpmem_pressure = 0;
7043 memcg->tcpmem_pressure = 1;
7044 if (gfp_mask & __GFP_NOFAIL) {
7045 page_counter_charge(&memcg->tcpmem, nr_pages);
7051 if (try_charge(memcg, gfp_mask, nr_pages) == 0) {
7052 mod_memcg_state(memcg, MEMCG_SOCK, nr_pages);
7060 * mem_cgroup_uncharge_skmem - uncharge socket memory
7061 * @memcg: memcg to uncharge
7062 * @nr_pages: number of pages to uncharge
7064 void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages)
7066 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) {
7067 page_counter_uncharge(&memcg->tcpmem, nr_pages);
7071 mod_memcg_state(memcg, MEMCG_SOCK, -nr_pages);
7073 refill_stock(memcg, nr_pages);
7076 static int __init cgroup_memory(char *s)
7080 while ((token = strsep(&s, ",")) != NULL) {
7083 if (!strcmp(token, "nosocket"))
7084 cgroup_memory_nosocket = true;
7085 if (!strcmp(token, "nokmem"))
7086 cgroup_memory_nokmem = true;
7090 __setup("cgroup.memory=", cgroup_memory);
7093 * subsys_initcall() for memory controller.
7095 * Some parts like memcg_hotplug_cpu_dead() have to be initialized from this
7096 * context because of lock dependencies (cgroup_lock -> cpu hotplug) but
7097 * basically everything that doesn't depend on a specific mem_cgroup structure
7098 * should be initialized from here.
7100 static int __init mem_cgroup_init(void)
7105 * Currently s32 type (can refer to struct batched_lruvec_stat) is
7106 * used for per-memcg-per-cpu caching of per-node statistics. In order
7107 * to work fine, we should make sure that the overfill threshold can't
7108 * exceed S32_MAX / PAGE_SIZE.
7110 BUILD_BUG_ON(MEMCG_CHARGE_BATCH > S32_MAX / PAGE_SIZE);
7112 cpuhp_setup_state_nocalls(CPUHP_MM_MEMCQ_DEAD, "mm/memctrl:dead", NULL,
7113 memcg_hotplug_cpu_dead);
7115 for_each_possible_cpu(cpu)
7116 INIT_WORK(&per_cpu_ptr(&memcg_stock, cpu)->work,
7119 for_each_node(node) {
7120 struct mem_cgroup_tree_per_node *rtpn;
7122 rtpn = kzalloc_node(sizeof(*rtpn), GFP_KERNEL,
7123 node_online(node) ? node : NUMA_NO_NODE);
7125 rtpn->rb_root = RB_ROOT;
7126 rtpn->rb_rightmost = NULL;
7127 spin_lock_init(&rtpn->lock);
7128 soft_limit_tree.rb_tree_per_node[node] = rtpn;
7133 subsys_initcall(mem_cgroup_init);
7135 #ifdef CONFIG_MEMCG_SWAP
7136 static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg)
7138 while (!refcount_inc_not_zero(&memcg->id.ref)) {
7140 * The root cgroup cannot be destroyed, so it's refcount must
7143 if (WARN_ON_ONCE(memcg == root_mem_cgroup)) {
7147 memcg = parent_mem_cgroup(memcg);
7149 memcg = root_mem_cgroup;
7155 * mem_cgroup_swapout - transfer a memsw charge to swap
7156 * @folio: folio whose memsw charge to transfer
7157 * @entry: swap entry to move the charge to
7159 * Transfer the memsw charge of @folio to @entry.
7161 void mem_cgroup_swapout(struct folio *folio, swp_entry_t entry)
7163 struct mem_cgroup *memcg, *swap_memcg;
7164 unsigned int nr_entries;
7165 unsigned short oldid;
7167 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
7168 VM_BUG_ON_FOLIO(folio_ref_count(folio), folio);
7170 if (mem_cgroup_disabled())
7173 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7176 memcg = folio_memcg(folio);
7178 VM_WARN_ON_ONCE_FOLIO(!memcg, folio);
7183 * In case the memcg owning these pages has been offlined and doesn't
7184 * have an ID allocated to it anymore, charge the closest online
7185 * ancestor for the swap instead and transfer the memory+swap charge.
7187 swap_memcg = mem_cgroup_id_get_online(memcg);
7188 nr_entries = folio_nr_pages(folio);
7189 /* Get references for the tail pages, too */
7191 mem_cgroup_id_get_many(swap_memcg, nr_entries - 1);
7192 oldid = swap_cgroup_record(entry, mem_cgroup_id(swap_memcg),
7194 VM_BUG_ON_FOLIO(oldid, folio);
7195 mod_memcg_state(swap_memcg, MEMCG_SWAP, nr_entries);
7197 folio->memcg_data = 0;
7199 if (!mem_cgroup_is_root(memcg))
7200 page_counter_uncharge(&memcg->memory, nr_entries);
7202 if (!cgroup_memory_noswap && memcg != swap_memcg) {
7203 if (!mem_cgroup_is_root(swap_memcg))
7204 page_counter_charge(&swap_memcg->memsw, nr_entries);
7205 page_counter_uncharge(&memcg->memsw, nr_entries);
7209 * Interrupts should be disabled here because the caller holds the
7210 * i_pages lock which is taken with interrupts-off. It is
7211 * important here to have the interrupts disabled because it is the
7212 * only synchronisation we have for updating the per-CPU variables.
7215 mem_cgroup_charge_statistics(memcg, -nr_entries);
7216 memcg_stats_unlock();
7217 memcg_check_events(memcg, folio_nid(folio));
7219 css_put(&memcg->css);
7223 * __mem_cgroup_try_charge_swap - try charging swap space for a folio
7224 * @folio: folio being added to swap
7225 * @entry: swap entry to charge
7227 * Try to charge @folio's memcg for the swap space at @entry.
7229 * Returns 0 on success, -ENOMEM on failure.
7231 int __mem_cgroup_try_charge_swap(struct folio *folio, swp_entry_t entry)
7233 unsigned int nr_pages = folio_nr_pages(folio);
7234 struct page_counter *counter;
7235 struct mem_cgroup *memcg;
7236 unsigned short oldid;
7238 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7241 memcg = folio_memcg(folio);
7243 VM_WARN_ON_ONCE_FOLIO(!memcg, folio);
7248 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7252 memcg = mem_cgroup_id_get_online(memcg);
7254 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg) &&
7255 !page_counter_try_charge(&memcg->swap, nr_pages, &counter)) {
7256 memcg_memory_event(memcg, MEMCG_SWAP_MAX);
7257 memcg_memory_event(memcg, MEMCG_SWAP_FAIL);
7258 mem_cgroup_id_put(memcg);
7262 /* Get references for the tail pages, too */
7264 mem_cgroup_id_get_many(memcg, nr_pages - 1);
7265 oldid = swap_cgroup_record(entry, mem_cgroup_id(memcg), nr_pages);
7266 VM_BUG_ON_FOLIO(oldid, folio);
7267 mod_memcg_state(memcg, MEMCG_SWAP, nr_pages);
7273 * __mem_cgroup_uncharge_swap - uncharge swap space
7274 * @entry: swap entry to uncharge
7275 * @nr_pages: the amount of swap space to uncharge
7277 void __mem_cgroup_uncharge_swap(swp_entry_t entry, unsigned int nr_pages)
7279 struct mem_cgroup *memcg;
7282 id = swap_cgroup_record(entry, 0, nr_pages);
7284 memcg = mem_cgroup_from_id(id);
7286 if (!cgroup_memory_noswap && !mem_cgroup_is_root(memcg)) {
7287 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
7288 page_counter_uncharge(&memcg->swap, nr_pages);
7290 page_counter_uncharge(&memcg->memsw, nr_pages);
7292 mod_memcg_state(memcg, MEMCG_SWAP, -nr_pages);
7293 mem_cgroup_id_put_many(memcg, nr_pages);
7298 long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg)
7300 long nr_swap_pages = get_nr_swap_pages();
7302 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7303 return nr_swap_pages;
7304 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg))
7305 nr_swap_pages = min_t(long, nr_swap_pages,
7306 READ_ONCE(memcg->swap.max) -
7307 page_counter_read(&memcg->swap));
7308 return nr_swap_pages;
7311 bool mem_cgroup_swap_full(struct page *page)
7313 struct mem_cgroup *memcg;
7315 VM_BUG_ON_PAGE(!PageLocked(page), page);
7319 if (cgroup_memory_noswap || !cgroup_subsys_on_dfl(memory_cgrp_subsys))
7322 memcg = page_memcg(page);
7326 for (; memcg != root_mem_cgroup; memcg = parent_mem_cgroup(memcg)) {
7327 unsigned long usage = page_counter_read(&memcg->swap);
7329 if (usage * 2 >= READ_ONCE(memcg->swap.high) ||
7330 usage * 2 >= READ_ONCE(memcg->swap.max))
7337 static int __init setup_swap_account(char *s)
7339 if (!strcmp(s, "1"))
7340 cgroup_memory_noswap = false;
7341 else if (!strcmp(s, "0"))
7342 cgroup_memory_noswap = true;
7345 __setup("swapaccount=", setup_swap_account);
7347 static u64 swap_current_read(struct cgroup_subsys_state *css,
7350 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
7352 return (u64)page_counter_read(&memcg->swap) * PAGE_SIZE;
7355 static int swap_high_show(struct seq_file *m, void *v)
7357 return seq_puts_memcg_tunable(m,
7358 READ_ONCE(mem_cgroup_from_seq(m)->swap.high));
7361 static ssize_t swap_high_write(struct kernfs_open_file *of,
7362 char *buf, size_t nbytes, loff_t off)
7364 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7368 buf = strstrip(buf);
7369 err = page_counter_memparse(buf, "max", &high);
7373 page_counter_set_high(&memcg->swap, high);
7378 static int swap_max_show(struct seq_file *m, void *v)
7380 return seq_puts_memcg_tunable(m,
7381 READ_ONCE(mem_cgroup_from_seq(m)->swap.max));
7384 static ssize_t swap_max_write(struct kernfs_open_file *of,
7385 char *buf, size_t nbytes, loff_t off)
7387 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7391 buf = strstrip(buf);
7392 err = page_counter_memparse(buf, "max", &max);
7396 xchg(&memcg->swap.max, max);
7401 static int swap_events_show(struct seq_file *m, void *v)
7403 struct mem_cgroup *memcg = mem_cgroup_from_seq(m);
7405 seq_printf(m, "high %lu\n",
7406 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_HIGH]));
7407 seq_printf(m, "max %lu\n",
7408 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_MAX]));
7409 seq_printf(m, "fail %lu\n",
7410 atomic_long_read(&memcg->memory_events[MEMCG_SWAP_FAIL]));
7415 static struct cftype swap_files[] = {
7417 .name = "swap.current",
7418 .flags = CFTYPE_NOT_ON_ROOT,
7419 .read_u64 = swap_current_read,
7422 .name = "swap.high",
7423 .flags = CFTYPE_NOT_ON_ROOT,
7424 .seq_show = swap_high_show,
7425 .write = swap_high_write,
7429 .flags = CFTYPE_NOT_ON_ROOT,
7430 .seq_show = swap_max_show,
7431 .write = swap_max_write,
7434 .name = "swap.events",
7435 .flags = CFTYPE_NOT_ON_ROOT,
7436 .file_offset = offsetof(struct mem_cgroup, swap_events_file),
7437 .seq_show = swap_events_show,
7442 static struct cftype memsw_files[] = {
7444 .name = "memsw.usage_in_bytes",
7445 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_USAGE),
7446 .read_u64 = mem_cgroup_read_u64,
7449 .name = "memsw.max_usage_in_bytes",
7450 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_MAX_USAGE),
7451 .write = mem_cgroup_reset,
7452 .read_u64 = mem_cgroup_read_u64,
7455 .name = "memsw.limit_in_bytes",
7456 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_LIMIT),
7457 .write = mem_cgroup_write,
7458 .read_u64 = mem_cgroup_read_u64,
7461 .name = "memsw.failcnt",
7462 .private = MEMFILE_PRIVATE(_MEMSWAP, RES_FAILCNT),
7463 .write = mem_cgroup_reset,
7464 .read_u64 = mem_cgroup_read_u64,
7466 { }, /* terminate */
7469 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_ZSWAP)
7471 * obj_cgroup_may_zswap - check if this cgroup can zswap
7472 * @objcg: the object cgroup
7474 * Check if the hierarchical zswap limit has been reached.
7476 * This doesn't check for specific headroom, and it is not atomic
7477 * either. But with zswap, the size of the allocation is only known
7478 * once compression has occured, and this optimistic pre-check avoids
7479 * spending cycles on compression when there is already no room left
7480 * or zswap is disabled altogether somewhere in the hierarchy.
7482 bool obj_cgroup_may_zswap(struct obj_cgroup *objcg)
7484 struct mem_cgroup *memcg, *original_memcg;
7487 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7490 original_memcg = get_mem_cgroup_from_objcg(objcg);
7491 for (memcg = original_memcg; memcg != root_mem_cgroup;
7492 memcg = parent_mem_cgroup(memcg)) {
7493 unsigned long max = READ_ONCE(memcg->zswap_max);
7494 unsigned long pages;
7496 if (max == PAGE_COUNTER_MAX)
7503 cgroup_rstat_flush(memcg->css.cgroup);
7504 pages = memcg_page_state(memcg, MEMCG_ZSWAP_B) / PAGE_SIZE;
7510 mem_cgroup_put(original_memcg);
7515 * obj_cgroup_charge_zswap - charge compression backend memory
7516 * @objcg: the object cgroup
7517 * @size: size of compressed object
7519 * This forces the charge after obj_cgroup_may_swap() allowed
7520 * compression and storage in zwap for this cgroup to go ahead.
7522 void obj_cgroup_charge_zswap(struct obj_cgroup *objcg, size_t size)
7524 struct mem_cgroup *memcg;
7526 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7529 VM_WARN_ON_ONCE(!(current->flags & PF_MEMALLOC));
7531 /* PF_MEMALLOC context, charging must succeed */
7532 if (obj_cgroup_charge(objcg, GFP_KERNEL, size))
7536 memcg = obj_cgroup_memcg(objcg);
7537 mod_memcg_state(memcg, MEMCG_ZSWAP_B, size);
7538 mod_memcg_state(memcg, MEMCG_ZSWAPPED, 1);
7543 * obj_cgroup_uncharge_zswap - uncharge compression backend memory
7544 * @objcg: the object cgroup
7545 * @size: size of compressed object
7547 * Uncharges zswap memory on page in.
7549 void obj_cgroup_uncharge_zswap(struct obj_cgroup *objcg, size_t size)
7551 struct mem_cgroup *memcg;
7553 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys))
7556 obj_cgroup_uncharge(objcg, size);
7559 memcg = obj_cgroup_memcg(objcg);
7560 mod_memcg_state(memcg, MEMCG_ZSWAP_B, -size);
7561 mod_memcg_state(memcg, MEMCG_ZSWAPPED, -1);
7565 static u64 zswap_current_read(struct cgroup_subsys_state *css,
7568 cgroup_rstat_flush(css->cgroup);
7569 return memcg_page_state(mem_cgroup_from_css(css), MEMCG_ZSWAP_B);
7572 static int zswap_max_show(struct seq_file *m, void *v)
7574 return seq_puts_memcg_tunable(m,
7575 READ_ONCE(mem_cgroup_from_seq(m)->zswap_max));
7578 static ssize_t zswap_max_write(struct kernfs_open_file *of,
7579 char *buf, size_t nbytes, loff_t off)
7581 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
7585 buf = strstrip(buf);
7586 err = page_counter_memparse(buf, "max", &max);
7590 xchg(&memcg->zswap_max, max);
7595 static struct cftype zswap_files[] = {
7597 .name = "zswap.current",
7598 .flags = CFTYPE_NOT_ON_ROOT,
7599 .read_u64 = zswap_current_read,
7602 .name = "zswap.max",
7603 .flags = CFTYPE_NOT_ON_ROOT,
7604 .seq_show = zswap_max_show,
7605 .write = zswap_max_write,
7609 #endif /* CONFIG_MEMCG_KMEM && CONFIG_ZSWAP */
7612 * If mem_cgroup_swap_init() is implemented as a subsys_initcall()
7613 * instead of a core_initcall(), this could mean cgroup_memory_noswap still
7614 * remains set to false even when memcg is disabled via "cgroup_disable=memory"
7615 * boot parameter. This may result in premature OOPS inside
7616 * mem_cgroup_get_nr_swap_pages() function in corner cases.
7618 static int __init mem_cgroup_swap_init(void)
7620 /* No memory control -> no swap control */
7621 if (mem_cgroup_disabled())
7622 cgroup_memory_noswap = true;
7624 if (cgroup_memory_noswap)
7627 WARN_ON(cgroup_add_dfl_cftypes(&memory_cgrp_subsys, swap_files));
7628 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys, memsw_files));
7629 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_ZSWAP)
7630 WARN_ON(cgroup_add_dfl_cftypes(&memory_cgrp_subsys, zswap_files));
7634 core_initcall(mem_cgroup_swap_init);
7636 #endif /* CONFIG_MEMCG_SWAP */