2018-03-21 19:22:42 +00:00
|
|
|
==============================
|
|
|
|
Unevictable LRU Infrastructure
|
|
|
|
==============================
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
.. contents:: :local:
|
|
|
|
|
|
|
|
|
|
|
|
Introduction
|
2009-04-13 21:40:01 +00:00
|
|
|
============
|
|
|
|
|
|
|
|
This document describes the Linux memory manager's "Unevictable LRU"
|
|
|
|
infrastructure and the use of this to manage several types of "unevictable"
|
2023-01-16 19:28:24 +00:00
|
|
|
folios.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
The document attempts to provide the overall rationale behind this mechanism
|
|
|
|
and the rationale for some of the design decisions that drove the
|
|
|
|
implementation. The latter design rationale is discussed in the context of an
|
|
|
|
implementation description. Admittedly, one can obtain the implementation
|
|
|
|
details - the "what does it do?" - by reading the code. One hopes that the
|
|
|
|
descriptions below add value by provide the answer to "why does it do that?".
|
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
|
|
|
|
The Unevictable LRU
|
2009-04-13 21:40:01 +00:00
|
|
|
===================
|
|
|
|
|
|
|
|
The Unevictable LRU facility adds an additional LRU list to track unevictable
|
2023-01-16 19:28:24 +00:00
|
|
|
folios and to hide these folios from vmscan. This mechanism is based on a patch
|
|
|
|
by Larry Woodman of Red Hat to address several scalability problems with folio
|
2008-10-19 03:26:47 +00:00
|
|
|
reclaim in Linux. The problems have been observed at customer sites on large
|
2009-04-13 21:40:01 +00:00
|
|
|
memory x86_64 systems.
|
|
|
|
|
|
|
|
To illustrate this with an example, a non-NUMA x86_64 platform with 128GB of
|
2020-12-15 22:21:31 +00:00
|
|
|
main memory will have over 32 million 4k pages in a single node. When a large
|
2009-04-13 21:40:01 +00:00
|
|
|
fraction of these pages are not evictable for any reason [see below], vmscan
|
|
|
|
will spend a lot of time scanning the LRU lists looking for the small fraction
|
|
|
|
of pages that are evictable. This can result in a situation where all CPUs are
|
|
|
|
spending 100% of their time in vmscan for hours or days on end, with the system
|
|
|
|
completely unresponsive.
|
|
|
|
|
|
|
|
The unevictable list addresses the following classes of unevictable pages:
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* Those owned by ramfs.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2023-03-09 23:05:45 +00:00
|
|
|
* Those owned by tmpfs with the noswap mount option.
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* Those mapped into SHM_LOCK'd shared memory regions.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* Those mapped into VM_LOCKED [mlock()ed] VMAs.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
The infrastructure may also be able to handle other conditions that make pages
|
2008-10-19 03:26:47 +00:00
|
|
|
unevictable, either by definition or by circumstance, in the future.
|
|
|
|
|
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The Unevictable LRU Folio List
|
|
|
|
------------------------------
|
2022-04-01 18:28:30 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The Unevictable LRU folio list is a lie. It was never an LRU-ordered
|
|
|
|
list, but a companion to the LRU-ordered anonymous and file, active and
|
|
|
|
inactive folio lists; and now it is not even a folio list. But following
|
|
|
|
familiar convention, here in this document and in the source, we often
|
|
|
|
imagine it as a fifth LRU folio list.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2020-12-15 22:21:31 +00:00
|
|
|
The Unevictable LRU infrastructure consists of an additional, per-node, LRU list
|
2023-01-16 19:28:24 +00:00
|
|
|
called the "unevictable" list and an associated folio flag, PG_unevictable, to
|
|
|
|
indicate that the folio is being managed on the unevictable list.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
The PG_unevictable flag is analogous to, and mutually exclusive with, the
|
2023-01-16 19:28:24 +00:00
|
|
|
PG_active flag in that it indicates on which LRU list a folio resides when
|
2011-03-16 14:01:37 +00:00
|
|
|
PG_lru is set.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The Unevictable LRU infrastructure maintains unevictable folios as if they were
|
2022-04-01 18:28:30 +00:00
|
|
|
on an additional LRU list for a few reasons:
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
(1) We get to "treat unevictable folios just like we treat other folios in the
|
2009-04-13 21:40:01 +00:00
|
|
|
system - which means we get to use the same code to manipulate them, the
|
|
|
|
same code to isolate them (for migrate, etc.), the same code to keep track
|
|
|
|
of the statistics, etc..." [Rik van Riel]
|
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
(2) We want to be able to migrate unevictable folios between nodes for memory
|
2022-04-01 18:28:30 +00:00
|
|
|
defragmentation, workload management and memory hotplug. The Linux kernel
|
2023-01-16 19:28:24 +00:00
|
|
|
can only migrate folios that it can successfully isolate from the LRU
|
2024-08-26 06:58:13 +00:00
|
|
|
lists (or "Movable" folios: outside of consideration here). If we were to
|
2023-01-16 19:28:24 +00:00
|
|
|
maintain folios elsewhere than on an LRU-like list, where they can be
|
|
|
|
detected by folio_isolate_lru(), we would prevent their migration.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The unevictable list does not differentiate between file-backed and
|
|
|
|
anonymous, swap-backed folios. This differentiation is only important
|
|
|
|
while the folios are, in fact, evictable.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2020-12-15 22:21:31 +00:00
|
|
|
The unevictable list benefits from the "arrayification" of the per-node LRU
|
2009-04-13 21:40:01 +00:00
|
|
|
lists and statistics originally proposed and posted by Christoph Lameter.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Memory Control Group Interaction
|
2009-04-13 21:40:01 +00:00
|
|
|
--------------------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
The unevictable LRU facility interacts with the memory control group [aka
|
2022-04-01 18:28:30 +00:00
|
|
|
memory controller; see Documentation/admin-guide/cgroup-v1/memory.rst] by
|
|
|
|
extending the lru_list enum.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2020-12-15 22:21:31 +00:00
|
|
|
The memory controller data structure automatically gets a per-node unevictable
|
|
|
|
list as a result of the "arrayification" of the per-node LRU lists (one per
|
2009-04-13 21:40:01 +00:00
|
|
|
lru_list enum element). The memory controller tracks the movement of pages to
|
|
|
|
and from the unevictable list.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
When a memory control group comes under memory pressure, the controller will
|
|
|
|
not attempt to reclaim pages on the unevictable list. This has a couple of
|
2009-04-13 21:40:01 +00:00
|
|
|
effects:
|
|
|
|
|
|
|
|
(1) Because the pages are "hidden" from reclaim on the unevictable list, the
|
|
|
|
reclaim process can be more efficient, dealing only with pages that have a
|
|
|
|
chance of being reclaimed.
|
|
|
|
|
|
|
|
(2) On the other hand, if too many of the pages charged to the control group
|
|
|
|
are unevictable, the evictable portion of the working set of the tasks in
|
|
|
|
the control group may not fit into the available memory. This can cause
|
|
|
|
the control group to thrash or to OOM-kill tasks.
|
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
.. _mark_addr_space_unevict:
|
|
|
|
|
|
|
|
Marking Address Spaces Unevictable
|
2009-04-13 21:40:01 +00:00
|
|
|
----------------------------------
|
|
|
|
|
|
|
|
For facilities such as ramfs none of the pages attached to the address space
|
|
|
|
may be evicted. To prevent eviction of any such pages, the AS_UNEVICTABLE
|
|
|
|
address space flag is provided, and this can be manipulated by a filesystem
|
|
|
|
using a number of wrapper functions:
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* ``void mapping_set_unevictable(struct address_space *mapping);``
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
Mark the address space as being completely unevictable.
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* ``void mapping_clear_unevictable(struct address_space *mapping);``
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
Mark the address space as being evictable.
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
* ``int mapping_unevictable(struct address_space *mapping);``
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
Query the address space, and return true if it is completely
|
|
|
|
unevictable.
|
|
|
|
|
2018-11-06 13:23:24 +00:00
|
|
|
These are currently used in three places in the kernel:
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
(1) By ramfs to mark the address spaces of its inodes when they are created,
|
|
|
|
and this mark remains for the life of the inode.
|
|
|
|
|
|
|
|
(2) By SYSV SHM to mark SHM_LOCK'd address spaces until SHM_UNLOCK is called.
|
|
|
|
Note that SHM_LOCK is not required to page in the locked pages if they're
|
|
|
|
swapped out; the application must touch the pages manually if it wants to
|
|
|
|
ensure they're in memory.
|
|
|
|
|
2018-11-06 13:23:24 +00:00
|
|
|
(3) By the i915 driver to mark pinned address space until it's unpinned. The
|
|
|
|
amount of unevictable memory marked by i915 driver is roughly the bounded
|
|
|
|
object size in debugfs/dri/0/i915_gem_objects.
|
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Detecting Unevictable Pages
|
2009-04-13 21:40:01 +00:00
|
|
|
---------------------------
|
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The function folio_evictable() in mm/internal.h determines whether a folio is
|
2018-03-21 19:22:42 +00:00
|
|
|
evictable or not using the query function outlined above [see section
|
|
|
|
:ref:`Marking address spaces unevictable <mark_addr_space_unevict>`]
|
|
|
|
to check the AS_UNEVICTABLE flag.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
For address spaces that are so marked after being populated (as SHM regions
|
2022-04-01 18:28:30 +00:00
|
|
|
might be), the lock action (e.g. SHM_LOCK) can be lazy, and need not populate
|
2009-04-13 21:40:01 +00:00
|
|
|
the page tables for the region as does, for example, mlock(), nor need it make
|
|
|
|
any special effort to push any pages in the SHM_LOCK'd area to the unevictable
|
2023-01-16 19:28:24 +00:00
|
|
|
list. Instead, vmscan will do this if and when it encounters the folios during
|
2009-04-13 21:40:01 +00:00
|
|
|
a reclamation scan.
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
On an unlock action (such as SHM_UNLOCK), the unlocker (e.g. shmctl()) must scan
|
2009-04-13 21:40:01 +00:00
|
|
|
the pages in the region and "rescue" them from the unevictable list if no other
|
|
|
|
condition is keeping them unevictable. If an unevictable region is destroyed,
|
|
|
|
the pages are also "rescued" from the unevictable list in the process of
|
|
|
|
freeing them.
|
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
folio_evictable() also checks for mlocked folios by calling
|
|
|
|
folio_test_mlocked(), which is set when a folio is faulted into a
|
|
|
|
VM_LOCKED VMA, or found in a VMA being VM_LOCKED.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
Vmscan's Handling of Unevictable Folios
|
|
|
|
---------------------------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
If unevictable folios are culled in the fault path, or moved to the unevictable
|
|
|
|
list at mlock() or mmap() time, vmscan will not encounter the folios until they
|
2009-04-13 21:40:01 +00:00
|
|
|
have become evictable again (via munlock() for example) and have been "rescued"
|
|
|
|
from the unevictable list. However, there may be situations where we decide,
|
2023-01-16 19:28:24 +00:00
|
|
|
for the sake of expediency, to leave an unevictable folio on one of the regular
|
2009-04-13 21:40:01 +00:00
|
|
|
active/inactive LRU lists for vmscan to deal with. vmscan checks for such
|
2024-05-17 09:13:48 +00:00
|
|
|
folios in all of the shrink_{active|inactive|folio}_list() functions and will
|
2023-01-16 19:28:24 +00:00
|
|
|
"cull" such folios that it encounters: that is, it diverts those folios to the
|
2022-04-01 18:28:30 +00:00
|
|
|
unevictable list for the memory cgroup and node being scanned.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
There may be situations where a folio is mapped into a VM_LOCKED VMA,
|
|
|
|
but the folio does not have the mlocked flag set. Such folios will make
|
2024-05-17 09:13:48 +00:00
|
|
|
it all the way to shrink_active_list() or shrink_folio_list() where they
|
2023-01-16 19:28:24 +00:00
|
|
|
will be detected when vmscan walks the reverse map in folio_referenced()
|
|
|
|
or try_to_unmap(). The folio is culled to the unevictable list when it
|
|
|
|
is released by the shrinker.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
To "cull" an unevictable folio, vmscan simply puts the folio back on
|
|
|
|
the LRU list using folio_putback_lru() - the inverse operation to
|
|
|
|
folio_isolate_lru() - after dropping the folio lock. Because the
|
|
|
|
condition which makes the folio unevictable may change once the folio
|
|
|
|
is unlocked, __pagevec_lru_add_fn() will recheck the unevictable state
|
|
|
|
of a folio before placing it on the unevictable list.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
MLOCKED Pages
|
2009-04-13 21:40:01 +00:00
|
|
|
=============
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-01-16 19:28:24 +00:00
|
|
|
The unevictable folio list is also useful for mlock(), in addition to ramfs and
|
2009-04-13 21:40:01 +00:00
|
|
|
SYSV SHM. Note that mlock() is only available in CONFIG_MMU=y situations; in
|
|
|
|
NOMMU situations, all mappings are effectively mlocked.
|
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
History
|
2009-04-13 21:40:01 +00:00
|
|
|
-------
|
|
|
|
|
|
|
|
The "Unevictable mlocked Pages" infrastructure is based on work originally
|
2008-10-19 03:26:47 +00:00
|
|
|
posted by Nick Piggin in an RFC patch entitled "mm: mlocked pages off LRU".
|
2009-04-13 21:40:01 +00:00
|
|
|
Nick posted his patch as an alternative to a patch posted by Christoph Lameter
|
|
|
|
to achieve the same objective: hiding mlocked pages from vmscan.
|
|
|
|
|
|
|
|
In Nick's patch, he used one of the struct page LRU list link fields as a count
|
2022-04-01 18:28:30 +00:00
|
|
|
of VM_LOCKED VMAs that map the page (Rik van Riel had the same idea three years
|
|
|
|
earlier). But this use of the link field for a count prevented the management
|
|
|
|
of the pages on an LRU list, and thus mlocked pages were not migratable as
|
2024-08-26 06:58:13 +00:00
|
|
|
folio_isolate_lru() could not detect them, and the LRU list link field was not
|
2022-04-01 18:28:30 +00:00
|
|
|
available to the migration subsystem.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
Nick resolved this by putting mlocked pages back on the LRU list before
|
2009-04-13 21:40:01 +00:00
|
|
|
attempting to isolate them, thus abandoning the count of VM_LOCKED VMAs. When
|
|
|
|
Nick's patch was integrated with the Unevictable LRU work, the count was
|
2022-04-01 18:28:30 +00:00
|
|
|
replaced by walking the reverse map when munlocking, to determine whether any
|
|
|
|
other VM_LOCKED VMAs still mapped the page.
|
|
|
|
|
|
|
|
However, walking the reverse map for each page when munlocking was ugly and
|
|
|
|
inefficient, and could lead to catastrophic contention on a file's rmap lock,
|
|
|
|
when many processes which had it mlocked were trying to exit. In 5.18, the
|
|
|
|
idea of keeping mlock_count in Unevictable LRU list link field was revived and
|
|
|
|
put to work, without preventing the migration of mlocked pages. This is why
|
|
|
|
the "Unevictable LRU list" cannot be a linked list of pages now; but there was
|
|
|
|
no use for that linked list anyway - though its size is maintained for meminfo.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Basic Management
|
2009-04-13 21:40:01 +00:00
|
|
|
----------------
|
|
|
|
|
|
|
|
mlocked pages - pages mapped into a VM_LOCKED VMA - are a class of unevictable
|
|
|
|
pages. When such a page has been "noticed" by the memory management subsystem,
|
2024-08-21 19:34:39 +00:00
|
|
|
the folio is marked with the PG_mlocked flag. This can be manipulated using
|
|
|
|
folio_set_mlocked() and folio_clear_mlocked() functions.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
A PG_mlocked page will be placed on the unevictable list when it is added to
|
|
|
|
the LRU. Such pages can be "noticed" by memory management in several places:
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
(1) in the mlock()/mlock2()/mlockall() system call handlers;
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
(2) in the mmap() system call handler when mmapping a region with the
|
|
|
|
MAP_LOCKED flag;
|
|
|
|
|
|
|
|
(3) mmapping a region in a task that has called mlockall() with the MCL_FUTURE
|
2022-04-01 18:28:30 +00:00
|
|
|
flag;
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
(4) in the fault path and when a VM_LOCKED stack segment is expanded; or
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2024-05-17 09:13:48 +00:00
|
|
|
(5) as mentioned above, in vmscan:shrink_folio_list() when attempting to
|
2022-09-26 15:20:32 +00:00
|
|
|
reclaim a page in a VM_LOCKED VMA by folio_referenced() or try_to_unmap().
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
mlocked pages become unlocked and rescued from the unevictable list when:
|
|
|
|
|
|
|
|
(1) mapped in a range unlocked via the munlock()/munlockall() system calls;
|
|
|
|
|
|
|
|
(2) munmap()'d out of the last VM_LOCKED VMA that maps the page, including
|
|
|
|
unmapping at task exit;
|
|
|
|
|
|
|
|
(3) when the page is truncated from the last VM_LOCKED VMA of an mmapped file;
|
|
|
|
or
|
|
|
|
|
|
|
|
(4) before a page is COW'd in a VM_LOCKED VMA.
|
|
|
|
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
mlock()/mlock2()/mlockall() System Call Handling
|
|
|
|
------------------------------------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
mlock(), mlock2() and mlockall() system call handlers proceed to mlock_fixup()
|
2009-04-13 21:40:01 +00:00
|
|
|
for each VMA in the range specified by the call. In the case of mlockall(),
|
2008-10-19 03:26:47 +00:00
|
|
|
this is the entire active address space of the task. Note that mlock_fixup()
|
2009-04-13 21:40:01 +00:00
|
|
|
is used for both mlocking and munlocking a range of memory. A call to mlock()
|
2022-04-01 18:28:30 +00:00
|
|
|
an already VM_LOCKED VMA, or to munlock() a VMA that is not VM_LOCKED, is
|
|
|
|
treated as a no-op and mlock_fixup() simply returns.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
If the VMA passes some filtering as described in "Filtering Special VMAs"
|
2009-04-13 21:40:01 +00:00
|
|
|
below, mlock_fixup() will attempt to merge the VMA with its neighbors or split
|
2022-04-01 18:28:30 +00:00
|
|
|
off a subset of the VMA if the range does not cover the entire VMA. Any pages
|
2023-01-16 19:28:27 +00:00
|
|
|
already present in the VMA are then marked as mlocked by mlock_folio() via
|
2022-04-01 18:28:30 +00:00
|
|
|
mlock_pte_range() via walk_page_range() via mlock_vma_pages_range().
|
|
|
|
|
|
|
|
Before returning from the system call, do_mlock() or mlockall() will call
|
|
|
|
__mm_populate() to fault in the remaining pages via get_user_pages() and to
|
|
|
|
mark those pages as mlocked as they are faulted.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
Note that the VMA being mlocked might be mapped with PROT_NONE. In this case,
|
|
|
|
get_user_pages() will be unable to fault in the pages. That's okay. If pages
|
2022-04-01 18:28:30 +00:00
|
|
|
do end up getting faulted into this VM_LOCKED VMA, they will be handled in the
|
|
|
|
fault path - which is also how mlock2()'s MLOCK_ONFAULT areas are handled.
|
|
|
|
|
|
|
|
For each PTE (or PMD) being faulted into a VMA, the page add rmap function
|
2023-01-16 19:28:25 +00:00
|
|
|
calls mlock_vma_folio(), which calls mlock_folio() when the VMA is VM_LOCKED
|
2022-04-01 18:28:30 +00:00
|
|
|
(unless it is a PTE mapping of a part of a transparent huge page). Or when
|
2023-01-12 12:39:32 +00:00
|
|
|
it is a newly allocated anonymous page, folio_add_lru_vma() calls
|
|
|
|
mlock_new_folio() instead: similar to mlock_folio(), but can make better
|
2022-04-01 18:28:30 +00:00
|
|
|
judgments, since this page is held exclusively and known not to be on LRU yet.
|
|
|
|
|
2023-01-12 12:39:32 +00:00
|
|
|
mlock_folio() sets PG_mlocked immediately, then places the page on the CPU's
|
|
|
|
mlock folio batch, to batch up the rest of the work to be done under lru_lock by
|
|
|
|
__mlock_folio(). __mlock_folio() sets PG_unevictable, initializes mlock_count
|
2022-04-01 18:28:30 +00:00
|
|
|
and moves the page to unevictable state ("the unevictable LRU", but with
|
2023-01-12 12:39:32 +00:00
|
|
|
mlock_count in place of LRU threading). Or if the page was already PG_lru
|
|
|
|
and PG_unevictable and PG_mlocked, it simply increments the mlock_count.
|
2022-04-01 18:28:30 +00:00
|
|
|
|
|
|
|
But in practice that may not work ideally: the page may not yet be on an LRU, or
|
|
|
|
it may have been temporarily isolated from LRU. In such cases the mlock_count
|
2023-01-12 12:39:32 +00:00
|
|
|
field cannot be touched, but will be set to 0 later when __munlock_folio()
|
2022-04-01 18:28:30 +00:00
|
|
|
returns the page to "LRU". Races prohibit mlock_count from being set to 1 then:
|
|
|
|
rather than risk stranding a page indefinitely as unevictable, always err with
|
|
|
|
mlock_count on the low side, so that when munlocked the page will be rescued to
|
|
|
|
an evictable LRU, then perhaps be mlocked again later if vmscan finds it in a
|
|
|
|
VM_LOCKED VMA.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Filtering Special VMAs
|
2009-04-13 21:40:01 +00:00
|
|
|
----------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
mlock_fixup() filters several classes of "special" VMAs:
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
1) VMAs with VM_IO or VM_PFNMAP set are skipped entirely. The pages behind
|
2008-10-19 03:26:47 +00:00
|
|
|
these mappings are inherently pinned, so we don't need to mark them as
|
2009-04-13 21:40:01 +00:00
|
|
|
mlocked. In any case, most of the pages have no struct page in which to so
|
|
|
|
mark the page. Because of this, get_user_pages() will fail for these VMAs,
|
|
|
|
so there is no sense in attempting to visit them.
|
|
|
|
|
|
|
|
2) VMAs mapping hugetlbfs page are already effectively pinned into memory. We
|
2022-04-01 18:28:30 +00:00
|
|
|
neither need nor want to mlock() these pages. But __mm_populate() includes
|
|
|
|
hugetlbfs ranges, allocating the huge pages and populating the PTEs.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
mm: kill vma flag VM_RESERVED and mm->reserved_vm counter
A long time ago, in v2.4, VM_RESERVED kept swapout process off VMA,
currently it lost original meaning but still has some effects:
| effect | alternative flags
-+------------------------+---------------------------------------------
1| account as reserved_vm | VM_IO
2| skip in core dump | VM_IO, VM_DONTDUMP
3| do not merge or expand | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
4| do not mlock | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
This patch removes reserved_vm counter from mm_struct. Seems like nobody
cares about it, it does not exported into userspace directly, it only
reduces total_vm showed in proc.
Thus VM_RESERVED can be replaced with VM_IO or pair VM_DONTEXPAND | VM_DONTDUMP.
remap_pfn_range() and io_remap_pfn_range() set VM_IO|VM_DONTEXPAND|VM_DONTDUMP.
remap_vmalloc_range() set VM_DONTEXPAND | VM_DONTDUMP.
[akpm@linux-foundation.org: drivers/vfio/pci/vfio_pci.c fixup]
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Carsten Otte <cotte@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@tilera.com>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Eric Paris <eparis@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Morris <james.l.morris@oracle.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Kentaro Takeda <takedakn@nttdata.co.jp>
Cc: Matt Helsley <matthltc@us.ibm.com>
Cc: Nick Piggin <npiggin@kernel.dk>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Venkatesh Pallipadi <venki@google.com>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-10-08 23:29:02 +00:00
|
|
|
3) VMAs with VM_DONTEXPAND are generally userspace mappings of kernel pages,
|
2022-04-01 18:28:30 +00:00
|
|
|
such as the VDSO page, relay channel pages, etc. These pages are inherently
|
|
|
|
unevictable and are not managed on the LRU lists. __mm_populate() includes
|
|
|
|
these ranges, populating the PTEs if not already populated.
|
|
|
|
|
|
|
|
4) VMAs with VM_MIXEDMAP set are not marked VM_LOCKED, but __mm_populate()
|
|
|
|
includes these ranges, populating the PTEs if not already populated.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
Note that for all of these special VMAs, mlock_fixup() does not set the
|
2008-10-19 03:26:47 +00:00
|
|
|
VM_LOCKED flag. Therefore, we won't have to deal with them later during
|
2009-04-13 21:40:01 +00:00
|
|
|
munlock(), munmap() or task exit. Neither does mlock_fixup() account these
|
|
|
|
VMAs against the task's "locked_vm".
|
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
munlock()/munlockall() System Call Handling
|
2009-04-13 21:40:01 +00:00
|
|
|
-------------------------------------------
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
The munlock() and munlockall() system calls are handled by the same
|
|
|
|
mlock_fixup() function as mlock(), mlock2() and mlockall() system calls are.
|
|
|
|
If called to munlock an already munlocked VMA, mlock_fixup() simply returns.
|
|
|
|
Because of the VMA filtering discussed above, VM_LOCKED will not be set in
|
|
|
|
any "special" VMAs. So, those VMAs will be ignored for munlock.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
If the VMA is VM_LOCKED, mlock_fixup() again attempts to merge or split off the
|
2023-01-16 19:28:27 +00:00
|
|
|
specified range. All pages in the VMA are then munlocked by munlock_folio() via
|
2022-04-01 18:28:30 +00:00
|
|
|
mlock_pte_range() via walk_page_range() via mlock_vma_pages_range() - the same
|
|
|
|
function used when mlocking a VMA range, with new flags for the VMA indicating
|
|
|
|
that it is munlock() being performed.
|
|
|
|
|
2023-01-16 19:28:27 +00:00
|
|
|
munlock_folio() uses the mlock pagevec to batch up work to be done
|
|
|
|
under lru_lock by __munlock_folio(). __munlock_folio() decrements the
|
|
|
|
folio's mlock_count, and when that reaches 0 it clears the mlocked flag
|
|
|
|
and clears the unevictable flag, moving the folio from unevictable state
|
|
|
|
to the inactive LRU.
|
2022-04-01 18:28:30 +00:00
|
|
|
|
2023-01-16 19:28:27 +00:00
|
|
|
But in practice that may not work ideally: the folio may not yet have reached
|
2022-04-01 18:28:30 +00:00
|
|
|
"the unevictable LRU", or it may have been temporarily isolated from it. In
|
|
|
|
those cases its mlock_count field is unusable and must be assumed to be 0: so
|
2023-01-16 19:28:27 +00:00
|
|
|
that the folio will be rescued to an evictable LRU, then perhaps be mlocked
|
2022-04-01 18:28:30 +00:00
|
|
|
again later if vmscan finds it in a VM_LOCKED VMA.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Migrating MLOCKED Pages
|
2009-04-13 21:40:01 +00:00
|
|
|
-----------------------
|
|
|
|
|
|
|
|
A page that is being migrated has been isolated from the LRU lists and is held
|
|
|
|
locked across unmapping of the page, updating the page's address space entry
|
|
|
|
and copying the contents and state, until the page table entry has been
|
|
|
|
replaced with an entry that refers to the new page. Linux supports migration
|
2022-04-01 18:28:30 +00:00
|
|
|
of mlocked pages and other unevictable pages. PG_mlocked is cleared from the
|
|
|
|
the old page when it is unmapped from the last VM_LOCKED VMA, and set when the
|
|
|
|
new page is mapped in place of migration entry in a VM_LOCKED VMA. If the page
|
|
|
|
was unevictable because mlocked, PG_unevictable follows PG_mlocked; but if the
|
|
|
|
page was unevictable for other reasons, PG_unevictable is copied explicitly.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
Note that page migration can race with mlocking or munlocking of the same page.
|
2022-04-01 18:28:30 +00:00
|
|
|
There is mostly no problem since page migration requires unmapping all PTEs of
|
|
|
|
the old page (including munlock where VM_LOCKED), then mapping in the new page
|
|
|
|
(including mlock where VM_LOCKED). The page table locks provide sufficient
|
|
|
|
synchronization.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
However, since mlock_vma_pages_range() starts by setting VM_LOCKED on a VMA,
|
|
|
|
before mlocking any pages already present, if one of those pages were migrated
|
|
|
|
before mlock_pte_range() reached it, it would get counted twice in mlock_count.
|
|
|
|
To prevent that, mlock_vma_pages_range() temporarily marks the VMA as VM_IO,
|
2023-01-16 19:28:25 +00:00
|
|
|
so that mlock_vma_folio() will skip it.
|
2022-04-01 18:28:30 +00:00
|
|
|
|
|
|
|
To complete page migration, we place the old and new pages back onto the LRU
|
|
|
|
afterwards. The "unneeded" page - old page on success, new page on failure -
|
|
|
|
is freed when the reference count held by the migration process is released.
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Compacting MLOCKED Pages
|
2015-04-15 23:13:23 +00:00
|
|
|
------------------------
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
The memory map can be scanned for compactable regions and the default behavior
|
|
|
|
is to let unevictable pages be moved. /proc/sys/vm/compact_unevictable_allowed
|
|
|
|
controls this behavior (see Documentation/admin-guide/sysctl/vm.rst). The work
|
|
|
|
of compaction is mostly handled by the page migration code and the same work
|
|
|
|
flow as described in Migrating MLOCKED Pages will apply.
|
|
|
|
|
2015-04-15 23:13:23 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
MLOCKING Transparent Huge Pages
|
2016-07-26 22:25:15 +00:00
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
A transparent huge page is represented by a single entry on an LRU list.
|
|
|
|
Therefore, we can only make unevictable an entire compound page, not
|
|
|
|
individual subpages.
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
If a user tries to mlock() part of a huge page, and no user mlock()s the
|
|
|
|
whole of the huge page, we want the rest of the page to be reclaimable.
|
2016-07-26 22:25:15 +00:00
|
|
|
|
|
|
|
We cannot just split the page on partial mlock() as split_huge_page() can
|
2022-04-01 18:28:30 +00:00
|
|
|
fail and a new intermittent failure mode for the syscall is undesirable.
|
2016-07-26 22:25:15 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
We handle this by keeping PTE-mlocked huge pages on evictable LRU lists:
|
|
|
|
the PMD on the border of a VM_LOCKED VMA will be split into a PTE table.
|
2016-07-26 22:25:15 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
This way the huge page is accessible for vmscan. Under memory pressure the
|
2016-07-26 22:25:15 +00:00
|
|
|
page will be split, subpages which belong to VM_LOCKED VMAs will be moved
|
2022-04-01 18:28:30 +00:00
|
|
|
to the unevictable LRU and the rest can be reclaimed.
|
|
|
|
|
|
|
|
/proc/meminfo's Unevictable and Mlocked amounts do not include those parts
|
|
|
|
of a transparent huge page which are mapped only by PTEs in VM_LOCKED VMAs.
|
2016-07-26 22:25:15 +00:00
|
|
|
|
2015-04-15 23:13:23 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
mmap(MAP_LOCKED) System Call Handling
|
2009-04-13 21:40:01 +00:00
|
|
|
-------------------------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
In addition to the mlock(), mlock2() and mlockall() system calls, an application
|
|
|
|
can request that a region of memory be mlocked by supplying the MAP_LOCKED flag
|
|
|
|
to the mmap() call. There is one important and subtle difference here, though.
|
|
|
|
mmap() + mlock() will fail if the range cannot be faulted in (e.g. because
|
|
|
|
mm_populate fails) and returns with ENOMEM while mmap(MAP_LOCKED) will not fail.
|
2023-08-14 21:28:22 +00:00
|
|
|
The mmapped area will still have properties of the locked area - pages will not
|
2022-04-01 18:28:30 +00:00
|
|
|
get swapped out - but major page faults to fault memory in might still happen.
|
2015-06-24 23:57:50 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
Furthermore, any mmap() call or brk() call that expands the heap by a task
|
|
|
|
that has previously called mlockall() with the MCL_FUTURE flag will result
|
2009-04-13 21:40:01 +00:00
|
|
|
in the newly mapped memory being mlocked. Before the unevictable/mlock
|
2022-04-01 18:28:30 +00:00
|
|
|
changes, the kernel simply called make_pages_present() to allocate pages
|
|
|
|
and populate the page table.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
To mlock a range of memory under the unevictable/mlock infrastructure,
|
|
|
|
the mmap() handler and task address space expansion functions call
|
2015-04-14 22:44:39 +00:00
|
|
|
populate_vma_page_range() specifying the vma and the address range to mlock.
|
|
|
|
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
munmap()/exit()/exec() System Call Handling
|
2009-04-13 21:40:01 +00:00
|
|
|
-------------------------------------------
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
When unmapping an mlocked region of memory, whether by an explicit call to
|
|
|
|
munmap() or via an internal unmap from exit() or exec() processing, we must
|
2009-04-13 21:40:01 +00:00
|
|
|
munlock the pages if we're removing the last VM_LOCKED VMA that maps the pages.
|
2009-01-06 22:39:38 +00:00
|
|
|
Before the unevictable/mlock changes, mlocking did not mark the pages in any
|
|
|
|
way, so unmapping them required no processing.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2023-12-20 22:44:55 +00:00
|
|
|
For each PTE (or PMD) being unmapped from a VMA, folio_remove_rmap_*() calls
|
2023-01-16 19:28:26 +00:00
|
|
|
munlock_vma_folio(), which calls munlock_folio() when the VMA is VM_LOCKED
|
2022-04-01 18:28:30 +00:00
|
|
|
(unless it was a PTE mapping of a part of a transparent huge page).
|
|
|
|
|
2023-01-16 19:28:27 +00:00
|
|
|
munlock_folio() uses the mlock pagevec to batch up work to be done
|
|
|
|
under lru_lock by __munlock_folio(). __munlock_folio() decrements the
|
|
|
|
folio's mlock_count, and when that reaches 0 it clears the mlocked flag
|
|
|
|
and clears the unevictable flag, moving the folio from unevictable state
|
|
|
|
to the inactive LRU.
|
2022-04-01 18:28:30 +00:00
|
|
|
|
2023-01-16 19:28:27 +00:00
|
|
|
But in practice that may not work ideally: the folio may not yet have reached
|
2022-04-01 18:28:30 +00:00
|
|
|
"the unevictable LRU", or it may have been temporarily isolated from it. In
|
|
|
|
those cases its mlock_count field is unusable and must be assumed to be 0: so
|
2023-01-16 19:28:27 +00:00
|
|
|
that the folio will be rescued to an evictable LRU, then perhaps be mlocked
|
2022-04-01 18:28:30 +00:00
|
|
|
again later if vmscan finds it in a VM_LOCKED VMA.
|
|
|
|
|
|
|
|
|
|
|
|
Truncating MLOCKED Pages
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
File truncation or hole punching forcibly unmaps the deleted pages from
|
|
|
|
userspace; truncation even unmaps and deletes any private anonymous pages
|
|
|
|
which had been Copied-On-Write from the file pages now being truncated.
|
|
|
|
|
|
|
|
Mlocked pages can be munlocked and deleted in this way: like with munmap(),
|
2023-12-20 22:44:55 +00:00
|
|
|
for each PTE (or PMD) being unmapped from a VMA, folio_remove_rmap_*() calls
|
2023-01-16 19:28:26 +00:00
|
|
|
munlock_vma_folio(), which calls munlock_folio() when the VMA is VM_LOCKED
|
2022-04-01 18:28:30 +00:00
|
|
|
(unless it was a PTE mapping of a part of a transparent huge page).
|
|
|
|
|
|
|
|
However, if there is a racing munlock(), since mlock_vma_pages_range() starts
|
|
|
|
munlocking by clearing VM_LOCKED from a VMA, before munlocking all the pages
|
|
|
|
present, if one of those pages were unmapped by truncation or hole punch before
|
|
|
|
mlock_pte_range() reached it, it would not be recognized as mlocked by this VMA,
|
|
|
|
and would not be counted out of mlock_count. In this rare case, a page may
|
2023-01-12 12:39:32 +00:00
|
|
|
still appear as PG_mlocked after it has been fully unmapped: and it is left to
|
2022-04-01 18:28:30 +00:00
|
|
|
release_pages() (or __page_cache_release()) to clear it and update statistics
|
|
|
|
before freeing (this event is counted in /proc/vmstat unevictable_pgs_cleared,
|
|
|
|
which is usually 0).
|
2009-04-13 21:40:01 +00:00
|
|
|
|
|
|
|
|
2018-03-21 19:22:42 +00:00
|
|
|
Page Reclaim in shrink_*_list()
|
2009-04-13 21:40:01 +00:00
|
|
|
-------------------------------
|
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
vmscan's shrink_active_list() culls any obviously unevictable pages -
|
|
|
|
i.e. !page_evictable(page) pages - diverting those to the unevictable list.
|
2009-04-13 21:40:01 +00:00
|
|
|
However, shrink_active_list() only sees unevictable pages that made it onto the
|
2023-01-12 12:39:32 +00:00
|
|
|
active/inactive LRU lists. Note that these pages do not have PG_unevictable
|
2022-04-01 18:28:30 +00:00
|
|
|
set - otherwise they would be on the unevictable list and shrink_active_list()
|
2009-04-13 21:40:01 +00:00
|
|
|
would never see them.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
|
|
|
Some examples of these unevictable pages on the LRU lists are:
|
|
|
|
|
2009-04-13 21:40:01 +00:00
|
|
|
(1) ramfs pages that have been placed on the LRU lists when first allocated.
|
|
|
|
|
|
|
|
(2) SHM_LOCK'd shared memory pages. shmctl(SHM_LOCK) does not attempt to
|
|
|
|
allocate or fault in the pages in the shared memory region. This happens
|
|
|
|
when an application accesses the page the first time after SHM_LOCK'ing
|
|
|
|
the segment.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2022-04-01 18:28:30 +00:00
|
|
|
(3) pages still mapped into VM_LOCKED VMAs, which should be marked mlocked,
|
|
|
|
but events left mlock_count too low, so they were munlocked too early.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2024-05-17 09:13:48 +00:00
|
|
|
vmscan's shrink_inactive_list() and shrink_folio_list() also divert obviously
|
2022-04-01 18:28:30 +00:00
|
|
|
unevictable pages found on the inactive lists to the appropriate memory cgroup
|
|
|
|
and node unevictable list.
|
2008-10-19 03:26:47 +00:00
|
|
|
|
2022-09-26 15:20:32 +00:00
|
|
|
rmap's folio_referenced_one(), called via vmscan's shrink_active_list() or
|
2024-05-17 09:13:48 +00:00
|
|
|
shrink_folio_list(), and rmap's try_to_unmap_one() called via shrink_folio_list(),
|
2023-01-16 19:28:25 +00:00
|
|
|
check for (3) pages still mapped into VM_LOCKED VMAs, and call mlock_vma_folio()
|
2022-04-01 18:28:30 +00:00
|
|
|
to correct them. Such pages are culled to the unevictable list when released
|
|
|
|
by the shrinker.
|