mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Pull MM updates from Andrew Morton:
- "selftests/mm: clean up build output and verbosity" (Li Wang)
Remove some noise from the MM selftests build
- "mm: Free contiguous order-0 pages efficiently" (Ryan Roberts)
Speed up the freeing of a batch of 0-order pages by first scanning
them for coalescing opportunities. This is applicable to vfree() and
to the releasing of frozen pages
- "mm/damon: introduce DAMOS failed region quota charge ratio"
(SeongJae Park)
Address a DAMOS usability issue: The DAMOS quota often exhausts
prematurely because it charges for all memory attempted, causing slow
and inconsistent performance when actions fail on unreclaimable
memory.
To fix this, a new feature lets users set a smaller, flexible quota
charge ratio (via a numerator and denominator) for failed regions.
Since failed actions cause less overhead, reducing their quota cost
ensures more predictable and efficient DAMOS processing
- "selftests/cgroup: improve zswap tests robustness and support large
page sizes" (Li Wang)
Fix various spurious failures and improves the overall robustness of
the cgroup zswap selftests
- "fix MAP_DROPPABLE not supported errno" (Anthony Yznaga)
Fix an issue in the mlock selftests on arm32
- "mm: huge_memory: clean up defrag sysfs with shared" (Breno Leitao)
Some maintenance work in the huge_memory code
- "treewide: fixup gfp_t printks" (Brendan Jackman)
Use the special vprintf() gfp_t conversion in various places
- "mm: Fix vmemmap optimization accounting and initialization" (Muchun
Song)
Fix several bugs in the vmemmap optimization, mainly around incorrect
page accounting and memmap initialization in the DAX and memory
hotplug paths. It also fixes pageblock migratetype initialization and
struct page initialization for ZONE_DEVICE compound pages
- "mm/damon: repost non-hotfix reviewed patches in damon/next tree"
A sprinkle of unrelated minor bugfixes for DAMON
- "mm: remove page_mapped()" (David Hildenbrand)
Remove this function from the tree, replacing it with folio_mapped()
- "mm/damon: let DAMON be paused and resumed" (SeongJae Park)
Allow DAMON to be paused and resumed without losing its current state
- "kasan: hw_tags: Disable tagging for stack and page-tables" (Muhammad
Usama Anjum)
Simplify and speed up kasan by removing its ineffective tagging of
stacks and page tables
- "mm/damon/reclaim,lru_sort: monitor all system rams by default"
(SeongJae Park)
Simplify deployment on diverse hardware like NUMA systems by updating
DAMON_RECLAIM and DAMON_LRU_SORT to automatically monitor the
physical address range covering all System RAM areas by default,
replacing the overly restrictive behavior that only targeted the
single largest memory block to save on negligible overhead
- "mm/damon/sysfs: document filters/ directory as deprecated" (SeongJae
Park)
Update some DAMON docs
- "mm: use spinlock guards for zone lock" (Dmitry Ilvokhin)
Switch zone->lock handling over to using the guard() mechanisms
- "mm/filemap: tighten mmap_miss hit accounting" (fujunjie)
Fix a flaw where the mmap_miss counter over-credited page cache hits
during fault-arounds and page-fault retries. This results in
significant reduction of redundant synchronous mmap readahead I/O,
drastically cutting down execution time and gigabytes read for sparse
random or strided memory access workloads
- "selftests/cgroup: Fix false positive failures in test_percpu_basic"
(Li Wang)
Fix a couple of false-positives in the cgroup kmem selftests
- "mm/damon/reclaim: support monitoring intervals auto-tuning"
(SeongJae Park)
Add a new parameter to DAMON permitting DAMON_RECLAIM to
automatically tune DAMON's sampling and aggregation intervals
- "mm/damon/stat: add kdamond_pid parameter" (SeongJae Park)
Change DAMON_STAT to provide the pid of its kdamond
- "mm/kmemleak: dedupe verbose scan output" (Breno Leitao)
Remove large amounts of duplicated backtraces from the verbose-mode
kmemleak output
- "mm: remove CONFIG_HAVE_BOOTMEM_INFO_NODE (Part 1)" (David
Hildenbrand)
Reduce our use of CONFIG_HAVE_BOOTMEM_INFO_NODE, with a view to
removing it entirely in a later series
- "mm/damon: validate min_region_size to be power of 2" (Liew Rui Yan)
Prevent users from passing a non-power-of-2 value of `addr_unit', as
this later results in undesirable behavior
- "mm: document read_pages and simplify usage" (Frederick Mayle)
- "tools/mm/page-types: Fix misc bugs" (Ye Liu)
Fix three issues in tools/mm/page-types.c
- "mm: misc cleanups from __GFP_UNMAPPED series" (Brendan Jackman)
Implement several cleanups in the page allocator and related code
- "mm, swap: swap table phase IV: unify allocation" (Kairui Song)
Unify the allocation and charging of anon and shmem swap in folios,
provides better synchronization, consolidates the metadata
management, hence dropping the static array and map, and improves
performance
- "mm/damon: introduce data attributes monitoring" (SeongJae Park(
Extend DAMON to monitor general data attributes other than accesses
- "mm/vmalloc: free unused pages on vrealloc() shrink" (Shivam Kalra)
Implement the TODO in vrealloc() to unmap and free unused pages when
shrinking across a page boundary
- "mm/damon: documentation and comment fixes" (niecheng)
- "remove mmap_action success, error hooks" (Lorenzo Stoakes)
Eliminate custom hooks from mmap_action by removing the problematic
success_hook which allowed drivers to improperly access uninitialized
VMAs. It replaces the error_hook with a simple error-code field and
updates the memory char driver accordingly
- "mm/damon: minor improvements for code readability and tests"
(SeongJae Park)
- "mm/damon: fix macro arguments and clarify quota goals doc" (Maksym
Shcherba)
- "userfaultfd: merge fs/userfaultfd.c into mm/userfaultfd.c" (Mike
Rapoport)
- "mm/mglru: improve reclaim loop and dirty folio" (Kairui Song and
others)
Clean up and slightly improves MGLRU's reclaim loop and dirty
writeback handling. Large performance improvements are measured
- "use vma locks for proc/pid/{smaps|numa_maps} reads" (Suren
Baghdasaryan)
Use per-vma locks when reading /proc/pid/smaps and numa_maps similar
to reduce contention on central mmap_lock
- "refactors thpsize_shmem_enabled_store() and thpsize_shmem_enabled_show()"
(Ran Xiaokai)
Some cleanup work in the THP code
- "selftests/memfd: fix compilation warnings" (Konstantin Khorenko)
Fix a few build glitches in the memfd selftest code.
- "memcg: shrink obj_stock_pcp and cache multiple objcgs" (Shakeel
Butt)
Resolve a 68% performance regression caused by NUMA-node cache
thrashing around struct obj_stock_pcp by shrinking its existing
fields and expanding it into a multi-slot array that caches up to
five obj_cgroup pointers per CPU, allowing per-node variants of the
same memcg to coexist within a single 64-byte cache line.
- "zram: writeback fixes" (Sergey Senozhatsky)
address a couple of unrelated zram writeback issues
- "mm: switch THP shrinker to list_lru" (Johannes Weiner)
Resolve NUMA-awareness issues and streamlines callsite interaction by
refactoring and extending the list_lru API to completely replace the
complex, open-coded deferred split queue for Transparent Huge Pages
- "mm: improve large folio readahead for exec memory" (Usama Arif)
Improve large-folio readahead on systems like 64K-page arm64 by
preventing the mmap_miss check from permanently disabling
target-oriented VM_EXEC readahead, and by generalizing the
force_thp_readahead gate to support mappings with any usefully large
maximum folio order under the cache cap.
- "userfaultfd/pagemap: pre-existing fixes" (Kiryl Shutsemau)
Fix a bunch of minor issues in the userfaultfd/pagemap, all of which
were flagged by Sashiko review of proposed new material
- "mm/sparse-vmemmap: Provide generic vmemmap_set_pmd() and
vmemmap_check_pmd()" (Muchun Song)
Provide generic versions of these two functions so the four
arch-specific implementations can be removed.
- "mm/swap, PM: hibernate: fix swapoff race in uswsusp by pinning swap
device" (Youngjun Park)
Address a uswsusp-vs-swapoff race and reduces the swap device
reference taking/releasing frequency.
- "mm/hmm: A fix and a selftest" (Dev Jain)
* tag 'mm-stable-2026-06-18-09-26' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (321 commits)
selftests/mm/hmm-tests: test pagemap reads of PMD device-private entries
fs/proc/task_mmu: do not warn on seeing non-migration pmd entry
lib/test_hmm: check alloc_page_vma() return value and handle OOM
mm/compaction: cap compact_gap() at COMPACT_CLUSTER_MAX
mm/swap: remove redundant swap device reference in alloc/free
mm/swap, PM: hibernate: fix swapoff race in uswsusp by pinning swap device
mm/filemap: use folio_next_index() for start
vmalloc: fix NULL pointer dereference in is_vm_area_hugepages()
sparc/mm: drop vmemmap_check_pmd helper and use generic code
loongarch/mm: drop vmemmap_check_pmd helper and use generic code
riscv/mm: drop vmemmap_pmd helpers and use generic code
arm64/mm: drop vmemmap_pmd helpers and use generic code
mm/sparse-vmemmap: provide generic vmemmap_set_pmd() and vmemmap_check_pmd()
rust: page: mark Page::nid as inline
userfaultfd: build __VMA_UFFD_FLAGS from config-gated masks
userfaultfd: gate must_wait writability check on pte_present()
mm/huge_memory: preserve pmd_swp_uffd_wp on device-private PMD downgrade
fs/proc/task_mmu: fix hugetlb self-deadlock in pagemap_scan_pte_hole()
fs/proc/task_mmu: use huge_page_size() in pagemap_scan_hugetlb_entry()
fs/proc/task_mmu: fix make_uffd_wp_huge_pte() prot-update race
...
709 lines
16 KiB
C
709 lines
16 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2013 Red Hat, Inc. and Parallels Inc. All rights reserved.
|
|
* Authors: David Chinner and Glauber Costa
|
|
*
|
|
* Generic LRU infrastructure
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/list_lru.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/memcontrol.h>
|
|
#include "slab.h"
|
|
#include "internal.h"
|
|
|
|
static inline void lock_list_lru(struct list_lru_one *l, bool irq,
|
|
unsigned long *irq_flags)
|
|
{
|
|
if (irq_flags)
|
|
spin_lock_irqsave(&l->lock, *irq_flags);
|
|
else if (irq)
|
|
spin_lock_irq(&l->lock);
|
|
else
|
|
spin_lock(&l->lock);
|
|
}
|
|
|
|
static inline void unlock_list_lru(struct list_lru_one *l, bool irq_off,
|
|
unsigned long *irq_flags)
|
|
{
|
|
if (irq_flags)
|
|
spin_unlock_irqrestore(&l->lock, *irq_flags);
|
|
else if (irq_off)
|
|
spin_unlock_irq(&l->lock);
|
|
else
|
|
spin_unlock(&l->lock);
|
|
}
|
|
|
|
#ifdef CONFIG_MEMCG
|
|
static LIST_HEAD(memcg_list_lrus);
|
|
static DEFINE_MUTEX(list_lrus_mutex);
|
|
|
|
static inline bool list_lru_memcg_aware(struct list_lru *lru)
|
|
{
|
|
return lru->memcg_aware;
|
|
}
|
|
|
|
static void list_lru_register(struct list_lru *lru)
|
|
{
|
|
if (!list_lru_memcg_aware(lru))
|
|
return;
|
|
|
|
mutex_lock(&list_lrus_mutex);
|
|
list_add(&lru->list, &memcg_list_lrus);
|
|
mutex_unlock(&list_lrus_mutex);
|
|
}
|
|
|
|
static void list_lru_unregister(struct list_lru *lru)
|
|
{
|
|
if (!list_lru_memcg_aware(lru))
|
|
return;
|
|
|
|
mutex_lock(&list_lrus_mutex);
|
|
list_del(&lru->list);
|
|
mutex_unlock(&list_lrus_mutex);
|
|
}
|
|
|
|
static int lru_shrinker_id(struct list_lru *lru)
|
|
{
|
|
return lru->shrinker_id;
|
|
}
|
|
|
|
static inline struct list_lru_one *
|
|
list_lru_from_memcg_idx(struct list_lru *lru, int nid, int idx)
|
|
{
|
|
if (list_lru_memcg_aware(lru) && idx >= 0) {
|
|
struct list_lru_memcg *mlru = xa_load(&lru->xa, idx);
|
|
|
|
return mlru ? &mlru->node[nid] : NULL;
|
|
}
|
|
return &lru->node[nid].lru;
|
|
}
|
|
|
|
static inline struct list_lru_one *
|
|
lock_list_lru_of_memcg(struct list_lru *lru, int nid,
|
|
struct mem_cgroup **memcg, bool irq,
|
|
unsigned long *irq_flags, bool skip_empty)
|
|
{
|
|
struct list_lru_one *l;
|
|
|
|
rcu_read_lock();
|
|
again:
|
|
l = list_lru_from_memcg_idx(lru, nid, memcg_kmem_id(*memcg));
|
|
if (likely(l)) {
|
|
lock_list_lru(l, irq, irq_flags);
|
|
if (likely(READ_ONCE(l->nr_items) != LONG_MIN)) {
|
|
rcu_read_unlock();
|
|
return l;
|
|
}
|
|
unlock_list_lru(l, irq, irq_flags);
|
|
}
|
|
/*
|
|
* Caller may simply bail out if raced with reparenting or
|
|
* may iterate through the list_lru and expect empty slots.
|
|
*/
|
|
if (skip_empty) {
|
|
rcu_read_unlock();
|
|
return NULL;
|
|
}
|
|
VM_WARN_ON(!css_is_dying(&(*memcg)->css));
|
|
*memcg = parent_mem_cgroup(*memcg);
|
|
goto again;
|
|
}
|
|
#else
|
|
static void list_lru_register(struct list_lru *lru)
|
|
{
|
|
}
|
|
|
|
static void list_lru_unregister(struct list_lru *lru)
|
|
{
|
|
}
|
|
|
|
static int lru_shrinker_id(struct list_lru *lru)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static inline bool list_lru_memcg_aware(struct list_lru *lru)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static inline struct list_lru_one *
|
|
list_lru_from_memcg_idx(struct list_lru *lru, int nid, int idx)
|
|
{
|
|
return &lru->node[nid].lru;
|
|
}
|
|
|
|
static inline struct list_lru_one *
|
|
lock_list_lru_of_memcg(struct list_lru *lru, int nid,
|
|
struct mem_cgroup **memcg, bool irq,
|
|
unsigned long *irq_flags, bool skip_empty)
|
|
{
|
|
struct list_lru_one *l = &lru->node[nid].lru;
|
|
|
|
lock_list_lru(l, irq, irq_flags);
|
|
|
|
return l;
|
|
}
|
|
#endif /* CONFIG_MEMCG */
|
|
|
|
struct list_lru_one *list_lru_lock(struct list_lru *lru, int nid,
|
|
struct mem_cgroup **memcg)
|
|
{
|
|
return lock_list_lru_of_memcg(lru, nid, memcg, /*irq=*/false,
|
|
/*irq_flags=*/NULL, /*skip_empty=*/false);
|
|
}
|
|
|
|
void list_lru_unlock(struct list_lru_one *l)
|
|
{
|
|
unlock_list_lru(l, /*irq_off=*/false, /*irq_flags=*/NULL);
|
|
}
|
|
|
|
struct list_lru_one *list_lru_lock_irq(struct list_lru *lru, int nid,
|
|
struct mem_cgroup **memcg)
|
|
{
|
|
return lock_list_lru_of_memcg(lru, nid, memcg, /*irq=*/true,
|
|
/*irq_flags=*/NULL, /*skip_empty=*/false);
|
|
}
|
|
|
|
void list_lru_unlock_irq(struct list_lru_one *l)
|
|
{
|
|
unlock_list_lru(l, /*irq_off=*/true, /*irq_flags=*/NULL);
|
|
}
|
|
|
|
struct list_lru_one *list_lru_lock_irqsave(struct list_lru *lru, int nid,
|
|
struct mem_cgroup **memcg,
|
|
unsigned long *flags)
|
|
{
|
|
return lock_list_lru_of_memcg(lru, nid, memcg, /*irq=*/true,
|
|
/*irq_flags=*/flags, /*skip_empty=*/false);
|
|
}
|
|
|
|
void list_lru_unlock_irqrestore(struct list_lru_one *l, unsigned long *flags)
|
|
{
|
|
unlock_list_lru(l, /*irq_off=*/true, /*irq_flags=*/flags);
|
|
}
|
|
|
|
bool __list_lru_add(struct list_lru *lru, struct list_lru_one *l,
|
|
struct list_head *item, int nid,
|
|
struct mem_cgroup *memcg)
|
|
{
|
|
if (list_empty(item)) {
|
|
list_add_tail(item, &l->list);
|
|
/*
|
|
* Set shrinker bit on the memcg that owns the locked
|
|
* sublist - lock_list_lru_of_memcg() may have walked up
|
|
* past a dying memcg, and the bit must be set there.
|
|
*/
|
|
if (!l->nr_items++)
|
|
set_shrinker_bit(memcg, nid, lru_shrinker_id(lru));
|
|
atomic_long_inc(&lru->node[nid].nr_items);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_add);
|
|
|
|
bool __list_lru_del(struct list_lru *lru, struct list_lru_one *l,
|
|
struct list_head *item, int nid)
|
|
{
|
|
if (!list_empty(item)) {
|
|
list_del_init(item);
|
|
l->nr_items--;
|
|
atomic_long_dec(&lru->node[nid].nr_items);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/* The caller must ensure the memcg lifetime. */
|
|
bool list_lru_add(struct list_lru *lru, struct list_head *item, int nid,
|
|
struct mem_cgroup *memcg)
|
|
{
|
|
struct list_lru_one *l;
|
|
bool ret;
|
|
|
|
l = list_lru_lock(lru, nid, &memcg);
|
|
ret = __list_lru_add(lru, l, item, nid, memcg);
|
|
list_lru_unlock(l);
|
|
return ret;
|
|
}
|
|
|
|
bool list_lru_add_irq(struct list_lru *lru, struct list_head *item,
|
|
int nid, struct mem_cgroup *memcg)
|
|
{
|
|
struct list_lru_one *l;
|
|
bool ret;
|
|
|
|
l = list_lru_lock_irq(lru, nid, &memcg);
|
|
ret = __list_lru_add(lru, l, item, nid, memcg);
|
|
list_lru_unlock_irq(l);
|
|
return ret;
|
|
}
|
|
|
|
bool list_lru_add_obj(struct list_lru *lru, struct list_head *item)
|
|
{
|
|
bool ret;
|
|
int nid = page_to_nid(virt_to_page(item));
|
|
|
|
if (list_lru_memcg_aware(lru)) {
|
|
rcu_read_lock();
|
|
ret = list_lru_add(lru, item, nid, mem_cgroup_from_virt(item));
|
|
rcu_read_unlock();
|
|
} else {
|
|
ret = list_lru_add(lru, item, nid, NULL);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_add_obj);
|
|
|
|
/* The caller must ensure the memcg lifetime. */
|
|
bool list_lru_del(struct list_lru *lru, struct list_head *item, int nid,
|
|
struct mem_cgroup *memcg)
|
|
{
|
|
struct list_lru_one *l;
|
|
bool ret;
|
|
|
|
l = list_lru_lock(lru, nid, &memcg);
|
|
ret = __list_lru_del(lru, l, item, nid);
|
|
list_lru_unlock(l);
|
|
return ret;
|
|
}
|
|
|
|
bool list_lru_del_obj(struct list_lru *lru, struct list_head *item)
|
|
{
|
|
bool ret;
|
|
int nid = page_to_nid(virt_to_page(item));
|
|
|
|
if (list_lru_memcg_aware(lru)) {
|
|
rcu_read_lock();
|
|
ret = list_lru_del(lru, item, nid, mem_cgroup_from_virt(item));
|
|
rcu_read_unlock();
|
|
} else {
|
|
ret = list_lru_del(lru, item, nid, NULL);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_del_obj);
|
|
|
|
void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
|
|
{
|
|
list_del_init(item);
|
|
list->nr_items--;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_isolate);
|
|
|
|
void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
|
|
struct list_head *head)
|
|
{
|
|
list_move(item, head);
|
|
list->nr_items--;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_isolate_move);
|
|
|
|
unsigned long list_lru_count_one(struct list_lru *lru,
|
|
int nid, struct mem_cgroup *memcg)
|
|
{
|
|
struct list_lru_one *l;
|
|
long count;
|
|
|
|
rcu_read_lock();
|
|
l = list_lru_from_memcg_idx(lru, nid, memcg_kmem_id(memcg));
|
|
count = l ? READ_ONCE(l->nr_items) : 0;
|
|
rcu_read_unlock();
|
|
|
|
if (unlikely(count < 0))
|
|
count = 0;
|
|
|
|
return count;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_count_one);
|
|
|
|
unsigned long list_lru_count_node(struct list_lru *lru, int nid)
|
|
{
|
|
struct list_lru_node *nlru;
|
|
|
|
nlru = &lru->node[nid];
|
|
return atomic_long_read(&nlru->nr_items);
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_count_node);
|
|
|
|
static unsigned long
|
|
__list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
|
|
list_lru_walk_cb isolate, void *cb_arg,
|
|
unsigned long *nr_to_walk, bool irq_off)
|
|
{
|
|
struct list_lru_node *nlru = &lru->node[nid];
|
|
struct list_lru_one *l = NULL;
|
|
struct list_head *item, *n;
|
|
unsigned long isolated = 0;
|
|
|
|
restart:
|
|
l = lock_list_lru_of_memcg(lru, nid, &memcg, /*irq=*/irq_off,
|
|
/*irq_flags=*/NULL, /*skip_empty=*/true);
|
|
if (!l)
|
|
return isolated;
|
|
list_for_each_safe(item, n, &l->list) {
|
|
enum lru_status ret;
|
|
|
|
/*
|
|
* decrement nr_to_walk first so that we don't livelock if we
|
|
* get stuck on large numbers of LRU_RETRY items
|
|
*/
|
|
if (!*nr_to_walk)
|
|
break;
|
|
--*nr_to_walk;
|
|
|
|
ret = isolate(item, l, cb_arg);
|
|
switch (ret) {
|
|
/*
|
|
* LRU_RETRY, LRU_REMOVED_RETRY and LRU_STOP will drop the lru
|
|
* lock. List traversal will have to restart from scratch.
|
|
*/
|
|
case LRU_RETRY:
|
|
goto restart;
|
|
case LRU_REMOVED_RETRY:
|
|
fallthrough;
|
|
case LRU_REMOVED:
|
|
isolated++;
|
|
atomic_long_dec(&nlru->nr_items);
|
|
if (ret == LRU_REMOVED_RETRY)
|
|
goto restart;
|
|
break;
|
|
case LRU_ROTATE:
|
|
list_move_tail(item, &l->list);
|
|
break;
|
|
case LRU_SKIP:
|
|
break;
|
|
case LRU_STOP:
|
|
goto out;
|
|
default:
|
|
BUG();
|
|
}
|
|
}
|
|
unlock_list_lru(l, irq_off, NULL);
|
|
out:
|
|
return isolated;
|
|
}
|
|
|
|
unsigned long
|
|
list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
|
|
list_lru_walk_cb isolate, void *cb_arg,
|
|
unsigned long *nr_to_walk)
|
|
{
|
|
return __list_lru_walk_one(lru, nid, memcg, isolate,
|
|
cb_arg, nr_to_walk, false);
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_walk_one);
|
|
|
|
unsigned long
|
|
list_lru_walk_one_irq(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
|
|
list_lru_walk_cb isolate, void *cb_arg,
|
|
unsigned long *nr_to_walk)
|
|
{
|
|
return __list_lru_walk_one(lru, nid, memcg, isolate,
|
|
cb_arg, nr_to_walk, true);
|
|
}
|
|
|
|
unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
|
|
list_lru_walk_cb isolate, void *cb_arg,
|
|
unsigned long *nr_to_walk)
|
|
{
|
|
long isolated = 0;
|
|
|
|
isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg,
|
|
nr_to_walk);
|
|
|
|
#ifdef CONFIG_MEMCG
|
|
if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
|
|
struct list_lru_memcg *mlru;
|
|
struct mem_cgroup *memcg;
|
|
unsigned long index;
|
|
|
|
xa_for_each(&lru->xa, index, mlru) {
|
|
rcu_read_lock();
|
|
memcg = mem_cgroup_from_private_id(index);
|
|
if (!mem_cgroup_tryget(memcg)) {
|
|
rcu_read_unlock();
|
|
continue;
|
|
}
|
|
rcu_read_unlock();
|
|
isolated += __list_lru_walk_one(lru, nid, memcg,
|
|
isolate, cb_arg,
|
|
nr_to_walk, false);
|
|
mem_cgroup_put(memcg);
|
|
|
|
if (*nr_to_walk <= 0)
|
|
break;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
return isolated;
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_walk_node);
|
|
|
|
static void init_one_lru(struct list_lru *lru, struct list_lru_one *l)
|
|
{
|
|
INIT_LIST_HEAD(&l->list);
|
|
spin_lock_init(&l->lock);
|
|
l->nr_items = 0;
|
|
#ifdef CONFIG_LOCKDEP
|
|
if (lru->key)
|
|
lockdep_set_class(&l->lock, lru->key);
|
|
#endif
|
|
}
|
|
|
|
#ifdef CONFIG_MEMCG
|
|
static struct list_lru_memcg *memcg_init_list_lru_one(struct list_lru *lru, gfp_t gfp)
|
|
{
|
|
int nid;
|
|
struct list_lru_memcg *mlru;
|
|
|
|
mlru = kmalloc_flex(*mlru, node, nr_node_ids, gfp);
|
|
if (!mlru)
|
|
return NULL;
|
|
|
|
for_each_node(nid)
|
|
init_one_lru(lru, &mlru->node[nid]);
|
|
|
|
return mlru;
|
|
}
|
|
|
|
static inline void memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
|
|
{
|
|
if (memcg_aware)
|
|
xa_init_flags(&lru->xa, XA_FLAGS_LOCK_IRQ);
|
|
lru->memcg_aware = memcg_aware;
|
|
}
|
|
|
|
static void memcg_destroy_list_lru(struct list_lru *lru)
|
|
{
|
|
XA_STATE(xas, &lru->xa, 0);
|
|
struct list_lru_memcg *mlru;
|
|
|
|
if (!list_lru_memcg_aware(lru))
|
|
return;
|
|
|
|
xas_lock_irq(&xas);
|
|
xas_for_each(&xas, mlru, ULONG_MAX) {
|
|
kfree(mlru);
|
|
xas_store(&xas, NULL);
|
|
}
|
|
xas_unlock_irq(&xas);
|
|
}
|
|
|
|
static void memcg_reparent_list_lru_one(struct list_lru *lru, int nid,
|
|
struct list_lru_one *src,
|
|
struct mem_cgroup *dst_memcg)
|
|
{
|
|
int dst_idx = dst_memcg->kmemcg_id;
|
|
struct list_lru_one *dst;
|
|
|
|
spin_lock_irq(&src->lock);
|
|
dst = list_lru_from_memcg_idx(lru, nid, dst_idx);
|
|
spin_lock_nested(&dst->lock, SINGLE_DEPTH_NESTING);
|
|
|
|
list_splice_init(&src->list, &dst->list);
|
|
if (src->nr_items) {
|
|
WARN_ON(src->nr_items < 0);
|
|
dst->nr_items += src->nr_items;
|
|
set_shrinker_bit(dst_memcg, nid, lru_shrinker_id(lru));
|
|
}
|
|
/* Mark the list_lru_one dead */
|
|
src->nr_items = LONG_MIN;
|
|
|
|
spin_unlock(&dst->lock);
|
|
spin_unlock_irq(&src->lock);
|
|
}
|
|
|
|
void memcg_reparent_list_lrus(struct mem_cgroup *memcg, struct mem_cgroup *parent)
|
|
{
|
|
struct list_lru *lru;
|
|
int i;
|
|
|
|
mutex_lock(&list_lrus_mutex);
|
|
list_for_each_entry(lru, &memcg_list_lrus, list) {
|
|
struct list_lru_memcg *mlru;
|
|
|
|
/*
|
|
* css_is_dying() check in memcg_list_lru_alloc() avoids
|
|
* allocating a new mlru since CSS_DYING is already set for this
|
|
* memcg a rcu grace period ago.
|
|
*/
|
|
mlru = xa_load(&lru->xa, memcg->kmemcg_id);
|
|
if (!mlru)
|
|
continue;
|
|
|
|
/*
|
|
* Reparent each per-node list and mark the child dead
|
|
* (LONG_MIN) before clearing xarray entry otherwise a
|
|
* concurrent list_lru_del() may corrupt the list if it arrives
|
|
* after xarray clear but before reparenting as
|
|
* lock_list_lru_of_memcg will acquire parent's lock while the
|
|
* item is still on child's list.
|
|
*/
|
|
for_each_node(i)
|
|
memcg_reparent_list_lru_one(lru, i, &mlru->node[i], parent);
|
|
|
|
xa_erase_irq(&lru->xa, memcg->kmemcg_id);
|
|
|
|
/*
|
|
* Here all list_lrus corresponding to the cgroup are guaranteed
|
|
* to remain empty, we can safely free this lru, any further
|
|
* memcg_list_lru_alloc() call will simply bail out.
|
|
*/
|
|
kvfree_rcu(mlru, rcu);
|
|
}
|
|
mutex_unlock(&list_lrus_mutex);
|
|
}
|
|
|
|
static inline bool memcg_list_lru_allocated(struct mem_cgroup *memcg,
|
|
struct list_lru *lru)
|
|
{
|
|
int idx = memcg->kmemcg_id;
|
|
|
|
return idx < 0 || xa_load(&lru->xa, idx);
|
|
}
|
|
|
|
static int __memcg_list_lru_alloc(struct mem_cgroup *memcg,
|
|
struct list_lru *lru, gfp_t gfp)
|
|
{
|
|
unsigned long flags;
|
|
struct list_lru_memcg *mlru = NULL;
|
|
struct mem_cgroup *pos, *parent;
|
|
XA_STATE(xas, &lru->xa, 0);
|
|
|
|
gfp &= GFP_RECLAIM_MASK;
|
|
/*
|
|
* Because the list_lru can be reparented to the parent cgroup's
|
|
* list_lru, we should make sure that this cgroup and all its
|
|
* ancestors have allocated list_lru_memcg.
|
|
*/
|
|
do {
|
|
/*
|
|
* Keep finding the farest parent that wasn't populated
|
|
* until found memcg itself.
|
|
*/
|
|
pos = memcg;
|
|
parent = parent_mem_cgroup(pos);
|
|
while (!memcg_list_lru_allocated(parent, lru)) {
|
|
pos = parent;
|
|
parent = parent_mem_cgroup(pos);
|
|
}
|
|
|
|
if (!mlru) {
|
|
mlru = memcg_init_list_lru_one(lru, gfp);
|
|
if (!mlru)
|
|
return -ENOMEM;
|
|
}
|
|
xas_set(&xas, pos->kmemcg_id);
|
|
do {
|
|
xas_lock_irqsave(&xas, flags);
|
|
if (!xas_load(&xas) && !css_is_dying(&pos->css)) {
|
|
xas_store(&xas, mlru);
|
|
if (!xas_error(&xas))
|
|
mlru = NULL;
|
|
}
|
|
xas_unlock_irqrestore(&xas, flags);
|
|
} while (xas_nomem(&xas, gfp));
|
|
} while (pos != memcg && !css_is_dying(&pos->css));
|
|
|
|
if (unlikely(mlru))
|
|
kfree(mlru);
|
|
|
|
return xas_error(&xas);
|
|
}
|
|
|
|
int memcg_list_lru_alloc(struct mem_cgroup *memcg, struct list_lru *lru,
|
|
gfp_t gfp)
|
|
{
|
|
if (!list_lru_memcg_aware(lru) || memcg_list_lru_allocated(memcg, lru))
|
|
return 0;
|
|
return __memcg_list_lru_alloc(memcg, lru, gfp);
|
|
}
|
|
|
|
int folio_memcg_list_lru_alloc(struct folio *folio, struct list_lru *lru,
|
|
gfp_t gfp)
|
|
{
|
|
struct mem_cgroup *memcg;
|
|
int res;
|
|
|
|
if (!list_lru_memcg_aware(lru))
|
|
return 0;
|
|
|
|
/* Fast path when list_lru heads already exist */
|
|
rcu_read_lock();
|
|
memcg = folio_memcg(folio);
|
|
res = memcg_list_lru_allocated(memcg, lru);
|
|
rcu_read_unlock();
|
|
if (likely(res))
|
|
return 0;
|
|
|
|
/* Allocation may block, pin the memcg */
|
|
memcg = get_mem_cgroup_from_folio(folio);
|
|
res = __memcg_list_lru_alloc(memcg, lru, gfp);
|
|
mem_cgroup_put(memcg);
|
|
return res;
|
|
}
|
|
#else
|
|
static inline void memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
|
|
{
|
|
}
|
|
|
|
static void memcg_destroy_list_lru(struct list_lru *lru)
|
|
{
|
|
}
|
|
#endif /* CONFIG_MEMCG */
|
|
|
|
int __list_lru_init(struct list_lru *lru, bool memcg_aware, struct shrinker *shrinker)
|
|
{
|
|
int i;
|
|
|
|
#ifdef CONFIG_MEMCG
|
|
if (shrinker)
|
|
lru->shrinker_id = shrinker->id;
|
|
else
|
|
lru->shrinker_id = -1;
|
|
|
|
if (mem_cgroup_kmem_disabled())
|
|
memcg_aware = false;
|
|
#endif
|
|
|
|
lru->node = kzalloc_objs(*lru->node, nr_node_ids);
|
|
if (!lru->node)
|
|
return -ENOMEM;
|
|
|
|
for_each_node(i)
|
|
init_one_lru(lru, &lru->node[i].lru);
|
|
|
|
memcg_init_list_lru(lru, memcg_aware);
|
|
list_lru_register(lru);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(__list_lru_init);
|
|
|
|
void list_lru_destroy(struct list_lru *lru)
|
|
{
|
|
/* Already destroyed or not yet initialized? */
|
|
if (!lru->node)
|
|
return;
|
|
|
|
list_lru_unregister(lru);
|
|
|
|
memcg_destroy_list_lru(lru);
|
|
kfree(lru->node);
|
|
lru->node = NULL;
|
|
|
|
#ifdef CONFIG_MEMCG
|
|
lru->shrinker_id = -1;
|
|
#endif
|
|
}
|
|
EXPORT_SYMBOL_GPL(list_lru_destroy);
|