mm/migrate: remove unused mm argument from do_move_pages_to_node
[linux-2.6-block.git] / mm / vmscan.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
1da177e4
LT
3 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
4 *
5 * Swap reorganised 29.12.95, Stephen Tweedie.
6 * kswapd added: 7.1.96 sct
7 * Removed kswapd_ctl limits, and swap out as many pages as needed
8 * to bring the system back to freepages.high: 2.4.97, Rik van Riel.
9 * Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
10 * Multiqueue VM started 5.8.00, Rik van Riel.
11 */
12
b1de0d13
MH
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
1da177e4 15#include <linux/mm.h>
5b3cc15a 16#include <linux/sched/mm.h>
1da177e4 17#include <linux/module.h>
5a0e3ad6 18#include <linux/gfp.h>
1da177e4
LT
19#include <linux/kernel_stat.h>
20#include <linux/swap.h>
21#include <linux/pagemap.h>
22#include <linux/init.h>
23#include <linux/highmem.h>
70ddf637 24#include <linux/vmpressure.h>
e129b5c2 25#include <linux/vmstat.h>
1da177e4
LT
26#include <linux/file.h>
27#include <linux/writeback.h>
28#include <linux/blkdev.h>
07f67a8d 29#include <linux/buffer_head.h> /* for buffer_heads_over_limit */
1da177e4 30#include <linux/mm_inline.h>
1da177e4
LT
31#include <linux/backing-dev.h>
32#include <linux/rmap.h>
33#include <linux/topology.h>
34#include <linux/cpu.h>
35#include <linux/cpuset.h>
3e7d3449 36#include <linux/compaction.h>
1da177e4 37#include <linux/notifier.h>
248a0301 38#include <linux/delay.h>
3218ae14 39#include <linux/kthread.h>
7dfb7103 40#include <linux/freezer.h>
66e1707b 41#include <linux/memcontrol.h>
26aa2d19 42#include <linux/migrate.h>
873b4771 43#include <linux/delayacct.h>
af936a16 44#include <linux/sysctl.h>
91952440 45#include <linux/memory-tiers.h>
929bea7c 46#include <linux/oom.h>
64e3d12f 47#include <linux/pagevec.h>
268bb0ce 48#include <linux/prefetch.h>
b1de0d13 49#include <linux/printk.h>
f9fe48be 50#include <linux/dax.h>
eb414681 51#include <linux/psi.h>
bd74fdae
YZ
52#include <linux/pagewalk.h>
53#include <linux/shmem_fs.h>
354ed597 54#include <linux/ctype.h>
d6c3af7d 55#include <linux/debugfs.h>
57e9cc50 56#include <linux/khugepaged.h>
e4dde56c
YZ
57#include <linux/rculist_nulls.h>
58#include <linux/random.h>
1da177e4
LT
59
60#include <asm/tlbflush.h>
61#include <asm/div64.h>
62
63#include <linux/swapops.h>
117aad1e 64#include <linux/balloon_compaction.h>
c574bbe9 65#include <linux/sched/sysctl.h>
1da177e4 66
0f8053a5 67#include "internal.h"
014bb1de 68#include "swap.h"
0f8053a5 69
33906bc5
MG
70#define CREATE_TRACE_POINTS
71#include <trace/events/vmscan.h>
72
1da177e4 73struct scan_control {
22fba335
KM
74 /* How many pages shrink_list() should reclaim */
75 unsigned long nr_to_reclaim;
76
ee814fe2
JW
77 /*
78 * Nodemask of nodes allowed by the caller. If NULL, all nodes
79 * are scanned.
80 */
81 nodemask_t *nodemask;
9e3b2f8c 82
f16015fb
JW
83 /*
84 * The memory cgroup that hit its limit and as a result is the
85 * primary target of this reclaim invocation.
86 */
87 struct mem_cgroup *target_mem_cgroup;
66e1707b 88
7cf111bc
JW
89 /*
90 * Scan pressure balancing between anon and file LRUs
91 */
92 unsigned long anon_cost;
93 unsigned long file_cost;
94
49fd9b6d 95 /* Can active folios be deactivated as part of reclaim? */
b91ac374
JW
96#define DEACTIVATE_ANON 1
97#define DEACTIVATE_FILE 2
98 unsigned int may_deactivate:2;
99 unsigned int force_deactivate:1;
100 unsigned int skipped_deactivate:1;
101
1276ad68 102 /* Writepage batching in laptop mode; RECLAIM_WRITE */
ee814fe2
JW
103 unsigned int may_writepage:1;
104
49fd9b6d 105 /* Can mapped folios be reclaimed? */
ee814fe2
JW
106 unsigned int may_unmap:1;
107
49fd9b6d 108 /* Can folios be swapped as part of reclaim? */
ee814fe2
JW
109 unsigned int may_swap:1;
110
73b73bac
YA
111 /* Proactive reclaim invoked by userspace through memory.reclaim */
112 unsigned int proactive:1;
113
d6622f63 114 /*
f56ce412
JW
115 * Cgroup memory below memory.low is protected as long as we
116 * don't threaten to OOM. If any cgroup is reclaimed at
117 * reduced force or passed over entirely due to its memory.low
118 * setting (memcg_low_skipped), and nothing is reclaimed as a
119 * result, then go back for one more cycle that reclaims the protected
120 * memory (memcg_low_reclaim) to avert OOM.
d6622f63
YX
121 */
122 unsigned int memcg_low_reclaim:1;
123 unsigned int memcg_low_skipped:1;
241994ed 124
ee814fe2
JW
125 unsigned int hibernation_mode:1;
126
127 /* One of the zones is ready for compaction */
128 unsigned int compaction_ready:1;
129
b91ac374
JW
130 /* There is easily reclaimable cold cache in the current node */
131 unsigned int cache_trim_mode:1;
132
49fd9b6d 133 /* The file folios on the current node are dangerously low */
53138cea
JW
134 unsigned int file_is_tiny:1;
135
26aa2d19
DH
136 /* Always discard instead of demoting to lower tier memory */
137 unsigned int no_demotion:1;
138
bb451fdf
GT
139 /* Allocation order */
140 s8 order;
141
142 /* Scan (total_size >> priority) pages at once */
143 s8 priority;
144
49fd9b6d 145 /* The highest zone to isolate folios for reclaim from */
bb451fdf
GT
146 s8 reclaim_idx;
147
148 /* This context's GFP mask */
149 gfp_t gfp_mask;
150
ee814fe2
JW
151 /* Incremented by the number of inactive pages that were scanned */
152 unsigned long nr_scanned;
153
154 /* Number of pages freed so far during a call to shrink_zones() */
155 unsigned long nr_reclaimed;
d108c772
AR
156
157 struct {
158 unsigned int dirty;
159 unsigned int unqueued_dirty;
160 unsigned int congested;
161 unsigned int writeback;
162 unsigned int immediate;
163 unsigned int file_taken;
164 unsigned int taken;
165 } nr;
e5ca8071
YS
166
167 /* for recording the reclaimed slab by now */
168 struct reclaim_state reclaim_state;
1da177e4
LT
169};
170
1da177e4 171#ifdef ARCH_HAS_PREFETCHW
166e3d32 172#define prefetchw_prev_lru_folio(_folio, _base, _field) \
1da177e4 173 do { \
166e3d32
MWO
174 if ((_folio)->lru.prev != _base) { \
175 struct folio *prev; \
1da177e4 176 \
166e3d32 177 prev = lru_to_folio(&(_folio->lru)); \
1da177e4
LT
178 prefetchw(&prev->_field); \
179 } \
180 } while (0)
181#else
166e3d32 182#define prefetchw_prev_lru_folio(_folio, _base, _field) do { } while (0)
1da177e4
LT
183#endif
184
185/*
c843966c 186 * From 0 .. 200. Higher means more swappy.
1da177e4
LT
187 */
188int vm_swappiness = 60;
1da177e4 189
0a432dcb 190#ifdef CONFIG_MEMCG
a178015c 191
7a704474 192/* Returns true for reclaim through cgroup limits or cgroup interfaces. */
b5ead35e 193static bool cgroup_reclaim(struct scan_control *sc)
89b5fae5 194{
b5ead35e 195 return sc->target_mem_cgroup;
89b5fae5 196}
97c9341f 197
7a704474
YA
198/*
199 * Returns true for reclaim on the root cgroup. This is true for direct
200 * allocator reclaim and reclaim through cgroup interfaces on the root cgroup.
201 */
202static bool root_reclaim(struct scan_control *sc)
a579086c
YZ
203{
204 return !sc->target_mem_cgroup || mem_cgroup_is_root(sc->target_mem_cgroup);
205}
206
97c9341f 207/**
b5ead35e 208 * writeback_throttling_sane - is the usual dirty throttling mechanism available?
97c9341f
TH
209 * @sc: scan_control in question
210 *
211 * The normal page dirty throttling mechanism in balance_dirty_pages() is
212 * completely broken with the legacy memcg and direct stalling in
49fd9b6d 213 * shrink_folio_list() is used for throttling instead, which lacks all the
97c9341f
TH
214 * niceties such as fairness, adaptive pausing, bandwidth proportional
215 * allocation and configurability.
216 *
217 * This function tests whether the vmscan currently in progress can assume
218 * that the normal dirty throttling mechanism is operational.
219 */
b5ead35e 220static bool writeback_throttling_sane(struct scan_control *sc)
97c9341f 221{
b5ead35e 222 if (!cgroup_reclaim(sc))
97c9341f
TH
223 return true;
224#ifdef CONFIG_CGROUP_WRITEBACK
69234ace 225 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
97c9341f
TH
226 return true;
227#endif
228 return false;
229}
91a45470 230#else
b5ead35e 231static bool cgroup_reclaim(struct scan_control *sc)
89b5fae5 232{
b5ead35e 233 return false;
89b5fae5 234}
97c9341f 235
7a704474 236static bool root_reclaim(struct scan_control *sc)
a579086c
YZ
237{
238 return true;
239}
240
b5ead35e 241static bool writeback_throttling_sane(struct scan_control *sc)
97c9341f
TH
242{
243 return true;
244}
91a45470
KH
245#endif
246
ef05e689
YA
247static void set_task_reclaim_state(struct task_struct *task,
248 struct reclaim_state *rs)
249{
250 /* Check for an overwrite */
251 WARN_ON_ONCE(rs && task->reclaim_state);
252
253 /* Check for the nulling of an already-nulled member */
254 WARN_ON_ONCE(!rs && !task->reclaim_state);
255
256 task->reclaim_state = rs;
257}
258
583c27a1
YA
259/*
260 * flush_reclaim_state(): add pages reclaimed outside of LRU-based reclaim to
261 * scan_control->nr_reclaimed.
262 */
263static void flush_reclaim_state(struct scan_control *sc)
264{
265 /*
266 * Currently, reclaim_state->reclaimed includes three types of pages
267 * freed outside of vmscan:
268 * (1) Slab pages.
269 * (2) Clean file pages from pruned inodes (on highmem systems).
270 * (3) XFS freed buffer pages.
271 *
272 * For all of these cases, we cannot universally link the pages to a
273 * single memcg. For example, a memcg-aware shrinker can free one object
274 * charged to the target memcg, causing an entire page to be freed.
275 * If we count the entire page as reclaimed from the memcg, we end up
276 * overestimating the reclaimed amount (potentially under-reclaiming).
277 *
278 * Only count such pages for global reclaim to prevent under-reclaiming
279 * from the target memcg; preventing unnecessary retries during memcg
280 * charging and false positives from proactive reclaim.
281 *
282 * For uncommon cases where the freed pages were actually mostly
283 * charged to the target memcg, we end up underestimating the reclaimed
284 * amount. This should be fine. The freed pages will be uncharged
285 * anyway, even if they are not counted here properly, and we will be
286 * able to make forward progress in charging (which is usually in a
287 * retry loop).
288 *
289 * We can go one step further, and report the uncharged objcg pages in
290 * memcg reclaim, to make reporting more accurate and reduce
291 * underestimation, but it's probably not worth the complexity for now.
292 */
7a704474 293 if (current->reclaim_state && root_reclaim(sc)) {
583c27a1
YA
294 sc->nr_reclaimed += current->reclaim_state->reclaimed;
295 current->reclaim_state->reclaimed = 0;
296 }
297}
298
26aa2d19
DH
299static bool can_demote(int nid, struct scan_control *sc)
300{
20b51af1
HY
301 if (!numa_demotion_enabled)
302 return false;
3f1509c5
JW
303 if (sc && sc->no_demotion)
304 return false;
26aa2d19
DH
305 if (next_demotion_node(nid) == NUMA_NO_NODE)
306 return false;
307
20b51af1 308 return true;
26aa2d19
DH
309}
310
a2a36488
KB
311static inline bool can_reclaim_anon_pages(struct mem_cgroup *memcg,
312 int nid,
313 struct scan_control *sc)
314{
315 if (memcg == NULL) {
316 /*
317 * For non-memcg reclaim, is there
318 * space in any swap device?
319 */
320 if (get_nr_swap_pages() > 0)
321 return true;
322 } else {
323 /* Is the memcg below its swap limit? */
324 if (mem_cgroup_get_nr_swap_pages(memcg) > 0)
325 return true;
326 }
327
328 /*
329 * The page can not be swapped.
330 *
331 * Can it be reclaimed from this node via demotion?
332 */
333 return can_demote(nid, sc);
334}
335
5a1c84b4 336/*
49fd9b6d 337 * This misses isolated folios which are not accounted for to save counters.
5a1c84b4 338 * As the data only determines if reclaim or compaction continues, it is
49fd9b6d 339 * not expected that isolated folios will be a dominating factor.
5a1c84b4
MG
340 */
341unsigned long zone_reclaimable_pages(struct zone *zone)
342{
343 unsigned long nr;
344
345 nr = zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_FILE) +
346 zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_FILE);
a2a36488 347 if (can_reclaim_anon_pages(NULL, zone_to_nid(zone), NULL))
5a1c84b4
MG
348 nr += zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_ANON) +
349 zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_ANON);
350
351 return nr;
352}
353
fd538803
MH
354/**
355 * lruvec_lru_size - Returns the number of pages on the given LRU list.
356 * @lruvec: lru vector
357 * @lru: lru to use
8b3a899a 358 * @zone_idx: zones to consider (use MAX_NR_ZONES - 1 for the whole LRU list)
fd538803 359 */
2091339d
YZ
360static unsigned long lruvec_lru_size(struct lruvec *lruvec, enum lru_list lru,
361 int zone_idx)
c9f299d9 362{
de3b0150 363 unsigned long size = 0;
fd538803
MH
364 int zid;
365
8b3a899a 366 for (zid = 0; zid <= zone_idx; zid++) {
fd538803 367 struct zone *zone = &lruvec_pgdat(lruvec)->node_zones[zid];
c9f299d9 368
fd538803
MH
369 if (!managed_zone(zone))
370 continue;
371
372 if (!mem_cgroup_disabled())
de3b0150 373 size += mem_cgroup_get_zone_lru_size(lruvec, lru, zid);
fd538803 374 else
de3b0150 375 size += zone_page_state(zone, NR_ZONE_LRU_BASE + lru);
fd538803 376 }
de3b0150 377 return size;
b4536f0c
MH
378}
379
e83b39d6 380static unsigned long drop_slab_node(int nid)
cb731d6c 381{
e83b39d6
JK
382 unsigned long freed = 0;
383 struct mem_cgroup *memcg = NULL;
cb731d6c 384
e83b39d6 385 memcg = mem_cgroup_iter(NULL, NULL, NULL);
cb731d6c 386 do {
e83b39d6
JK
387 freed += shrink_slab(GFP_KERNEL, nid, memcg, 0);
388 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
069c411d 389
e83b39d6 390 return freed;
cb731d6c
VD
391}
392
393void drop_slab(void)
394{
395 int nid;
e83b39d6
JK
396 int shift = 0;
397 unsigned long freed;
398
399 do {
400 freed = 0;
401 for_each_online_node(nid) {
402 if (fatal_signal_pending(current))
403 return;
cb731d6c 404
e83b39d6
JK
405 freed += drop_slab_node(nid);
406 }
407 } while ((freed >> shift++) > 1);
cb731d6c
VD
408}
409
57e9cc50
JW
410static int reclaimer_offset(void)
411{
412 BUILD_BUG_ON(PGSTEAL_DIRECT - PGSTEAL_KSWAPD !=
413 PGDEMOTE_DIRECT - PGDEMOTE_KSWAPD);
414 BUILD_BUG_ON(PGSTEAL_DIRECT - PGSTEAL_KSWAPD !=
415 PGSCAN_DIRECT - PGSCAN_KSWAPD);
416 BUILD_BUG_ON(PGSTEAL_KHUGEPAGED - PGSTEAL_KSWAPD !=
417 PGDEMOTE_KHUGEPAGED - PGDEMOTE_KSWAPD);
418 BUILD_BUG_ON(PGSTEAL_KHUGEPAGED - PGSTEAL_KSWAPD !=
419 PGSCAN_KHUGEPAGED - PGSCAN_KSWAPD);
420
421 if (current_is_kswapd())
422 return 0;
423 if (current_is_khugepaged())
424 return PGSTEAL_KHUGEPAGED - PGSTEAL_KSWAPD;
425 return PGSTEAL_DIRECT - PGSTEAL_KSWAPD;
426}
427
e0cd5e7f 428static inline int is_page_cache_freeable(struct folio *folio)
1da177e4 429{
ceddc3a5 430 /*
49fd9b6d
MWO
431 * A freeable page cache folio is referenced only by the caller
432 * that isolated the folio, the page cache and optional filesystem
433 * private data at folio->private.
ceddc3a5 434 */
e0cd5e7f
MWO
435 return folio_ref_count(folio) - folio_test_private(folio) ==
436 1 + folio_nr_pages(folio);
1da177e4
LT
437}
438
1da177e4 439/*
e0cd5e7f 440 * We detected a synchronous write error writing a folio out. Probably
1da177e4
LT
441 * -ENOSPC. We need to propagate that into the address_space for a subsequent
442 * fsync(), msync() or close().
443 *
444 * The tricky part is that after writepage we cannot touch the mapping: nothing
e0cd5e7f
MWO
445 * prevents it from being freed up. But we have a ref on the folio and once
446 * that folio is locked, the mapping is pinned.
1da177e4 447 *
e0cd5e7f 448 * We're allowed to run sleeping folio_lock() here because we know the caller has
1da177e4
LT
449 * __GFP_FS.
450 */
451static void handle_write_error(struct address_space *mapping,
e0cd5e7f 452 struct folio *folio, int error)
1da177e4 453{
e0cd5e7f
MWO
454 folio_lock(folio);
455 if (folio_mapping(folio) == mapping)
3e9f45bd 456 mapping_set_error(mapping, error);
e0cd5e7f 457 folio_unlock(folio);
1da177e4
LT
458}
459
1b4e3f26
MG
460static bool skip_throttle_noprogress(pg_data_t *pgdat)
461{
462 int reclaimable = 0, write_pending = 0;
463 int i;
464
465 /*
466 * If kswapd is disabled, reschedule if necessary but do not
467 * throttle as the system is likely near OOM.
468 */
469 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
470 return true;
471
472 /*
49fd9b6d
MWO
473 * If there are a lot of dirty/writeback folios then do not
474 * throttle as throttling will occur when the folios cycle
1b4e3f26
MG
475 * towards the end of the LRU if still under writeback.
476 */
477 for (i = 0; i < MAX_NR_ZONES; i++) {
478 struct zone *zone = pgdat->node_zones + i;
479
36c26128 480 if (!managed_zone(zone))
1b4e3f26
MG
481 continue;
482
483 reclaimable += zone_reclaimable_pages(zone);
484 write_pending += zone_page_state_snapshot(zone,
485 NR_ZONE_WRITE_PENDING);
486 }
487 if (2 * write_pending <= reclaimable)
488 return true;
489
490 return false;
491}
492
c3f4a9a2 493void reclaim_throttle(pg_data_t *pgdat, enum vmscan_throttle_state reason)
8cd7c588
MG
494{
495 wait_queue_head_t *wqh = &pgdat->reclaim_wait[reason];
c3f4a9a2 496 long timeout, ret;
8cd7c588
MG
497 DEFINE_WAIT(wait);
498
499 /*
54e6842d 500 * Do not throttle user workers, kthreads other than kswapd or
8cd7c588
MG
501 * workqueues. They may be required for reclaim to make
502 * forward progress (e.g. journalling workqueues or kthreads).
503 */
504 if (!current_is_kswapd() &&
54e6842d 505 current->flags & (PF_USER_WORKER|PF_KTHREAD)) {
b485c6f1 506 cond_resched();
8cd7c588 507 return;
b485c6f1 508 }
8cd7c588 509
c3f4a9a2
MG
510 /*
511 * These figures are pulled out of thin air.
512 * VMSCAN_THROTTLE_ISOLATED is a transient condition based on too many
513 * parallel reclaimers which is a short-lived event so the timeout is
514 * short. Failing to make progress or waiting on writeback are
515 * potentially long-lived events so use a longer timeout. This is shaky
516 * logic as a failure to make progress could be due to anything from
49fd9b6d 517 * writeback to a slow device to excessive referenced folios at the tail
c3f4a9a2
MG
518 * of the inactive LRU.
519 */
520 switch(reason) {
521 case VMSCAN_THROTTLE_WRITEBACK:
522 timeout = HZ/10;
523
524 if (atomic_inc_return(&pgdat->nr_writeback_throttled) == 1) {
525 WRITE_ONCE(pgdat->nr_reclaim_start,
526 node_page_state(pgdat, NR_THROTTLED_WRITTEN));
527 }
528
529 break;
1b4e3f26
MG
530 case VMSCAN_THROTTLE_CONGESTED:
531 fallthrough;
c3f4a9a2 532 case VMSCAN_THROTTLE_NOPROGRESS:
1b4e3f26
MG
533 if (skip_throttle_noprogress(pgdat)) {
534 cond_resched();
535 return;
536 }
537
538 timeout = 1;
539
c3f4a9a2
MG
540 break;
541 case VMSCAN_THROTTLE_ISOLATED:
542 timeout = HZ/50;
543 break;
544 default:
545 WARN_ON_ONCE(1);
546 timeout = HZ;
547 break;
8cd7c588
MG
548 }
549
550 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
551 ret = schedule_timeout(timeout);
552 finish_wait(wqh, &wait);
d818fca1 553
c3f4a9a2 554 if (reason == VMSCAN_THROTTLE_WRITEBACK)
d818fca1 555 atomic_dec(&pgdat->nr_writeback_throttled);
8cd7c588
MG
556
557 trace_mm_vmscan_throttled(pgdat->node_id, jiffies_to_usecs(timeout),
558 jiffies_to_usecs(timeout - ret),
559 reason);
560}
561
562/*
49fd9b6d
MWO
563 * Account for folios written if tasks are throttled waiting on dirty
564 * folios to clean. If enough folios have been cleaned since throttling
8cd7c588
MG
565 * started then wakeup the throttled tasks.
566 */
512b7931 567void __acct_reclaim_writeback(pg_data_t *pgdat, struct folio *folio,
8cd7c588
MG
568 int nr_throttled)
569{
570 unsigned long nr_written;
571
512b7931 572 node_stat_add_folio(folio, NR_THROTTLED_WRITTEN);
8cd7c588
MG
573
574 /*
575 * This is an inaccurate read as the per-cpu deltas may not
576 * be synchronised. However, given that the system is
577 * writeback throttled, it is not worth taking the penalty
578 * of getting an accurate count. At worst, the throttle
579 * timeout guarantees forward progress.
580 */
581 nr_written = node_page_state(pgdat, NR_THROTTLED_WRITTEN) -
582 READ_ONCE(pgdat->nr_reclaim_start);
583
584 if (nr_written > SWAP_CLUSTER_MAX * nr_throttled)
585 wake_up(&pgdat->reclaim_wait[VMSCAN_THROTTLE_WRITEBACK]);
586}
587
04e62a29
CL
588/* possible outcome of pageout() */
589typedef enum {
49fd9b6d 590 /* failed to write folio out, folio is locked */
04e62a29 591 PAGE_KEEP,
49fd9b6d 592 /* move folio to the active list, folio is locked */
04e62a29 593 PAGE_ACTIVATE,
49fd9b6d 594 /* folio has been sent to the disk successfully, folio is unlocked */
04e62a29 595 PAGE_SUCCESS,
49fd9b6d 596 /* folio is clean and locked */
04e62a29
CL
597 PAGE_CLEAN,
598} pageout_t;
599
1da177e4 600/*
49fd9b6d 601 * pageout is called by shrink_folio_list() for each dirty folio.
1742f19f 602 * Calls ->writepage().
1da177e4 603 */
2282679f
N
604static pageout_t pageout(struct folio *folio, struct address_space *mapping,
605 struct swap_iocb **plug)
1da177e4
LT
606{
607 /*
e0cd5e7f 608 * If the folio is dirty, only perform writeback if that write
1da177e4
LT
609 * will be non-blocking. To prevent this allocation from being
610 * stalled by pagecache activity. But note that there may be
611 * stalls if we need to run get_block(). We could test
612 * PagePrivate for that.
613 *
8174202b 614 * If this process is currently in __generic_file_write_iter() against
e0cd5e7f 615 * this folio's queue, we can perform writeback even if that
1da177e4
LT
616 * will block.
617 *
e0cd5e7f 618 * If the folio is swapcache, write it back even if that would
1da177e4
LT
619 * block, for some throttling. This happens by accident, because
620 * swap_backing_dev_info is bust: it doesn't reflect the
621 * congestion state of the swapdevs. Easy to fix, if needed.
1da177e4 622 */
e0cd5e7f 623 if (!is_page_cache_freeable(folio))
1da177e4
LT
624 return PAGE_KEEP;
625 if (!mapping) {
626 /*
e0cd5e7f
MWO
627 * Some data journaling orphaned folios can have
628 * folio->mapping == NULL while being dirty with clean buffers.
1da177e4 629 */
e0cd5e7f 630 if (folio_test_private(folio)) {
68189fef 631 if (try_to_free_buffers(folio)) {
e0cd5e7f
MWO
632 folio_clear_dirty(folio);
633 pr_info("%s: orphaned folio\n", __func__);
1da177e4
LT
634 return PAGE_CLEAN;
635 }
636 }
637 return PAGE_KEEP;
638 }
639 if (mapping->a_ops->writepage == NULL)
640 return PAGE_ACTIVATE;
1da177e4 641
e0cd5e7f 642 if (folio_clear_dirty_for_io(folio)) {
1da177e4
LT
643 int res;
644 struct writeback_control wbc = {
645 .sync_mode = WB_SYNC_NONE,
646 .nr_to_write = SWAP_CLUSTER_MAX,
111ebb6e
OH
647 .range_start = 0,
648 .range_end = LLONG_MAX,
1da177e4 649 .for_reclaim = 1,
2282679f 650 .swap_plug = plug,
1da177e4
LT
651 };
652
e0cd5e7f
MWO
653 folio_set_reclaim(folio);
654 res = mapping->a_ops->writepage(&folio->page, &wbc);
1da177e4 655 if (res < 0)
e0cd5e7f 656 handle_write_error(mapping, folio, res);
994fc28c 657 if (res == AOP_WRITEPAGE_ACTIVATE) {
e0cd5e7f 658 folio_clear_reclaim(folio);
1da177e4
LT
659 return PAGE_ACTIVATE;
660 }
c661b078 661
e0cd5e7f 662 if (!folio_test_writeback(folio)) {
1da177e4 663 /* synchronous write or broken a_ops? */
e0cd5e7f 664 folio_clear_reclaim(folio);
1da177e4 665 }
e0cd5e7f
MWO
666 trace_mm_vmscan_write_folio(folio);
667 node_stat_add_folio(folio, NR_VMSCAN_WRITE);
1da177e4
LT
668 return PAGE_SUCCESS;
669 }
670
671 return PAGE_CLEAN;
672}
673
a649fd92 674/*
49fd9b6d 675 * Same as remove_mapping, but if the folio is removed from the mapping, it
e286781d 676 * gets returned with a refcount of 0.
a649fd92 677 */
be7c07d6 678static int __remove_mapping(struct address_space *mapping, struct folio *folio,
b910718a 679 bool reclaimed, struct mem_cgroup *target_memcg)
49d2e9cc 680{
bd4c82c2 681 int refcount;
aae466b0 682 void *shadow = NULL;
c4843a75 683
be7c07d6
MWO
684 BUG_ON(!folio_test_locked(folio));
685 BUG_ON(mapping != folio_mapping(folio));
49d2e9cc 686
be7c07d6 687 if (!folio_test_swapcache(folio))
51b8c1fe 688 spin_lock(&mapping->host->i_lock);
30472509 689 xa_lock_irq(&mapping->i_pages);
49d2e9cc 690 /*
49fd9b6d 691 * The non racy check for a busy folio.
0fd0e6b0
NP
692 *
693 * Must be careful with the order of the tests. When someone has
49fd9b6d
MWO
694 * a ref to the folio, it may be possible that they dirty it then
695 * drop the reference. So if the dirty flag is tested before the
696 * refcount here, then the following race may occur:
0fd0e6b0
NP
697 *
698 * get_user_pages(&page);
699 * [user mapping goes away]
700 * write_to(page);
49fd9b6d
MWO
701 * !folio_test_dirty(folio) [good]
702 * folio_set_dirty(folio);
703 * folio_put(folio);
704 * !refcount(folio) [good, discard it]
0fd0e6b0
NP
705 *
706 * [oops, our write_to data is lost]
707 *
708 * Reversing the order of the tests ensures such a situation cannot
49fd9b6d
MWO
709 * escape unnoticed. The smp_rmb is needed to ensure the folio->flags
710 * load is not satisfied before that of folio->_refcount.
0fd0e6b0 711 *
49fd9b6d 712 * Note that if the dirty flag is always set via folio_mark_dirty,
b93b0163 713 * and thus under the i_pages lock, then this ordering is not required.
49d2e9cc 714 */
be7c07d6
MWO
715 refcount = 1 + folio_nr_pages(folio);
716 if (!folio_ref_freeze(folio, refcount))
49d2e9cc 717 goto cannot_free;
49fd9b6d 718 /* note: atomic_cmpxchg in folio_ref_freeze provides the smp_rmb */
be7c07d6
MWO
719 if (unlikely(folio_test_dirty(folio))) {
720 folio_ref_unfreeze(folio, refcount);
49d2e9cc 721 goto cannot_free;
e286781d 722 }
49d2e9cc 723
be7c07d6 724 if (folio_test_swapcache(folio)) {
3d2c9087 725 swp_entry_t swap = folio->swap;
ac35a490 726
aae466b0 727 if (reclaimed && !mapping_exiting(mapping))
8927f647 728 shadow = workingset_eviction(folio, target_memcg);
ceff9d33 729 __delete_from_swap_cache(folio, swap, shadow);
c449deb2 730 mem_cgroup_swapout(folio, swap);
30472509 731 xa_unlock_irq(&mapping->i_pages);
4081f744 732 put_swap_folio(folio, swap);
e286781d 733 } else {
d2329aa0 734 void (*free_folio)(struct folio *);
6072d13c 735
d2329aa0 736 free_folio = mapping->a_ops->free_folio;
a528910e
JW
737 /*
738 * Remember a shadow entry for reclaimed file cache in
739 * order to detect refaults, thus thrashing, later on.
740 *
741 * But don't store shadows in an address space that is
238c3046 742 * already exiting. This is not just an optimization,
a528910e
JW
743 * inode reclaim needs to empty out the radix tree or
744 * the nodes are lost. Don't plant shadows behind its
745 * back.
f9fe48be
RZ
746 *
747 * We also don't store shadows for DAX mappings because the
49fd9b6d 748 * only page cache folios found in these are zero pages
f9fe48be
RZ
749 * covering holes, and because we don't want to mix DAX
750 * exceptional entries and shadow exceptional entries in the
b93b0163 751 * same address_space.
a528910e 752 */
be7c07d6 753 if (reclaimed && folio_is_file_lru(folio) &&
f9fe48be 754 !mapping_exiting(mapping) && !dax_mapping(mapping))
8927f647
MWO
755 shadow = workingset_eviction(folio, target_memcg);
756 __filemap_remove_folio(folio, shadow);
30472509 757 xa_unlock_irq(&mapping->i_pages);
51b8c1fe
JW
758 if (mapping_shrinkable(mapping))
759 inode_add_lru(mapping->host);
760 spin_unlock(&mapping->host->i_lock);
6072d13c 761
d2329aa0
MWO
762 if (free_folio)
763 free_folio(folio);
49d2e9cc
CL
764 }
765
49d2e9cc
CL
766 return 1;
767
768cannot_free:
30472509 769 xa_unlock_irq(&mapping->i_pages);
be7c07d6 770 if (!folio_test_swapcache(folio))
51b8c1fe 771 spin_unlock(&mapping->host->i_lock);
49d2e9cc
CL
772 return 0;
773}
774
5100da38
MWO
775/**
776 * remove_mapping() - Attempt to remove a folio from its mapping.
777 * @mapping: The address space.
778 * @folio: The folio to remove.
779 *
780 * If the folio is dirty, under writeback or if someone else has a ref
781 * on it, removal will fail.
782 * Return: The number of pages removed from the mapping. 0 if the folio
783 * could not be removed.
784 * Context: The caller should have a single refcount on the folio and
785 * hold its lock.
e286781d 786 */
5100da38 787long remove_mapping(struct address_space *mapping, struct folio *folio)
e286781d 788{
be7c07d6 789 if (__remove_mapping(mapping, folio, false, NULL)) {
e286781d 790 /*
5100da38 791 * Unfreezing the refcount with 1 effectively
e286781d
NP
792 * drops the pagecache ref for us without requiring another
793 * atomic operation.
794 */
be7c07d6 795 folio_ref_unfreeze(folio, 1);
5100da38 796 return folio_nr_pages(folio);
e286781d
NP
797 }
798 return 0;
799}
800
894bc310 801/**
ca6d60f3
MWO
802 * folio_putback_lru - Put previously isolated folio onto appropriate LRU list.
803 * @folio: Folio to be returned to an LRU list.
894bc310 804 *
ca6d60f3
MWO
805 * Add previously isolated @folio to appropriate LRU list.
806 * The folio may still be unevictable for other reasons.
894bc310 807 *
ca6d60f3 808 * Context: lru_lock must not be held, interrupts must be enabled.
894bc310 809 */
ca6d60f3 810void folio_putback_lru(struct folio *folio)
894bc310 811{
ca6d60f3
MWO
812 folio_add_lru(folio);
813 folio_put(folio); /* drop ref from isolate */
894bc310
LS
814}
815
49fd9b6d
MWO
816enum folio_references {
817 FOLIOREF_RECLAIM,
818 FOLIOREF_RECLAIM_CLEAN,
819 FOLIOREF_KEEP,
820 FOLIOREF_ACTIVATE,
dfc8d636
JW
821};
822
49fd9b6d 823static enum folio_references folio_check_references(struct folio *folio,
dfc8d636
JW
824 struct scan_control *sc)
825{
d92013d1 826 int referenced_ptes, referenced_folio;
dfc8d636 827 unsigned long vm_flags;
dfc8d636 828
b3ac0413
MWO
829 referenced_ptes = folio_referenced(folio, 1, sc->target_mem_cgroup,
830 &vm_flags);
d92013d1 831 referenced_folio = folio_test_clear_referenced(folio);
dfc8d636 832
dfc8d636 833 /*
d92013d1
MWO
834 * The supposedly reclaimable folio was found to be in a VM_LOCKED vma.
835 * Let the folio, now marked Mlocked, be moved to the unevictable list.
dfc8d636
JW
836 */
837 if (vm_flags & VM_LOCKED)
49fd9b6d 838 return FOLIOREF_ACTIVATE;
dfc8d636 839
6d4675e6
MK
840 /* rmap lock contention: rotate */
841 if (referenced_ptes == -1)
49fd9b6d 842 return FOLIOREF_KEEP;
6d4675e6 843
64574746 844 if (referenced_ptes) {
64574746 845 /*
d92013d1 846 * All mapped folios start out with page table
64574746 847 * references from the instantiating fault, so we need
9030fb0b 848 * to look twice if a mapped file/anon folio is used more
64574746
JW
849 * than once.
850 *
851 * Mark it and spare it for another trip around the
852 * inactive list. Another page table reference will
853 * lead to its activation.
854 *
d92013d1
MWO
855 * Note: the mark is set for activated folios as well
856 * so that recently deactivated but used folios are
64574746
JW
857 * quickly recovered.
858 */
d92013d1 859 folio_set_referenced(folio);
64574746 860
d92013d1 861 if (referenced_folio || referenced_ptes > 1)
49fd9b6d 862 return FOLIOREF_ACTIVATE;
64574746 863
c909e993 864 /*
d92013d1 865 * Activate file-backed executable folios after first usage.
c909e993 866 */
f19a27e3 867 if ((vm_flags & VM_EXEC) && folio_is_file_lru(folio))
49fd9b6d 868 return FOLIOREF_ACTIVATE;
c909e993 869
49fd9b6d 870 return FOLIOREF_KEEP;
64574746 871 }
dfc8d636 872
d92013d1 873 /* Reclaim if clean, defer dirty folios to writeback */
f19a27e3 874 if (referenced_folio && folio_is_file_lru(folio))
49fd9b6d 875 return FOLIOREF_RECLAIM_CLEAN;
64574746 876
49fd9b6d 877 return FOLIOREF_RECLAIM;
dfc8d636
JW
878}
879
49fd9b6d 880/* Check if a folio is dirty or under writeback */
e20c41b1 881static void folio_check_dirty_writeback(struct folio *folio,
e2be15f6
MG
882 bool *dirty, bool *writeback)
883{
b4597226
MG
884 struct address_space *mapping;
885
e2be15f6 886 /*
49fd9b6d 887 * Anonymous folios are not handled by flushers and must be written
32a331a7 888 * from reclaim context. Do not stall reclaim based on them.
49fd9b6d 889 * MADV_FREE anonymous folios are put into inactive file list too.
32a331a7
ML
890 * They could be mistakenly treated as file lru. So further anon
891 * test is needed.
e2be15f6 892 */
e20c41b1
MWO
893 if (!folio_is_file_lru(folio) ||
894 (folio_test_anon(folio) && !folio_test_swapbacked(folio))) {
e2be15f6
MG
895 *dirty = false;
896 *writeback = false;
897 return;
898 }
899
e20c41b1
MWO
900 /* By default assume that the folio flags are accurate */
901 *dirty = folio_test_dirty(folio);
902 *writeback = folio_test_writeback(folio);
b4597226
MG
903
904 /* Verify dirty/writeback state if the filesystem supports it */
e20c41b1 905 if (!folio_test_private(folio))
b4597226
MG
906 return;
907
e20c41b1 908 mapping = folio_mapping(folio);
b4597226 909 if (mapping && mapping->a_ops->is_dirty_writeback)
520f301c 910 mapping->a_ops->is_dirty_writeback(folio, dirty, writeback);
e2be15f6
MG
911}
912
4e096ae1
MWO
913static struct folio *alloc_demote_folio(struct folio *src,
914 unsigned long private)
26aa2d19 915{
4e096ae1 916 struct folio *dst;
32008027
JG
917 nodemask_t *allowed_mask;
918 struct migration_target_control *mtc;
919
920 mtc = (struct migration_target_control *)private;
921
922 allowed_mask = mtc->nmask;
923 /*
924 * make sure we allocate from the target node first also trying to
925 * demote or reclaim pages from the target node via kswapd if we are
926 * low on free memory on target node. If we don't do this and if
927 * we have free memory on the slower(lower) memtier, we would start
928 * allocating pages from slower(lower) memory tiers without even forcing
929 * a demotion of cold pages from the target memtier. This can result
930 * in the kernel placing hot pages in slower(lower) memory tiers.
931 */
932 mtc->nmask = NULL;
933 mtc->gfp_mask |= __GFP_THISNODE;
4e096ae1
MWO
934 dst = alloc_migration_target(src, (unsigned long)mtc);
935 if (dst)
936 return dst;
26aa2d19 937
32008027
JG
938 mtc->gfp_mask &= ~__GFP_THISNODE;
939 mtc->nmask = allowed_mask;
940
4e096ae1 941 return alloc_migration_target(src, (unsigned long)mtc);
26aa2d19
DH
942}
943
944/*
49fd9b6d
MWO
945 * Take folios on @demote_folios and attempt to demote them to another node.
946 * Folios which are not demoted are left on @demote_folios.
26aa2d19 947 */
49fd9b6d 948static unsigned int demote_folio_list(struct list_head *demote_folios,
26aa2d19
DH
949 struct pglist_data *pgdat)
950{
951 int target_nid = next_demotion_node(pgdat->node_id);
952 unsigned int nr_succeeded;
32008027
JG
953 nodemask_t allowed_mask;
954
955 struct migration_target_control mtc = {
956 /*
957 * Allocate from 'node', or fail quickly and quietly.
958 * When this happens, 'page' will likely just be discarded
959 * instead of migrated.
960 */
961 .gfp_mask = (GFP_HIGHUSER_MOVABLE & ~__GFP_RECLAIM) | __GFP_NOWARN |
962 __GFP_NOMEMALLOC | GFP_NOWAIT,
963 .nid = target_nid,
964 .nmask = &allowed_mask
965 };
26aa2d19 966
49fd9b6d 967 if (list_empty(demote_folios))
26aa2d19
DH
968 return 0;
969
970 if (target_nid == NUMA_NO_NODE)
971 return 0;
972
32008027
JG
973 node_get_allowed_targets(pgdat, &allowed_mask);
974
26aa2d19 975 /* Demotion ignores all cpuset and mempolicy settings */
4e096ae1 976 migrate_pages(demote_folios, alloc_demote_folio, NULL,
32008027
JG
977 (unsigned long)&mtc, MIGRATE_ASYNC, MR_DEMOTION,
978 &nr_succeeded);
26aa2d19 979
57e9cc50 980 __count_vm_events(PGDEMOTE_KSWAPD + reclaimer_offset(), nr_succeeded);
668e4147 981
26aa2d19
DH
982 return nr_succeeded;
983}
984
c28a0e96 985static bool may_enter_fs(struct folio *folio, gfp_t gfp_mask)
d791ea67
N
986{
987 if (gfp_mask & __GFP_FS)
988 return true;
c28a0e96 989 if (!folio_test_swapcache(folio) || !(gfp_mask & __GFP_IO))
d791ea67
N
990 return false;
991 /*
992 * We can "enter_fs" for swap-cache with only __GFP_IO
993 * providing this isn't SWP_FS_OPS.
994 * ->flags can be updated non-atomicially (scan_swap_map_slots),
995 * but that will never affect SWP_FS_OPS, so the data_race
996 * is safe.
997 */
b98c359f 998 return !data_race(folio_swap_flags(folio) & SWP_FS_OPS);
d791ea67
N
999}
1000
1da177e4 1001/*
49fd9b6d 1002 * shrink_folio_list() returns the number of reclaimed pages
1da177e4 1003 */
49fd9b6d
MWO
1004static unsigned int shrink_folio_list(struct list_head *folio_list,
1005 struct pglist_data *pgdat, struct scan_control *sc,
1006 struct reclaim_stat *stat, bool ignore_references)
1007{
1008 LIST_HEAD(ret_folios);
1009 LIST_HEAD(free_folios);
1010 LIST_HEAD(demote_folios);
730ec8c0
MS
1011 unsigned int nr_reclaimed = 0;
1012 unsigned int pgactivate = 0;
26aa2d19 1013 bool do_demote_pass;
2282679f 1014 struct swap_iocb *plug = NULL;
1da177e4 1015
060f005f 1016 memset(stat, 0, sizeof(*stat));
1da177e4 1017 cond_resched();
26aa2d19 1018 do_demote_pass = can_demote(pgdat->node_id, sc);
1da177e4 1019
26aa2d19 1020retry:
49fd9b6d 1021 while (!list_empty(folio_list)) {
1da177e4 1022 struct address_space *mapping;
be7c07d6 1023 struct folio *folio;
49fd9b6d 1024 enum folio_references references = FOLIOREF_RECLAIM;
d791ea67 1025 bool dirty, writeback;
98879b3b 1026 unsigned int nr_pages;
1da177e4
LT
1027
1028 cond_resched();
1029
49fd9b6d 1030 folio = lru_to_folio(folio_list);
be7c07d6 1031 list_del(&folio->lru);
1da177e4 1032
c28a0e96 1033 if (!folio_trylock(folio))
1da177e4
LT
1034 goto keep;
1035
c28a0e96 1036 VM_BUG_ON_FOLIO(folio_test_active(folio), folio);
1da177e4 1037
c28a0e96 1038 nr_pages = folio_nr_pages(folio);
98879b3b 1039
c28a0e96 1040 /* Account the number of base pages */
98879b3b 1041 sc->nr_scanned += nr_pages;
80e43426 1042
c28a0e96 1043 if (unlikely(!folio_evictable(folio)))
ad6b6704 1044 goto activate_locked;
894bc310 1045
1bee2c16 1046 if (!sc->may_unmap && folio_mapped(folio))
80e43426
CL
1047 goto keep_locked;
1048
018ee47f
YZ
1049 /* folio_update_gen() tried to promote this page? */
1050 if (lru_gen_enabled() && !ignore_references &&
1051 folio_mapped(folio) && folio_test_referenced(folio))
1052 goto keep_locked;
1053
e2be15f6 1054 /*
894befec 1055 * The number of dirty pages determines if a node is marked
8cd7c588 1056 * reclaim_congested. kswapd will stall and start writing
c28a0e96 1057 * folios if the tail of the LRU is all dirty unqueued folios.
e2be15f6 1058 */
e20c41b1 1059 folio_check_dirty_writeback(folio, &dirty, &writeback);
e2be15f6 1060 if (dirty || writeback)
c79b7b96 1061 stat->nr_dirty += nr_pages;
e2be15f6
MG
1062
1063 if (dirty && !writeback)
c79b7b96 1064 stat->nr_unqueued_dirty += nr_pages;
e2be15f6 1065
d04e8acd 1066 /*
c28a0e96
MWO
1067 * Treat this folio as congested if folios are cycling
1068 * through the LRU so quickly that the folios marked
1069 * for immediate reclaim are making it to the end of
1070 * the LRU a second time.
d04e8acd 1071 */
c28a0e96 1072 if (writeback && folio_test_reclaim(folio))
c79b7b96 1073 stat->nr_congested += nr_pages;
e2be15f6 1074
283aba9f 1075 /*
d33e4e14 1076 * If a folio at the tail of the LRU is under writeback, there
283aba9f
MG
1077 * are three cases to consider.
1078 *
c28a0e96
MWO
1079 * 1) If reclaim is encountering an excessive number
1080 * of folios under writeback and this folio has both
1081 * the writeback and reclaim flags set, then it
d33e4e14
MWO
1082 * indicates that folios are being queued for I/O but
1083 * are being recycled through the LRU before the I/O
1084 * can complete. Waiting on the folio itself risks an
1085 * indefinite stall if it is impossible to writeback
1086 * the folio due to I/O error or disconnected storage
1087 * so instead note that the LRU is being scanned too
1088 * quickly and the caller can stall after the folio
1089 * list has been processed.
283aba9f 1090 *
d33e4e14 1091 * 2) Global or new memcg reclaim encounters a folio that is
ecf5fc6e
MH
1092 * not marked for immediate reclaim, or the caller does not
1093 * have __GFP_FS (or __GFP_IO if it's simply going to swap,
d33e4e14 1094 * not to fs). In this case mark the folio for immediate
97c9341f 1095 * reclaim and continue scanning.
283aba9f 1096 *
d791ea67 1097 * Require may_enter_fs() because we would wait on fs, which
d33e4e14
MWO
1098 * may not have submitted I/O yet. And the loop driver might
1099 * enter reclaim, and deadlock if it waits on a folio for
283aba9f
MG
1100 * which it is needed to do the write (loop masks off
1101 * __GFP_IO|__GFP_FS for this reason); but more thought
1102 * would probably show more reasons.
1103 *
d33e4e14
MWO
1104 * 3) Legacy memcg encounters a folio that already has the
1105 * reclaim flag set. memcg does not have any dirty folio
283aba9f 1106 * throttling so we could easily OOM just because too many
d33e4e14 1107 * folios are in writeback and there is nothing else to
283aba9f 1108 * reclaim. Wait for the writeback to complete.
c55e8d03 1109 *
d33e4e14
MWO
1110 * In cases 1) and 2) we activate the folios to get them out of
1111 * the way while we continue scanning for clean folios on the
c55e8d03
JW
1112 * inactive list and refilling from the active list. The
1113 * observation here is that waiting for disk writes is more
1114 * expensive than potentially causing reloads down the line.
1115 * Since they're marked for immediate reclaim, they won't put
1116 * memory pressure on the cache working set any longer than it
1117 * takes to write them to disk.
283aba9f 1118 */
d33e4e14 1119 if (folio_test_writeback(folio)) {
283aba9f
MG
1120 /* Case 1 above */
1121 if (current_is_kswapd() &&
d33e4e14 1122 folio_test_reclaim(folio) &&
599d0c95 1123 test_bit(PGDAT_WRITEBACK, &pgdat->flags)) {
c79b7b96 1124 stat->nr_immediate += nr_pages;
c55e8d03 1125 goto activate_locked;
283aba9f
MG
1126
1127 /* Case 2 above */
b5ead35e 1128 } else if (writeback_throttling_sane(sc) ||
d33e4e14 1129 !folio_test_reclaim(folio) ||
c28a0e96 1130 !may_enter_fs(folio, sc->gfp_mask)) {
c3b94f44 1131 /*
d33e4e14 1132 * This is slightly racy -
c28a0e96
MWO
1133 * folio_end_writeback() might have
1134 * just cleared the reclaim flag, then
1135 * setting the reclaim flag here ends up
1136 * interpreted as the readahead flag - but
1137 * that does not matter enough to care.
1138 * What we do want is for this folio to
1139 * have the reclaim flag set next time
1140 * memcg reclaim reaches the tests above,
1141 * so it will then wait for writeback to
1142 * avoid OOM; and it's also appropriate
d33e4e14 1143 * in global reclaim.
c3b94f44 1144 */
d33e4e14 1145 folio_set_reclaim(folio);
c79b7b96 1146 stat->nr_writeback += nr_pages;
c55e8d03 1147 goto activate_locked;
283aba9f
MG
1148
1149 /* Case 3 above */
1150 } else {
d33e4e14
MWO
1151 folio_unlock(folio);
1152 folio_wait_writeback(folio);
1153 /* then go back and try same folio again */
49fd9b6d 1154 list_add_tail(&folio->lru, folio_list);
7fadc820 1155 continue;
e62e384e 1156 }
c661b078 1157 }
1da177e4 1158
8940b34a 1159 if (!ignore_references)
d92013d1 1160 references = folio_check_references(folio, sc);
02c6de8d 1161
dfc8d636 1162 switch (references) {
49fd9b6d 1163 case FOLIOREF_ACTIVATE:
1da177e4 1164 goto activate_locked;
49fd9b6d 1165 case FOLIOREF_KEEP:
98879b3b 1166 stat->nr_ref_keep += nr_pages;
64574746 1167 goto keep_locked;
49fd9b6d
MWO
1168 case FOLIOREF_RECLAIM:
1169 case FOLIOREF_RECLAIM_CLEAN:
c28a0e96 1170 ; /* try to reclaim the folio below */
dfc8d636 1171 }
1da177e4 1172
26aa2d19 1173 /*
c28a0e96 1174 * Before reclaiming the folio, try to relocate
26aa2d19
DH
1175 * its contents to another node.
1176 */
1177 if (do_demote_pass &&
c28a0e96 1178 (thp_migration_supported() || !folio_test_large(folio))) {
49fd9b6d 1179 list_add(&folio->lru, &demote_folios);
c28a0e96 1180 folio_unlock(folio);
26aa2d19
DH
1181 continue;
1182 }
1183
1da177e4
LT
1184 /*
1185 * Anonymous process memory has backing store?
1186 * Try to allocate it some swap space here.
c28a0e96 1187 * Lazyfree folio could be freed directly
1da177e4 1188 */
c28a0e96
MWO
1189 if (folio_test_anon(folio) && folio_test_swapbacked(folio)) {
1190 if (!folio_test_swapcache(folio)) {
bd4c82c2
HY
1191 if (!(sc->gfp_mask & __GFP_IO))
1192 goto keep_locked;
d4b4084a 1193 if (folio_maybe_dma_pinned(folio))
feb889fb 1194 goto keep_locked;
c28a0e96
MWO
1195 if (folio_test_large(folio)) {
1196 /* cannot split folio, skip it */
d4b4084a 1197 if (!can_split_folio(folio, NULL))
bd4c82c2
HY
1198 goto activate_locked;
1199 /*
c28a0e96 1200 * Split folios without a PMD map right
bd4c82c2
HY
1201 * away. Chances are some or all of the
1202 * tail pages can be freed without IO.
1203 */
d4b4084a 1204 if (!folio_entire_mapcount(folio) &&
346cf613 1205 split_folio_to_list(folio,
49fd9b6d 1206 folio_list))
bd4c82c2
HY
1207 goto activate_locked;
1208 }
09c02e56
MWO
1209 if (!add_to_swap(folio)) {
1210 if (!folio_test_large(folio))
98879b3b 1211 goto activate_locked_split;
bd4c82c2 1212 /* Fallback to swap normal pages */
346cf613 1213 if (split_folio_to_list(folio,
49fd9b6d 1214 folio_list))
bd4c82c2 1215 goto activate_locked;
fe490cc0 1216#ifdef CONFIG_TRANSPARENT_HUGEPAGE
811244a5 1217 count_memcg_folio_events(folio, THP_SWPOUT_FALLBACK, 1);
fe490cc0
HY
1218 count_vm_event(THP_SWPOUT_FALLBACK);
1219#endif
09c02e56 1220 if (!add_to_swap(folio))
98879b3b 1221 goto activate_locked_split;
bd4c82c2 1222 }
bd4c82c2 1223 }
c28a0e96
MWO
1224 } else if (folio_test_swapbacked(folio) &&
1225 folio_test_large(folio)) {
1226 /* Split shmem folio */
49fd9b6d 1227 if (split_folio_to_list(folio, folio_list))
7751b2da 1228 goto keep_locked;
e2be15f6 1229 }
1da177e4 1230
98879b3b 1231 /*
c28a0e96
MWO
1232 * If the folio was split above, the tail pages will make
1233 * their own pass through this function and be accounted
1234 * then.
98879b3b 1235 */
c28a0e96 1236 if ((nr_pages > 1) && !folio_test_large(folio)) {
98879b3b
YS
1237 sc->nr_scanned -= (nr_pages - 1);
1238 nr_pages = 1;
1239 }
1240
1da177e4 1241 /*
1bee2c16 1242 * The folio is mapped into the page tables of one or more
1da177e4
LT
1243 * processes. Try to unmap it here.
1244 */
1bee2c16 1245 if (folio_mapped(folio)) {
013339df 1246 enum ttu_flags flags = TTU_BATCH_FLUSH;
1bee2c16 1247 bool was_swapbacked = folio_test_swapbacked(folio);
bd4c82c2 1248
1bee2c16 1249 if (folio_test_pmd_mappable(folio))
bd4c82c2 1250 flags |= TTU_SPLIT_HUGE_PMD;
1f318a9b 1251
869f7ee6 1252 try_to_unmap(folio, flags);
1bee2c16 1253 if (folio_mapped(folio)) {
98879b3b 1254 stat->nr_unmap_fail += nr_pages;
1bee2c16
MWO
1255 if (!was_swapbacked &&
1256 folio_test_swapbacked(folio))
1f318a9b 1257 stat->nr_lazyfree_fail += nr_pages;
1da177e4 1258 goto activate_locked;
1da177e4
LT
1259 }
1260 }
1261
d824ec2a
JK
1262 /*
1263 * Folio is unmapped now so it cannot be newly pinned anymore.
1264 * No point in trying to reclaim folio if it is pinned.
1265 * Furthermore we don't want to reclaim underlying fs metadata
1266 * if the folio is pinned and thus potentially modified by the
1267 * pinning process as that may upset the filesystem.
1268 */
1269 if (folio_maybe_dma_pinned(folio))
1270 goto activate_locked;
1271
5441d490 1272 mapping = folio_mapping(folio);
49bd2bf9 1273 if (folio_test_dirty(folio)) {
ee72886d 1274 /*
49bd2bf9 1275 * Only kswapd can writeback filesystem folios
4eda4823 1276 * to avoid risk of stack overflow. But avoid
49bd2bf9 1277 * injecting inefficient single-folio I/O into
4eda4823 1278 * flusher writeback as much as possible: only
49bd2bf9
MWO
1279 * write folios when we've encountered many
1280 * dirty folios, and when we've already scanned
1281 * the rest of the LRU for clean folios and see
1282 * the same dirty folios again (with the reclaim
1283 * flag set).
ee72886d 1284 */
49bd2bf9
MWO
1285 if (folio_is_file_lru(folio) &&
1286 (!current_is_kswapd() ||
1287 !folio_test_reclaim(folio) ||
4eda4823 1288 !test_bit(PGDAT_DIRTY, &pgdat->flags))) {
49ea7eb6
MG
1289 /*
1290 * Immediately reclaim when written back.
5a9e3474 1291 * Similar in principle to folio_deactivate()
49bd2bf9 1292 * except we already have the folio isolated
49ea7eb6
MG
1293 * and know it's dirty
1294 */
49bd2bf9
MWO
1295 node_stat_mod_folio(folio, NR_VMSCAN_IMMEDIATE,
1296 nr_pages);
1297 folio_set_reclaim(folio);
49ea7eb6 1298
c55e8d03 1299 goto activate_locked;
ee72886d
MG
1300 }
1301
49fd9b6d 1302 if (references == FOLIOREF_RECLAIM_CLEAN)
1da177e4 1303 goto keep_locked;
c28a0e96 1304 if (!may_enter_fs(folio, sc->gfp_mask))
1da177e4 1305 goto keep_locked;
52a8363e 1306 if (!sc->may_writepage)
1da177e4
LT
1307 goto keep_locked;
1308
d950c947 1309 /*
49bd2bf9
MWO
1310 * Folio is dirty. Flush the TLB if a writable entry
1311 * potentially exists to avoid CPU writes after I/O
d950c947
MG
1312 * starts and then write it out here.
1313 */
1314 try_to_unmap_flush_dirty();
2282679f 1315 switch (pageout(folio, mapping, &plug)) {
1da177e4
LT
1316 case PAGE_KEEP:
1317 goto keep_locked;
1318 case PAGE_ACTIVATE:
1319 goto activate_locked;
1320 case PAGE_SUCCESS:
c79b7b96 1321 stat->nr_pageout += nr_pages;
96f8bf4f 1322
49bd2bf9 1323 if (folio_test_writeback(folio))
41ac1999 1324 goto keep;
49bd2bf9 1325 if (folio_test_dirty(folio))
1da177e4 1326 goto keep;
7d3579e8 1327
1da177e4
LT
1328 /*
1329 * A synchronous write - probably a ramdisk. Go
49bd2bf9 1330 * ahead and try to reclaim the folio.
1da177e4 1331 */
49bd2bf9 1332 if (!folio_trylock(folio))
1da177e4 1333 goto keep;
49bd2bf9
MWO
1334 if (folio_test_dirty(folio) ||
1335 folio_test_writeback(folio))
1da177e4 1336 goto keep_locked;
49bd2bf9 1337 mapping = folio_mapping(folio);
01359eb2 1338 fallthrough;
1da177e4 1339 case PAGE_CLEAN:
49bd2bf9 1340 ; /* try to free the folio below */
1da177e4
LT
1341 }
1342 }
1343
1344 /*
0a36111c
MWO
1345 * If the folio has buffers, try to free the buffer
1346 * mappings associated with this folio. If we succeed
1347 * we try to free the folio as well.
1da177e4 1348 *
0a36111c
MWO
1349 * We do this even if the folio is dirty.
1350 * filemap_release_folio() does not perform I/O, but it
1351 * is possible for a folio to have the dirty flag set,
1352 * but it is actually clean (all its buffers are clean).
1353 * This happens if the buffers were written out directly,
1354 * with submit_bh(). ext3 will do this, as well as
1355 * the blockdev mapping. filemap_release_folio() will
1356 * discover that cleanness and will drop the buffers
1357 * and mark the folio clean - it can be freed.
1da177e4 1358 *
0a36111c
MWO
1359 * Rarely, folios can have buffers and no ->mapping.
1360 * These are the folios which were not successfully
1361 * invalidated in truncate_cleanup_folio(). We try to
1362 * drop those buffers here and if that worked, and the
1363 * folio is no longer mapped into process address space
1364 * (refcount == 1) it can be freed. Otherwise, leave
1365 * the folio on the LRU so it is swappable.
1da177e4 1366 */
0201ebf2 1367 if (folio_needs_release(folio)) {
0a36111c 1368 if (!filemap_release_folio(folio, sc->gfp_mask))
1da177e4 1369 goto activate_locked;
0a36111c
MWO
1370 if (!mapping && folio_ref_count(folio) == 1) {
1371 folio_unlock(folio);
1372 if (folio_put_testzero(folio))
e286781d
NP
1373 goto free_it;
1374 else {
1375 /*
1376 * rare race with speculative reference.
1377 * the speculative reference will free
0a36111c 1378 * this folio shortly, so we may
e286781d
NP
1379 * increment nr_reclaimed here (and
1380 * leave it off the LRU).
1381 */
9aafcffc 1382 nr_reclaimed += nr_pages;
e286781d
NP
1383 continue;
1384 }
1385 }
1da177e4
LT
1386 }
1387
64daa5d8 1388 if (folio_test_anon(folio) && !folio_test_swapbacked(folio)) {
802a3a92 1389 /* follow __remove_mapping for reference */
64daa5d8 1390 if (!folio_ref_freeze(folio, 1))
802a3a92 1391 goto keep_locked;
d17be2d9 1392 /*
64daa5d8 1393 * The folio has only one reference left, which is
d17be2d9 1394 * from the isolation. After the caller puts the
64daa5d8
MWO
1395 * folio back on the lru and drops the reference, the
1396 * folio will be freed anyway. It doesn't matter
1397 * which lru it goes on. So we don't bother checking
1398 * the dirty flag here.
d17be2d9 1399 */
64daa5d8
MWO
1400 count_vm_events(PGLAZYFREED, nr_pages);
1401 count_memcg_folio_events(folio, PGLAZYFREED, nr_pages);
be7c07d6 1402 } else if (!mapping || !__remove_mapping(mapping, folio, true,
b910718a 1403 sc->target_mem_cgroup))
802a3a92 1404 goto keep_locked;
9a1ea439 1405
c28a0e96 1406 folio_unlock(folio);
e286781d 1407free_it:
98879b3b 1408 /*
c28a0e96
MWO
1409 * Folio may get swapped out as a whole, need to account
1410 * all pages in it.
98879b3b
YS
1411 */
1412 nr_reclaimed += nr_pages;
abe4c3b5
MG
1413
1414 /*
49fd9b6d 1415 * Is there need to periodically free_folio_list? It would
abe4c3b5
MG
1416 * appear not as the counts should be low
1417 */
c28a0e96 1418 if (unlikely(folio_test_large(folio)))
5375336c 1419 destroy_large_folio(folio);
7ae88534 1420 else
49fd9b6d 1421 list_add(&folio->lru, &free_folios);
1da177e4
LT
1422 continue;
1423
98879b3b
YS
1424activate_locked_split:
1425 /*
1426 * The tail pages that are failed to add into swap cache
1427 * reach here. Fixup nr_scanned and nr_pages.
1428 */
1429 if (nr_pages > 1) {
1430 sc->nr_scanned -= (nr_pages - 1);
1431 nr_pages = 1;
1432 }
1da177e4 1433activate_locked:
68a22394 1434 /* Not a candidate for swapping, so reclaim swap space. */
246b6480 1435 if (folio_test_swapcache(folio) &&
9202d527 1436 (mem_cgroup_swap_full(folio) || folio_test_mlocked(folio)))
bdb0ed54 1437 folio_free_swap(folio);
246b6480
MWO
1438 VM_BUG_ON_FOLIO(folio_test_active(folio), folio);
1439 if (!folio_test_mlocked(folio)) {
1440 int type = folio_is_file_lru(folio);
1441 folio_set_active(folio);
98879b3b 1442 stat->nr_activate[type] += nr_pages;
246b6480 1443 count_memcg_folio_events(folio, PGACTIVATE, nr_pages);
ad6b6704 1444 }
1da177e4 1445keep_locked:
c28a0e96 1446 folio_unlock(folio);
1da177e4 1447keep:
49fd9b6d 1448 list_add(&folio->lru, &ret_folios);
c28a0e96
MWO
1449 VM_BUG_ON_FOLIO(folio_test_lru(folio) ||
1450 folio_test_unevictable(folio), folio);
1da177e4 1451 }
49fd9b6d 1452 /* 'folio_list' is always empty here */
26aa2d19 1453
c28a0e96 1454 /* Migrate folios selected for demotion */
49fd9b6d
MWO
1455 nr_reclaimed += demote_folio_list(&demote_folios, pgdat);
1456 /* Folios that could not be demoted are still in @demote_folios */
1457 if (!list_empty(&demote_folios)) {
6b426d07 1458 /* Folios which weren't demoted go back on @folio_list */
49fd9b6d 1459 list_splice_init(&demote_folios, folio_list);
6b426d07
MA
1460
1461 /*
1462 * goto retry to reclaim the undemoted folios in folio_list if
1463 * desired.
1464 *
1465 * Reclaiming directly from top tier nodes is not often desired
1466 * due to it breaking the LRU ordering: in general memory
1467 * should be reclaimed from lower tier nodes and demoted from
1468 * top tier nodes.
1469 *
1470 * However, disabling reclaim from top tier nodes entirely
1471 * would cause ooms in edge scenarios where lower tier memory
1472 * is unreclaimable for whatever reason, eg memory being
1473 * mlocked or too hot to reclaim. We can disable reclaim
1474 * from top tier nodes in proactive reclaim though as that is
1475 * not real memory pressure.
1476 */
1477 if (!sc->proactive) {
1478 do_demote_pass = false;
1479 goto retry;
1480 }
26aa2d19 1481 }
abe4c3b5 1482
98879b3b
YS
1483 pgactivate = stat->nr_activate[0] + stat->nr_activate[1];
1484
49fd9b6d 1485 mem_cgroup_uncharge_list(&free_folios);
72b252ae 1486 try_to_unmap_flush();
49fd9b6d 1487 free_unref_page_list(&free_folios);
abe4c3b5 1488
49fd9b6d 1489 list_splice(&ret_folios, folio_list);
886cf190 1490 count_vm_events(PGACTIVATE, pgactivate);
060f005f 1491
2282679f
N
1492 if (plug)
1493 swap_write_unplug(plug);
05ff5137 1494 return nr_reclaimed;
1da177e4
LT
1495}
1496
730ec8c0 1497unsigned int reclaim_clean_pages_from_list(struct zone *zone,
49fd9b6d 1498 struct list_head *folio_list)
02c6de8d
MK
1499{
1500 struct scan_control sc = {
1501 .gfp_mask = GFP_KERNEL,
02c6de8d
MK
1502 .may_unmap = 1,
1503 };
1f318a9b 1504 struct reclaim_stat stat;
730ec8c0 1505 unsigned int nr_reclaimed;
b8cecb93
MWO
1506 struct folio *folio, *next;
1507 LIST_HEAD(clean_folios);
2d2b8d2b 1508 unsigned int noreclaim_flag;
02c6de8d 1509
b8cecb93
MWO
1510 list_for_each_entry_safe(folio, next, folio_list, lru) {
1511 if (!folio_test_hugetlb(folio) && folio_is_file_lru(folio) &&
1512 !folio_test_dirty(folio) && !__folio_test_movable(folio) &&
1513 !folio_test_unevictable(folio)) {
1514 folio_clear_active(folio);
1515 list_move(&folio->lru, &clean_folios);
02c6de8d
MK
1516 }
1517 }
1518
2d2b8d2b
YZ
1519 /*
1520 * We should be safe here since we are only dealing with file pages and
1521 * we are not kswapd and therefore cannot write dirty file pages. But
1522 * call memalloc_noreclaim_save() anyway, just in case these conditions
1523 * change in the future.
1524 */
1525 noreclaim_flag = memalloc_noreclaim_save();
49fd9b6d 1526 nr_reclaimed = shrink_folio_list(&clean_folios, zone->zone_pgdat, &sc,
013339df 1527 &stat, true);
2d2b8d2b
YZ
1528 memalloc_noreclaim_restore(noreclaim_flag);
1529
b8cecb93 1530 list_splice(&clean_folios, folio_list);
2da9f630
NP
1531 mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
1532 -(long)nr_reclaimed);
1f318a9b
JK
1533 /*
1534 * Since lazyfree pages are isolated from file LRU from the beginning,
1535 * they will rotate back to anonymous LRU in the end if it failed to
1536 * discard so isolated count will be mismatched.
1537 * Compensate the isolated count for both LRU lists.
1538 */
1539 mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_ANON,
1540 stat.nr_lazyfree_fail);
1541 mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
2da9f630 1542 -(long)stat.nr_lazyfree_fail);
1f318a9b 1543 return nr_reclaimed;
02c6de8d
MK
1544}
1545
7ee36a14
MG
1546/*
1547 * Update LRU sizes after isolating pages. The LRU size updates must
55b65a57 1548 * be complete before mem_cgroup_update_lru_size due to a sanity check.
7ee36a14
MG
1549 */
1550static __always_inline void update_lru_sizes(struct lruvec *lruvec,
b4536f0c 1551 enum lru_list lru, unsigned long *nr_zone_taken)
7ee36a14 1552{
7ee36a14
MG
1553 int zid;
1554
7ee36a14
MG
1555 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1556 if (!nr_zone_taken[zid])
1557 continue;
1558
a892cb6b 1559 update_lru_size(lruvec, lru, zid, -nr_zone_taken[zid]);
b4536f0c
MH
1560 }
1561
7ee36a14
MG
1562}
1563
5da226db
ZH
1564#ifdef CONFIG_CMA
1565/*
1566 * It is waste of effort to scan and reclaim CMA pages if it is not available
1567 * for current allocation context. Kswapd can not be enrolled as it can not
1568 * distinguish this scenario by using sc->gfp_mask = GFP_KERNEL
1569 */
1570static bool skip_cma(struct folio *folio, struct scan_control *sc)
1571{
1572 return !current_is_kswapd() &&
1573 gfp_migratetype(sc->gfp_mask) != MIGRATE_MOVABLE &&
97144ce0 1574 folio_migratetype(folio) == MIGRATE_CMA;
5da226db
ZH
1575}
1576#else
1577static bool skip_cma(struct folio *folio, struct scan_control *sc)
1578{
1579 return false;
1580}
1581#endif
1582
f611fab7 1583/*
15b44736
HD
1584 * Isolating page from the lruvec to fill in @dst list by nr_to_scan times.
1585 *
1586 * lruvec->lru_lock is heavily contended. Some of the functions that
1da177e4
LT
1587 * shrink the lists perform better by taking out a batch of pages
1588 * and working on them outside the LRU lock.
1589 *
1590 * For pagecache intensive workloads, this function is the hottest
1591 * spot in the kernel (apart from copy_*_user functions).
1592 *
15b44736 1593 * Lru_lock must be held before calling this function.
1da177e4 1594 *
791b48b6 1595 * @nr_to_scan: The number of eligible pages to look through on the list.
5dc35979 1596 * @lruvec: The LRU vector to pull pages from.
1da177e4 1597 * @dst: The temp list to put pages on to.
f626012d 1598 * @nr_scanned: The number of pages that were scanned.
fe2c2a10 1599 * @sc: The scan_control struct for this reclaim session
3cb99451 1600 * @lru: LRU list id for isolating
1da177e4
LT
1601 *
1602 * returns how many pages were moved onto *@dst.
1603 */
49fd9b6d 1604static unsigned long isolate_lru_folios(unsigned long nr_to_scan,
5dc35979 1605 struct lruvec *lruvec, struct list_head *dst,
fe2c2a10 1606 unsigned long *nr_scanned, struct scan_control *sc,
a9e7c39f 1607 enum lru_list lru)
1da177e4 1608{
75b00af7 1609 struct list_head *src = &lruvec->lists[lru];
69e05944 1610 unsigned long nr_taken = 0;
599d0c95 1611 unsigned long nr_zone_taken[MAX_NR_ZONES] = { 0 };
7cc30fcf 1612 unsigned long nr_skipped[MAX_NR_ZONES] = { 0, };
3db65812 1613 unsigned long skipped = 0;
791b48b6 1614 unsigned long scan, total_scan, nr_pages;
166e3d32 1615 LIST_HEAD(folios_skipped);
1da177e4 1616
98879b3b 1617 total_scan = 0;
791b48b6 1618 scan = 0;
98879b3b 1619 while (scan < nr_to_scan && !list_empty(src)) {
89f6c88a 1620 struct list_head *move_to = src;
166e3d32 1621 struct folio *folio;
5ad333eb 1622
166e3d32
MWO
1623 folio = lru_to_folio(src);
1624 prefetchw_prev_lru_folio(folio, src, flags);
1da177e4 1625
166e3d32 1626 nr_pages = folio_nr_pages(folio);
98879b3b
YS
1627 total_scan += nr_pages;
1628
5da226db
ZH
1629 if (folio_zonenum(folio) > sc->reclaim_idx ||
1630 skip_cma(folio, sc)) {
166e3d32
MWO
1631 nr_skipped[folio_zonenum(folio)] += nr_pages;
1632 move_to = &folios_skipped;
89f6c88a 1633 goto move;
b2e18757
MG
1634 }
1635
791b48b6 1636 /*
166e3d32
MWO
1637 * Do not count skipped folios because that makes the function
1638 * return with no isolated folios if the LRU mostly contains
1639 * ineligible folios. This causes the VM to not reclaim any
1640 * folios, triggering a premature OOM.
1641 * Account all pages in a folio.
791b48b6 1642 */
98879b3b 1643 scan += nr_pages;
89f6c88a 1644
166e3d32 1645 if (!folio_test_lru(folio))
89f6c88a 1646 goto move;
166e3d32 1647 if (!sc->may_unmap && folio_mapped(folio))
89f6c88a
HD
1648 goto move;
1649
c2135f7c 1650 /*
166e3d32
MWO
1651 * Be careful not to clear the lru flag until after we're
1652 * sure the folio is not being freed elsewhere -- the
1653 * folio release code relies on it.
c2135f7c 1654 */
166e3d32 1655 if (unlikely(!folio_try_get(folio)))
89f6c88a 1656 goto move;
5ad333eb 1657
166e3d32
MWO
1658 if (!folio_test_clear_lru(folio)) {
1659 /* Another thread is already isolating this folio */
1660 folio_put(folio);
89f6c88a 1661 goto move;
5ad333eb 1662 }
c2135f7c
AS
1663
1664 nr_taken += nr_pages;
166e3d32 1665 nr_zone_taken[folio_zonenum(folio)] += nr_pages;
89f6c88a
HD
1666 move_to = dst;
1667move:
166e3d32 1668 list_move(&folio->lru, move_to);
1da177e4
LT
1669 }
1670
b2e18757 1671 /*
166e3d32 1672 * Splice any skipped folios to the start of the LRU list. Note that
b2e18757
MG
1673 * this disrupts the LRU order when reclaiming for lower zones but
1674 * we cannot splice to the tail. If we did then the SWAP_CLUSTER_MAX
166e3d32 1675 * scanning would soon rescan the same folios to skip and waste lots
b2cb6826 1676 * of cpu cycles.
b2e18757 1677 */
166e3d32 1678 if (!list_empty(&folios_skipped)) {
7cc30fcf
MG
1679 int zid;
1680
166e3d32 1681 list_splice(&folios_skipped, src);
7cc30fcf
MG
1682 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1683 if (!nr_skipped[zid])
1684 continue;
1685
1686 __count_zid_vm_events(PGSCAN_SKIP, zid, nr_skipped[zid]);
1265e3a6 1687 skipped += nr_skipped[zid];
7cc30fcf
MG
1688 }
1689 }
791b48b6 1690 *nr_scanned = total_scan;
1265e3a6 1691 trace_mm_vmscan_lru_isolate(sc->reclaim_idx, sc->order, nr_to_scan,
3dfbb555 1692 total_scan, skipped, nr_taken, lru);
b4536f0c 1693 update_lru_sizes(lruvec, lru, nr_zone_taken);
1da177e4
LT
1694 return nr_taken;
1695}
1696
62695a84 1697/**
d1d8a3b4
MWO
1698 * folio_isolate_lru() - Try to isolate a folio from its LRU list.
1699 * @folio: Folio to isolate from its LRU list.
62695a84 1700 *
d1d8a3b4
MWO
1701 * Isolate a @folio from an LRU list and adjust the vmstat statistic
1702 * corresponding to whatever LRU list the folio was on.
62695a84 1703 *
d1d8a3b4
MWO
1704 * The folio will have its LRU flag cleared. If it was found on the
1705 * active list, it will have the Active flag set. If it was found on the
1706 * unevictable list, it will have the Unevictable flag set. These flags
894bc310 1707 * may need to be cleared by the caller before letting the page go.
62695a84 1708 *
d1d8a3b4 1709 * Context:
a5d09bed 1710 *
49fd9b6d
MWO
1711 * (1) Must be called with an elevated refcount on the folio. This is a
1712 * fundamental difference from isolate_lru_folios() (which is called
62695a84 1713 * without a stable reference).
d1d8a3b4
MWO
1714 * (2) The lru_lock must not be held.
1715 * (3) Interrupts must be enabled.
1716 *
be2d5756
BW
1717 * Return: true if the folio was removed from an LRU list.
1718 * false if the folio was not on an LRU list.
62695a84 1719 */
be2d5756 1720bool folio_isolate_lru(struct folio *folio)
62695a84 1721{
be2d5756 1722 bool ret = false;
62695a84 1723
d1d8a3b4 1724 VM_BUG_ON_FOLIO(!folio_ref_count(folio), folio);
0c917313 1725
d1d8a3b4 1726 if (folio_test_clear_lru(folio)) {
fa9add64 1727 struct lruvec *lruvec;
62695a84 1728
d1d8a3b4 1729 folio_get(folio);
e809c3fe 1730 lruvec = folio_lruvec_lock_irq(folio);
d1d8a3b4 1731 lruvec_del_folio(lruvec, folio);
6168d0da 1732 unlock_page_lruvec_irq(lruvec);
be2d5756 1733 ret = true;
62695a84 1734 }
d25b5bd8 1735
62695a84
NP
1736 return ret;
1737}
1738
35cd7815 1739/*
d37dd5dc 1740 * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
178821b8 1741 * then get rescheduled. When there are massive number of tasks doing page
d37dd5dc
FW
1742 * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
1743 * the LRU list will go small and be scanned faster than necessary, leading to
1744 * unnecessary swapping, thrashing and OOM.
35cd7815 1745 */
599d0c95 1746static int too_many_isolated(struct pglist_data *pgdat, int file,
35cd7815
RR
1747 struct scan_control *sc)
1748{
1749 unsigned long inactive, isolated;
d818fca1 1750 bool too_many;
35cd7815
RR
1751
1752 if (current_is_kswapd())
1753 return 0;
1754
b5ead35e 1755 if (!writeback_throttling_sane(sc))
35cd7815
RR
1756 return 0;
1757
1758 if (file) {
599d0c95
MG
1759 inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
1760 isolated = node_page_state(pgdat, NR_ISOLATED_FILE);
35cd7815 1761 } else {
599d0c95
MG
1762 inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
1763 isolated = node_page_state(pgdat, NR_ISOLATED_ANON);
35cd7815
RR
1764 }
1765
3cf23841
FW
1766 /*
1767 * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
1768 * won't get blocked by normal direct-reclaimers, forming a circular
1769 * deadlock.
1770 */
5221b5a8 1771 if (gfp_has_io_fs(sc->gfp_mask))
3cf23841
FW
1772 inactive >>= 3;
1773
d818fca1
MG
1774 too_many = isolated > inactive;
1775
1776 /* Wake up tasks throttled due to too_many_isolated. */
1777 if (!too_many)
1778 wake_throttle_isolated(pgdat);
1779
1780 return too_many;
35cd7815
RR
1781}
1782
a222f341 1783/*
49fd9b6d 1784 * move_folios_to_lru() moves folios from private @list to appropriate LRU list.
ff00a170 1785 * On return, @list is reused as a list of folios to be freed by the caller.
a222f341
KT
1786 *
1787 * Returns the number of pages moved to the given lruvec.
1788 */
49fd9b6d
MWO
1789static unsigned int move_folios_to_lru(struct lruvec *lruvec,
1790 struct list_head *list)
66635629 1791{
a222f341 1792 int nr_pages, nr_moved = 0;
ff00a170 1793 LIST_HEAD(folios_to_free);
66635629 1794
a222f341 1795 while (!list_empty(list)) {
ff00a170
MWO
1796 struct folio *folio = lru_to_folio(list);
1797
1798 VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
1799 list_del(&folio->lru);
1800 if (unlikely(!folio_evictable(folio))) {
6168d0da 1801 spin_unlock_irq(&lruvec->lru_lock);
ff00a170 1802 folio_putback_lru(folio);
6168d0da 1803 spin_lock_irq(&lruvec->lru_lock);
66635629
MG
1804 continue;
1805 }
fa9add64 1806
3d06afab 1807 /*
ff00a170 1808 * The folio_set_lru needs to be kept here for list integrity.
3d06afab 1809 * Otherwise:
49fd9b6d 1810 * #0 move_folios_to_lru #1 release_pages
ff00a170
MWO
1811 * if (!folio_put_testzero())
1812 * if (folio_put_testzero())
1813 * !lru //skip lru_lock
1814 * folio_set_lru()
1815 * list_add(&folio->lru,)
1816 * list_add(&folio->lru,)
3d06afab 1817 */
ff00a170 1818 folio_set_lru(folio);
a222f341 1819
ff00a170
MWO
1820 if (unlikely(folio_put_testzero(folio))) {
1821 __folio_clear_lru_flags(folio);
2bcf8879 1822
ff00a170 1823 if (unlikely(folio_test_large(folio))) {
6168d0da 1824 spin_unlock_irq(&lruvec->lru_lock);
5375336c 1825 destroy_large_folio(folio);
6168d0da 1826 spin_lock_irq(&lruvec->lru_lock);
2bcf8879 1827 } else
ff00a170 1828 list_add(&folio->lru, &folios_to_free);
3d06afab
AS
1829
1830 continue;
66635629 1831 }
3d06afab 1832
afca9157
AS
1833 /*
1834 * All pages were isolated from the same lruvec (and isolation
1835 * inhibits memcg migration).
1836 */
ff00a170
MWO
1837 VM_BUG_ON_FOLIO(!folio_matches_lruvec(folio, lruvec), folio);
1838 lruvec_add_folio(lruvec, folio);
1839 nr_pages = folio_nr_pages(folio);
3d06afab 1840 nr_moved += nr_pages;
ff00a170 1841 if (folio_test_active(folio))
3d06afab 1842 workingset_age_nonresident(lruvec, nr_pages);
66635629 1843 }
66635629 1844
3f79768f
HD
1845 /*
1846 * To save our caller's stack, now use input list for pages to free.
1847 */
ff00a170 1848 list_splice(&folios_to_free, list);
a222f341
KT
1849
1850 return nr_moved;
66635629
MG
1851}
1852
399ba0b9 1853/*
5829f7db
ML
1854 * If a kernel thread (such as nfsd for loop-back mounts) services a backing
1855 * device by writing to the page cache it sets PF_LOCAL_THROTTLE. In this case
1856 * we should not throttle. Otherwise it is safe to do so.
399ba0b9
N
1857 */
1858static int current_may_throttle(void)
1859{
b9b1335e 1860 return !(current->flags & PF_LOCAL_THROTTLE);
399ba0b9
N
1861}
1862
1da177e4 1863/*
b2e18757 1864 * shrink_inactive_list() is a helper for shrink_node(). It returns the number
1742f19f 1865 * of reclaimed pages
1da177e4 1866 */
49fd9b6d
MWO
1867static unsigned long shrink_inactive_list(unsigned long nr_to_scan,
1868 struct lruvec *lruvec, struct scan_control *sc,
1869 enum lru_list lru)
1da177e4 1870{
49fd9b6d 1871 LIST_HEAD(folio_list);
e247dbce 1872 unsigned long nr_scanned;
730ec8c0 1873 unsigned int nr_reclaimed = 0;
e247dbce 1874 unsigned long nr_taken;
060f005f 1875 struct reclaim_stat stat;
497a6c1b 1876 bool file = is_file_lru(lru);
f46b7912 1877 enum vm_event_item item;
599d0c95 1878 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
db73ee0d 1879 bool stalled = false;
78dc583d 1880
599d0c95 1881 while (unlikely(too_many_isolated(pgdat, file, sc))) {
db73ee0d
MH
1882 if (stalled)
1883 return 0;
1884
1885 /* wait a bit for the reclaimer. */
db73ee0d 1886 stalled = true;
c3f4a9a2 1887 reclaim_throttle(pgdat, VMSCAN_THROTTLE_ISOLATED);
35cd7815
RR
1888
1889 /* We are about to die and free our memory. Return now. */
1890 if (fatal_signal_pending(current))
1891 return SWAP_CLUSTER_MAX;
1892 }
1893
1da177e4 1894 lru_add_drain();
f80c0673 1895
6168d0da 1896 spin_lock_irq(&lruvec->lru_lock);
b35ea17b 1897
49fd9b6d 1898 nr_taken = isolate_lru_folios(nr_to_scan, lruvec, &folio_list,
a9e7c39f 1899 &nr_scanned, sc, lru);
95d918fc 1900
599d0c95 1901 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
57e9cc50 1902 item = PGSCAN_KSWAPD + reclaimer_offset();
b5ead35e 1903 if (!cgroup_reclaim(sc))
f46b7912
KT
1904 __count_vm_events(item, nr_scanned);
1905 __count_memcg_events(lruvec_memcg(lruvec), item, nr_scanned);
497a6c1b
JW
1906 __count_vm_events(PGSCAN_ANON + file, nr_scanned);
1907
6168d0da 1908 spin_unlock_irq(&lruvec->lru_lock);
b35ea17b 1909
d563c050 1910 if (nr_taken == 0)
66635629 1911 return 0;
5ad333eb 1912
49fd9b6d 1913 nr_reclaimed = shrink_folio_list(&folio_list, pgdat, sc, &stat, false);
c661b078 1914
6168d0da 1915 spin_lock_irq(&lruvec->lru_lock);
49fd9b6d 1916 move_folios_to_lru(lruvec, &folio_list);
497a6c1b
JW
1917
1918 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
57e9cc50 1919 item = PGSTEAL_KSWAPD + reclaimer_offset();
b5ead35e 1920 if (!cgroup_reclaim(sc))
f46b7912
KT
1921 __count_vm_events(item, nr_reclaimed);
1922 __count_memcg_events(lruvec_memcg(lruvec), item, nr_reclaimed);
497a6c1b 1923 __count_vm_events(PGSTEAL_ANON + file, nr_reclaimed);
6168d0da 1924 spin_unlock_irq(&lruvec->lru_lock);
3f79768f 1925
0538a82c 1926 lru_note_cost(lruvec, file, stat.nr_pageout, nr_scanned - nr_reclaimed);
49fd9b6d
MWO
1927 mem_cgroup_uncharge_list(&folio_list);
1928 free_unref_page_list(&folio_list);
e11da5b4 1929
1c610d5f 1930 /*
49fd9b6d 1931 * If dirty folios are scanned that are not queued for IO, it
1c610d5f 1932 * implies that flushers are not doing their job. This can
49fd9b6d 1933 * happen when memory pressure pushes dirty folios to the end of
1c610d5f
AR
1934 * the LRU before the dirty limits are breached and the dirty
1935 * data has expired. It can also happen when the proportion of
49fd9b6d 1936 * dirty folios grows not through writes but through memory
1c610d5f
AR
1937 * pressure reclaiming all the clean cache. And in some cases,
1938 * the flushers simply cannot keep up with the allocation
1939 * rate. Nudge the flusher threads in case they are asleep.
1940 */
81a70c21 1941 if (stat.nr_unqueued_dirty == nr_taken) {
1c610d5f 1942 wakeup_flusher_threads(WB_REASON_VMSCAN);
81a70c21
AK
1943 /*
1944 * For cgroupv1 dirty throttling is achieved by waking up
1945 * the kernel flusher here and later waiting on folios
1946 * which are in writeback to finish (see shrink_folio_list()).
1947 *
1948 * Flusher may not be able to issue writeback quickly
1949 * enough for cgroupv1 writeback throttling to work
1950 * on a large system.
1951 */
1952 if (!writeback_throttling_sane(sc))
1953 reclaim_throttle(pgdat, VMSCAN_THROTTLE_WRITEBACK);
1954 }
1c610d5f 1955
d108c772
AR
1956 sc->nr.dirty += stat.nr_dirty;
1957 sc->nr.congested += stat.nr_congested;
1958 sc->nr.unqueued_dirty += stat.nr_unqueued_dirty;
1959 sc->nr.writeback += stat.nr_writeback;
1960 sc->nr.immediate += stat.nr_immediate;
1961 sc->nr.taken += nr_taken;
1962 if (file)
1963 sc->nr.file_taken += nr_taken;
8e950282 1964
599d0c95 1965 trace_mm_vmscan_lru_shrink_inactive(pgdat->node_id,
d51d1e64 1966 nr_scanned, nr_reclaimed, &stat, sc->priority, file);
05ff5137 1967 return nr_reclaimed;
1da177e4
LT
1968}
1969
15b44736 1970/*
07f67a8d 1971 * shrink_active_list() moves folios from the active LRU to the inactive LRU.
15b44736 1972 *
07f67a8d 1973 * We move them the other way if the folio is referenced by one or more
15b44736
HD
1974 * processes.
1975 *
07f67a8d 1976 * If the folios are mostly unmapped, the processing is fast and it is
15b44736 1977 * appropriate to hold lru_lock across the whole operation. But if
07f67a8d
MWO
1978 * the folios are mapped, the processing is slow (folio_referenced()), so
1979 * we should drop lru_lock around each folio. It's impossible to balance
1980 * this, so instead we remove the folios from the LRU while processing them.
1981 * It is safe to rely on the active flag against the non-LRU folios in here
1982 * because nobody will play with that bit on a non-LRU folio.
15b44736 1983 *
07f67a8d
MWO
1984 * The downside is that we have to touch folio->_refcount against each folio.
1985 * But we had to alter folio->flags anyway.
15b44736 1986 */
f626012d 1987static void shrink_active_list(unsigned long nr_to_scan,
1a93be0e 1988 struct lruvec *lruvec,
f16015fb 1989 struct scan_control *sc,
9e3b2f8c 1990 enum lru_list lru)
1da177e4 1991{
44c241f1 1992 unsigned long nr_taken;
f626012d 1993 unsigned long nr_scanned;
6fe6b7e3 1994 unsigned long vm_flags;
07f67a8d 1995 LIST_HEAD(l_hold); /* The folios which were snipped off */
8cab4754 1996 LIST_HEAD(l_active);
b69408e8 1997 LIST_HEAD(l_inactive);
9d998b4f
MH
1998 unsigned nr_deactivate, nr_activate;
1999 unsigned nr_rotated = 0;
3cb99451 2000 int file = is_file_lru(lru);
599d0c95 2001 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
1da177e4
LT
2002
2003 lru_add_drain();
f80c0673 2004
6168d0da 2005 spin_lock_irq(&lruvec->lru_lock);
925b7673 2006
49fd9b6d 2007 nr_taken = isolate_lru_folios(nr_to_scan, lruvec, &l_hold,
a9e7c39f 2008 &nr_scanned, sc, lru);
89b5fae5 2009
599d0c95 2010 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
1cfb419b 2011
912c0572
SB
2012 if (!cgroup_reclaim(sc))
2013 __count_vm_events(PGREFILL, nr_scanned);
2fa2690c 2014 __count_memcg_events(lruvec_memcg(lruvec), PGREFILL, nr_scanned);
9d5e6a9f 2015
6168d0da 2016 spin_unlock_irq(&lruvec->lru_lock);
1da177e4 2017
1da177e4 2018 while (!list_empty(&l_hold)) {
b3ac0413 2019 struct folio *folio;
b3ac0413 2020
1da177e4 2021 cond_resched();
b3ac0413
MWO
2022 folio = lru_to_folio(&l_hold);
2023 list_del(&folio->lru);
7e9cd484 2024
07f67a8d
MWO
2025 if (unlikely(!folio_evictable(folio))) {
2026 folio_putback_lru(folio);
894bc310
LS
2027 continue;
2028 }
2029
cc715d99 2030 if (unlikely(buffer_heads_over_limit)) {
0201ebf2
DH
2031 if (folio_needs_release(folio) &&
2032 folio_trylock(folio)) {
2033 filemap_release_folio(folio, 0);
07f67a8d 2034 folio_unlock(folio);
cc715d99
MG
2035 }
2036 }
2037
6d4675e6 2038 /* Referenced or rmap lock contention: rotate */
b3ac0413 2039 if (folio_referenced(folio, 0, sc->target_mem_cgroup,
6d4675e6 2040 &vm_flags) != 0) {
8cab4754 2041 /*
07f67a8d 2042 * Identify referenced, file-backed active folios and
8cab4754
WF
2043 * give them one more trip around the active list. So
2044 * that executable code get better chances to stay in
07f67a8d 2045 * memory under moderate memory pressure. Anon folios
8cab4754 2046 * are not likely to be evicted by use-once streaming
07f67a8d 2047 * IO, plus JVM can create lots of anon VM_EXEC folios,
8cab4754
WF
2048 * so we ignore them here.
2049 */
07f67a8d
MWO
2050 if ((vm_flags & VM_EXEC) && folio_is_file_lru(folio)) {
2051 nr_rotated += folio_nr_pages(folio);
2052 list_add(&folio->lru, &l_active);
8cab4754
WF
2053 continue;
2054 }
2055 }
7e9cd484 2056
07f67a8d
MWO
2057 folio_clear_active(folio); /* we are de-activating */
2058 folio_set_workingset(folio);
2059 list_add(&folio->lru, &l_inactive);
1da177e4
LT
2060 }
2061
b555749a 2062 /*
07f67a8d 2063 * Move folios back to the lru list.
b555749a 2064 */
6168d0da 2065 spin_lock_irq(&lruvec->lru_lock);
556adecb 2066
49fd9b6d
MWO
2067 nr_activate = move_folios_to_lru(lruvec, &l_active);
2068 nr_deactivate = move_folios_to_lru(lruvec, &l_inactive);
07f67a8d 2069 /* Keep all free folios in l_active list */
f372d89e 2070 list_splice(&l_inactive, &l_active);
9851ac13
KT
2071
2072 __count_vm_events(PGDEACTIVATE, nr_deactivate);
2073 __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, nr_deactivate);
2074
599d0c95 2075 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
6168d0da 2076 spin_unlock_irq(&lruvec->lru_lock);
2bcf8879 2077
0538a82c
JW
2078 if (nr_rotated)
2079 lru_note_cost(lruvec, file, 0, nr_rotated);
f372d89e
KT
2080 mem_cgroup_uncharge_list(&l_active);
2081 free_unref_page_list(&l_active);
9d998b4f
MH
2082 trace_mm_vmscan_lru_shrink_active(pgdat->node_id, nr_taken, nr_activate,
2083 nr_deactivate, nr_rotated, sc->priority, file);
1da177e4
LT
2084}
2085
49fd9b6d 2086static unsigned int reclaim_folio_list(struct list_head *folio_list,
1fe47c0b 2087 struct pglist_data *pgdat)
1a4e58cc 2088{
1a4e58cc 2089 struct reclaim_stat dummy_stat;
1fe47c0b
ML
2090 unsigned int nr_reclaimed;
2091 struct folio *folio;
1a4e58cc
MK
2092 struct scan_control sc = {
2093 .gfp_mask = GFP_KERNEL,
1a4e58cc
MK
2094 .may_writepage = 1,
2095 .may_unmap = 1,
2096 .may_swap = 1,
26aa2d19 2097 .no_demotion = 1,
1a4e58cc
MK
2098 };
2099
49fd9b6d
MWO
2100 nr_reclaimed = shrink_folio_list(folio_list, pgdat, &sc, &dummy_stat, false);
2101 while (!list_empty(folio_list)) {
2102 folio = lru_to_folio(folio_list);
1fe47c0b
ML
2103 list_del(&folio->lru);
2104 folio_putback_lru(folio);
2105 }
2106
2107 return nr_reclaimed;
2108}
2109
a83f0551 2110unsigned long reclaim_pages(struct list_head *folio_list)
1fe47c0b 2111{
ed657e55 2112 int nid;
1fe47c0b 2113 unsigned int nr_reclaimed = 0;
a83f0551 2114 LIST_HEAD(node_folio_list);
1fe47c0b
ML
2115 unsigned int noreclaim_flag;
2116
a83f0551 2117 if (list_empty(folio_list))
1ae65e27
WY
2118 return nr_reclaimed;
2119
2d2b8d2b
YZ
2120 noreclaim_flag = memalloc_noreclaim_save();
2121
a83f0551 2122 nid = folio_nid(lru_to_folio(folio_list));
1ae65e27 2123 do {
a83f0551 2124 struct folio *folio = lru_to_folio(folio_list);
1a4e58cc 2125
a83f0551
MWO
2126 if (nid == folio_nid(folio)) {
2127 folio_clear_active(folio);
2128 list_move(&folio->lru, &node_folio_list);
1a4e58cc
MK
2129 continue;
2130 }
2131
49fd9b6d 2132 nr_reclaimed += reclaim_folio_list(&node_folio_list, NODE_DATA(nid));
a83f0551
MWO
2133 nid = folio_nid(lru_to_folio(folio_list));
2134 } while (!list_empty(folio_list));
1a4e58cc 2135
49fd9b6d 2136 nr_reclaimed += reclaim_folio_list(&node_folio_list, NODE_DATA(nid));
1a4e58cc 2137
2d2b8d2b
YZ
2138 memalloc_noreclaim_restore(noreclaim_flag);
2139
1a4e58cc
MK
2140 return nr_reclaimed;
2141}
2142
b91ac374
JW
2143static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
2144 struct lruvec *lruvec, struct scan_control *sc)
2145{
2146 if (is_active_lru(lru)) {
2147 if (sc->may_deactivate & (1 << is_file_lru(lru)))
2148 shrink_active_list(nr_to_scan, lruvec, sc, lru);
2149 else
2150 sc->skipped_deactivate = 1;
2151 return 0;
2152 }
2153
2154 return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
2155}
2156
59dc76b0
RR
2157/*
2158 * The inactive anon list should be small enough that the VM never has
2159 * to do too much work.
14797e23 2160 *
59dc76b0
RR
2161 * The inactive file list should be small enough to leave most memory
2162 * to the established workingset on the scan-resistant active list,
2163 * but large enough to avoid thrashing the aggregate readahead window.
56e49d21 2164 *
59dc76b0 2165 * Both inactive lists should also be large enough that each inactive
49fd9b6d 2166 * folio has a chance to be referenced again before it is reclaimed.
56e49d21 2167 *
2a2e4885
JW
2168 * If that fails and refaulting is observed, the inactive list grows.
2169 *
49fd9b6d 2170 * The inactive_ratio is the target ratio of ACTIVE to INACTIVE folios
3a50d14d 2171 * on this LRU, maintained by the pageout code. An inactive_ratio
49fd9b6d 2172 * of 3 means 3:1 or 25% of the folios are kept on the inactive list.
56e49d21 2173 *
59dc76b0
RR
2174 * total target max
2175 * memory ratio inactive
2176 * -------------------------------------
2177 * 10MB 1 5MB
2178 * 100MB 1 50MB
2179 * 1GB 3 250MB
2180 * 10GB 10 0.9GB
2181 * 100GB 31 3GB
2182 * 1TB 101 10GB
2183 * 10TB 320 32GB
56e49d21 2184 */
b91ac374 2185static bool inactive_is_low(struct lruvec *lruvec, enum lru_list inactive_lru)
56e49d21 2186{
b91ac374 2187 enum lru_list active_lru = inactive_lru + LRU_ACTIVE;
2a2e4885
JW
2188 unsigned long inactive, active;
2189 unsigned long inactive_ratio;
59dc76b0 2190 unsigned long gb;
e3790144 2191
b91ac374
JW
2192 inactive = lruvec_page_state(lruvec, NR_LRU_BASE + inactive_lru);
2193 active = lruvec_page_state(lruvec, NR_LRU_BASE + active_lru);
f8d1a311 2194
b91ac374 2195 gb = (inactive + active) >> (30 - PAGE_SHIFT);
4002570c 2196 if (gb)
b91ac374
JW
2197 inactive_ratio = int_sqrt(10 * gb);
2198 else
2199 inactive_ratio = 1;
fd538803 2200
59dc76b0 2201 return inactive * inactive_ratio < active;
b39415b2
RR
2202}
2203
9a265114
JW
2204enum scan_balance {
2205 SCAN_EQUAL,
2206 SCAN_FRACT,
2207 SCAN_ANON,
2208 SCAN_FILE,
2209};
2210
ed547ab6 2211static void prepare_scan_control(pg_data_t *pgdat, struct scan_control *sc)
f1e1a7be
YZ
2212{
2213 unsigned long file;
2214 struct lruvec *target_lruvec;
2215
ac35a490
YZ
2216 if (lru_gen_enabled())
2217 return;
2218
f1e1a7be
YZ
2219 target_lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup, pgdat);
2220
2221 /*
2222 * Flush the memory cgroup stats, so that we read accurate per-memcg
2223 * lruvec stats for heuristics.
2224 */
2225 mem_cgroup_flush_stats();
2226
2227 /*
2228 * Determine the scan balance between anon and file LRUs.
2229 */
2230 spin_lock_irq(&target_lruvec->lru_lock);
2231 sc->anon_cost = target_lruvec->anon_cost;
2232 sc->file_cost = target_lruvec->file_cost;
2233 spin_unlock_irq(&target_lruvec->lru_lock);
2234
2235 /*
2236 * Target desirable inactive:active list ratios for the anon
2237 * and file LRU lists.
2238 */
2239 if (!sc->force_deactivate) {
2240 unsigned long refaults;
2241
2242 /*
2243 * When refaults are being observed, it means a new
2244 * workingset is being established. Deactivate to get
2245 * rid of any stale active pages quickly.
2246 */
2247 refaults = lruvec_page_state(target_lruvec,
2248 WORKINGSET_ACTIVATE_ANON);
2249 if (refaults != target_lruvec->refaults[WORKINGSET_ANON] ||
2250 inactive_is_low(target_lruvec, LRU_INACTIVE_ANON))
2251 sc->may_deactivate |= DEACTIVATE_ANON;
2252 else
2253 sc->may_deactivate &= ~DEACTIVATE_ANON;
2254
2255 refaults = lruvec_page_state(target_lruvec,
2256 WORKINGSET_ACTIVATE_FILE);
2257 if (refaults != target_lruvec->refaults[WORKINGSET_FILE] ||
2258 inactive_is_low(target_lruvec, LRU_INACTIVE_FILE))
2259 sc->may_deactivate |= DEACTIVATE_FILE;
2260 else
2261 sc->may_deactivate &= ~DEACTIVATE_FILE;
2262 } else
2263 sc->may_deactivate = DEACTIVATE_ANON | DEACTIVATE_FILE;
2264
2265 /*
2266 * If we have plenty of inactive file pages that aren't
2267 * thrashing, try to reclaim those first before touching
2268 * anonymous pages.
2269 */
2270 file = lruvec_page_state(target_lruvec, NR_INACTIVE_FILE);
2271 if (file >> sc->priority && !(sc->may_deactivate & DEACTIVATE_FILE))
2272 sc->cache_trim_mode = 1;
2273 else
2274 sc->cache_trim_mode = 0;
2275
2276 /*
2277 * Prevent the reclaimer from falling into the cache trap: as
2278 * cache pages start out inactive, every cache fault will tip
2279 * the scan balance towards the file LRU. And as the file LRU
2280 * shrinks, so does the window for rotation from references.
2281 * This means we have a runaway feedback loop where a tiny
2282 * thrashing file LRU becomes infinitely more attractive than
2283 * anon pages. Try to detect this based on file LRU size.
2284 */
2285 if (!cgroup_reclaim(sc)) {
2286 unsigned long total_high_wmark = 0;
2287 unsigned long free, anon;
2288 int z;
2289
2290 free = sum_zone_node_page_state(pgdat->node_id, NR_FREE_PAGES);
2291 file = node_page_state(pgdat, NR_ACTIVE_FILE) +
2292 node_page_state(pgdat, NR_INACTIVE_FILE);
2293
2294 for (z = 0; z < MAX_NR_ZONES; z++) {
2295 struct zone *zone = &pgdat->node_zones[z];
2296
2297 if (!managed_zone(zone))
2298 continue;
2299
2300 total_high_wmark += high_wmark_pages(zone);
2301 }
2302
2303 /*
2304 * Consider anon: if that's low too, this isn't a
2305 * runaway file reclaim problem, but rather just
2306 * extreme pressure. Reclaim as per usual then.
2307 */
2308 anon = node_page_state(pgdat, NR_INACTIVE_ANON);
2309
2310 sc->file_is_tiny =
2311 file + free <= total_high_wmark &&
2312 !(sc->may_deactivate & DEACTIVATE_ANON) &&
2313 anon >> sc->priority;
2314 }
2315}
2316
4f98a2fe
RR
2317/*
2318 * Determine how aggressively the anon and file LRU lists should be
02e458d8 2319 * scanned.
4f98a2fe 2320 *
49fd9b6d
MWO
2321 * nr[0] = anon inactive folios to scan; nr[1] = anon active folios to scan
2322 * nr[2] = file inactive folios to scan; nr[3] = file active folios to scan
4f98a2fe 2323 */
afaf07a6
JW
2324static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
2325 unsigned long *nr)
4f98a2fe 2326{
a2a36488 2327 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
afaf07a6 2328 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
d483a5dd 2329 unsigned long anon_cost, file_cost, total_cost;
33377678 2330 int swappiness = mem_cgroup_swappiness(memcg);
ed017373 2331 u64 fraction[ANON_AND_FILE];
9a265114 2332 u64 denominator = 0; /* gcc */
9a265114 2333 enum scan_balance scan_balance;
4f98a2fe 2334 unsigned long ap, fp;
4111304d 2335 enum lru_list lru;
76a33fc3 2336
49fd9b6d 2337 /* If we have no swap space, do not bother scanning anon folios. */
a2a36488 2338 if (!sc->may_swap || !can_reclaim_anon_pages(memcg, pgdat->node_id, sc)) {
9a265114 2339 scan_balance = SCAN_FILE;
76a33fc3
SL
2340 goto out;
2341 }
4f98a2fe 2342
10316b31
JW
2343 /*
2344 * Global reclaim will swap to prevent OOM even with no
2345 * swappiness, but memcg users want to use this knob to
2346 * disable swapping for individual groups completely when
2347 * using the memory controller's swap limit feature would be
2348 * too expensive.
2349 */
b5ead35e 2350 if (cgroup_reclaim(sc) && !swappiness) {
9a265114 2351 scan_balance = SCAN_FILE;
10316b31
JW
2352 goto out;
2353 }
2354
2355 /*
2356 * Do not apply any pressure balancing cleverness when the
2357 * system is close to OOM, scan both anon and file equally
2358 * (unless the swappiness setting disagrees with swapping).
2359 */
02695175 2360 if (!sc->priority && swappiness) {
9a265114 2361 scan_balance = SCAN_EQUAL;
10316b31
JW
2362 goto out;
2363 }
2364
62376251 2365 /*
53138cea 2366 * If the system is almost out of file pages, force-scan anon.
62376251 2367 */
b91ac374 2368 if (sc->file_is_tiny) {
53138cea
JW
2369 scan_balance = SCAN_ANON;
2370 goto out;
62376251
JW
2371 }
2372
7c5bd705 2373 /*
b91ac374
JW
2374 * If there is enough inactive page cache, we do not reclaim
2375 * anything from the anonymous working right now.
7c5bd705 2376 */
b91ac374 2377 if (sc->cache_trim_mode) {
9a265114 2378 scan_balance = SCAN_FILE;
7c5bd705
JW
2379 goto out;
2380 }
2381
9a265114 2382 scan_balance = SCAN_FRACT;
58c37f6e 2383 /*
314b57fb
JW
2384 * Calculate the pressure balance between anon and file pages.
2385 *
2386 * The amount of pressure we put on each LRU is inversely
2387 * proportional to the cost of reclaiming each list, as
2388 * determined by the share of pages that are refaulting, times
2389 * the relative IO cost of bringing back a swapped out
2390 * anonymous page vs reloading a filesystem page (swappiness).
2391 *
d483a5dd
JW
2392 * Although we limit that influence to ensure no list gets
2393 * left behind completely: at least a third of the pressure is
2394 * applied, before swappiness.
2395 *
314b57fb 2396 * With swappiness at 100, anon and file have equal IO cost.
58c37f6e 2397 */
d483a5dd
JW
2398 total_cost = sc->anon_cost + sc->file_cost;
2399 anon_cost = total_cost + sc->anon_cost;
2400 file_cost = total_cost + sc->file_cost;
2401 total_cost = anon_cost + file_cost;
58c37f6e 2402
d483a5dd
JW
2403 ap = swappiness * (total_cost + 1);
2404 ap /= anon_cost + 1;
4f98a2fe 2405
d483a5dd
JW
2406 fp = (200 - swappiness) * (total_cost + 1);
2407 fp /= file_cost + 1;
4f98a2fe 2408
76a33fc3
SL
2409 fraction[0] = ap;
2410 fraction[1] = fp;
a4fe1631 2411 denominator = ap + fp;
76a33fc3 2412out:
688035f7
JW
2413 for_each_evictable_lru(lru) {
2414 int file = is_file_lru(lru);
9783aa99 2415 unsigned long lruvec_size;
f56ce412 2416 unsigned long low, min;
688035f7 2417 unsigned long scan;
9783aa99
CD
2418
2419 lruvec_size = lruvec_lru_size(lruvec, lru, sc->reclaim_idx);
f56ce412
JW
2420 mem_cgroup_protection(sc->target_mem_cgroup, memcg,
2421 &min, &low);
9783aa99 2422
f56ce412 2423 if (min || low) {
9783aa99
CD
2424 /*
2425 * Scale a cgroup's reclaim pressure by proportioning
2426 * its current usage to its memory.low or memory.min
2427 * setting.
2428 *
2429 * This is important, as otherwise scanning aggression
2430 * becomes extremely binary -- from nothing as we
2431 * approach the memory protection threshold, to totally
2432 * nominal as we exceed it. This results in requiring
2433 * setting extremely liberal protection thresholds. It
2434 * also means we simply get no protection at all if we
2435 * set it too low, which is not ideal.
1bc63fb1
CD
2436 *
2437 * If there is any protection in place, we reduce scan
2438 * pressure by how much of the total memory used is
2439 * within protection thresholds.
9783aa99 2440 *
9de7ca46
CD
2441 * There is one special case: in the first reclaim pass,
2442 * we skip over all groups that are within their low
2443 * protection. If that fails to reclaim enough pages to
2444 * satisfy the reclaim goal, we come back and override
2445 * the best-effort low protection. However, we still
2446 * ideally want to honor how well-behaved groups are in
2447 * that case instead of simply punishing them all
2448 * equally. As such, we reclaim them based on how much
1bc63fb1
CD
2449 * memory they are using, reducing the scan pressure
2450 * again by how much of the total memory used is under
2451 * hard protection.
9783aa99 2452 */
1bc63fb1 2453 unsigned long cgroup_size = mem_cgroup_size(memcg);
f56ce412
JW
2454 unsigned long protection;
2455
2456 /* memory.low scaling, make sure we retry before OOM */
2457 if (!sc->memcg_low_reclaim && low > min) {
2458 protection = low;
2459 sc->memcg_low_skipped = 1;
2460 } else {
2461 protection = min;
2462 }
1bc63fb1
CD
2463
2464 /* Avoid TOCTOU with earlier protection check */
2465 cgroup_size = max(cgroup_size, protection);
2466
2467 scan = lruvec_size - lruvec_size * protection /
32d4f4b7 2468 (cgroup_size + 1);
9783aa99
CD
2469
2470 /*
1bc63fb1 2471 * Minimally target SWAP_CLUSTER_MAX pages to keep
55b65a57 2472 * reclaim moving forwards, avoiding decrementing
9de7ca46 2473 * sc->priority further than desirable.
9783aa99 2474 */
1bc63fb1 2475 scan = max(scan, SWAP_CLUSTER_MAX);
9783aa99
CD
2476 } else {
2477 scan = lruvec_size;
2478 }
2479
2480 scan >>= sc->priority;
6b4f7799 2481
688035f7
JW
2482 /*
2483 * If the cgroup's already been deleted, make sure to
2484 * scrape out the remaining cache.
2485 */
2486 if (!scan && !mem_cgroup_online(memcg))
9783aa99 2487 scan = min(lruvec_size, SWAP_CLUSTER_MAX);
6b4f7799 2488
688035f7
JW
2489 switch (scan_balance) {
2490 case SCAN_EQUAL:
2491 /* Scan lists relative to size */
2492 break;
2493 case SCAN_FRACT:
9a265114 2494 /*
688035f7
JW
2495 * Scan types proportional to swappiness and
2496 * their relative recent reclaim efficiency.
76073c64
GS
2497 * Make sure we don't miss the last page on
2498 * the offlined memory cgroups because of a
2499 * round-off error.
9a265114 2500 */
76073c64
GS
2501 scan = mem_cgroup_online(memcg) ?
2502 div64_u64(scan * fraction[file], denominator) :
2503 DIV64_U64_ROUND_UP(scan * fraction[file],
68600f62 2504 denominator);
688035f7
JW
2505 break;
2506 case SCAN_FILE:
2507 case SCAN_ANON:
2508 /* Scan one type exclusively */
e072bff6 2509 if ((scan_balance == SCAN_FILE) != file)
688035f7 2510 scan = 0;
688035f7
JW
2511 break;
2512 default:
2513 /* Look ma, no brain */
2514 BUG();
9a265114 2515 }
688035f7 2516
688035f7 2517 nr[lru] = scan;
76a33fc3 2518 }
6e08a369 2519}
4f98a2fe 2520
2f368a9f
DH
2521/*
2522 * Anonymous LRU management is a waste if there is
2523 * ultimately no way to reclaim the memory.
2524 */
2525static bool can_age_anon_pages(struct pglist_data *pgdat,
2526 struct scan_control *sc)
2527{
2528 /* Aging the anon LRU is valuable if swap is present: */
2529 if (total_swap_pages > 0)
2530 return true;
2531
2532 /* Also valuable if anon pages can be demoted: */
2533 return can_demote(pgdat->node_id, sc);
2534}
2535
ec1c86b2
YZ
2536#ifdef CONFIG_LRU_GEN
2537
354ed597
YZ
2538#ifdef CONFIG_LRU_GEN_ENABLED
2539DEFINE_STATIC_KEY_ARRAY_TRUE(lru_gen_caps, NR_LRU_GEN_CAPS);
2540#define get_cap(cap) static_branch_likely(&lru_gen_caps[cap])
2541#else
2542DEFINE_STATIC_KEY_ARRAY_FALSE(lru_gen_caps, NR_LRU_GEN_CAPS);
2543#define get_cap(cap) static_branch_unlikely(&lru_gen_caps[cap])
2544#endif
2545
bd02df41
A
2546static bool should_walk_mmu(void)
2547{
2548 return arch_has_hw_pte_young() && get_cap(LRU_GEN_MM_WALK);
2549}
2550
2551static bool should_clear_pmd_young(void)
2552{
2553 return arch_has_hw_nonleaf_pmd_young() && get_cap(LRU_GEN_NONLEAF_YOUNG);
2554}
2555
ec1c86b2
YZ
2556/******************************************************************************
2557 * shorthand helpers
2558 ******************************************************************************/
2559
ac35a490
YZ
2560#define LRU_REFS_FLAGS (BIT(PG_referenced) | BIT(PG_workingset))
2561
2562#define DEFINE_MAX_SEQ(lruvec) \
2563 unsigned long max_seq = READ_ONCE((lruvec)->lrugen.max_seq)
2564
2565#define DEFINE_MIN_SEQ(lruvec) \
2566 unsigned long min_seq[ANON_AND_FILE] = { \
2567 READ_ONCE((lruvec)->lrugen.min_seq[LRU_GEN_ANON]), \
2568 READ_ONCE((lruvec)->lrugen.min_seq[LRU_GEN_FILE]), \
2569 }
2570
ec1c86b2
YZ
2571#define for_each_gen_type_zone(gen, type, zone) \
2572 for ((gen) = 0; (gen) < MAX_NR_GENS; (gen)++) \
2573 for ((type) = 0; (type) < ANON_AND_FILE; (type)++) \
2574 for ((zone) = 0; (zone) < MAX_NR_ZONES; (zone)++)
2575
e4dde56c
YZ
2576#define get_memcg_gen(seq) ((seq) % MEMCG_NR_GENS)
2577#define get_memcg_bin(bin) ((bin) % MEMCG_NR_BINS)
2578
bd74fdae 2579static struct lruvec *get_lruvec(struct mem_cgroup *memcg, int nid)
ec1c86b2
YZ
2580{
2581 struct pglist_data *pgdat = NODE_DATA(nid);
2582
2583#ifdef CONFIG_MEMCG
2584 if (memcg) {
2585 struct lruvec *lruvec = &memcg->nodeinfo[nid]->lruvec;
2586
931b6a8b 2587 /* see the comment in mem_cgroup_lruvec() */
ec1c86b2
YZ
2588 if (!lruvec->pgdat)
2589 lruvec->pgdat = pgdat;
2590
2591 return lruvec;
2592 }
2593#endif
2594 VM_WARN_ON_ONCE(!mem_cgroup_disabled());
2595
931b6a8b 2596 return &pgdat->__lruvec;
ec1c86b2
YZ
2597}
2598
ac35a490
YZ
2599static int get_swappiness(struct lruvec *lruvec, struct scan_control *sc)
2600{
2601 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
2602 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
2603
e9d4e1ee
YZ
2604 if (!sc->may_swap)
2605 return 0;
2606
ac35a490
YZ
2607 if (!can_demote(pgdat->node_id, sc) &&
2608 mem_cgroup_get_nr_swap_pages(memcg) < MIN_LRU_BATCH)
2609 return 0;
2610
2611 return mem_cgroup_swappiness(memcg);
2612}
2613
2614static int get_nr_gens(struct lruvec *lruvec, int type)
2615{
2616 return lruvec->lrugen.max_seq - lruvec->lrugen.min_seq[type] + 1;
2617}
2618
2619static bool __maybe_unused seq_is_valid(struct lruvec *lruvec)
2620{
391655fe 2621 /* see the comment on lru_gen_folio */
ac35a490
YZ
2622 return get_nr_gens(lruvec, LRU_GEN_FILE) >= MIN_NR_GENS &&
2623 get_nr_gens(lruvec, LRU_GEN_FILE) <= get_nr_gens(lruvec, LRU_GEN_ANON) &&
2624 get_nr_gens(lruvec, LRU_GEN_ANON) <= MAX_NR_GENS;
2625}
2626
ccbbbb85
A
2627/******************************************************************************
2628 * Bloom filters
2629 ******************************************************************************/
2630
2631/*
2632 * Bloom filters with m=1<<15, k=2 and the false positive rates of ~1/5 when
2633 * n=10,000 and ~1/2 when n=20,000, where, conventionally, m is the number of
2634 * bits in a bitmap, k is the number of hash functions and n is the number of
2635 * inserted items.
2636 *
2637 * Page table walkers use one of the two filters to reduce their search space.
2638 * To get rid of non-leaf entries that no longer have enough leaf entries, the
2639 * aging uses the double-buffering technique to flip to the other filter each
2640 * time it produces a new generation. For non-leaf entries that have enough
2641 * leaf entries, the aging carries them over to the next generation in
2642 * walk_pmd_range(); the eviction also report them when walking the rmap
2643 * in lru_gen_look_around().
2644 *
2645 * For future optimizations:
2646 * 1. It's not necessary to keep both filters all the time. The spare one can be
2647 * freed after the RCU grace period and reallocated if needed again.
2648 * 2. And when reallocating, it's worth scaling its size according to the number
2649 * of inserted entries in the other filter, to reduce the memory overhead on
2650 * small systems and false positives on large systems.
2651 * 3. Jenkins' hash function is an alternative to Knuth's.
2652 */
2653#define BLOOM_FILTER_SHIFT 15
2654
2655static inline int filter_gen_from_seq(unsigned long seq)
2656{
2657 return seq % NR_BLOOM_FILTERS;
2658}
2659
2660static void get_item_key(void *item, int *key)
2661{
2662 u32 hash = hash_ptr(item, BLOOM_FILTER_SHIFT * 2);
2663
2664 BUILD_BUG_ON(BLOOM_FILTER_SHIFT * 2 > BITS_PER_TYPE(u32));
2665
2666 key[0] = hash & (BIT(BLOOM_FILTER_SHIFT) - 1);
2667 key[1] = hash >> BLOOM_FILTER_SHIFT;
2668}
2669
2670static bool test_bloom_filter(struct lruvec *lruvec, unsigned long seq, void *item)
2671{
2672 int key[2];
2673 unsigned long *filter;
2674 int gen = filter_gen_from_seq(seq);
2675
2676 filter = READ_ONCE(lruvec->mm_state.filters[gen]);
2677 if (!filter)
2678 return true;
2679
2680 get_item_key(item, key);
2681
2682 return test_bit(key[0], filter) && test_bit(key[1], filter);
2683}
2684
2685static void update_bloom_filter(struct lruvec *lruvec, unsigned long seq, void *item)
2686{
2687 int key[2];
2688 unsigned long *filter;
2689 int gen = filter_gen_from_seq(seq);
2690
2691 filter = READ_ONCE(lruvec->mm_state.filters[gen]);
2692 if (!filter)
2693 return;
2694
2695 get_item_key(item, key);
2696
2697 if (!test_bit(key[0], filter))
2698 set_bit(key[0], filter);
2699 if (!test_bit(key[1], filter))
2700 set_bit(key[1], filter);
2701}
2702
2703static void reset_bloom_filter(struct lruvec *lruvec, unsigned long seq)
2704{
2705 unsigned long *filter;
2706 int gen = filter_gen_from_seq(seq);
2707
2708 filter = lruvec->mm_state.filters[gen];
2709 if (filter) {
2710 bitmap_clear(filter, 0, BIT(BLOOM_FILTER_SHIFT));
2711 return;
2712 }
2713
2714 filter = bitmap_zalloc(BIT(BLOOM_FILTER_SHIFT),
2715 __GFP_HIGH | __GFP_NOMEMALLOC | __GFP_NOWARN);
2716 WRITE_ONCE(lruvec->mm_state.filters[gen], filter);
2717}
2718
bd74fdae
YZ
2719/******************************************************************************
2720 * mm_struct list
2721 ******************************************************************************/
2722
2723static struct lru_gen_mm_list *get_mm_list(struct mem_cgroup *memcg)
2724{
2725 static struct lru_gen_mm_list mm_list = {
2726 .fifo = LIST_HEAD_INIT(mm_list.fifo),
2727 .lock = __SPIN_LOCK_UNLOCKED(mm_list.lock),
2728 };
2729
2730#ifdef CONFIG_MEMCG
2731 if (memcg)
2732 return &memcg->mm_list;
2733#endif
2734 VM_WARN_ON_ONCE(!mem_cgroup_disabled());
2735
2736 return &mm_list;
2737}
2738
2739void lru_gen_add_mm(struct mm_struct *mm)
2740{
2741 int nid;
2742 struct mem_cgroup *memcg = get_mem_cgroup_from_mm(mm);
2743 struct lru_gen_mm_list *mm_list = get_mm_list(memcg);
2744
2745 VM_WARN_ON_ONCE(!list_empty(&mm->lru_gen.list));
2746#ifdef CONFIG_MEMCG
2747 VM_WARN_ON_ONCE(mm->lru_gen.memcg);
2748 mm->lru_gen.memcg = memcg;
2749#endif
2750 spin_lock(&mm_list->lock);
2751
2752 for_each_node_state(nid, N_MEMORY) {
2753 struct lruvec *lruvec = get_lruvec(memcg, nid);
2754
bd74fdae
YZ
2755 /* the first addition since the last iteration */
2756 if (lruvec->mm_state.tail == &mm_list->fifo)
2757 lruvec->mm_state.tail = &mm->lru_gen.list;
2758 }
2759
2760 list_add_tail(&mm->lru_gen.list, &mm_list->fifo);
2761
2762 spin_unlock(&mm_list->lock);
2763}
2764
2765void lru_gen_del_mm(struct mm_struct *mm)
2766{
2767 int nid;
2768 struct lru_gen_mm_list *mm_list;
2769 struct mem_cgroup *memcg = NULL;
2770
2771 if (list_empty(&mm->lru_gen.list))
2772 return;
2773
2774#ifdef CONFIG_MEMCG
2775 memcg = mm->lru_gen.memcg;
2776#endif
2777 mm_list = get_mm_list(memcg);
2778
2779 spin_lock(&mm_list->lock);
2780
2781 for_each_node(nid) {
2782 struct lruvec *lruvec = get_lruvec(memcg, nid);
2783
7f63cf2d
KS
2784 /* where the current iteration continues after */
2785 if (lruvec->mm_state.head == &mm->lru_gen.list)
2786 lruvec->mm_state.head = lruvec->mm_state.head->prev;
2787
2788 /* where the last iteration ended before */
bd74fdae
YZ
2789 if (lruvec->mm_state.tail == &mm->lru_gen.list)
2790 lruvec->mm_state.tail = lruvec->mm_state.tail->next;
bd74fdae
YZ
2791 }
2792
2793 list_del_init(&mm->lru_gen.list);
2794
2795 spin_unlock(&mm_list->lock);
2796
2797#ifdef CONFIG_MEMCG
2798 mem_cgroup_put(mm->lru_gen.memcg);
2799 mm->lru_gen.memcg = NULL;
2800#endif
2801}
2802
2803#ifdef CONFIG_MEMCG
2804void lru_gen_migrate_mm(struct mm_struct *mm)
2805{
2806 struct mem_cgroup *memcg;
2807 struct task_struct *task = rcu_dereference_protected(mm->owner, true);
2808
2809 VM_WARN_ON_ONCE(task->mm != mm);
2810 lockdep_assert_held(&task->alloc_lock);
2811
2812 /* for mm_update_next_owner() */
2813 if (mem_cgroup_disabled())
2814 return;
2815
de08eaa6
YZ
2816 /* migration can happen before addition */
2817 if (!mm->lru_gen.memcg)
2818 return;
2819
bd74fdae
YZ
2820 rcu_read_lock();
2821 memcg = mem_cgroup_from_task(task);
2822 rcu_read_unlock();
2823 if (memcg == mm->lru_gen.memcg)
2824 return;
2825
bd74fdae
YZ
2826 VM_WARN_ON_ONCE(list_empty(&mm->lru_gen.list));
2827
2828 lru_gen_del_mm(mm);
2829 lru_gen_add_mm(mm);
2830}
2831#endif
2832
bd74fdae
YZ
2833static void reset_mm_stats(struct lruvec *lruvec, struct lru_gen_mm_walk *walk, bool last)
2834{
2835 int i;
2836 int hist;
2837
2838 lockdep_assert_held(&get_mm_list(lruvec_memcg(lruvec))->lock);
2839
2840 if (walk) {
2841 hist = lru_hist_from_seq(walk->max_seq);
2842
2843 for (i = 0; i < NR_MM_STATS; i++) {
2844 WRITE_ONCE(lruvec->mm_state.stats[hist][i],
2845 lruvec->mm_state.stats[hist][i] + walk->mm_stats[i]);
2846 walk->mm_stats[i] = 0;
2847 }
2848 }
2849
2850 if (NR_HIST_GENS > 1 && last) {
2851 hist = lru_hist_from_seq(lruvec->mm_state.seq + 1);
2852
2853 for (i = 0; i < NR_MM_STATS; i++)
2854 WRITE_ONCE(lruvec->mm_state.stats[hist][i], 0);
2855 }
2856}
2857
2858static bool should_skip_mm(struct mm_struct *mm, struct lru_gen_mm_walk *walk)
2859{
2860 int type;
2861 unsigned long size = 0;
2862 struct pglist_data *pgdat = lruvec_pgdat(walk->lruvec);
2863 int key = pgdat->node_id % BITS_PER_TYPE(mm->lru_gen.bitmap);
2864
2865 if (!walk->force_scan && !test_bit(key, &mm->lru_gen.bitmap))
2866 return true;
2867
2868 clear_bit(key, &mm->lru_gen.bitmap);
2869
2870 for (type = !walk->can_swap; type < ANON_AND_FILE; type++) {
2871 size += type ? get_mm_counter(mm, MM_FILEPAGES) :
2872 get_mm_counter(mm, MM_ANONPAGES) +
2873 get_mm_counter(mm, MM_SHMEMPAGES);
2874 }
2875
2876 if (size < MIN_LRU_BATCH)
2877 return true;
2878
2879 return !mmget_not_zero(mm);
2880}
2881
2882static bool iterate_mm_list(struct lruvec *lruvec, struct lru_gen_mm_walk *walk,
2883 struct mm_struct **iter)
2884{
2885 bool first = false;
7f63cf2d 2886 bool last = false;
bd74fdae
YZ
2887 struct mm_struct *mm = NULL;
2888 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
2889 struct lru_gen_mm_list *mm_list = get_mm_list(memcg);
2890 struct lru_gen_mm_state *mm_state = &lruvec->mm_state;
2891
2892 /*
7f63cf2d
KS
2893 * mm_state->seq is incremented after each iteration of mm_list. There
2894 * are three interesting cases for this page table walker:
2895 * 1. It tries to start a new iteration with a stale max_seq: there is
2896 * nothing left to do.
2897 * 2. It started the next iteration: it needs to reset the Bloom filter
2898 * so that a fresh set of PTE tables can be recorded.
2899 * 3. It ended the current iteration: it needs to reset the mm stats
2900 * counters and tell its caller to increment max_seq.
bd74fdae
YZ
2901 */
2902 spin_lock(&mm_list->lock);
2903
2904 VM_WARN_ON_ONCE(mm_state->seq + 1 < walk->max_seq);
bd74fdae 2905
7f63cf2d 2906 if (walk->max_seq <= mm_state->seq)
bd74fdae 2907 goto done;
bd74fdae 2908
7f63cf2d
KS
2909 if (!mm_state->head)
2910 mm_state->head = &mm_list->fifo;
bd74fdae 2911
7f63cf2d 2912 if (mm_state->head == &mm_list->fifo)
bd74fdae 2913 first = true;
bd74fdae 2914
7f63cf2d 2915 do {
bd74fdae 2916 mm_state->head = mm_state->head->next;
7f63cf2d
KS
2917 if (mm_state->head == &mm_list->fifo) {
2918 WRITE_ONCE(mm_state->seq, mm_state->seq + 1);
2919 last = true;
2920 break;
2921 }
bd74fdae
YZ
2922
2923 /* force scan for those added after the last iteration */
7f63cf2d
KS
2924 if (!mm_state->tail || mm_state->tail == mm_state->head) {
2925 mm_state->tail = mm_state->head->next;
bd74fdae
YZ
2926 walk->force_scan = true;
2927 }
2928
7f63cf2d 2929 mm = list_entry(mm_state->head, struct mm_struct, lru_gen.list);
bd74fdae
YZ
2930 if (should_skip_mm(mm, walk))
2931 mm = NULL;
7f63cf2d 2932 } while (!mm);
bd74fdae 2933done:
bd74fdae
YZ
2934 if (*iter || last)
2935 reset_mm_stats(lruvec, walk, last);
2936
2937 spin_unlock(&mm_list->lock);
2938
2939 if (mm && first)
2940 reset_bloom_filter(lruvec, walk->max_seq + 1);
2941
2942 if (*iter)
2943 mmput_async(*iter);
2944
2945 *iter = mm;
2946
2947 return last;
2948}
2949
2950static bool iterate_mm_list_nowalk(struct lruvec *lruvec, unsigned long max_seq)
2951{
2952 bool success = false;
2953 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
2954 struct lru_gen_mm_list *mm_list = get_mm_list(memcg);
2955 struct lru_gen_mm_state *mm_state = &lruvec->mm_state;
2956
2957 spin_lock(&mm_list->lock);
2958
2959 VM_WARN_ON_ONCE(mm_state->seq + 1 < max_seq);
2960
7f63cf2d
KS
2961 if (max_seq > mm_state->seq) {
2962 mm_state->head = NULL;
2963 mm_state->tail = NULL;
bd74fdae
YZ
2964 WRITE_ONCE(mm_state->seq, mm_state->seq + 1);
2965 reset_mm_stats(lruvec, NULL, true);
2966 success = true;
2967 }
2968
2969 spin_unlock(&mm_list->lock);
2970
2971 return success;
2972}
2973
ac35a490 2974/******************************************************************************
32d32ef1 2975 * PID controller
ac35a490
YZ
2976 ******************************************************************************/
2977
2978/*
2979 * A feedback loop based on Proportional-Integral-Derivative (PID) controller.
2980 *
2981 * The P term is refaulted/(evicted+protected) from a tier in the generation
2982 * currently being evicted; the I term is the exponential moving average of the
2983 * P term over the generations previously evicted, using the smoothing factor
2984 * 1/2; the D term isn't supported.
2985 *
2986 * The setpoint (SP) is always the first tier of one type; the process variable
2987 * (PV) is either any tier of the other type or any other tier of the same
2988 * type.
2989 *
2990 * The error is the difference between the SP and the PV; the correction is to
2991 * turn off protection when SP>PV or turn on protection when SP<PV.
2992 *
2993 * For future optimizations:
2994 * 1. The D term may discount the other two terms over time so that long-lived
2995 * generations can resist stale information.
2996 */
2997struct ctrl_pos {
2998 unsigned long refaulted;
2999 unsigned long total;
3000 int gain;
3001};
3002
3003static void read_ctrl_pos(struct lruvec *lruvec, int type, int tier, int gain,
3004 struct ctrl_pos *pos)
3005{
391655fe 3006 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
3007 int hist = lru_hist_from_seq(lrugen->min_seq[type]);
3008
3009 pos->refaulted = lrugen->avg_refaulted[type][tier] +
3010 atomic_long_read(&lrugen->refaulted[hist][type][tier]);
3011 pos->total = lrugen->avg_total[type][tier] +
3012 atomic_long_read(&lrugen->evicted[hist][type][tier]);
3013 if (tier)
3014 pos->total += lrugen->protected[hist][type][tier - 1];
3015 pos->gain = gain;
3016}
3017
3018static void reset_ctrl_pos(struct lruvec *lruvec, int type, bool carryover)
3019{
3020 int hist, tier;
391655fe 3021 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
3022 bool clear = carryover ? NR_HIST_GENS == 1 : NR_HIST_GENS > 1;
3023 unsigned long seq = carryover ? lrugen->min_seq[type] : lrugen->max_seq + 1;
3024
3025 lockdep_assert_held(&lruvec->lru_lock);
3026
3027 if (!carryover && !clear)
3028 return;
3029
3030 hist = lru_hist_from_seq(seq);
3031
3032 for (tier = 0; tier < MAX_NR_TIERS; tier++) {
3033 if (carryover) {
3034 unsigned long sum;
3035
3036 sum = lrugen->avg_refaulted[type][tier] +
3037 atomic_long_read(&lrugen->refaulted[hist][type][tier]);
3038 WRITE_ONCE(lrugen->avg_refaulted[type][tier], sum / 2);
3039
3040 sum = lrugen->avg_total[type][tier] +
3041 atomic_long_read(&lrugen->evicted[hist][type][tier]);
3042 if (tier)
3043 sum += lrugen->protected[hist][type][tier - 1];
3044 WRITE_ONCE(lrugen->avg_total[type][tier], sum / 2);
3045 }
3046
3047 if (clear) {
3048 atomic_long_set(&lrugen->refaulted[hist][type][tier], 0);
3049 atomic_long_set(&lrugen->evicted[hist][type][tier], 0);
3050 if (tier)
3051 WRITE_ONCE(lrugen->protected[hist][type][tier - 1], 0);
3052 }
3053 }
3054}
3055
3056static bool positive_ctrl_err(struct ctrl_pos *sp, struct ctrl_pos *pv)
3057{
3058 /*
3059 * Return true if the PV has a limited number of refaults or a lower
3060 * refaulted/total than the SP.
3061 */
3062 return pv->refaulted < MIN_LRU_BATCH ||
3063 pv->refaulted * (sp->total + MIN_LRU_BATCH) * sp->gain <=
3064 (sp->refaulted + 1) * pv->total * pv->gain;
3065}
3066
3067/******************************************************************************
3068 * the aging
3069 ******************************************************************************/
3070
018ee47f
YZ
3071/* promote pages accessed through page tables */
3072static int folio_update_gen(struct folio *folio, int gen)
3073{
3074 unsigned long new_flags, old_flags = READ_ONCE(folio->flags);
3075
3076 VM_WARN_ON_ONCE(gen >= MAX_NR_GENS);
3077 VM_WARN_ON_ONCE(!rcu_read_lock_held());
3078
3079 do {
3080 /* lru_gen_del_folio() has isolated this page? */
3081 if (!(old_flags & LRU_GEN_MASK)) {
49fd9b6d 3082 /* for shrink_folio_list() */
018ee47f
YZ
3083 new_flags = old_flags | BIT(PG_referenced);
3084 continue;
3085 }
3086
3087 new_flags = old_flags & ~(LRU_GEN_MASK | LRU_REFS_MASK | LRU_REFS_FLAGS);
3088 new_flags |= (gen + 1UL) << LRU_GEN_PGOFF;
3089 } while (!try_cmpxchg(&folio->flags, &old_flags, new_flags));
3090
3091 return ((old_flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1;
3092}
3093
ac35a490
YZ
3094/* protect pages accessed multiple times through file descriptors */
3095static int folio_inc_gen(struct lruvec *lruvec, struct folio *folio, bool reclaiming)
3096{
3097 int type = folio_is_file_lru(folio);
391655fe 3098 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
3099 int new_gen, old_gen = lru_gen_from_seq(lrugen->min_seq[type]);
3100 unsigned long new_flags, old_flags = READ_ONCE(folio->flags);
3101
3102 VM_WARN_ON_ONCE_FOLIO(!(old_flags & LRU_GEN_MASK), folio);
3103
3104 do {
018ee47f
YZ
3105 new_gen = ((old_flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1;
3106 /* folio_update_gen() has promoted this page? */
3107 if (new_gen >= 0 && new_gen != old_gen)
3108 return new_gen;
3109
ac35a490
YZ
3110 new_gen = (old_gen + 1) % MAX_NR_GENS;
3111
3112 new_flags = old_flags & ~(LRU_GEN_MASK | LRU_REFS_MASK | LRU_REFS_FLAGS);
3113 new_flags |= (new_gen + 1UL) << LRU_GEN_PGOFF;
3114 /* for folio_end_writeback() */
3115 if (reclaiming)
3116 new_flags |= BIT(PG_reclaim);
3117 } while (!try_cmpxchg(&folio->flags, &old_flags, new_flags));
3118
3119 lru_gen_update_size(lruvec, folio, old_gen, new_gen);
3120
3121 return new_gen;
3122}
3123
bd74fdae
YZ
3124static void update_batch_size(struct lru_gen_mm_walk *walk, struct folio *folio,
3125 int old_gen, int new_gen)
3126{
3127 int type = folio_is_file_lru(folio);
3128 int zone = folio_zonenum(folio);
3129 int delta = folio_nr_pages(folio);
3130
3131 VM_WARN_ON_ONCE(old_gen >= MAX_NR_GENS);
3132 VM_WARN_ON_ONCE(new_gen >= MAX_NR_GENS);
3133
3134 walk->batched++;
3135
3136 walk->nr_pages[old_gen][type][zone] -= delta;
3137 walk->nr_pages[new_gen][type][zone] += delta;
3138}
3139
3140static void reset_batch_size(struct lruvec *lruvec, struct lru_gen_mm_walk *walk)
3141{
3142 int gen, type, zone;
391655fe 3143 struct lru_gen_folio *lrugen = &lruvec->lrugen;
bd74fdae
YZ
3144
3145 walk->batched = 0;
3146
3147 for_each_gen_type_zone(gen, type, zone) {
3148 enum lru_list lru = type * LRU_INACTIVE_FILE;
3149 int delta = walk->nr_pages[gen][type][zone];
3150
3151 if (!delta)
3152 continue;
3153
3154 walk->nr_pages[gen][type][zone] = 0;
3155 WRITE_ONCE(lrugen->nr_pages[gen][type][zone],
3156 lrugen->nr_pages[gen][type][zone] + delta);
3157
3158 if (lru_gen_is_active(lruvec, gen))
3159 lru += LRU_ACTIVE;
3160 __update_lru_size(lruvec, lru, zone, delta);
3161 }
3162}
3163
3164static int should_skip_vma(unsigned long start, unsigned long end, struct mm_walk *args)
3165{
3166 struct address_space *mapping;
3167 struct vm_area_struct *vma = args->vma;
3168 struct lru_gen_mm_walk *walk = args->private;
3169
3170 if (!vma_is_accessible(vma))
3171 return true;
3172
3173 if (is_vm_hugetlb_page(vma))
3174 return true;
3175
8788f678
YZ
3176 if (!vma_has_recency(vma))
3177 return true;
3178
3179 if (vma->vm_flags & (VM_LOCKED | VM_SPECIAL))
bd74fdae
YZ
3180 return true;
3181
3182 if (vma == get_gate_vma(vma->vm_mm))
3183 return true;
3184
3185 if (vma_is_anonymous(vma))
3186 return !walk->can_swap;
3187
3188 if (WARN_ON_ONCE(!vma->vm_file || !vma->vm_file->f_mapping))
3189 return true;
3190
3191 mapping = vma->vm_file->f_mapping;
3192 if (mapping_unevictable(mapping))
3193 return true;
3194
3195 if (shmem_mapping(mapping))
3196 return !walk->can_swap;
3197
3198 /* to exclude special mappings like dax, etc. */
3199 return !mapping->a_ops->read_folio;
3200}
3201
3202/*
3203 * Some userspace memory allocators map many single-page VMAs. Instead of
3204 * returning back to the PGD table for each of such VMAs, finish an entire PMD
3205 * table to reduce zigzags and improve cache performance.
3206 */
3207static bool get_next_vma(unsigned long mask, unsigned long size, struct mm_walk *args,
3208 unsigned long *vm_start, unsigned long *vm_end)
3209{
3210 unsigned long start = round_up(*vm_end, size);
3211 unsigned long end = (start | ~mask) + 1;
78ba531f 3212 VMA_ITERATOR(vmi, args->mm, start);
bd74fdae
YZ
3213
3214 VM_WARN_ON_ONCE(mask & size);
3215 VM_WARN_ON_ONCE((start & mask) != (*vm_start & mask));
3216
78ba531f 3217 for_each_vma(vmi, args->vma) {
bd74fdae
YZ
3218 if (end && end <= args->vma->vm_start)
3219 return false;
3220
78ba531f 3221 if (should_skip_vma(args->vma->vm_start, args->vma->vm_end, args))
bd74fdae 3222 continue;
bd74fdae
YZ
3223
3224 *vm_start = max(start, args->vma->vm_start);
3225 *vm_end = min(end - 1, args->vma->vm_end - 1) + 1;
3226
3227 return true;
3228 }
3229
3230 return false;
3231}
3232
018ee47f
YZ
3233static unsigned long get_pte_pfn(pte_t pte, struct vm_area_struct *vma, unsigned long addr)
3234{
3235 unsigned long pfn = pte_pfn(pte);
3236
3237 VM_WARN_ON_ONCE(addr < vma->vm_start || addr >= vma->vm_end);
3238
3239 if (!pte_present(pte) || is_zero_pfn(pfn))
3240 return -1;
3241
3242 if (WARN_ON_ONCE(pte_devmap(pte) || pte_special(pte)))
3243 return -1;
3244
3245 if (WARN_ON_ONCE(!pfn_valid(pfn)))
3246 return -1;
3247
3248 return pfn;
3249}
3250
bd74fdae
YZ
3251#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG)
3252static unsigned long get_pmd_pfn(pmd_t pmd, struct vm_area_struct *vma, unsigned long addr)
3253{
3254 unsigned long pfn = pmd_pfn(pmd);
3255
3256 VM_WARN_ON_ONCE(addr < vma->vm_start || addr >= vma->vm_end);
3257
3258 if (!pmd_present(pmd) || is_huge_zero_pmd(pmd))
3259 return -1;
3260
3261 if (WARN_ON_ONCE(pmd_devmap(pmd)))
3262 return -1;
3263
3264 if (WARN_ON_ONCE(!pfn_valid(pfn)))
3265 return -1;
3266
3267 return pfn;
3268}
3269#endif
3270
018ee47f 3271static struct folio *get_pfn_folio(unsigned long pfn, struct mem_cgroup *memcg,
bd74fdae 3272 struct pglist_data *pgdat, bool can_swap)
018ee47f
YZ
3273{
3274 struct folio *folio;
3275
3276 /* try to avoid unnecessary memory loads */
3277 if (pfn < pgdat->node_start_pfn || pfn >= pgdat_end_pfn(pgdat))
3278 return NULL;
3279
3280 folio = pfn_folio(pfn);
3281 if (folio_nid(folio) != pgdat->node_id)
3282 return NULL;
3283
3284 if (folio_memcg_rcu(folio) != memcg)
3285 return NULL;
3286
bd74fdae
YZ
3287 /* file VMAs can contain anon pages from COW */
3288 if (!folio_is_file_lru(folio) && !can_swap)
3289 return NULL;
3290
018ee47f
YZ
3291 return folio;
3292}
3293
bd74fdae
YZ
3294static bool suitable_to_scan(int total, int young)
3295{
3296 int n = clamp_t(int, cache_line_size() / sizeof(pte_t), 2, 8);
3297
3298 /* suitable if the average number of young PTEs per cacheline is >=1 */
3299 return young * n >= total;
3300}
3301
3302static bool walk_pte_range(pmd_t *pmd, unsigned long start, unsigned long end,
3303 struct mm_walk *args)
3304{
3305 int i;
3306 pte_t *pte;
3307 spinlock_t *ptl;
3308 unsigned long addr;
3309 int total = 0;
3310 int young = 0;
3311 struct lru_gen_mm_walk *walk = args->private;
3312 struct mem_cgroup *memcg = lruvec_memcg(walk->lruvec);
3313 struct pglist_data *pgdat = lruvec_pgdat(walk->lruvec);
3314 int old_gen, new_gen = lru_gen_from_seq(walk->max_seq);
3315
52fc0483
HD
3316 pte = pte_offset_map_nolock(args->mm, pmd, start & PMD_MASK, &ptl);
3317 if (!pte)
3318 return false;
3319 if (!spin_trylock(ptl)) {
3320 pte_unmap(pte);
bd74fdae 3321 return false;
52fc0483 3322 }
bd74fdae
YZ
3323
3324 arch_enter_lazy_mmu_mode();
bd74fdae
YZ
3325restart:
3326 for (i = pte_index(start), addr = start; addr != end; i++, addr += PAGE_SIZE) {
3327 unsigned long pfn;
3328 struct folio *folio;
c33c7948 3329 pte_t ptent = ptep_get(pte + i);
bd74fdae
YZ
3330
3331 total++;
3332 walk->mm_stats[MM_LEAF_TOTAL]++;
3333
c33c7948 3334 pfn = get_pte_pfn(ptent, args->vma, addr);
bd74fdae
YZ
3335 if (pfn == -1)
3336 continue;
3337
c33c7948 3338 if (!pte_young(ptent)) {
bd74fdae
YZ
3339 walk->mm_stats[MM_LEAF_OLD]++;
3340 continue;
3341 }
3342
3343 folio = get_pfn_folio(pfn, memcg, pgdat, walk->can_swap);
3344 if (!folio)
3345 continue;
3346
3347 if (!ptep_test_and_clear_young(args->vma, addr, pte + i))
3348 VM_WARN_ON_ONCE(true);
3349
3350 young++;
3351 walk->mm_stats[MM_LEAF_YOUNG]++;
3352
c33c7948 3353 if (pte_dirty(ptent) && !folio_test_dirty(folio) &&
bd74fdae
YZ
3354 !(folio_test_anon(folio) && folio_test_swapbacked(folio) &&
3355 !folio_test_swapcache(folio)))
3356 folio_mark_dirty(folio);
3357
3358 old_gen = folio_update_gen(folio, new_gen);
3359 if (old_gen >= 0 && old_gen != new_gen)
3360 update_batch_size(walk, folio, old_gen, new_gen);
3361 }
3362
3363 if (i < PTRS_PER_PTE && get_next_vma(PMD_MASK, PAGE_SIZE, args, &start, &end))
3364 goto restart;
3365
bd74fdae 3366 arch_leave_lazy_mmu_mode();
52fc0483 3367 pte_unmap_unlock(pte, ptl);
bd74fdae
YZ
3368
3369 return suitable_to_scan(total, young);
3370}
3371
3372#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG)
b5ff4133
A
3373static void walk_pmd_range_locked(pud_t *pud, unsigned long addr, struct vm_area_struct *vma,
3374 struct mm_walk *args, unsigned long *bitmap, unsigned long *first)
bd74fdae
YZ
3375{
3376 int i;
3377 pmd_t *pmd;
3378 spinlock_t *ptl;
3379 struct lru_gen_mm_walk *walk = args->private;
3380 struct mem_cgroup *memcg = lruvec_memcg(walk->lruvec);
3381 struct pglist_data *pgdat = lruvec_pgdat(walk->lruvec);
3382 int old_gen, new_gen = lru_gen_from_seq(walk->max_seq);
3383
3384 VM_WARN_ON_ONCE(pud_leaf(*pud));
3385
3386 /* try to batch at most 1+MIN_LRU_BATCH+1 entries */
b5ff4133
A
3387 if (*first == -1) {
3388 *first = addr;
3389 bitmap_zero(bitmap, MIN_LRU_BATCH);
bd74fdae
YZ
3390 return;
3391 }
3392
b5ff4133 3393 i = addr == -1 ? 0 : pmd_index(addr) - pmd_index(*first);
bd74fdae
YZ
3394 if (i && i <= MIN_LRU_BATCH) {
3395 __set_bit(i - 1, bitmap);
3396 return;
3397 }
3398
b5ff4133 3399 pmd = pmd_offset(pud, *first);
bd74fdae
YZ
3400
3401 ptl = pmd_lockptr(args->mm, pmd);
3402 if (!spin_trylock(ptl))
3403 goto done;
3404
3405 arch_enter_lazy_mmu_mode();
3406
3407 do {
3408 unsigned long pfn;
3409 struct folio *folio;
b5ff4133
A
3410
3411 /* don't round down the first address */
3412 addr = i ? (*first & PMD_MASK) + i * PMD_SIZE : *first;
bd74fdae
YZ
3413
3414 pfn = get_pmd_pfn(pmd[i], vma, addr);
3415 if (pfn == -1)
3416 goto next;
3417
3418 if (!pmd_trans_huge(pmd[i])) {
bd02df41 3419 if (should_clear_pmd_young())
bd74fdae
YZ
3420 pmdp_test_and_clear_young(vma, addr, pmd + i);
3421 goto next;
3422 }
3423
3424 folio = get_pfn_folio(pfn, memcg, pgdat, walk->can_swap);
3425 if (!folio)
3426 goto next;
3427
3428 if (!pmdp_test_and_clear_young(vma, addr, pmd + i))
3429 goto next;
3430
3431 walk->mm_stats[MM_LEAF_YOUNG]++;
3432
3433 if (pmd_dirty(pmd[i]) && !folio_test_dirty(folio) &&
3434 !(folio_test_anon(folio) && folio_test_swapbacked(folio) &&
3435 !folio_test_swapcache(folio)))
3436 folio_mark_dirty(folio);
3437
3438 old_gen = folio_update_gen(folio, new_gen);
3439 if (old_gen >= 0 && old_gen != new_gen)
3440 update_batch_size(walk, folio, old_gen, new_gen);
3441next:
3442 i = i > MIN_LRU_BATCH ? 0 : find_next_bit(bitmap, MIN_LRU_BATCH, i) + 1;
3443 } while (i <= MIN_LRU_BATCH);
3444
3445 arch_leave_lazy_mmu_mode();
3446 spin_unlock(ptl);
3447done:
b5ff4133 3448 *first = -1;
bd74fdae
YZ
3449}
3450#else
b5ff4133
A
3451static void walk_pmd_range_locked(pud_t *pud, unsigned long addr, struct vm_area_struct *vma,
3452 struct mm_walk *args, unsigned long *bitmap, unsigned long *first)
bd74fdae
YZ
3453{
3454}
3455#endif
3456
3457static void walk_pmd_range(pud_t *pud, unsigned long start, unsigned long end,
3458 struct mm_walk *args)
3459{
3460 int i;
3461 pmd_t *pmd;
3462 unsigned long next;
3463 unsigned long addr;
3464 struct vm_area_struct *vma;
0285762c 3465 DECLARE_BITMAP(bitmap, MIN_LRU_BATCH);
b5ff4133 3466 unsigned long first = -1;
bd74fdae 3467 struct lru_gen_mm_walk *walk = args->private;
bd74fdae
YZ
3468
3469 VM_WARN_ON_ONCE(pud_leaf(*pud));
3470
3471 /*
3472 * Finish an entire PMD in two passes: the first only reaches to PTE
3473 * tables to avoid taking the PMD lock; the second, if necessary, takes
3474 * the PMD lock to clear the accessed bit in PMD entries.
3475 */
3476 pmd = pmd_offset(pud, start & PUD_MASK);
3477restart:
3478 /* walk_pte_range() may call get_next_vma() */
3479 vma = args->vma;
3480 for (i = pmd_index(start), addr = start; addr != end; i++, addr = next) {
dab6e717 3481 pmd_t val = pmdp_get_lockless(pmd + i);
bd74fdae
YZ
3482
3483 next = pmd_addr_end(addr, end);
3484
3485 if (!pmd_present(val) || is_huge_zero_pmd(val)) {
3486 walk->mm_stats[MM_LEAF_TOTAL]++;
3487 continue;
3488 }
3489
3490#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3491 if (pmd_trans_huge(val)) {
3492 unsigned long pfn = pmd_pfn(val);
3493 struct pglist_data *pgdat = lruvec_pgdat(walk->lruvec);
3494
3495 walk->mm_stats[MM_LEAF_TOTAL]++;
3496
3497 if (!pmd_young(val)) {
3498 walk->mm_stats[MM_LEAF_OLD]++;
3499 continue;
3500 }
3501
3502 /* try to avoid unnecessary memory loads */
3503 if (pfn < pgdat->node_start_pfn || pfn >= pgdat_end_pfn(pgdat))
3504 continue;
3505
b5ff4133 3506 walk_pmd_range_locked(pud, addr, vma, args, bitmap, &first);
bd74fdae
YZ
3507 continue;
3508 }
3509#endif
3510 walk->mm_stats[MM_NONLEAF_TOTAL]++;
3511
bd02df41 3512 if (should_clear_pmd_young()) {
354ed597
YZ
3513 if (!pmd_young(val))
3514 continue;
bd74fdae 3515
b5ff4133 3516 walk_pmd_range_locked(pud, addr, vma, args, bitmap, &first);
354ed597 3517 }
4aaf269c 3518
bd74fdae
YZ
3519 if (!walk->force_scan && !test_bloom_filter(walk->lruvec, walk->max_seq, pmd + i))
3520 continue;
3521
3522 walk->mm_stats[MM_NONLEAF_FOUND]++;
3523
3524 if (!walk_pte_range(&val, addr, next, args))
3525 continue;
3526
3527 walk->mm_stats[MM_NONLEAF_ADDED]++;
3528
3529 /* carry over to the next generation */
3530 update_bloom_filter(walk->lruvec, walk->max_seq + 1, pmd + i);
3531 }
3532
b5ff4133 3533 walk_pmd_range_locked(pud, -1, vma, args, bitmap, &first);
bd74fdae
YZ
3534
3535 if (i < PTRS_PER_PMD && get_next_vma(PUD_MASK, PMD_SIZE, args, &start, &end))
3536 goto restart;
3537}
3538
3539static int walk_pud_range(p4d_t *p4d, unsigned long start, unsigned long end,
3540 struct mm_walk *args)
3541{
3542 int i;
3543 pud_t *pud;
3544 unsigned long addr;
3545 unsigned long next;
3546 struct lru_gen_mm_walk *walk = args->private;
3547
3548 VM_WARN_ON_ONCE(p4d_leaf(*p4d));
3549
3550 pud = pud_offset(p4d, start & P4D_MASK);
3551restart:
3552 for (i = pud_index(start), addr = start; addr != end; i++, addr = next) {
3553 pud_t val = READ_ONCE(pud[i]);
3554
3555 next = pud_addr_end(addr, end);
3556
3557 if (!pud_present(val) || WARN_ON_ONCE(pud_leaf(val)))
3558 continue;
3559
3560 walk_pmd_range(&val, addr, next, args);
3561
bd74fdae
YZ
3562 if (need_resched() || walk->batched >= MAX_LRU_BATCH) {
3563 end = (addr | ~PUD_MASK) + 1;
3564 goto done;
3565 }
3566 }
3567
3568 if (i < PTRS_PER_PUD && get_next_vma(P4D_MASK, PUD_SIZE, args, &start, &end))
3569 goto restart;
3570
3571 end = round_up(end, P4D_SIZE);
3572done:
3573 if (!end || !args->vma)
3574 return 1;
3575
3576 walk->next_addr = max(end, args->vma->vm_start);
3577
3578 return -EAGAIN;
3579}
3580
3581static void walk_mm(struct lruvec *lruvec, struct mm_struct *mm, struct lru_gen_mm_walk *walk)
3582{
3583 static const struct mm_walk_ops mm_walk_ops = {
3584 .test_walk = should_skip_vma,
3585 .p4d_entry = walk_pud_range,
49b06385 3586 .walk_lock = PGWALK_RDLOCK,
bd74fdae
YZ
3587 };
3588
3589 int err;
3590 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3591
3592 walk->next_addr = FIRST_USER_ADDRESS;
3593
3594 do {
7f63cf2d
KS
3595 DEFINE_MAX_SEQ(lruvec);
3596
bd74fdae
YZ
3597 err = -EBUSY;
3598
7f63cf2d
KS
3599 /* another thread might have called inc_max_seq() */
3600 if (walk->max_seq != max_seq)
3601 break;
3602
bd74fdae
YZ
3603 /* folio_update_gen() requires stable folio_memcg() */
3604 if (!mem_cgroup_trylock_pages(memcg))
3605 break;
3606
3607 /* the caller might be holding the lock for write */
3608 if (mmap_read_trylock(mm)) {
3609 err = walk_page_range(mm, walk->next_addr, ULONG_MAX, &mm_walk_ops, walk);
3610
3611 mmap_read_unlock(mm);
3612 }
3613
3614 mem_cgroup_unlock_pages();
3615
3616 if (walk->batched) {
3617 spin_lock_irq(&lruvec->lru_lock);
3618 reset_batch_size(lruvec, walk);
3619 spin_unlock_irq(&lruvec->lru_lock);
3620 }
3621
3622 cond_resched();
3623 } while (err == -EAGAIN);
3624}
3625
e9d4e1ee 3626static struct lru_gen_mm_walk *set_mm_walk(struct pglist_data *pgdat, bool force_alloc)
bd74fdae
YZ
3627{
3628 struct lru_gen_mm_walk *walk = current->reclaim_state->mm_walk;
3629
3630 if (pgdat && current_is_kswapd()) {
3631 VM_WARN_ON_ONCE(walk);
3632
3633 walk = &pgdat->mm_walk;
e9d4e1ee 3634 } else if (!walk && force_alloc) {
bd74fdae
YZ
3635 VM_WARN_ON_ONCE(current_is_kswapd());
3636
3637 walk = kzalloc(sizeof(*walk), __GFP_HIGH | __GFP_NOMEMALLOC | __GFP_NOWARN);
3638 }
3639
3640 current->reclaim_state->mm_walk = walk;
3641
3642 return walk;
3643}
3644
3645static void clear_mm_walk(void)
3646{
3647 struct lru_gen_mm_walk *walk = current->reclaim_state->mm_walk;
3648
3649 VM_WARN_ON_ONCE(walk && memchr_inv(walk->nr_pages, 0, sizeof(walk->nr_pages)));
3650 VM_WARN_ON_ONCE(walk && memchr_inv(walk->mm_stats, 0, sizeof(walk->mm_stats)));
3651
3652 current->reclaim_state->mm_walk = NULL;
3653
3654 if (!current_is_kswapd())
3655 kfree(walk);
3656}
3657
d6c3af7d 3658static bool inc_min_seq(struct lruvec *lruvec, int type, bool can_swap)
ac35a490 3659{
d6c3af7d
YZ
3660 int zone;
3661 int remaining = MAX_LRU_BATCH;
391655fe 3662 struct lru_gen_folio *lrugen = &lruvec->lrugen;
d6c3af7d
YZ
3663 int new_gen, old_gen = lru_gen_from_seq(lrugen->min_seq[type]);
3664
3665 if (type == LRU_GEN_ANON && !can_swap)
3666 goto done;
3667
3668 /* prevent cold/hot inversion if force_scan is true */
3669 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
6df1b221 3670 struct list_head *head = &lrugen->folios[old_gen][type][zone];
d6c3af7d
YZ
3671
3672 while (!list_empty(head)) {
3673 struct folio *folio = lru_to_folio(head);
3674
3675 VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio);
3676 VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio), folio);
3677 VM_WARN_ON_ONCE_FOLIO(folio_is_file_lru(folio) != type, folio);
3678 VM_WARN_ON_ONCE_FOLIO(folio_zonenum(folio) != zone, folio);
ac35a490 3679
d6c3af7d 3680 new_gen = folio_inc_gen(lruvec, folio, false);
6df1b221 3681 list_move_tail(&folio->lru, &lrugen->folios[new_gen][type][zone]);
d6c3af7d
YZ
3682
3683 if (!--remaining)
3684 return false;
3685 }
3686 }
3687done:
ac35a490
YZ
3688 reset_ctrl_pos(lruvec, type, true);
3689 WRITE_ONCE(lrugen->min_seq[type], lrugen->min_seq[type] + 1);
d6c3af7d
YZ
3690
3691 return true;
ac35a490
YZ
3692}
3693
3694static bool try_to_inc_min_seq(struct lruvec *lruvec, bool can_swap)
3695{
3696 int gen, type, zone;
3697 bool success = false;
391655fe 3698 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
3699 DEFINE_MIN_SEQ(lruvec);
3700
3701 VM_WARN_ON_ONCE(!seq_is_valid(lruvec));
3702
3703 /* find the oldest populated generation */
3704 for (type = !can_swap; type < ANON_AND_FILE; type++) {
3705 while (min_seq[type] + MIN_NR_GENS <= lrugen->max_seq) {
3706 gen = lru_gen_from_seq(min_seq[type]);
3707
3708 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
6df1b221 3709 if (!list_empty(&lrugen->folios[gen][type][zone]))
ac35a490
YZ
3710 goto next;
3711 }
3712
3713 min_seq[type]++;
3714 }
3715next:
3716 ;
3717 }
3718
391655fe 3719 /* see the comment on lru_gen_folio */
ac35a490
YZ
3720 if (can_swap) {
3721 min_seq[LRU_GEN_ANON] = min(min_seq[LRU_GEN_ANON], min_seq[LRU_GEN_FILE]);
3722 min_seq[LRU_GEN_FILE] = max(min_seq[LRU_GEN_ANON], lrugen->min_seq[LRU_GEN_FILE]);
3723 }
3724
3725 for (type = !can_swap; type < ANON_AND_FILE; type++) {
3726 if (min_seq[type] == lrugen->min_seq[type])
3727 continue;
3728
3729 reset_ctrl_pos(lruvec, type, true);
3730 WRITE_ONCE(lrugen->min_seq[type], min_seq[type]);
3731 success = true;
3732 }
3733
3734 return success;
3735}
3736
d6c3af7d 3737static void inc_max_seq(struct lruvec *lruvec, bool can_swap, bool force_scan)
ac35a490
YZ
3738{
3739 int prev, next;
3740 int type, zone;
391655fe 3741 struct lru_gen_folio *lrugen = &lruvec->lrugen;
bb5e7f23 3742restart:
ac35a490
YZ
3743 spin_lock_irq(&lruvec->lru_lock);
3744
3745 VM_WARN_ON_ONCE(!seq_is_valid(lruvec));
3746
ac35a490
YZ
3747 for (type = ANON_AND_FILE - 1; type >= 0; type--) {
3748 if (get_nr_gens(lruvec, type) != MAX_NR_GENS)
3749 continue;
3750
d6c3af7d 3751 VM_WARN_ON_ONCE(!force_scan && (type == LRU_GEN_FILE || can_swap));
ac35a490 3752
bb5e7f23
KS
3753 if (inc_min_seq(lruvec, type, can_swap))
3754 continue;
3755
3756 spin_unlock_irq(&lruvec->lru_lock);
3757 cond_resched();
3758 goto restart;
ac35a490
YZ
3759 }
3760
3761 /*
3762 * Update the active/inactive LRU sizes for compatibility. Both sides of
3763 * the current max_seq need to be covered, since max_seq+1 can overlap
3764 * with min_seq[LRU_GEN_ANON] if swapping is constrained. And if they do
3765 * overlap, cold/hot inversion happens.
3766 */
3767 prev = lru_gen_from_seq(lrugen->max_seq - 1);
3768 next = lru_gen_from_seq(lrugen->max_seq + 1);
3769
3770 for (type = 0; type < ANON_AND_FILE; type++) {
3771 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
3772 enum lru_list lru = type * LRU_INACTIVE_FILE;
3773 long delta = lrugen->nr_pages[prev][type][zone] -
3774 lrugen->nr_pages[next][type][zone];
3775
3776 if (!delta)
3777 continue;
3778
3779 __update_lru_size(lruvec, lru, zone, delta);
3780 __update_lru_size(lruvec, lru + LRU_ACTIVE, zone, -delta);
3781 }
3782 }
3783
3784 for (type = 0; type < ANON_AND_FILE; type++)
3785 reset_ctrl_pos(lruvec, type, false);
3786
1332a809 3787 WRITE_ONCE(lrugen->timestamps[next], jiffies);
ac35a490
YZ
3788 /* make sure preceding modifications appear */
3789 smp_store_release(&lrugen->max_seq, lrugen->max_seq + 1);
bd74fdae 3790
ac35a490
YZ
3791 spin_unlock_irq(&lruvec->lru_lock);
3792}
3793
bd74fdae 3794static bool try_to_inc_max_seq(struct lruvec *lruvec, unsigned long max_seq,
d6c3af7d 3795 struct scan_control *sc, bool can_swap, bool force_scan)
bd74fdae
YZ
3796{
3797 bool success;
3798 struct lru_gen_mm_walk *walk;
3799 struct mm_struct *mm = NULL;
391655fe 3800 struct lru_gen_folio *lrugen = &lruvec->lrugen;
bd74fdae
YZ
3801
3802 VM_WARN_ON_ONCE(max_seq > READ_ONCE(lrugen->max_seq));
3803
3804 /* see the comment in iterate_mm_list() */
3805 if (max_seq <= READ_ONCE(lruvec->mm_state.seq)) {
3806 success = false;
3807 goto done;
3808 }
3809
3810 /*
3811 * If the hardware doesn't automatically set the accessed bit, fallback
3812 * to lru_gen_look_around(), which only clears the accessed bit in a
3813 * handful of PTEs. Spreading the work out over a period of time usually
3814 * is less efficient, but it avoids bursty page faults.
3815 */
bd02df41 3816 if (!should_walk_mmu()) {
bd74fdae
YZ
3817 success = iterate_mm_list_nowalk(lruvec, max_seq);
3818 goto done;
3819 }
3820
e9d4e1ee 3821 walk = set_mm_walk(NULL, true);
bd74fdae
YZ
3822 if (!walk) {
3823 success = iterate_mm_list_nowalk(lruvec, max_seq);
3824 goto done;
3825 }
3826
3827 walk->lruvec = lruvec;
3828 walk->max_seq = max_seq;
3829 walk->can_swap = can_swap;
d6c3af7d 3830 walk->force_scan = force_scan;
bd74fdae
YZ
3831
3832 do {
3833 success = iterate_mm_list(lruvec, walk, &mm);
3834 if (mm)
3835 walk_mm(lruvec, mm, walk);
bd74fdae
YZ
3836 } while (mm);
3837done:
7f63cf2d
KS
3838 if (success)
3839 inc_max_seq(lruvec, can_swap, force_scan);
bd74fdae 3840
7f63cf2d 3841 return success;
bd74fdae
YZ
3842}
3843
7b8144e6
A
3844/******************************************************************************
3845 * working set protection
3846 ******************************************************************************/
3847
7348cc91 3848static bool lruvec_is_sizable(struct lruvec *lruvec, struct scan_control *sc)
ac35a490 3849{
7348cc91
YZ
3850 int gen, type, zone;
3851 unsigned long total = 0;
3852 bool can_swap = get_swappiness(lruvec, sc);
3853 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
3854 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3855 DEFINE_MAX_SEQ(lruvec);
3856 DEFINE_MIN_SEQ(lruvec);
3857
7348cc91
YZ
3858 for (type = !can_swap; type < ANON_AND_FILE; type++) {
3859 unsigned long seq;
ac35a490 3860
7348cc91
YZ
3861 for (seq = min_seq[type]; seq <= max_seq; seq++) {
3862 gen = lru_gen_from_seq(seq);
ac35a490 3863
7348cc91
YZ
3864 for (zone = 0; zone < MAX_NR_ZONES; zone++)
3865 total += max(READ_ONCE(lrugen->nr_pages[gen][type][zone]), 0L);
3866 }
3867 }
ac35a490 3868
7348cc91
YZ
3869 /* whether the size is big enough to be helpful */
3870 return mem_cgroup_online(memcg) ? (total >> sc->priority) : total;
3871}
1332a809 3872
7348cc91
YZ
3873static bool lruvec_is_reclaimable(struct lruvec *lruvec, struct scan_control *sc,
3874 unsigned long min_ttl)
3875{
3876 int gen;
3877 unsigned long birth;
3878 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3879 DEFINE_MIN_SEQ(lruvec);
1332a809 3880
7348cc91
YZ
3881 /* see the comment on lru_gen_folio */
3882 gen = lru_gen_from_seq(min_seq[LRU_GEN_FILE]);
3883 birth = READ_ONCE(lruvec->lrugen.timestamps[gen]);
1332a809 3884
7348cc91
YZ
3885 if (time_is_after_jiffies(birth + min_ttl))
3886 return false;
1332a809 3887
7348cc91
YZ
3888 if (!lruvec_is_sizable(lruvec, sc))
3889 return false;
3890
3891 mem_cgroup_calculate_protection(NULL, memcg);
3892
3893 return !mem_cgroup_below_min(NULL, memcg);
ac35a490
YZ
3894}
3895
1332a809
YZ
3896/* to protect the working set of the last N jiffies */
3897static unsigned long lru_gen_min_ttl __read_mostly;
3898
ac35a490
YZ
3899static void lru_gen_age_node(struct pglist_data *pgdat, struct scan_control *sc)
3900{
3901 struct mem_cgroup *memcg;
1332a809 3902 unsigned long min_ttl = READ_ONCE(lru_gen_min_ttl);
ac35a490
YZ
3903
3904 VM_WARN_ON_ONCE(!current_is_kswapd());
3905
7348cc91
YZ
3906 /* check the order to exclude compaction-induced reclaim */
3907 if (!min_ttl || sc->order || sc->priority == DEF_PRIORITY)
f76c8337 3908 return;
bd74fdae 3909
ac35a490
YZ
3910 memcg = mem_cgroup_iter(NULL, NULL, NULL);
3911 do {
3912 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
3913
7348cc91
YZ
3914 if (lruvec_is_reclaimable(lruvec, sc, min_ttl)) {
3915 mem_cgroup_iter_break(NULL, memcg);
3916 return;
3917 }
ac35a490
YZ
3918
3919 cond_resched();
3920 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)));
bd74fdae 3921
1332a809
YZ
3922 /*
3923 * The main goal is to OOM kill if every generation from all memcgs is
3924 * younger than min_ttl. However, another possibility is all memcgs are
7348cc91 3925 * either too small or below min.
1332a809
YZ
3926 */
3927 if (mutex_trylock(&oom_lock)) {
3928 struct oom_control oc = {
3929 .gfp_mask = sc->gfp_mask,
3930 };
3931
3932 out_of_memory(&oc);
3933
3934 mutex_unlock(&oom_lock);
3935 }
ac35a490
YZ
3936}
3937
db19a43d
A
3938/******************************************************************************
3939 * rmap/PT walk feedback
3940 ******************************************************************************/
3941
018ee47f 3942/*
49fd9b6d 3943 * This function exploits spatial locality when shrink_folio_list() walks the
bd74fdae
YZ
3944 * rmap. It scans the adjacent PTEs of a young PTE and promotes hot pages. If
3945 * the scan was done cacheline efficiently, it adds the PMD entry pointing to
3946 * the PTE table to the Bloom filter. This forms a feedback loop between the
3947 * eviction and the aging.
018ee47f
YZ
3948 */
3949void lru_gen_look_around(struct page_vma_mapped_walk *pvmw)
3950{
3951 int i;
018ee47f
YZ
3952 unsigned long start;
3953 unsigned long end;
bd74fdae
YZ
3954 struct lru_gen_mm_walk *walk;
3955 int young = 0;
abf08672
A
3956 pte_t *pte = pvmw->pte;
3957 unsigned long addr = pvmw->address;
018ee47f 3958 struct folio *folio = pfn_folio(pvmw->pfn);
a3235ea2 3959 bool can_swap = !folio_is_file_lru(folio);
018ee47f
YZ
3960 struct mem_cgroup *memcg = folio_memcg(folio);
3961 struct pglist_data *pgdat = folio_pgdat(folio);
3962 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
3963 DEFINE_MAX_SEQ(lruvec);
3964 int old_gen, new_gen = lru_gen_from_seq(max_seq);
3965
3966 lockdep_assert_held(pvmw->ptl);
3967 VM_WARN_ON_ONCE_FOLIO(folio_test_lru(folio), folio);
3968
3969 if (spin_is_contended(pvmw->ptl))
3970 return;
3971
bd74fdae
YZ
3972 /* avoid taking the LRU lock under the PTL when possible */
3973 walk = current->reclaim_state ? current->reclaim_state->mm_walk : NULL;
3974
abf08672
A
3975 start = max(addr & PMD_MASK, pvmw->vma->vm_start);
3976 end = min(addr | ~PMD_MASK, pvmw->vma->vm_end - 1) + 1;
018ee47f
YZ
3977
3978 if (end - start > MIN_LRU_BATCH * PAGE_SIZE) {
abf08672 3979 if (addr - start < MIN_LRU_BATCH * PAGE_SIZE / 2)
018ee47f 3980 end = start + MIN_LRU_BATCH * PAGE_SIZE;
abf08672 3981 else if (end - addr < MIN_LRU_BATCH * PAGE_SIZE / 2)
018ee47f
YZ
3982 start = end - MIN_LRU_BATCH * PAGE_SIZE;
3983 else {
abf08672
A
3984 start = addr - MIN_LRU_BATCH * PAGE_SIZE / 2;
3985 end = addr + MIN_LRU_BATCH * PAGE_SIZE / 2;
018ee47f
YZ
3986 }
3987 }
3988
abf08672
A
3989 /* folio_update_gen() requires stable folio_memcg() */
3990 if (!mem_cgroup_trylock_pages(memcg))
3991 return;
018ee47f 3992
018ee47f
YZ
3993 arch_enter_lazy_mmu_mode();
3994
abf08672
A
3995 pte -= (addr - start) / PAGE_SIZE;
3996
018ee47f
YZ
3997 for (i = 0, addr = start; addr != end; i++, addr += PAGE_SIZE) {
3998 unsigned long pfn;
c33c7948 3999 pte_t ptent = ptep_get(pte + i);
018ee47f 4000
c33c7948 4001 pfn = get_pte_pfn(ptent, pvmw->vma, addr);
018ee47f
YZ
4002 if (pfn == -1)
4003 continue;
4004
c33c7948 4005 if (!pte_young(ptent))
018ee47f
YZ
4006 continue;
4007
a3235ea2 4008 folio = get_pfn_folio(pfn, memcg, pgdat, can_swap);
018ee47f
YZ
4009 if (!folio)
4010 continue;
4011
4012 if (!ptep_test_and_clear_young(pvmw->vma, addr, pte + i))
4013 VM_WARN_ON_ONCE(true);
4014
bd74fdae
YZ
4015 young++;
4016
c33c7948 4017 if (pte_dirty(ptent) && !folio_test_dirty(folio) &&
018ee47f
YZ
4018 !(folio_test_anon(folio) && folio_test_swapbacked(folio) &&
4019 !folio_test_swapcache(folio)))
4020 folio_mark_dirty(folio);
4021
abf08672
A
4022 if (walk) {
4023 old_gen = folio_update_gen(folio, new_gen);
4024 if (old_gen >= 0 && old_gen != new_gen)
4025 update_batch_size(walk, folio, old_gen, new_gen);
4026
4027 continue;
4028 }
4029
018ee47f
YZ
4030 old_gen = folio_lru_gen(folio);
4031 if (old_gen < 0)
4032 folio_set_referenced(folio);
4033 else if (old_gen != new_gen)
abf08672 4034 folio_activate(folio);
018ee47f
YZ
4035 }
4036
4037 arch_leave_lazy_mmu_mode();
abf08672 4038 mem_cgroup_unlock_pages();
018ee47f 4039
bd74fdae
YZ
4040 /* feedback from rmap walkers to page table walkers */
4041 if (suitable_to_scan(i, young))
4042 update_bloom_filter(lruvec, max_seq, pvmw->pmd);
018ee47f
YZ
4043}
4044
36c7b4db
A
4045/******************************************************************************
4046 * memcg LRU
4047 ******************************************************************************/
4048
4049/* see the comment on MEMCG_NR_GENS */
4050enum {
4051 MEMCG_LRU_NOP,
4052 MEMCG_LRU_HEAD,
4053 MEMCG_LRU_TAIL,
4054 MEMCG_LRU_OLD,
4055 MEMCG_LRU_YOUNG,
4056};
4057
4058#ifdef CONFIG_MEMCG
4059
4060static int lru_gen_memcg_seg(struct lruvec *lruvec)
4061{
4062 return READ_ONCE(lruvec->lrugen.seg);
4063}
4064
4065static void lru_gen_rotate_memcg(struct lruvec *lruvec, int op)
4066{
4067 int seg;
4068 int old, new;
814bc1de 4069 unsigned long flags;
36c7b4db
A
4070 int bin = get_random_u32_below(MEMCG_NR_BINS);
4071 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
4072
814bc1de 4073 spin_lock_irqsave(&pgdat->memcg_lru.lock, flags);
36c7b4db
A
4074
4075 VM_WARN_ON_ONCE(hlist_nulls_unhashed(&lruvec->lrugen.list));
4076
4077 seg = 0;
4078 new = old = lruvec->lrugen.gen;
4079
4080 /* see the comment on MEMCG_NR_GENS */
4081 if (op == MEMCG_LRU_HEAD)
4082 seg = MEMCG_LRU_HEAD;
4083 else if (op == MEMCG_LRU_TAIL)
4084 seg = MEMCG_LRU_TAIL;
4085 else if (op == MEMCG_LRU_OLD)
4086 new = get_memcg_gen(pgdat->memcg_lru.seq);
4087 else if (op == MEMCG_LRU_YOUNG)
4088 new = get_memcg_gen(pgdat->memcg_lru.seq + 1);
4089 else
4090 VM_WARN_ON_ONCE(true);
4091
4092 hlist_nulls_del_rcu(&lruvec->lrugen.list);
4093
4094 if (op == MEMCG_LRU_HEAD || op == MEMCG_LRU_OLD)
4095 hlist_nulls_add_head_rcu(&lruvec->lrugen.list, &pgdat->memcg_lru.fifo[new][bin]);
4096 else
4097 hlist_nulls_add_tail_rcu(&lruvec->lrugen.list, &pgdat->memcg_lru.fifo[new][bin]);
4098
4099 pgdat->memcg_lru.nr_memcgs[old]--;
4100 pgdat->memcg_lru.nr_memcgs[new]++;
4101
4102 lruvec->lrugen.gen = new;
4103 WRITE_ONCE(lruvec->lrugen.seg, seg);
4104
4105 if (!pgdat->memcg_lru.nr_memcgs[old] && old == get_memcg_gen(pgdat->memcg_lru.seq))
4106 WRITE_ONCE(pgdat->memcg_lru.seq, pgdat->memcg_lru.seq + 1);
4107
814bc1de 4108 spin_unlock_irqrestore(&pgdat->memcg_lru.lock, flags);
36c7b4db
A
4109}
4110
4111void lru_gen_online_memcg(struct mem_cgroup *memcg)
4112{
4113 int gen;
4114 int nid;
4115 int bin = get_random_u32_below(MEMCG_NR_BINS);
4116
4117 for_each_node(nid) {
4118 struct pglist_data *pgdat = NODE_DATA(nid);
4119 struct lruvec *lruvec = get_lruvec(memcg, nid);
4120
814bc1de 4121 spin_lock_irq(&pgdat->memcg_lru.lock);
36c7b4db
A
4122
4123 VM_WARN_ON_ONCE(!hlist_nulls_unhashed(&lruvec->lrugen.list));
4124
4125 gen = get_memcg_gen(pgdat->memcg_lru.seq);
4126
4127 hlist_nulls_add_tail_rcu(&lruvec->lrugen.list, &pgdat->memcg_lru.fifo[gen][bin]);
4128 pgdat->memcg_lru.nr_memcgs[gen]++;
4129
4130 lruvec->lrugen.gen = gen;
4131
814bc1de 4132 spin_unlock_irq(&pgdat->memcg_lru.lock);
36c7b4db
A
4133 }
4134}
4135
4136void lru_gen_offline_memcg(struct mem_cgroup *memcg)
4137{
4138 int nid;
4139
4140 for_each_node(nid) {
4141 struct lruvec *lruvec = get_lruvec(memcg, nid);
4142
4143 lru_gen_rotate_memcg(lruvec, MEMCG_LRU_OLD);
4144 }
4145}
4146
4147void lru_gen_release_memcg(struct mem_cgroup *memcg)
4148{
4149 int gen;
4150 int nid;
4151
4152 for_each_node(nid) {
4153 struct pglist_data *pgdat = NODE_DATA(nid);
4154 struct lruvec *lruvec = get_lruvec(memcg, nid);
4155
814bc1de 4156 spin_lock_irq(&pgdat->memcg_lru.lock);
36c7b4db 4157
6867c7a3
M
4158 if (hlist_nulls_unhashed(&lruvec->lrugen.list))
4159 goto unlock;
36c7b4db
A
4160
4161 gen = lruvec->lrugen.gen;
4162
6867c7a3 4163 hlist_nulls_del_init_rcu(&lruvec->lrugen.list);
36c7b4db
A
4164 pgdat->memcg_lru.nr_memcgs[gen]--;
4165
4166 if (!pgdat->memcg_lru.nr_memcgs[gen] && gen == get_memcg_gen(pgdat->memcg_lru.seq))
4167 WRITE_ONCE(pgdat->memcg_lru.seq, pgdat->memcg_lru.seq + 1);
6867c7a3 4168unlock:
814bc1de 4169 spin_unlock_irq(&pgdat->memcg_lru.lock);
36c7b4db
A
4170 }
4171}
4172
5c7e7a0d 4173void lru_gen_soft_reclaim(struct mem_cgroup *memcg, int nid)
36c7b4db 4174{
5c7e7a0d
A
4175 struct lruvec *lruvec = get_lruvec(memcg, nid);
4176
36c7b4db
A
4177 /* see the comment on MEMCG_NR_GENS */
4178 if (lru_gen_memcg_seg(lruvec) != MEMCG_LRU_HEAD)
4179 lru_gen_rotate_memcg(lruvec, MEMCG_LRU_HEAD);
4180}
4181
4182#else /* !CONFIG_MEMCG */
4183
4184static int lru_gen_memcg_seg(struct lruvec *lruvec)
4185{
4186 return 0;
4187}
4188
4189#endif
4190
ac35a490
YZ
4191/******************************************************************************
4192 * the eviction
4193 ******************************************************************************/
4194
669281ee
KS
4195static bool sort_folio(struct lruvec *lruvec, struct folio *folio, struct scan_control *sc,
4196 int tier_idx)
ac35a490
YZ
4197{
4198 bool success;
4199 int gen = folio_lru_gen(folio);
4200 int type = folio_is_file_lru(folio);
4201 int zone = folio_zonenum(folio);
4202 int delta = folio_nr_pages(folio);
4203 int refs = folio_lru_refs(folio);
4204 int tier = lru_tier_from_refs(refs);
391655fe 4205 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
4206
4207 VM_WARN_ON_ONCE_FOLIO(gen >= MAX_NR_GENS, folio);
4208
4209 /* unevictable */
4210 if (!folio_evictable(folio)) {
4211 success = lru_gen_del_folio(lruvec, folio, true);
4212 VM_WARN_ON_ONCE_FOLIO(!success, folio);
4213 folio_set_unevictable(folio);
4214 lruvec_add_folio(lruvec, folio);
4215 __count_vm_events(UNEVICTABLE_PGCULLED, delta);
4216 return true;
4217 }
4218
4219 /* dirty lazyfree */
4220 if (type == LRU_GEN_FILE && folio_test_anon(folio) && folio_test_dirty(folio)) {
4221 success = lru_gen_del_folio(lruvec, folio, true);
4222 VM_WARN_ON_ONCE_FOLIO(!success, folio);
4223 folio_set_swapbacked(folio);
4224 lruvec_add_folio_tail(lruvec, folio);
4225 return true;
4226 }
4227
018ee47f
YZ
4228 /* promoted */
4229 if (gen != lru_gen_from_seq(lrugen->min_seq[type])) {
6df1b221 4230 list_move(&folio->lru, &lrugen->folios[gen][type][zone]);
018ee47f
YZ
4231 return true;
4232 }
4233
ac35a490
YZ
4234 /* protected */
4235 if (tier > tier_idx) {
4236 int hist = lru_hist_from_seq(lrugen->min_seq[type]);
4237
4238 gen = folio_inc_gen(lruvec, folio, false);
6df1b221 4239 list_move_tail(&folio->lru, &lrugen->folios[gen][type][zone]);
ac35a490
YZ
4240
4241 WRITE_ONCE(lrugen->protected[hist][type][tier - 1],
4242 lrugen->protected[hist][type][tier - 1] + delta);
ac35a490
YZ
4243 return true;
4244 }
4245
669281ee 4246 /* ineligible */
b7108d66 4247 if (zone > sc->reclaim_idx || skip_cma(folio, sc)) {
669281ee
KS
4248 gen = folio_inc_gen(lruvec, folio, false);
4249 list_move_tail(&folio->lru, &lrugen->folios[gen][type][zone]);
4250 return true;
4251 }
4252
ac35a490
YZ
4253 /* waiting for writeback */
4254 if (folio_test_locked(folio) || folio_test_writeback(folio) ||
4255 (type == LRU_GEN_FILE && folio_test_dirty(folio))) {
4256 gen = folio_inc_gen(lruvec, folio, true);
6df1b221 4257 list_move(&folio->lru, &lrugen->folios[gen][type][zone]);
ac35a490
YZ
4258 return true;
4259 }
4260
4261 return false;
4262}
4263
4264static bool isolate_folio(struct lruvec *lruvec, struct folio *folio, struct scan_control *sc)
4265{
4266 bool success;
4267
ac35a490 4268 /* swapping inhibited */
e9d4e1ee 4269 if (!(sc->gfp_mask & __GFP_IO) &&
ac35a490
YZ
4270 (folio_test_dirty(folio) ||
4271 (folio_test_anon(folio) && !folio_test_swapcache(folio))))
4272 return false;
4273
4274 /* raced with release_pages() */
4275 if (!folio_try_get(folio))
4276 return false;
4277
4278 /* raced with another isolation */
4279 if (!folio_test_clear_lru(folio)) {
4280 folio_put(folio);
4281 return false;
4282 }
4283
4284 /* see the comment on MAX_NR_TIERS */
4285 if (!folio_test_referenced(folio))
4286 set_mask_bits(&folio->flags, LRU_REFS_MASK | LRU_REFS_FLAGS, 0);
4287
49fd9b6d 4288 /* for shrink_folio_list() */
ac35a490
YZ
4289 folio_clear_reclaim(folio);
4290 folio_clear_referenced(folio);
4291
4292 success = lru_gen_del_folio(lruvec, folio, true);
4293 VM_WARN_ON_ONCE_FOLIO(!success, folio);
4294
4295 return true;
4296}
4297
4298static int scan_folios(struct lruvec *lruvec, struct scan_control *sc,
4299 int type, int tier, struct list_head *list)
4300{
669281ee
KS
4301 int i;
4302 int gen;
ac35a490
YZ
4303 enum vm_event_item item;
4304 int sorted = 0;
4305 int scanned = 0;
4306 int isolated = 0;
4307 int remaining = MAX_LRU_BATCH;
391655fe 4308 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ac35a490
YZ
4309 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
4310
4311 VM_WARN_ON_ONCE(!list_empty(list));
4312
4313 if (get_nr_gens(lruvec, type) == MIN_NR_GENS)
4314 return 0;
4315
4316 gen = lru_gen_from_seq(lrugen->min_seq[type]);
4317
669281ee 4318 for (i = MAX_NR_ZONES; i > 0; i--) {
ac35a490
YZ
4319 LIST_HEAD(moved);
4320 int skipped = 0;
669281ee 4321 int zone = (sc->reclaim_idx + i) % MAX_NR_ZONES;
6df1b221 4322 struct list_head *head = &lrugen->folios[gen][type][zone];
ac35a490
YZ
4323
4324 while (!list_empty(head)) {
4325 struct folio *folio = lru_to_folio(head);
4326 int delta = folio_nr_pages(folio);
4327
4328 VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio);
4329 VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio), folio);
4330 VM_WARN_ON_ONCE_FOLIO(folio_is_file_lru(folio) != type, folio);
4331 VM_WARN_ON_ONCE_FOLIO(folio_zonenum(folio) != zone, folio);
4332
4333 scanned += delta;
4334
669281ee 4335 if (sort_folio(lruvec, folio, sc, tier))
ac35a490
YZ
4336 sorted += delta;
4337 else if (isolate_folio(lruvec, folio, sc)) {
4338 list_add(&folio->lru, list);
4339 isolated += delta;
4340 } else {
4341 list_move(&folio->lru, &moved);
4342 skipped += delta;
4343 }
4344
4345 if (!--remaining || max(isolated, skipped) >= MIN_LRU_BATCH)
4346 break;
4347 }
4348
4349 if (skipped) {
4350 list_splice(&moved, head);
4351 __count_zid_vm_events(PGSCAN_SKIP, zone, skipped);
4352 }
4353
4354 if (!remaining || isolated >= MIN_LRU_BATCH)
4355 break;
4356 }
4357
57e9cc50 4358 item = PGSCAN_KSWAPD + reclaimer_offset();
ac35a490
YZ
4359 if (!cgroup_reclaim(sc)) {
4360 __count_vm_events(item, isolated);
4361 __count_vm_events(PGREFILL, sorted);
4362 }
4363 __count_memcg_events(memcg, item, isolated);
4364 __count_memcg_events(memcg, PGREFILL, sorted);
4365 __count_vm_events(PGSCAN_ANON + type, isolated);
4366
4367 /*
e9d4e1ee
YZ
4368 * There might not be eligible folios due to reclaim_idx. Check the
4369 * remaining to prevent livelock if it's not making progress.
ac35a490
YZ
4370 */
4371 return isolated || !remaining ? scanned : 0;
4372}
4373
4374static int get_tier_idx(struct lruvec *lruvec, int type)
4375{
4376 int tier;
4377 struct ctrl_pos sp, pv;
4378
4379 /*
4380 * To leave a margin for fluctuations, use a larger gain factor (1:2).
4381 * This value is chosen because any other tier would have at least twice
4382 * as many refaults as the first tier.
4383 */
4384 read_ctrl_pos(lruvec, type, 0, 1, &sp);
4385 for (tier = 1; tier < MAX_NR_TIERS; tier++) {
4386 read_ctrl_pos(lruvec, type, tier, 2, &pv);
4387 if (!positive_ctrl_err(&sp, &pv))
4388 break;
4389 }
4390
4391 return tier - 1;
4392}
4393
4394static int get_type_to_scan(struct lruvec *lruvec, int swappiness, int *tier_idx)
4395{
4396 int type, tier;
4397 struct ctrl_pos sp, pv;
4398 int gain[ANON_AND_FILE] = { swappiness, 200 - swappiness };
4399
4400 /*
4401 * Compare the first tier of anon with that of file to determine which
4402 * type to scan. Also need to compare other tiers of the selected type
4403 * with the first tier of the other type to determine the last tier (of
4404 * the selected type) to evict.
4405 */
4406 read_ctrl_pos(lruvec, LRU_GEN_ANON, 0, gain[LRU_GEN_ANON], &sp);
4407 read_ctrl_pos(lruvec, LRU_GEN_FILE, 0, gain[LRU_GEN_FILE], &pv);
4408 type = positive_ctrl_err(&sp, &pv);
4409
4410 read_ctrl_pos(lruvec, !type, 0, gain[!type], &sp);
4411 for (tier = 1; tier < MAX_NR_TIERS; tier++) {
4412 read_ctrl_pos(lruvec, type, tier, gain[type], &pv);
4413 if (!positive_ctrl_err(&sp, &pv))
4414 break;
4415 }
4416
4417 *tier_idx = tier - 1;
4418
4419 return type;
4420}
4421
4422static int isolate_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness,
4423 int *type_scanned, struct list_head *list)
4424{
4425 int i;
4426 int type;
4427 int scanned;
4428 int tier = -1;
4429 DEFINE_MIN_SEQ(lruvec);
4430
4431 /*
4432 * Try to make the obvious choice first. When anon and file are both
4433 * available from the same generation, interpret swappiness 1 as file
4434 * first and 200 as anon first.
4435 */
4436 if (!swappiness)
4437 type = LRU_GEN_FILE;
4438 else if (min_seq[LRU_GEN_ANON] < min_seq[LRU_GEN_FILE])
4439 type = LRU_GEN_ANON;
4440 else if (swappiness == 1)
4441 type = LRU_GEN_FILE;
4442 else if (swappiness == 200)
4443 type = LRU_GEN_ANON;
4444 else
4445 type = get_type_to_scan(lruvec, swappiness, &tier);
4446
4447 for (i = !swappiness; i < ANON_AND_FILE; i++) {
4448 if (tier < 0)
4449 tier = get_tier_idx(lruvec, type);
4450
4451 scanned = scan_folios(lruvec, sc, type, tier, list);
4452 if (scanned)
4453 break;
4454
4455 type = !type;
4456 tier = -1;
4457 }
4458
4459 *type_scanned = type;
4460
4461 return scanned;
4462}
4463
a579086c 4464static int evict_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness)
ac35a490
YZ
4465{
4466 int type;
4467 int scanned;
4468 int reclaimed;
4469 LIST_HEAD(list);
359a5e14 4470 LIST_HEAD(clean);
ac35a490 4471 struct folio *folio;
359a5e14 4472 struct folio *next;
ac35a490
YZ
4473 enum vm_event_item item;
4474 struct reclaim_stat stat;
bd74fdae 4475 struct lru_gen_mm_walk *walk;
359a5e14 4476 bool skip_retry = false;
ac35a490
YZ
4477 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
4478 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
4479
4480 spin_lock_irq(&lruvec->lru_lock);
4481
4482 scanned = isolate_folios(lruvec, sc, swappiness, &type, &list);
4483
4484 scanned += try_to_inc_min_seq(lruvec, swappiness);
4485
4486 if (get_nr_gens(lruvec, !swappiness) == MIN_NR_GENS)
4487 scanned = 0;
4488
4489 spin_unlock_irq(&lruvec->lru_lock);
4490
4491 if (list_empty(&list))
4492 return scanned;
359a5e14 4493retry:
49fd9b6d 4494 reclaimed = shrink_folio_list(&list, pgdat, sc, &stat, false);
359a5e14 4495 sc->nr_reclaimed += reclaimed;
ac35a490 4496
359a5e14
YZ
4497 list_for_each_entry_safe_reverse(folio, next, &list, lru) {
4498 if (!folio_evictable(folio)) {
4499 list_del(&folio->lru);
4500 folio_putback_lru(folio);
4501 continue;
4502 }
ac35a490 4503
ac35a490 4504 if (folio_test_reclaim(folio) &&
359a5e14
YZ
4505 (folio_test_dirty(folio) || folio_test_writeback(folio))) {
4506 /* restore LRU_REFS_FLAGS cleared by isolate_folio() */
4507 if (folio_test_workingset(folio))
4508 folio_set_referenced(folio);
4509 continue;
4510 }
4511
4512 if (skip_retry || folio_test_active(folio) || folio_test_referenced(folio) ||
4513 folio_mapped(folio) || folio_test_locked(folio) ||
4514 folio_test_dirty(folio) || folio_test_writeback(folio)) {
4515 /* don't add rejected folios to the oldest generation */
4516 set_mask_bits(&folio->flags, LRU_REFS_MASK | LRU_REFS_FLAGS,
4517 BIT(PG_active));
4518 continue;
4519 }
4520
4521 /* retry folios that may have missed folio_rotate_reclaimable() */
4522 list_move(&folio->lru, &clean);
4523 sc->nr_scanned -= folio_nr_pages(folio);
ac35a490
YZ
4524 }
4525
4526 spin_lock_irq(&lruvec->lru_lock);
4527
49fd9b6d 4528 move_folios_to_lru(lruvec, &list);
ac35a490 4529
bd74fdae
YZ
4530 walk = current->reclaim_state->mm_walk;
4531 if (walk && walk->batched)
4532 reset_batch_size(lruvec, walk);
4533
57e9cc50 4534 item = PGSTEAL_KSWAPD + reclaimer_offset();
ac35a490
YZ
4535 if (!cgroup_reclaim(sc))
4536 __count_vm_events(item, reclaimed);
4537 __count_memcg_events(memcg, item, reclaimed);
4538 __count_vm_events(PGSTEAL_ANON + type, reclaimed);
4539
4540 spin_unlock_irq(&lruvec->lru_lock);
4541
4542 mem_cgroup_uncharge_list(&list);
4543 free_unref_page_list(&list);
4544
359a5e14
YZ
4545 INIT_LIST_HEAD(&list);
4546 list_splice_init(&clean, &list);
4547
4548 if (!list_empty(&list)) {
4549 skip_retry = true;
4550 goto retry;
4551 }
ac35a490
YZ
4552
4553 return scanned;
4554}
4555
77d4459a
YZ
4556static bool should_run_aging(struct lruvec *lruvec, unsigned long max_seq,
4557 struct scan_control *sc, bool can_swap, unsigned long *nr_to_scan)
4558{
4559 int gen, type, zone;
4560 unsigned long old = 0;
4561 unsigned long young = 0;
4562 unsigned long total = 0;
4563 struct lru_gen_folio *lrugen = &lruvec->lrugen;
4564 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
4565 DEFINE_MIN_SEQ(lruvec);
4566
4567 /* whether this lruvec is completely out of cold folios */
4568 if (min_seq[!can_swap] + MIN_NR_GENS > max_seq) {
4569 *nr_to_scan = 0;
4570 return true;
4571 }
4572
4573 for (type = !can_swap; type < ANON_AND_FILE; type++) {
4574 unsigned long seq;
4575
4576 for (seq = min_seq[type]; seq <= max_seq; seq++) {
4577 unsigned long size = 0;
4578
4579 gen = lru_gen_from_seq(seq);
4580
4581 for (zone = 0; zone < MAX_NR_ZONES; zone++)
4582 size += max(READ_ONCE(lrugen->nr_pages[gen][type][zone]), 0L);
4583
4584 total += size;
4585 if (seq == max_seq)
4586 young += size;
4587 else if (seq + MIN_NR_GENS == max_seq)
4588 old += size;
4589 }
4590 }
4591
4592 /* try to scrape all its memory if this memcg was deleted */
4593 *nr_to_scan = mem_cgroup_online(memcg) ? (total >> sc->priority) : total;
4594
4595 /*
4596 * The aging tries to be lazy to reduce the overhead, while the eviction
4597 * stalls when the number of generations reaches MIN_NR_GENS. Hence, the
4598 * ideal number of generations is MIN_NR_GENS+1.
4599 */
4600 if (min_seq[!can_swap] + MIN_NR_GENS < max_seq)
4601 return false;
4602
4603 /*
4604 * It's also ideal to spread pages out evenly, i.e., 1/(MIN_NR_GENS+1)
4605 * of the total number of pages for each generation. A reasonable range
4606 * for this average portion is [1/MIN_NR_GENS, 1/(MIN_NR_GENS+2)]. The
4607 * aging cares about the upper bound of hot pages, while the eviction
4608 * cares about the lower bound of cold pages.
4609 */
4610 if (young * MIN_NR_GENS > total)
4611 return true;
4612 if (old * (MIN_NR_GENS + 2) < total)
4613 return true;
4614
4615 return false;
4616}
4617
bd74fdae
YZ
4618/*
4619 * For future optimizations:
4620 * 1. Defer try_to_inc_max_seq() to workqueues to reduce latency for memcg
4621 * reclaim.
4622 */
e4dde56c 4623static long get_nr_to_scan(struct lruvec *lruvec, struct scan_control *sc, bool can_swap)
ac35a490 4624{
ac35a490
YZ
4625 unsigned long nr_to_scan;
4626 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
4627 DEFINE_MAX_SEQ(lruvec);
ac35a490 4628
e9d4e1ee 4629 if (mem_cgroup_below_min(sc->target_mem_cgroup, memcg))
ac35a490
YZ
4630 return 0;
4631
7348cc91 4632 if (!should_run_aging(lruvec, max_seq, sc, can_swap, &nr_to_scan))
ac35a490
YZ
4633 return nr_to_scan;
4634
4635 /* skip the aging path at the default priority */
4636 if (sc->priority == DEF_PRIORITY)
7348cc91 4637 return nr_to_scan;
ac35a490 4638
7348cc91 4639 /* skip this lruvec as it's low on cold folios */
e4dde56c 4640 return try_to_inc_max_seq(lruvec, max_seq, sc, can_swap, false) ? -1 : 0;
ac35a490
YZ
4641}
4642
a579086c 4643static unsigned long get_nr_to_reclaim(struct scan_control *sc)
f76c8337 4644{
a579086c 4645 /* don't abort memcg reclaim to ensure fairness */
7a704474 4646 if (!root_reclaim(sc))
a579086c 4647 return -1;
f76c8337 4648
a579086c 4649 return max(sc->nr_to_reclaim, compact_gap(sc->order));
f76c8337
YZ
4650}
4651
e4dde56c 4652static bool try_to_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
ac35a490 4653{
e4dde56c 4654 long nr_to_scan;
ac35a490 4655 unsigned long scanned = 0;
a579086c 4656 unsigned long nr_to_reclaim = get_nr_to_reclaim(sc);
e9d4e1ee
YZ
4657 int swappiness = get_swappiness(lruvec, sc);
4658
4659 /* clean file folios are more likely to exist */
4660 if (swappiness && !(sc->gfp_mask & __GFP_IO))
4661 swappiness = 1;
ac35a490 4662
ac35a490
YZ
4663 while (true) {
4664 int delta;
ac35a490 4665
7348cc91 4666 nr_to_scan = get_nr_to_scan(lruvec, sc, swappiness);
e4dde56c 4667 if (nr_to_scan <= 0)
7348cc91 4668 break;
ac35a490 4669
a579086c 4670 delta = evict_folios(lruvec, sc, swappiness);
ac35a490 4671 if (!delta)
7348cc91 4672 break;
ac35a490
YZ
4673
4674 scanned += delta;
4675 if (scanned >= nr_to_scan)
4676 break;
4677
a579086c 4678 if (sc->nr_reclaimed >= nr_to_reclaim)
f76c8337
YZ
4679 break;
4680
ac35a490
YZ
4681 cond_resched();
4682 }
4683
e4dde56c
YZ
4684 /* whether try_to_inc_max_seq() was successful */
4685 return nr_to_scan < 0;
4686}
4687
4688static int shrink_one(struct lruvec *lruvec, struct scan_control *sc)
4689{
4690 bool success;
4691 unsigned long scanned = sc->nr_scanned;
4692 unsigned long reclaimed = sc->nr_reclaimed;
4693 int seg = lru_gen_memcg_seg(lruvec);
4694 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
4695 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
4696
4697 /* see the comment on MEMCG_NR_GENS */
4698 if (!lruvec_is_sizable(lruvec, sc))
4699 return seg != MEMCG_LRU_TAIL ? MEMCG_LRU_TAIL : MEMCG_LRU_YOUNG;
4700
4701 mem_cgroup_calculate_protection(NULL, memcg);
4702
4703 if (mem_cgroup_below_min(NULL, memcg))
4704 return MEMCG_LRU_YOUNG;
4705
4706 if (mem_cgroup_below_low(NULL, memcg)) {
4707 /* see the comment on MEMCG_NR_GENS */
4708 if (seg != MEMCG_LRU_TAIL)
4709 return MEMCG_LRU_TAIL;
4710
4711 memcg_memory_event(memcg, MEMCG_LOW);
4712 }
4713
4714 success = try_to_shrink_lruvec(lruvec, sc);
4715
4716 shrink_slab(sc->gfp_mask, pgdat->node_id, memcg, sc->priority);
4717
4718 if (!sc->proactive)
4719 vmpressure(sc->gfp_mask, memcg, false, sc->nr_scanned - scanned,
4720 sc->nr_reclaimed - reclaimed);
4721
583c27a1 4722 flush_reclaim_state(sc);
e4dde56c
YZ
4723
4724 return success ? MEMCG_LRU_YOUNG : 0;
4725}
4726
4727#ifdef CONFIG_MEMCG
4728
4729static void shrink_many(struct pglist_data *pgdat, struct scan_control *sc)
4730{
9f550d78 4731 int op;
e4dde56c
YZ
4732 int gen;
4733 int bin;
4734 int first_bin;
4735 struct lruvec *lruvec;
4736 struct lru_gen_folio *lrugen;
9f550d78 4737 struct mem_cgroup *memcg;
e4dde56c 4738 const struct hlist_nulls_node *pos;
e4dde56c
YZ
4739 unsigned long nr_to_reclaim = get_nr_to_reclaim(sc);
4740
4741 bin = first_bin = get_random_u32_below(MEMCG_NR_BINS);
4742restart:
9f550d78
YZ
4743 op = 0;
4744 memcg = NULL;
e4dde56c
YZ
4745 gen = get_memcg_gen(READ_ONCE(pgdat->memcg_lru.seq));
4746
4747 rcu_read_lock();
4748
4749 hlist_nulls_for_each_entry_rcu(lrugen, pos, &pgdat->memcg_lru.fifo[gen][bin], list) {
6867c7a3 4750 if (op) {
e4dde56c 4751 lru_gen_rotate_memcg(lruvec, op);
6867c7a3
M
4752 op = 0;
4753 }
e4dde56c
YZ
4754
4755 mem_cgroup_put(memcg);
4756
4757 lruvec = container_of(lrugen, struct lruvec, lrugen);
4758 memcg = lruvec_memcg(lruvec);
4759
4760 if (!mem_cgroup_tryget(memcg)) {
6867c7a3 4761 lru_gen_release_memcg(memcg);
e4dde56c
YZ
4762 memcg = NULL;
4763 continue;
4764 }
4765
4766 rcu_read_unlock();
4767
4768 op = shrink_one(lruvec, sc);
4769
e4dde56c 4770 rcu_read_lock();
9f550d78
YZ
4771
4772 if (sc->nr_reclaimed >= nr_to_reclaim)
4773 break;
e4dde56c
YZ
4774 }
4775
4776 rcu_read_unlock();
4777
9f550d78
YZ
4778 if (op)
4779 lru_gen_rotate_memcg(lruvec, op);
4780
4781 mem_cgroup_put(memcg);
4782
4783 if (sc->nr_reclaimed >= nr_to_reclaim)
4784 return;
4785
e4dde56c
YZ
4786 /* restart if raced with lru_gen_rotate_memcg() */
4787 if (gen != get_nulls_value(pos))
4788 goto restart;
4789
4790 /* try the rest of the bins of the current generation */
4791 bin = get_memcg_bin(bin + 1);
4792 if (bin != first_bin)
4793 goto restart;
e4dde56c
YZ
4794}
4795
4796static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
4797{
4798 struct blk_plug plug;
4799
7a704474 4800 VM_WARN_ON_ONCE(root_reclaim(sc));
e9d4e1ee 4801 VM_WARN_ON_ONCE(!sc->may_writepage || !sc->may_unmap);
e4dde56c
YZ
4802
4803 lru_add_drain();
4804
4805 blk_start_plug(&plug);
4806
e9d4e1ee 4807 set_mm_walk(NULL, sc->proactive);
e4dde56c
YZ
4808
4809 if (try_to_shrink_lruvec(lruvec, sc))
4810 lru_gen_rotate_memcg(lruvec, MEMCG_LRU_YOUNG);
4811
4812 clear_mm_walk();
4813
4814 blk_finish_plug(&plug);
4815}
4816
4817#else /* !CONFIG_MEMCG */
4818
4819static void shrink_many(struct pglist_data *pgdat, struct scan_control *sc)
4820{
4821 BUILD_BUG();
4822}
4823
4824static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
4825{
4826 BUILD_BUG();
4827}
4828
4829#endif
4830
4831static void set_initial_priority(struct pglist_data *pgdat, struct scan_control *sc)
4832{
4833 int priority;
4834 unsigned long reclaimable;
4835 struct lruvec *lruvec = mem_cgroup_lruvec(NULL, pgdat);
4836
4837 if (sc->priority != DEF_PRIORITY || sc->nr_to_reclaim < MIN_LRU_BATCH)
4838 return;
4839 /*
4840 * Determine the initial priority based on ((total / MEMCG_NR_GENS) >>
4841 * priority) * reclaimed_to_scanned_ratio = nr_to_reclaim, where the
4842 * estimated reclaimed_to_scanned_ratio = inactive / total.
4843 */
4844 reclaimable = node_page_state(pgdat, NR_INACTIVE_FILE);
4845 if (get_swappiness(lruvec, sc))
4846 reclaimable += node_page_state(pgdat, NR_INACTIVE_ANON);
4847
4848 reclaimable /= MEMCG_NR_GENS;
4849
4850 /* round down reclaimable and round up sc->nr_to_reclaim */
4851 priority = fls_long(reclaimable) - 1 - fls_long(sc->nr_to_reclaim - 1);
4852
4853 sc->priority = clamp(priority, 0, DEF_PRIORITY);
4854}
4855
4856static void lru_gen_shrink_node(struct pglist_data *pgdat, struct scan_control *sc)
4857{
4858 struct blk_plug plug;
4859 unsigned long reclaimed = sc->nr_reclaimed;
4860
7a704474 4861 VM_WARN_ON_ONCE(!root_reclaim(sc));
e4dde56c 4862
e9d4e1ee
YZ
4863 /*
4864 * Unmapped clean folios are already prioritized. Scanning for more of
4865 * them is likely futile and can cause high reclaim latency when there
4866 * is a large number of memcgs.
4867 */
4868 if (!sc->may_writepage || !sc->may_unmap)
4869 goto done;
4870
e4dde56c
YZ
4871 lru_add_drain();
4872
4873 blk_start_plug(&plug);
4874
e9d4e1ee 4875 set_mm_walk(pgdat, sc->proactive);
e4dde56c
YZ
4876
4877 set_initial_priority(pgdat, sc);
4878
4879 if (current_is_kswapd())
4880 sc->nr_reclaimed = 0;
4881
4882 if (mem_cgroup_disabled())
4883 shrink_one(&pgdat->__lruvec, sc);
4884 else
4885 shrink_many(pgdat, sc);
4886
4887 if (current_is_kswapd())
4888 sc->nr_reclaimed += reclaimed;
4889
bd74fdae
YZ
4890 clear_mm_walk();
4891
ac35a490 4892 blk_finish_plug(&plug);
e9d4e1ee 4893done:
e4dde56c
YZ
4894 /* kswapd should never fail */
4895 pgdat->kswapd_failures = 0;
4896}
4897
354ed597
YZ
4898/******************************************************************************
4899 * state change
4900 ******************************************************************************/
4901
4902static bool __maybe_unused state_is_valid(struct lruvec *lruvec)
4903{
391655fe 4904 struct lru_gen_folio *lrugen = &lruvec->lrugen;
354ed597
YZ
4905
4906 if (lrugen->enabled) {
4907 enum lru_list lru;
4908
4909 for_each_evictable_lru(lru) {
4910 if (!list_empty(&lruvec->lists[lru]))
4911 return false;
4912 }
4913 } else {
4914 int gen, type, zone;
4915
4916 for_each_gen_type_zone(gen, type, zone) {
6df1b221 4917 if (!list_empty(&lrugen->folios[gen][type][zone]))
354ed597
YZ
4918 return false;
4919 }
4920 }
4921
4922 return true;
4923}
4924
4925static bool fill_evictable(struct lruvec *lruvec)
4926{
4927 enum lru_list lru;
4928 int remaining = MAX_LRU_BATCH;
4929
4930 for_each_evictable_lru(lru) {
4931 int type = is_file_lru(lru);
4932 bool active = is_active_lru(lru);
4933 struct list_head *head = &lruvec->lists[lru];
4934
4935 while (!list_empty(head)) {
4936 bool success;
4937 struct folio *folio = lru_to_folio(head);
4938
4939 VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio);
4940 VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio) != active, folio);
4941 VM_WARN_ON_ONCE_FOLIO(folio_is_file_lru(folio) != type, folio);
4942 VM_WARN_ON_ONCE_FOLIO(folio_lru_gen(folio) != -1, folio);
4943
4944 lruvec_del_folio(lruvec, folio);
4945 success = lru_gen_add_folio(lruvec, folio, false);
4946 VM_WARN_ON_ONCE(!success);
4947
4948 if (!--remaining)
4949 return false;
4950 }
4951 }
4952
4953 return true;
4954}
4955
4956static bool drain_evictable(struct lruvec *lruvec)
4957{
4958 int gen, type, zone;
4959 int remaining = MAX_LRU_BATCH;
4960
4961 for_each_gen_type_zone(gen, type, zone) {
6df1b221 4962 struct list_head *head = &lruvec->lrugen.folios[gen][type][zone];
354ed597
YZ
4963
4964 while (!list_empty(head)) {
4965 bool success;
4966 struct folio *folio = lru_to_folio(head);
4967
4968 VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio);
4969 VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio), folio);
4970 VM_WARN_ON_ONCE_FOLIO(folio_is_file_lru(folio) != type, folio);
4971 VM_WARN_ON_ONCE_FOLIO(folio_zonenum(folio) != zone, folio);
4972
4973 success = lru_gen_del_folio(lruvec, folio, false);
4974 VM_WARN_ON_ONCE(!success);
4975 lruvec_add_folio(lruvec, folio);
4976
4977 if (!--remaining)
4978 return false;
4979 }
4980 }
4981
4982 return true;
4983}
4984
4985static void lru_gen_change_state(bool enabled)
4986{
4987 static DEFINE_MUTEX(state_mutex);
4988
4989 struct mem_cgroup *memcg;
4990
4991 cgroup_lock();
4992 cpus_read_lock();
4993 get_online_mems();
4994 mutex_lock(&state_mutex);
4995
4996 if (enabled == lru_gen_enabled())
4997 goto unlock;
4998
4999 if (enabled)
5000 static_branch_enable_cpuslocked(&lru_gen_caps[LRU_GEN_CORE]);
5001 else
5002 static_branch_disable_cpuslocked(&lru_gen_caps[LRU_GEN_CORE]);
5003
5004 memcg = mem_cgroup_iter(NULL, NULL, NULL);
5005 do {
5006 int nid;
5007
5008 for_each_node(nid) {
5009 struct lruvec *lruvec = get_lruvec(memcg, nid);
5010
354ed597
YZ
5011 spin_lock_irq(&lruvec->lru_lock);
5012
5013 VM_WARN_ON_ONCE(!seq_is_valid(lruvec));
5014 VM_WARN_ON_ONCE(!state_is_valid(lruvec));
5015
5016 lruvec->lrugen.enabled = enabled;
5017
5018 while (!(enabled ? fill_evictable(lruvec) : drain_evictable(lruvec))) {
5019 spin_unlock_irq(&lruvec->lru_lock);
5020 cond_resched();
5021 spin_lock_irq(&lruvec->lru_lock);
5022 }
5023
5024 spin_unlock_irq(&lruvec->lru_lock);
5025 }
5026
5027 cond_resched();
5028 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)));
5029unlock:
5030 mutex_unlock(&state_mutex);
5031 put_online_mems();
5032 cpus_read_unlock();
5033 cgroup_unlock();
5034}
5035
5036/******************************************************************************
5037 * sysfs interface
5038 ******************************************************************************/
5039
9a52b2f3 5040static ssize_t min_ttl_ms_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf)
1332a809 5041{
9a52b2f3 5042 return sysfs_emit(buf, "%u\n", jiffies_to_msecs(READ_ONCE(lru_gen_min_ttl)));
1332a809
YZ
5043}
5044
07017acb 5045/* see Documentation/admin-guide/mm/multigen_lru.rst for details */
9a52b2f3
A
5046static ssize_t min_ttl_ms_store(struct kobject *kobj, struct kobj_attribute *attr,
5047 const char *buf, size_t len)
1332a809
YZ
5048{
5049 unsigned int msecs;
5050
5051 if (kstrtouint(buf, 0, &msecs))
5052 return -EINVAL;
5053
5054 WRITE_ONCE(lru_gen_min_ttl, msecs_to_jiffies(msecs));
5055
5056 return len;
5057}
5058
9a52b2f3 5059static struct kobj_attribute lru_gen_min_ttl_attr = __ATTR_RW(min_ttl_ms);
1332a809 5060
9a52b2f3 5061static ssize_t enabled_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf)
354ed597
YZ
5062{
5063 unsigned int caps = 0;
5064
5065 if (get_cap(LRU_GEN_CORE))
5066 caps |= BIT(LRU_GEN_CORE);
5067
bd02df41 5068 if (should_walk_mmu())
354ed597
YZ
5069 caps |= BIT(LRU_GEN_MM_WALK);
5070
bd02df41 5071 if (should_clear_pmd_young())
354ed597
YZ
5072 caps |= BIT(LRU_GEN_NONLEAF_YOUNG);
5073
8ef9c32a 5074 return sysfs_emit(buf, "0x%04x\n", caps);
354ed597
YZ
5075}
5076
07017acb 5077/* see Documentation/admin-guide/mm/multigen_lru.rst for details */
9a52b2f3 5078static ssize_t enabled_store(struct kobject *kobj, struct kobj_attribute *attr,
354ed597
YZ
5079 const char *buf, size_t len)
5080{
5081 int i;
5082 unsigned int caps;
5083
5084 if (tolower(*buf) == 'n')
5085 caps = 0;
5086 else if (tolower(*buf) == 'y')
5087 caps = -1;
5088 else if (kstrtouint(buf, 0, &caps))
5089 return -EINVAL;
5090
5091 for (i = 0; i < NR_LRU_GEN_CAPS; i++) {
5092 bool enabled = caps & BIT(i);
5093
5094 if (i == LRU_GEN_CORE)
5095 lru_gen_change_state(enabled);
5096 else if (enabled)
5097 static_branch_enable(&lru_gen_caps[i]);
5098 else
5099 static_branch_disable(&lru_gen_caps[i]);
5100 }
5101
5102 return len;
5103}
5104
9a52b2f3 5105static struct kobj_attribute lru_gen_enabled_attr = __ATTR_RW(enabled);
354ed597
YZ
5106
5107static struct attribute *lru_gen_attrs[] = {
1332a809 5108 &lru_gen_min_ttl_attr.attr,
354ed597
YZ
5109 &lru_gen_enabled_attr.attr,
5110 NULL
5111};
5112
9a52b2f3 5113static const struct attribute_group lru_gen_attr_group = {
354ed597
YZ
5114 .name = "lru_gen",
5115 .attrs = lru_gen_attrs,
5116};
5117
d6c3af7d
YZ
5118/******************************************************************************
5119 * debugfs interface
5120 ******************************************************************************/
5121
5122static void *lru_gen_seq_start(struct seq_file *m, loff_t *pos)
5123{
5124 struct mem_cgroup *memcg;
5125 loff_t nr_to_skip = *pos;
5126
5127 m->private = kvmalloc(PATH_MAX, GFP_KERNEL);
5128 if (!m->private)
5129 return ERR_PTR(-ENOMEM);
5130
5131 memcg = mem_cgroup_iter(NULL, NULL, NULL);
5132 do {
5133 int nid;
5134
5135 for_each_node_state(nid, N_MEMORY) {
5136 if (!nr_to_skip--)
5137 return get_lruvec(memcg, nid);
5138 }
5139 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)));
5140
5141 return NULL;
5142}
5143
5144static void lru_gen_seq_stop(struct seq_file *m, void *v)
5145{
5146 if (!IS_ERR_OR_NULL(v))
5147 mem_cgroup_iter_break(NULL, lruvec_memcg(v));
5148
5149 kvfree(m->private);
5150 m->private = NULL;
5151}
5152
5153static void *lru_gen_seq_next(struct seq_file *m, void *v, loff_t *pos)
5154{
5155 int nid = lruvec_pgdat(v)->node_id;
5156 struct mem_cgroup *memcg = lruvec_memcg(v);
5157
5158 ++*pos;
5159
5160 nid = next_memory_node(nid);
5161 if (nid == MAX_NUMNODES) {
5162 memcg = mem_cgroup_iter(NULL, memcg, NULL);
5163 if (!memcg)
5164 return NULL;
5165
5166 nid = first_memory_node;
5167 }
5168
5169 return get_lruvec(memcg, nid);
5170}
5171
5172static void lru_gen_seq_show_full(struct seq_file *m, struct lruvec *lruvec,
5173 unsigned long max_seq, unsigned long *min_seq,
5174 unsigned long seq)
5175{
5176 int i;
5177 int type, tier;
5178 int hist = lru_hist_from_seq(seq);
391655fe 5179 struct lru_gen_folio *lrugen = &lruvec->lrugen;
d6c3af7d
YZ
5180
5181 for (tier = 0; tier < MAX_NR_TIERS; tier++) {
5182 seq_printf(m, " %10d", tier);
5183 for (type = 0; type < ANON_AND_FILE; type++) {
5184 const char *s = " ";
5185 unsigned long n[3] = {};
5186
5187 if (seq == max_seq) {
5188 s = "RT ";
5189 n[0] = READ_ONCE(lrugen->avg_refaulted[type][tier]);
5190 n[1] = READ_ONCE(lrugen->avg_total[type][tier]);
5191 } else if (seq == min_seq[type] || NR_HIST_GENS > 1) {
5192 s = "rep";
5193 n[0] = atomic_long_read(&lrugen->refaulted[hist][type][tier]);
5194 n[1] = atomic_long_read(&lrugen->evicted[hist][type][tier]);
5195 if (tier)
5196 n[2] = READ_ONCE(lrugen->protected[hist][type][tier - 1]);
5197 }
5198
5199 for (i = 0; i < 3; i++)
5200 seq_printf(m, " %10lu%c", n[i], s[i]);
5201 }
5202 seq_putc(m, '\n');
5203 }
5204
5205 seq_puts(m, " ");
5206 for (i = 0; i < NR_MM_STATS; i++) {
5207 const char *s = " ";
5208 unsigned long n = 0;
5209
5210 if (seq == max_seq && NR_HIST_GENS == 1) {
5211 s = "LOYNFA";
5212 n = READ_ONCE(lruvec->mm_state.stats[hist][i]);
5213 } else if (seq != max_seq && NR_HIST_GENS > 1) {
5214 s = "loynfa";
5215 n = READ_ONCE(lruvec->mm_state.stats[hist][i]);
5216 }
5217
5218 seq_printf(m, " %10lu%c", n, s[i]);
5219 }
5220 seq_putc(m, '\n');
5221}
5222
07017acb 5223/* see Documentation/admin-guide/mm/multigen_lru.rst for details */
d6c3af7d
YZ
5224static int lru_gen_seq_show(struct seq_file *m, void *v)
5225{
5226 unsigned long seq;
5227 bool full = !debugfs_real_fops(m->file)->write;
5228 struct lruvec *lruvec = v;
391655fe 5229 struct lru_gen_folio *lrugen = &lruvec->lrugen;
d6c3af7d
YZ
5230 int nid = lruvec_pgdat(lruvec)->node_id;
5231 struct mem_cgroup *memcg = lruvec_memcg(lruvec);
5232 DEFINE_MAX_SEQ(lruvec);
5233 DEFINE_MIN_SEQ(lruvec);
5234
5235 if (nid == first_memory_node) {
5236 const char *path = memcg ? m->private : "";
5237
5238#ifdef CONFIG_MEMCG
5239 if (memcg)
5240 cgroup_path(memcg->css.cgroup, m->private, PATH_MAX);
5241#endif
5242 seq_printf(m, "memcg %5hu %s\n", mem_cgroup_id(memcg), path);
5243 }
5244
5245 seq_printf(m, " node %5d\n", nid);
5246
5247 if (!full)
5248 seq = min_seq[LRU_GEN_ANON];
5249 else if (max_seq >= MAX_NR_GENS)
5250 seq = max_seq - MAX_NR_GENS + 1;
5251 else
5252 seq = 0;
5253
5254 for (; seq <= max_seq; seq++) {
5255 int type, zone;
5256 int gen = lru_gen_from_seq(seq);
5257 unsigned long birth = READ_ONCE(lruvec->lrugen.timestamps[gen]);
5258
5259 seq_printf(m, " %10lu %10u", seq, jiffies_to_msecs(jiffies - birth));
5260
5261 for (type = 0; type < ANON_AND_FILE; type++) {
5262 unsigned long size = 0;
5263 char mark = full && seq < min_seq[type] ? 'x' : ' ';
5264
5265 for (zone = 0; zone < MAX_NR_ZONES; zone++)
5266 size += max(READ_ONCE(lrugen->nr_pages[gen][type][zone]), 0L);
5267
5268 seq_printf(m, " %10lu%c", size, mark);
5269 }
5270
5271 seq_putc(m, '\n');
5272
5273 if (full)
5274 lru_gen_seq_show_full(m, lruvec, max_seq, min_seq, seq);
5275 }
5276
5277 return 0;
5278}
5279
5280static const struct seq_operations lru_gen_seq_ops = {
5281 .start = lru_gen_seq_start,
5282 .stop = lru_gen_seq_stop,
5283 .next = lru_gen_seq_next,
5284 .show = lru_gen_seq_show,
5285};
5286
5287static int run_aging(struct lruvec *lruvec, unsigned long seq, struct scan_control *sc,
5288 bool can_swap, bool force_scan)
5289{
5290 DEFINE_MAX_SEQ(lruvec);
5291 DEFINE_MIN_SEQ(lruvec);
5292
5293 if (seq < max_seq)
5294 return 0;
5295
5296 if (seq > max_seq)
5297 return -EINVAL;
5298
5299 if (!force_scan && min_seq[!can_swap] + MAX_NR_GENS - 1 <= max_seq)
5300 return -ERANGE;
5301
5302 try_to_inc_max_seq(lruvec, max_seq, sc, can_swap, force_scan);
5303
5304 return 0;
5305}
5306
5307static int run_eviction(struct lruvec *lruvec, unsigned long seq, struct scan_control *sc,
5308 int swappiness, unsigned long nr_to_reclaim)
5309{
5310 DEFINE_MAX_SEQ(lruvec);
5311
5312 if (seq + MIN_NR_GENS > max_seq)
5313 return -EINVAL;
5314
5315 sc->nr_reclaimed = 0;
5316
5317 while (!signal_pending(current)) {
5318 DEFINE_MIN_SEQ(lruvec);
5319
5320 if (seq < min_seq[!swappiness])
5321 return 0;
5322
5323 if (sc->nr_reclaimed >= nr_to_reclaim)
5324 return 0;
5325
a579086c 5326 if (!evict_folios(lruvec, sc, swappiness))
d6c3af7d
YZ
5327 return 0;
5328
5329 cond_resched();
5330 }
5331
5332 return -EINTR;
5333}
5334
5335static int run_cmd(char cmd, int memcg_id, int nid, unsigned long seq,
5336 struct scan_control *sc, int swappiness, unsigned long opt)
5337{
5338 struct lruvec *lruvec;
5339 int err = -EINVAL;
5340 struct mem_cgroup *memcg = NULL;
5341
5342 if (nid < 0 || nid >= MAX_NUMNODES || !node_state(nid, N_MEMORY))
5343 return -EINVAL;
5344
5345 if (!mem_cgroup_disabled()) {
5346 rcu_read_lock();
e4dde56c 5347
d6c3af7d 5348 memcg = mem_cgroup_from_id(memcg_id);
e4dde56c 5349 if (!mem_cgroup_tryget(memcg))
d6c3af7d 5350 memcg = NULL;
e4dde56c 5351
d6c3af7d
YZ
5352 rcu_read_unlock();
5353
5354 if (!memcg)
5355 return -EINVAL;
5356 }
5357
5358 if (memcg_id != mem_cgroup_id(memcg))
5359 goto done;
5360
5361 lruvec = get_lruvec(memcg, nid);
5362
5363 if (swappiness < 0)
5364 swappiness = get_swappiness(lruvec, sc);
5365 else if (swappiness > 200)
5366 goto done;
5367
5368 switch (cmd) {
5369 case '+':
5370 err = run_aging(lruvec, seq, sc, swappiness, opt);
5371 break;
5372 case '-':
5373 err = run_eviction(lruvec, seq, sc, swappiness, opt);
5374 break;
5375 }
5376done:
5377 mem_cgroup_put(memcg);
5378
5379 return err;
5380}
5381
07017acb 5382/* see Documentation/admin-guide/mm/multigen_lru.rst for details */
d6c3af7d
YZ
5383static ssize_t lru_gen_seq_write(struct file *file, const char __user *src,
5384 size_t len, loff_t *pos)
5385{
5386 void *buf;
5387 char *cur, *next;
5388 unsigned int flags;
5389 struct blk_plug plug;
5390 int err = -EINVAL;
5391 struct scan_control sc = {
5392 .may_writepage = true,
5393 .may_unmap = true,
5394 .may_swap = true,
5395 .reclaim_idx = MAX_NR_ZONES - 1,
5396 .gfp_mask = GFP_KERNEL,
5397 };
5398
5399 buf = kvmalloc(len + 1, GFP_KERNEL);
5400 if (!buf)
5401 return -ENOMEM;
5402
5403 if (copy_from_user(buf, src, len)) {
5404 kvfree(buf);
5405 return -EFAULT;
5406 }
5407
5408 set_task_reclaim_state(current, &sc.reclaim_state);
5409 flags = memalloc_noreclaim_save();
5410 blk_start_plug(&plug);
e9d4e1ee 5411 if (!set_mm_walk(NULL, true)) {
d6c3af7d
YZ
5412 err = -ENOMEM;
5413 goto done;
5414 }
5415
5416 next = buf;
5417 next[len] = '\0';
5418
5419 while ((cur = strsep(&next, ",;\n"))) {
5420 int n;
5421 int end;
5422 char cmd;
5423 unsigned int memcg_id;
5424 unsigned int nid;
5425 unsigned long seq;
5426 unsigned int swappiness = -1;
5427 unsigned long opt = -1;
5428
5429 cur = skip_spaces(cur);
5430 if (!*cur)
5431 continue;
5432
5433 n = sscanf(cur, "%c %u %u %lu %n %u %n %lu %n", &cmd, &memcg_id, &nid,
5434 &seq, &end, &swappiness, &end, &opt, &end);
5435 if (n < 4 || cur[end]) {
5436 err = -EINVAL;
5437 break;
5438 }
5439
5440 err = run_cmd(cmd, memcg_id, nid, seq, &sc, swappiness, opt);
5441 if (err)
5442 break;
5443 }
5444done:
5445 clear_mm_walk();
5446 blk_finish_plug(&plug);
5447 memalloc_noreclaim_restore(flags);
5448 set_task_reclaim_state(current, NULL);
5449
5450 kvfree(buf);
5451
5452 return err ? : len;
5453}
5454
5455static int lru_gen_seq_open(struct inode *inode, struct file *file)
5456{
5457 return seq_open(file, &lru_gen_seq_ops);
5458}
5459
5460static const struct file_operations lru_gen_rw_fops = {
5461 .open = lru_gen_seq_open,
5462 .read = seq_read,
5463 .write = lru_gen_seq_write,
5464 .llseek = seq_lseek,
5465 .release = seq_release,
5466};
5467
5468static const struct file_operations lru_gen_ro_fops = {
5469 .open = lru_gen_seq_open,
5470 .read = seq_read,
5471 .llseek = seq_lseek,
5472 .release = seq_release,
5473};
5474
ec1c86b2
YZ
5475/******************************************************************************
5476 * initialization
5477 ******************************************************************************/
5478
5479void lru_gen_init_lruvec(struct lruvec *lruvec)
5480{
1332a809 5481 int i;
ec1c86b2 5482 int gen, type, zone;
391655fe 5483 struct lru_gen_folio *lrugen = &lruvec->lrugen;
ec1c86b2
YZ
5484
5485 lrugen->max_seq = MIN_NR_GENS + 1;
354ed597 5486 lrugen->enabled = lru_gen_enabled();
ec1c86b2 5487
1332a809
YZ
5488 for (i = 0; i <= MIN_NR_GENS + 1; i++)
5489 lrugen->timestamps[i] = jiffies;
5490
ec1c86b2 5491 for_each_gen_type_zone(gen, type, zone)
6df1b221 5492 INIT_LIST_HEAD(&lrugen->folios[gen][type][zone]);
bd74fdae
YZ
5493
5494 lruvec->mm_state.seq = MIN_NR_GENS;
ec1c86b2
YZ
5495}
5496
5497#ifdef CONFIG_MEMCG
e4dde56c
YZ
5498
5499void lru_gen_init_pgdat(struct pglist_data *pgdat)
5500{
5501 int i, j;
5502
5503 spin_lock_init(&pgdat->memcg_lru.lock);
5504
5505 for (i = 0; i < MEMCG_NR_GENS; i++) {
5506 for (j = 0; j < MEMCG_NR_BINS; j++)
5507 INIT_HLIST_NULLS_HEAD(&pgdat->memcg_lru.fifo[i][j], i);
5508 }
5509}
5510
ec1c86b2
YZ
5511void lru_gen_init_memcg(struct mem_cgroup *memcg)
5512{
bd74fdae
YZ
5513 INIT_LIST_HEAD(&memcg->mm_list.fifo);
5514 spin_lock_init(&memcg->mm_list.lock);
ec1c86b2
YZ
5515}
5516
5517void lru_gen_exit_memcg(struct mem_cgroup *memcg)
5518{
bd74fdae 5519 int i;
ec1c86b2
YZ
5520 int nid;
5521
37cc9997
A
5522 VM_WARN_ON_ONCE(!list_empty(&memcg->mm_list.fifo));
5523
ec1c86b2
YZ
5524 for_each_node(nid) {
5525 struct lruvec *lruvec = get_lruvec(memcg, nid);
5526
5527 VM_WARN_ON_ONCE(memchr_inv(lruvec->lrugen.nr_pages, 0,
5528 sizeof(lruvec->lrugen.nr_pages)));
bd74fdae 5529
37cc9997
A
5530 lruvec->lrugen.list.next = LIST_POISON1;
5531
bd74fdae
YZ
5532 for (i = 0; i < NR_BLOOM_FILTERS; i++) {
5533 bitmap_free(lruvec->mm_state.filters[i]);
5534 lruvec->mm_state.filters[i] = NULL;
5535 }
ec1c86b2
YZ
5536 }
5537}
e4dde56c 5538
e4dde56c 5539#endif /* CONFIG_MEMCG */
ec1c86b2
YZ
5540
5541static int __init init_lru_gen(void)
5542{
5543 BUILD_BUG_ON(MIN_NR_GENS + 1 >= MAX_NR_GENS);
5544 BUILD_BUG_ON(BIT(LRU_GEN_WIDTH) <= MAX_NR_GENS);
5545
354ed597
YZ
5546 if (sysfs_create_group(mm_kobj, &lru_gen_attr_group))
5547 pr_err("lru_gen: failed to create sysfs group\n");
5548
d6c3af7d
YZ
5549 debugfs_create_file("lru_gen", 0644, NULL, NULL, &lru_gen_rw_fops);
5550 debugfs_create_file("lru_gen_full", 0444, NULL, NULL, &lru_gen_ro_fops);
5551
ec1c86b2
YZ
5552 return 0;
5553};
5554late_initcall(init_lru_gen);
5555
ac35a490
YZ
5556#else /* !CONFIG_LRU_GEN */
5557
5558static void lru_gen_age_node(struct pglist_data *pgdat, struct scan_control *sc)
5559{
5560}
5561
5562static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
5563{
5564}
5565
e4dde56c
YZ
5566static void lru_gen_shrink_node(struct pglist_data *pgdat, struct scan_control *sc)
5567{
5568}
5569
ec1c86b2
YZ
5570#endif /* CONFIG_LRU_GEN */
5571
afaf07a6 5572static void shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
9b4f98cd
JW
5573{
5574 unsigned long nr[NR_LRU_LISTS];
e82e0561 5575 unsigned long targets[NR_LRU_LISTS];
9b4f98cd
JW
5576 unsigned long nr_to_scan;
5577 enum lru_list lru;
5578 unsigned long nr_reclaimed = 0;
5579 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
f53af428 5580 bool proportional_reclaim;
9b4f98cd
JW
5581 struct blk_plug plug;
5582
7a704474 5583 if (lru_gen_enabled() && !root_reclaim(sc)) {
ac35a490
YZ
5584 lru_gen_shrink_lruvec(lruvec, sc);
5585 return;
5586 }
5587
afaf07a6 5588 get_scan_count(lruvec, sc, nr);
9b4f98cd 5589
e82e0561
MG
5590 /* Record the original scan target for proportional adjustments later */
5591 memcpy(targets, nr, sizeof(nr));
5592
1a501907
MG
5593 /*
5594 * Global reclaiming within direct reclaim at DEF_PRIORITY is a normal
5595 * event that can occur when there is little memory pressure e.g.
5596 * multiple streaming readers/writers. Hence, we do not abort scanning
5597 * when the requested number of pages are reclaimed when scanning at
5598 * DEF_PRIORITY on the assumption that the fact we are direct
5599 * reclaiming implies that kswapd is not keeping up and it is best to
5600 * do a batch of work at once. For memcg reclaim one check is made to
5601 * abort proportional reclaim if either the file or anon lru has already
5602 * dropped to zero at the first pass.
5603 */
f53af428
JW
5604 proportional_reclaim = (!cgroup_reclaim(sc) && !current_is_kswapd() &&
5605 sc->priority == DEF_PRIORITY);
1a501907 5606
9b4f98cd
JW
5607 blk_start_plug(&plug);
5608 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
5609 nr[LRU_INACTIVE_FILE]) {
e82e0561
MG
5610 unsigned long nr_anon, nr_file, percentage;
5611 unsigned long nr_scanned;
5612
9b4f98cd
JW
5613 for_each_evictable_lru(lru) {
5614 if (nr[lru]) {
5615 nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
5616 nr[lru] -= nr_to_scan;
5617
5618 nr_reclaimed += shrink_list(lru, nr_to_scan,
3b991208 5619 lruvec, sc);
9b4f98cd
JW
5620 }
5621 }
e82e0561 5622
bd041733
MH
5623 cond_resched();
5624
f53af428 5625 if (nr_reclaimed < nr_to_reclaim || proportional_reclaim)
e82e0561
MG
5626 continue;
5627
e82e0561
MG
5628 /*
5629 * For kswapd and memcg, reclaim at least the number of pages
1a501907 5630 * requested. Ensure that the anon and file LRUs are scanned
e82e0561
MG
5631 * proportionally what was requested by get_scan_count(). We
5632 * stop reclaiming one LRU and reduce the amount scanning
5633 * proportional to the original scan target.
5634 */
5635 nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
5636 nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
5637
1a501907
MG
5638 /*
5639 * It's just vindictive to attack the larger once the smaller
5640 * has gone to zero. And given the way we stop scanning the
5641 * smaller below, this makes sure that we only make one nudge
5642 * towards proportionality once we've got nr_to_reclaim.
5643 */
5644 if (!nr_file || !nr_anon)
5645 break;
5646
e82e0561
MG
5647 if (nr_file > nr_anon) {
5648 unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
5649 targets[LRU_ACTIVE_ANON] + 1;
5650 lru = LRU_BASE;
5651 percentage = nr_anon * 100 / scan_target;
5652 } else {
5653 unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
5654 targets[LRU_ACTIVE_FILE] + 1;
5655 lru = LRU_FILE;
5656 percentage = nr_file * 100 / scan_target;
5657 }
5658
5659 /* Stop scanning the smaller of the LRU */
5660 nr[lru] = 0;
5661 nr[lru + LRU_ACTIVE] = 0;
5662
5663 /*
5664 * Recalculate the other LRU scan count based on its original
5665 * scan target and the percentage scanning already complete
5666 */
5667 lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
5668 nr_scanned = targets[lru] - nr[lru];
5669 nr[lru] = targets[lru] * (100 - percentage) / 100;
5670 nr[lru] -= min(nr[lru], nr_scanned);
5671
5672 lru += LRU_ACTIVE;
5673 nr_scanned = targets[lru] - nr[lru];
5674 nr[lru] = targets[lru] * (100 - percentage) / 100;
5675 nr[lru] -= min(nr[lru], nr_scanned);
9b4f98cd
JW
5676 }
5677 blk_finish_plug(&plug);
5678 sc->nr_reclaimed += nr_reclaimed;
5679
5680 /*
5681 * Even if we did not try to evict anon pages at all, we want to
5682 * rebalance the anon lru active/inactive ratio.
5683 */
2f368a9f
DH
5684 if (can_age_anon_pages(lruvec_pgdat(lruvec), sc) &&
5685 inactive_is_low(lruvec, LRU_INACTIVE_ANON))
9b4f98cd
JW
5686 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
5687 sc, LRU_ACTIVE_ANON);
9b4f98cd
JW
5688}
5689
23b9da55 5690/* Use reclaim/compaction for costly allocs or under memory pressure */
9e3b2f8c 5691static bool in_reclaim_compaction(struct scan_control *sc)
23b9da55 5692{
d84da3f9 5693 if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
23b9da55 5694 (sc->order > PAGE_ALLOC_COSTLY_ORDER ||
9e3b2f8c 5695 sc->priority < DEF_PRIORITY - 2))
23b9da55
MG
5696 return true;
5697
5698 return false;
5699}
5700
3e7d3449 5701/*
23b9da55
MG
5702 * Reclaim/compaction is used for high-order allocation requests. It reclaims
5703 * order-0 pages before compacting the zone. should_continue_reclaim() returns
5704 * true if more pages should be reclaimed such that when the page allocator
df3a45f9 5705 * calls try_to_compact_pages() that it will have enough free pages to succeed.
23b9da55 5706 * It will give up earlier than that if there is difficulty reclaiming pages.
3e7d3449 5707 */
a9dd0a83 5708static inline bool should_continue_reclaim(struct pglist_data *pgdat,
3e7d3449 5709 unsigned long nr_reclaimed,
3e7d3449
MG
5710 struct scan_control *sc)
5711{
5712 unsigned long pages_for_compaction;
5713 unsigned long inactive_lru_pages;
a9dd0a83 5714 int z;
3e7d3449
MG
5715
5716 /* If not in reclaim/compaction mode, stop */
9e3b2f8c 5717 if (!in_reclaim_compaction(sc))
3e7d3449
MG
5718 return false;
5719
5ee04716
VB
5720 /*
5721 * Stop if we failed to reclaim any pages from the last SWAP_CLUSTER_MAX
5722 * number of pages that were scanned. This will return to the caller
5723 * with the risk reclaim/compaction and the resulting allocation attempt
5724 * fails. In the past we have tried harder for __GFP_RETRY_MAYFAIL
5725 * allocations through requiring that the full LRU list has been scanned
5726 * first, by assuming that zero delta of sc->nr_scanned means full LRU
5727 * scan, but that approximation was wrong, and there were corner cases
5728 * where always a non-zero amount of pages were scanned.
5729 */
5730 if (!nr_reclaimed)
5731 return false;
3e7d3449 5732
3e7d3449 5733 /* If compaction would go ahead or the allocation would succeed, stop */
a9dd0a83
MG
5734 for (z = 0; z <= sc->reclaim_idx; z++) {
5735 struct zone *zone = &pgdat->node_zones[z];
6aa303de 5736 if (!managed_zone(zone))
a9dd0a83
MG
5737 continue;
5738
e8606320
JW
5739 /* Allocation can already succeed, nothing to do */
5740 if (zone_watermark_ok(zone, sc->order, min_wmark_pages(zone),
5741 sc->reclaim_idx, 0))
5742 return false;
5743
3cf04937 5744 if (compaction_suitable(zone, sc->order, sc->reclaim_idx))
a9dd0a83 5745 return false;
3e7d3449 5746 }
1c6c1597
HD
5747
5748 /*
5749 * If we have not reclaimed enough pages for compaction and the
5750 * inactive lists are large enough, continue reclaiming
5751 */
5752 pages_for_compaction = compact_gap(sc->order);
5753 inactive_lru_pages = node_page_state(pgdat, NR_INACTIVE_FILE);
a2a36488 5754 if (can_reclaim_anon_pages(NULL, pgdat->node_id, sc))
1c6c1597
HD
5755 inactive_lru_pages += node_page_state(pgdat, NR_INACTIVE_ANON);
5756
5ee04716 5757 return inactive_lru_pages > pages_for_compaction;
3e7d3449
MG
5758}
5759
0f6a5cff 5760static void shrink_node_memcgs(pg_data_t *pgdat, struct scan_control *sc)
1da177e4 5761{
0f6a5cff 5762 struct mem_cgroup *target_memcg = sc->target_mem_cgroup;
d2af3397 5763 struct mem_cgroup *memcg;
1da177e4 5764
0f6a5cff 5765 memcg = mem_cgroup_iter(target_memcg, NULL, NULL);
d2af3397 5766 do {
afaf07a6 5767 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
d2af3397
JW
5768 unsigned long reclaimed;
5769 unsigned long scanned;
5660048c 5770
e3336cab
XP
5771 /*
5772 * This loop can become CPU-bound when target memcgs
5773 * aren't eligible for reclaim - either because they
5774 * don't have any reclaimable pages, or because their
5775 * memory is explicitly protected. Avoid soft lockups.
5776 */
5777 cond_resched();
5778
45c7f7e1
CD
5779 mem_cgroup_calculate_protection(target_memcg, memcg);
5780
adb82130 5781 if (mem_cgroup_below_min(target_memcg, memcg)) {
d2af3397
JW
5782 /*
5783 * Hard protection.
5784 * If there is no reclaimable memory, OOM.
5785 */
5786 continue;
adb82130 5787 } else if (mem_cgroup_below_low(target_memcg, memcg)) {
d2af3397
JW
5788 /*
5789 * Soft protection.
5790 * Respect the protection only as long as
5791 * there is an unprotected supply
5792 * of reclaimable memory from other cgroups.
5793 */
5794 if (!sc->memcg_low_reclaim) {
5795 sc->memcg_low_skipped = 1;
bf8d5d52 5796 continue;
241994ed 5797 }
d2af3397 5798 memcg_memory_event(memcg, MEMCG_LOW);
d2af3397 5799 }
241994ed 5800
d2af3397
JW
5801 reclaimed = sc->nr_reclaimed;
5802 scanned = sc->nr_scanned;
afaf07a6
JW
5803
5804 shrink_lruvec(lruvec, sc);
70ddf637 5805
d2af3397
JW
5806 shrink_slab(sc->gfp_mask, pgdat->node_id, memcg,
5807 sc->priority);
6b4f7799 5808
d2af3397 5809 /* Record the group's reclaim efficiency */
73b73bac
YA
5810 if (!sc->proactive)
5811 vmpressure(sc->gfp_mask, memcg, false,
5812 sc->nr_scanned - scanned,
5813 sc->nr_reclaimed - reclaimed);
70ddf637 5814
0f6a5cff
JW
5815 } while ((memcg = mem_cgroup_iter(target_memcg, memcg, NULL)));
5816}
5817
6c9e0907 5818static void shrink_node(pg_data_t *pgdat, struct scan_control *sc)
0f6a5cff 5819{
54c4fe08 5820 unsigned long nr_reclaimed, nr_scanned, nr_node_reclaimed;
1b05117d 5821 struct lruvec *target_lruvec;
0f6a5cff
JW
5822 bool reclaimable = false;
5823
7a704474 5824 if (lru_gen_enabled() && root_reclaim(sc)) {
e4dde56c
YZ
5825 lru_gen_shrink_node(pgdat, sc);
5826 return;
5827 }
5828
1b05117d
JW
5829 target_lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup, pgdat);
5830
0f6a5cff
JW
5831again:
5832 memset(&sc->nr, 0, sizeof(sc->nr));
5833
5834 nr_reclaimed = sc->nr_reclaimed;
5835 nr_scanned = sc->nr_scanned;
5836
ed547ab6 5837 prepare_scan_control(pgdat, sc);
53138cea 5838
0f6a5cff 5839 shrink_node_memcgs(pgdat, sc);
2344d7e4 5840
583c27a1 5841 flush_reclaim_state(sc);
d108c772 5842
54c4fe08 5843 nr_node_reclaimed = sc->nr_reclaimed - nr_reclaimed;
d108c772 5844
d2af3397 5845 /* Record the subtree's reclaim efficiency */
73b73bac
YA
5846 if (!sc->proactive)
5847 vmpressure(sc->gfp_mask, sc->target_mem_cgroup, true,
54c4fe08 5848 sc->nr_scanned - nr_scanned, nr_node_reclaimed);
d108c772 5849
54c4fe08 5850 if (nr_node_reclaimed)
d2af3397 5851 reclaimable = true;
d108c772 5852
d2af3397
JW
5853 if (current_is_kswapd()) {
5854 /*
5855 * If reclaim is isolating dirty pages under writeback,
5856 * it implies that the long-lived page allocation rate
5857 * is exceeding the page laundering rate. Either the
5858 * global limits are not being effective at throttling
5859 * processes due to the page distribution throughout
5860 * zones or there is heavy usage of a slow backing
5861 * device. The only option is to throttle from reclaim
5862 * context which is not ideal as there is no guarantee
5863 * the dirtying process is throttled in the same way
5864 * balance_dirty_pages() manages.
5865 *
5866 * Once a node is flagged PGDAT_WRITEBACK, kswapd will
5867 * count the number of pages under pages flagged for
5868 * immediate reclaim and stall if any are encountered
5869 * in the nr_immediate check below.
5870 */
5871 if (sc->nr.writeback && sc->nr.writeback == sc->nr.taken)
5872 set_bit(PGDAT_WRITEBACK, &pgdat->flags);
d108c772 5873
d2af3397
JW
5874 /* Allow kswapd to start writing pages during reclaim.*/
5875 if (sc->nr.unqueued_dirty == sc->nr.file_taken)
5876 set_bit(PGDAT_DIRTY, &pgdat->flags);
e3c1ac58 5877
d108c772 5878 /*
1eba09c1 5879 * If kswapd scans pages marked for immediate
d2af3397
JW
5880 * reclaim and under writeback (nr_immediate), it
5881 * implies that pages are cycling through the LRU
8cd7c588
MG
5882 * faster than they are written so forcibly stall
5883 * until some pages complete writeback.
d108c772 5884 */
d2af3397 5885 if (sc->nr.immediate)
c3f4a9a2 5886 reclaim_throttle(pgdat, VMSCAN_THROTTLE_WRITEBACK);
d2af3397
JW
5887 }
5888
5889 /*
8cd7c588
MG
5890 * Tag a node/memcg as congested if all the dirty pages were marked
5891 * for writeback and immediate reclaim (counted in nr.congested).
1b05117d 5892 *
d2af3397 5893 * Legacy memcg will stall in page writeback so avoid forcibly
8cd7c588 5894 * stalling in reclaim_throttle().
d2af3397 5895 */
1bc545bf
YA
5896 if (sc->nr.dirty && sc->nr.dirty == sc->nr.congested) {
5897 if (cgroup_reclaim(sc) && writeback_throttling_sane(sc))
5898 set_bit(LRUVEC_CGROUP_CONGESTED, &target_lruvec->flags);
5899
5900 if (current_is_kswapd())
5901 set_bit(LRUVEC_NODE_CONGESTED, &target_lruvec->flags);
5902 }
d2af3397
JW
5903
5904 /*
8cd7c588
MG
5905 * Stall direct reclaim for IO completions if the lruvec is
5906 * node is congested. Allow kswapd to continue until it
d2af3397
JW
5907 * starts encountering unqueued dirty pages or cycling through
5908 * the LRU too quickly.
5909 */
1b05117d
JW
5910 if (!current_is_kswapd() && current_may_throttle() &&
5911 !sc->hibernation_mode &&
1bc545bf
YA
5912 (test_bit(LRUVEC_CGROUP_CONGESTED, &target_lruvec->flags) ||
5913 test_bit(LRUVEC_NODE_CONGESTED, &target_lruvec->flags)))
1b4e3f26 5914 reclaim_throttle(pgdat, VMSCAN_THROTTLE_CONGESTED);
d108c772 5915
54c4fe08 5916 if (should_continue_reclaim(pgdat, nr_node_reclaimed, sc))
d2af3397 5917 goto again;
2344d7e4 5918
c73322d0
JW
5919 /*
5920 * Kswapd gives up on balancing particular nodes after too
5921 * many failures to reclaim anything from them and goes to
5922 * sleep. On reclaim progress, reset the failure counter. A
5923 * successful direct reclaim run will revive a dormant kswapd.
5924 */
5925 if (reclaimable)
5926 pgdat->kswapd_failures = 0;
f16015fb
JW
5927}
5928
53853e2d 5929/*
fdd4c614
VB
5930 * Returns true if compaction should go ahead for a costly-order request, or
5931 * the allocation would already succeed without compaction. Return false if we
5932 * should reclaim first.
53853e2d 5933 */
4f588331 5934static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
fe4b1b24 5935{
31483b6a 5936 unsigned long watermark;
fe4b1b24 5937
e8606320
JW
5938 /* Allocation can already succeed, nothing to do */
5939 if (zone_watermark_ok(zone, sc->order, min_wmark_pages(zone),
5940 sc->reclaim_idx, 0))
fdd4c614 5941 return true;
fe4b1b24 5942
e8606320 5943 /* Compaction cannot yet proceed. Do reclaim. */
3cf04937 5944 if (!compaction_suitable(zone, sc->order, sc->reclaim_idx))
e8606320 5945 return false;
f98a497e 5946
53853e2d 5947 /*
fdd4c614
VB
5948 * Compaction is already possible, but it takes time to run and there
5949 * are potentially other callers using the pages just freed. So proceed
5950 * with reclaim to make a buffer of free pages available to give
5951 * compaction a reasonable chance of completing and allocating the page.
5952 * Note that we won't actually reclaim the whole buffer in one attempt
5953 * as the target watermark in should_continue_reclaim() is lower. But if
5954 * we are already above the high+gap watermark, don't reclaim at all.
53853e2d 5955 */
fdd4c614 5956 watermark = high_wmark_pages(zone) + compact_gap(sc->order);
fe4b1b24 5957
fdd4c614 5958 return zone_watermark_ok_safe(zone, 0, watermark, sc->reclaim_idx);
fe4b1b24
MG
5959}
5960
69392a40
MG
5961static void consider_reclaim_throttle(pg_data_t *pgdat, struct scan_control *sc)
5962{
66ce520b
MG
5963 /*
5964 * If reclaim is making progress greater than 12% efficiency then
5965 * wake all the NOPROGRESS throttled tasks.
5966 */
5967 if (sc->nr_reclaimed > (sc->nr_scanned >> 3)) {
69392a40
MG
5968 wait_queue_head_t *wqh;
5969
5970 wqh = &pgdat->reclaim_wait[VMSCAN_THROTTLE_NOPROGRESS];
5971 if (waitqueue_active(wqh))
5972 wake_up(wqh);
5973
5974 return;
5975 }
5976
5977 /*
1b4e3f26
MG
5978 * Do not throttle kswapd or cgroup reclaim on NOPROGRESS as it will
5979 * throttle on VMSCAN_THROTTLE_WRITEBACK if there are too many pages
5980 * under writeback and marked for immediate reclaim at the tail of the
5981 * LRU.
69392a40 5982 */
1b4e3f26 5983 if (current_is_kswapd() || cgroup_reclaim(sc))
69392a40
MG
5984 return;
5985
5986 /* Throttle if making no progress at high prioities. */
1b4e3f26 5987 if (sc->priority == 1 && !sc->nr_reclaimed)
c3f4a9a2 5988 reclaim_throttle(pgdat, VMSCAN_THROTTLE_NOPROGRESS);
69392a40
MG
5989}
5990
1da177e4
LT
5991/*
5992 * This is the direct reclaim path, for page-allocating processes. We only
5993 * try to reclaim pages from zones which will satisfy the caller's allocation
5994 * request.
5995 *
1da177e4
LT
5996 * If a zone is deemed to be full of pinned pages then just give it a light
5997 * scan then give up on it.
5998 */
0a0337e0 5999static void shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
1da177e4 6000{
dd1a239f 6001 struct zoneref *z;
54a6eb5c 6002 struct zone *zone;
0608f43d
AM
6003 unsigned long nr_soft_reclaimed;
6004 unsigned long nr_soft_scanned;
619d0d76 6005 gfp_t orig_mask;
79dafcdc 6006 pg_data_t *last_pgdat = NULL;
1b4e3f26 6007 pg_data_t *first_pgdat = NULL;
1cfb419b 6008
cc715d99
MG
6009 /*
6010 * If the number of buffer_heads in the machine exceeds the maximum
6011 * allowed level, force direct reclaim to scan the highmem zone as
6012 * highmem pages could be pinning lowmem pages storing buffer_heads
6013 */
619d0d76 6014 orig_mask = sc->gfp_mask;
b2e18757 6015 if (buffer_heads_over_limit) {
cc715d99 6016 sc->gfp_mask |= __GFP_HIGHMEM;
4f588331 6017 sc->reclaim_idx = gfp_zone(sc->gfp_mask);
b2e18757 6018 }
cc715d99 6019
d4debc66 6020 for_each_zone_zonelist_nodemask(zone, z, zonelist,
b2e18757 6021 sc->reclaim_idx, sc->nodemask) {
1cfb419b
KH
6022 /*
6023 * Take care memory controller reclaiming has small influence
6024 * to global LRU.
6025 */
b5ead35e 6026 if (!cgroup_reclaim(sc)) {
344736f2
VD
6027 if (!cpuset_zone_allowed(zone,
6028 GFP_KERNEL | __GFP_HARDWALL))
1cfb419b 6029 continue;
65ec02cb 6030
0b06496a
JW
6031 /*
6032 * If we already have plenty of memory free for
6033 * compaction in this zone, don't free any more.
6034 * Even though compaction is invoked for any
6035 * non-zero order, only frequent costly order
6036 * reclamation is disruptive enough to become a
6037 * noticeable problem, like transparent huge
6038 * page allocations.
6039 */
6040 if (IS_ENABLED(CONFIG_COMPACTION) &&
6041 sc->order > PAGE_ALLOC_COSTLY_ORDER &&
4f588331 6042 compaction_ready(zone, sc)) {
0b06496a
JW
6043 sc->compaction_ready = true;
6044 continue;
e0887c19 6045 }
0b06496a 6046
79dafcdc
MG
6047 /*
6048 * Shrink each node in the zonelist once. If the
6049 * zonelist is ordered by zone (not the default) then a
6050 * node may be shrunk multiple times but in that case
6051 * the user prefers lower zones being preserved.
6052 */
6053 if (zone->zone_pgdat == last_pgdat)
6054 continue;
6055
0608f43d
AM
6056 /*
6057 * This steals pages from memory cgroups over softlimit
6058 * and returns the number of reclaimed pages and
6059 * scanned pages. This works for global memory pressure
6060 * and balancing, not for a memcg's limit.
6061 */
6062 nr_soft_scanned = 0;
ef8f2327 6063 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone->zone_pgdat,
0608f43d
AM
6064 sc->order, sc->gfp_mask,
6065 &nr_soft_scanned);
6066 sc->nr_reclaimed += nr_soft_reclaimed;
6067 sc->nr_scanned += nr_soft_scanned;
ac34a1a3 6068 /* need some check for avoid more shrink_zone() */
1cfb419b 6069 }
408d8544 6070
1b4e3f26
MG
6071 if (!first_pgdat)
6072 first_pgdat = zone->zone_pgdat;
6073
79dafcdc
MG
6074 /* See comment about same check for global reclaim above */
6075 if (zone->zone_pgdat == last_pgdat)
6076 continue;
6077 last_pgdat = zone->zone_pgdat;
970a39a3 6078 shrink_node(zone->zone_pgdat, sc);
1da177e4 6079 }
e0c23279 6080
80082938
MG
6081 if (first_pgdat)
6082 consider_reclaim_throttle(first_pgdat, sc);
1b4e3f26 6083
619d0d76
WY
6084 /*
6085 * Restore to original mask to avoid the impact on the caller if we
6086 * promoted it to __GFP_HIGHMEM.
6087 */
6088 sc->gfp_mask = orig_mask;
1da177e4 6089}
4f98a2fe 6090
b910718a 6091static void snapshot_refaults(struct mem_cgroup *target_memcg, pg_data_t *pgdat)
2a2e4885 6092{
b910718a
JW
6093 struct lruvec *target_lruvec;
6094 unsigned long refaults;
2a2e4885 6095
ac35a490
YZ
6096 if (lru_gen_enabled())
6097 return;
6098
b910718a 6099 target_lruvec = mem_cgroup_lruvec(target_memcg, pgdat);
170b04b7 6100 refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_ANON);
e9c2dbc8 6101 target_lruvec->refaults[WORKINGSET_ANON] = refaults;
170b04b7 6102 refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_FILE);
e9c2dbc8 6103 target_lruvec->refaults[WORKINGSET_FILE] = refaults;
2a2e4885
JW
6104}
6105
1da177e4
LT
6106/*
6107 * This is the main entry point to direct page reclaim.
6108 *
6109 * If a full scan of the inactive list fails to free enough memory then we
6110 * are "out of memory" and something needs to be killed.
6111 *
6112 * If the caller is !__GFP_FS then the probability of a failure is reasonably
6113 * high - the zone may be full of dirty or under-writeback pages, which this
5b0830cb
JA
6114 * caller can't do much about. We kick the writeback threads and take explicit
6115 * naps in the hope that some of these pages can be written. But if the
6116 * allocating task holds filesystem locks which prevent writeout this might not
6117 * work, and the allocation attempt will fail.
a41f24ea
NA
6118 *
6119 * returns: 0, if no pages reclaimed
6120 * else, the number of pages reclaimed
1da177e4 6121 */
dac1d27b 6122static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
3115cd91 6123 struct scan_control *sc)
1da177e4 6124{
241994ed 6125 int initial_priority = sc->priority;
2a2e4885
JW
6126 pg_data_t *last_pgdat;
6127 struct zoneref *z;
6128 struct zone *zone;
241994ed 6129retry:
873b4771
KK
6130 delayacct_freepages_start();
6131
b5ead35e 6132 if (!cgroup_reclaim(sc))
7cc30fcf 6133 __count_zid_vm_events(ALLOCSTALL, sc->reclaim_idx, 1);
1da177e4 6134
9e3b2f8c 6135 do {
73b73bac
YA
6136 if (!sc->proactive)
6137 vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
6138 sc->priority);
66e1707b 6139 sc->nr_scanned = 0;
0a0337e0 6140 shrink_zones(zonelist, sc);
c6a8a8c5 6141
bb21c7ce 6142 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
0b06496a
JW
6143 break;
6144
6145 if (sc->compaction_ready)
6146 break;
1da177e4 6147
0e50ce3b
MK
6148 /*
6149 * If we're getting trouble reclaiming, start doing
6150 * writepage even in laptop mode.
6151 */
6152 if (sc->priority < DEF_PRIORITY - 2)
6153 sc->may_writepage = 1;
0b06496a 6154 } while (--sc->priority >= 0);
bb21c7ce 6155
2a2e4885
JW
6156 last_pgdat = NULL;
6157 for_each_zone_zonelist_nodemask(zone, z, zonelist, sc->reclaim_idx,
6158 sc->nodemask) {
6159 if (zone->zone_pgdat == last_pgdat)
6160 continue;
6161 last_pgdat = zone->zone_pgdat;
1b05117d 6162
2a2e4885 6163 snapshot_refaults(sc->target_mem_cgroup, zone->zone_pgdat);
1b05117d
JW
6164
6165 if (cgroup_reclaim(sc)) {
6166 struct lruvec *lruvec;
6167
6168 lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup,
6169 zone->zone_pgdat);
1bc545bf 6170 clear_bit(LRUVEC_CGROUP_CONGESTED, &lruvec->flags);
1b05117d 6171 }
2a2e4885
JW
6172 }
6173
873b4771
KK
6174 delayacct_freepages_end();
6175
bb21c7ce
KM
6176 if (sc->nr_reclaimed)
6177 return sc->nr_reclaimed;
6178
0cee34fd 6179 /* Aborted reclaim to try compaction? don't OOM, then */
0b06496a 6180 if (sc->compaction_ready)
7335084d
MG
6181 return 1;
6182
b91ac374
JW
6183 /*
6184 * We make inactive:active ratio decisions based on the node's
6185 * composition of memory, but a restrictive reclaim_idx or a
6186 * memory.low cgroup setting can exempt large amounts of
6187 * memory from reclaim. Neither of which are very common, so
6188 * instead of doing costly eligibility calculations of the
6189 * entire cgroup subtree up front, we assume the estimates are
6190 * good, and retry with forcible deactivation if that fails.
6191 */
6192 if (sc->skipped_deactivate) {
6193 sc->priority = initial_priority;
6194 sc->force_deactivate = 1;
6195 sc->skipped_deactivate = 0;
6196 goto retry;
6197 }
6198
241994ed 6199 /* Untapped cgroup reserves? Don't OOM, retry. */
d6622f63 6200 if (sc->memcg_low_skipped) {
241994ed 6201 sc->priority = initial_priority;
b91ac374 6202 sc->force_deactivate = 0;
d6622f63
YX
6203 sc->memcg_low_reclaim = 1;
6204 sc->memcg_low_skipped = 0;
241994ed
JW
6205 goto retry;
6206 }
6207
bb21c7ce 6208 return 0;
1da177e4
LT
6209}
6210
c73322d0 6211static bool allow_direct_reclaim(pg_data_t *pgdat)
5515061d
MG
6212{
6213 struct zone *zone;
6214 unsigned long pfmemalloc_reserve = 0;
6215 unsigned long free_pages = 0;
6216 int i;
6217 bool wmark_ok;
6218
c73322d0
JW
6219 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
6220 return true;
6221
5515061d
MG
6222 for (i = 0; i <= ZONE_NORMAL; i++) {
6223 zone = &pgdat->node_zones[i];
d450abd8
JW
6224 if (!managed_zone(zone))
6225 continue;
6226
6227 if (!zone_reclaimable_pages(zone))
675becce
MG
6228 continue;
6229
5515061d 6230 pfmemalloc_reserve += min_wmark_pages(zone);
501b2651 6231 free_pages += zone_page_state_snapshot(zone, NR_FREE_PAGES);
5515061d
MG
6232 }
6233
675becce
MG
6234 /* If there are no reserves (unexpected config) then do not throttle */
6235 if (!pfmemalloc_reserve)
6236 return true;
6237
5515061d
MG
6238 wmark_ok = free_pages > pfmemalloc_reserve / 2;
6239
6240 /* kswapd must be awake if processes are being throttled */
6241 if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
97a225e6
JK
6242 if (READ_ONCE(pgdat->kswapd_highest_zoneidx) > ZONE_NORMAL)
6243 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, ZONE_NORMAL);
5644e1fb 6244
5515061d
MG
6245 wake_up_interruptible(&pgdat->kswapd_wait);
6246 }
6247
6248 return wmark_ok;
6249}
6250
6251/*
6252 * Throttle direct reclaimers if backing storage is backed by the network
6253 * and the PFMEMALLOC reserve for the preferred node is getting dangerously
6254 * depleted. kswapd will continue to make progress and wake the processes
50694c28
MG
6255 * when the low watermark is reached.
6256 *
6257 * Returns true if a fatal signal was delivered during throttling. If this
6258 * happens, the page allocator should not consider triggering the OOM killer.
5515061d 6259 */
50694c28 6260static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
5515061d
MG
6261 nodemask_t *nodemask)
6262{
675becce 6263 struct zoneref *z;
5515061d 6264 struct zone *zone;
675becce 6265 pg_data_t *pgdat = NULL;
5515061d
MG
6266
6267 /*
6268 * Kernel threads should not be throttled as they may be indirectly
6269 * responsible for cleaning pages necessary for reclaim to make forward
6270 * progress. kjournald for example may enter direct reclaim while
6271 * committing a transaction where throttling it could forcing other
6272 * processes to block on log_wait_commit().
6273 */
6274 if (current->flags & PF_KTHREAD)
50694c28
MG
6275 goto out;
6276
6277 /*
6278 * If a fatal signal is pending, this process should not throttle.
6279 * It should return quickly so it can exit and free its memory
6280 */
6281 if (fatal_signal_pending(current))
6282 goto out;
5515061d 6283
675becce
MG
6284 /*
6285 * Check if the pfmemalloc reserves are ok by finding the first node
6286 * with a usable ZONE_NORMAL or lower zone. The expectation is that
6287 * GFP_KERNEL will be required for allocating network buffers when
6288 * swapping over the network so ZONE_HIGHMEM is unusable.
6289 *
6290 * Throttling is based on the first usable node and throttled processes
6291 * wait on a queue until kswapd makes progress and wakes them. There
6292 * is an affinity then between processes waking up and where reclaim
6293 * progress has been made assuming the process wakes on the same node.
6294 * More importantly, processes running on remote nodes will not compete
6295 * for remote pfmemalloc reserves and processes on different nodes
6296 * should make reasonable progress.
6297 */
6298 for_each_zone_zonelist_nodemask(zone, z, zonelist,
17636faa 6299 gfp_zone(gfp_mask), nodemask) {
675becce
MG
6300 if (zone_idx(zone) > ZONE_NORMAL)
6301 continue;
6302
6303 /* Throttle based on the first usable node */
6304 pgdat = zone->zone_pgdat;
c73322d0 6305 if (allow_direct_reclaim(pgdat))
675becce
MG
6306 goto out;
6307 break;
6308 }
6309
6310 /* If no zone was usable by the allocation flags then do not throttle */
6311 if (!pgdat)
50694c28 6312 goto out;
5515061d 6313
68243e76
MG
6314 /* Account for the throttling */
6315 count_vm_event(PGSCAN_DIRECT_THROTTLE);
6316
5515061d
MG
6317 /*
6318 * If the caller cannot enter the filesystem, it's possible that it
6319 * is due to the caller holding an FS lock or performing a journal
6320 * transaction in the case of a filesystem like ext[3|4]. In this case,
6321 * it is not safe to block on pfmemalloc_wait as kswapd could be
6322 * blocked waiting on the same lock. Instead, throttle for up to a
6323 * second before continuing.
6324 */
2e786d9e 6325 if (!(gfp_mask & __GFP_FS))
5515061d 6326 wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
c73322d0 6327 allow_direct_reclaim(pgdat), HZ);
2e786d9e
ML
6328 else
6329 /* Throttle until kswapd wakes the process */
6330 wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
6331 allow_direct_reclaim(pgdat));
50694c28 6332
50694c28
MG
6333 if (fatal_signal_pending(current))
6334 return true;
6335
6336out:
6337 return false;
5515061d
MG
6338}
6339
dac1d27b 6340unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
327c0e96 6341 gfp_t gfp_mask, nodemask_t *nodemask)
66e1707b 6342{
33906bc5 6343 unsigned long nr_reclaimed;
66e1707b 6344 struct scan_control sc = {
ee814fe2 6345 .nr_to_reclaim = SWAP_CLUSTER_MAX,
f2f43e56 6346 .gfp_mask = current_gfp_context(gfp_mask),
b2e18757 6347 .reclaim_idx = gfp_zone(gfp_mask),
ee814fe2
JW
6348 .order = order,
6349 .nodemask = nodemask,
6350 .priority = DEF_PRIORITY,
66e1707b 6351 .may_writepage = !laptop_mode,
a6dc60f8 6352 .may_unmap = 1,
2e2e4259 6353 .may_swap = 1,
66e1707b
BS
6354 };
6355
bb451fdf
GT
6356 /*
6357 * scan_control uses s8 fields for order, priority, and reclaim_idx.
6358 * Confirm they are large enough for max values.
6359 */
23baf831 6360 BUILD_BUG_ON(MAX_ORDER >= S8_MAX);
bb451fdf
GT
6361 BUILD_BUG_ON(DEF_PRIORITY > S8_MAX);
6362 BUILD_BUG_ON(MAX_NR_ZONES > S8_MAX);
6363
5515061d 6364 /*
50694c28
MG
6365 * Do not enter reclaim if fatal signal was delivered while throttled.
6366 * 1 is returned so that the page allocator does not OOM kill at this
6367 * point.
5515061d 6368 */
f2f43e56 6369 if (throttle_direct_reclaim(sc.gfp_mask, zonelist, nodemask))
5515061d
MG
6370 return 1;
6371
1732d2b0 6372 set_task_reclaim_state(current, &sc.reclaim_state);
3481c37f 6373 trace_mm_vmscan_direct_reclaim_begin(order, sc.gfp_mask);
33906bc5 6374
3115cd91 6375 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
33906bc5
MG
6376
6377 trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
1732d2b0 6378 set_task_reclaim_state(current, NULL);
33906bc5
MG
6379
6380 return nr_reclaimed;
66e1707b
BS
6381}
6382
c255a458 6383#ifdef CONFIG_MEMCG
66e1707b 6384
d2e5fb92 6385/* Only used by soft limit reclaim. Do not reuse for anything else. */
a9dd0a83 6386unsigned long mem_cgroup_shrink_node(struct mem_cgroup *memcg,
4e416953 6387 gfp_t gfp_mask, bool noswap,
ef8f2327 6388 pg_data_t *pgdat,
0ae5e89c 6389 unsigned long *nr_scanned)
4e416953 6390{
afaf07a6 6391 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
4e416953 6392 struct scan_control sc = {
b8f5c566 6393 .nr_to_reclaim = SWAP_CLUSTER_MAX,
ee814fe2 6394 .target_mem_cgroup = memcg,
4e416953
BS
6395 .may_writepage = !laptop_mode,
6396 .may_unmap = 1,
b2e18757 6397 .reclaim_idx = MAX_NR_ZONES - 1,
4e416953 6398 .may_swap = !noswap,
4e416953 6399 };
0ae5e89c 6400
d2e5fb92
MH
6401 WARN_ON_ONCE(!current->reclaim_state);
6402
4e416953
BS
6403 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
6404 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
bdce6d9e 6405
9e3b2f8c 6406 trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
3481c37f 6407 sc.gfp_mask);
bdce6d9e 6408
4e416953
BS
6409 /*
6410 * NOTE: Although we can get the priority field, using it
6411 * here is not a good idea, since it limits the pages we can scan.
a9dd0a83 6412 * if we don't reclaim here, the shrink_node from balance_pgdat
4e416953
BS
6413 * will pick up pages from other mem cgroup's as well. We hack
6414 * the priority and make it zero.
6415 */
afaf07a6 6416 shrink_lruvec(lruvec, &sc);
bdce6d9e
KM
6417
6418 trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
6419
0ae5e89c 6420 *nr_scanned = sc.nr_scanned;
0308f7cf 6421
4e416953
BS
6422 return sc.nr_reclaimed;
6423}
6424
72835c86 6425unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
b70a2a21 6426 unsigned long nr_pages,
a7885eb8 6427 gfp_t gfp_mask,
55ab834a 6428 unsigned int reclaim_options)
66e1707b 6429{
bdce6d9e 6430 unsigned long nr_reclaimed;
499118e9 6431 unsigned int noreclaim_flag;
66e1707b 6432 struct scan_control sc = {
b70a2a21 6433 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
7dea19f9 6434 .gfp_mask = (current_gfp_context(gfp_mask) & GFP_RECLAIM_MASK) |
a09ed5e0 6435 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
b2e18757 6436 .reclaim_idx = MAX_NR_ZONES - 1,
ee814fe2
JW
6437 .target_mem_cgroup = memcg,
6438 .priority = DEF_PRIORITY,
6439 .may_writepage = !laptop_mode,
6440 .may_unmap = 1,
73b73bac
YA
6441 .may_swap = !!(reclaim_options & MEMCG_RECLAIM_MAY_SWAP),
6442 .proactive = !!(reclaim_options & MEMCG_RECLAIM_PROACTIVE),
a09ed5e0 6443 };
889976db 6444 /*
fa40d1ee
SB
6445 * Traverse the ZONELIST_FALLBACK zonelist of the current node to put
6446 * equal pressure on all the nodes. This is based on the assumption that
6447 * the reclaim does not bail out early.
889976db 6448 */
fa40d1ee 6449 struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
889976db 6450
fa40d1ee 6451 set_task_reclaim_state(current, &sc.reclaim_state);
3481c37f 6452 trace_mm_vmscan_memcg_reclaim_begin(0, sc.gfp_mask);
499118e9 6453 noreclaim_flag = memalloc_noreclaim_save();
eb414681 6454
3115cd91 6455 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
eb414681 6456
499118e9 6457 memalloc_noreclaim_restore(noreclaim_flag);
bdce6d9e 6458 trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
1732d2b0 6459 set_task_reclaim_state(current, NULL);
bdce6d9e
KM
6460
6461 return nr_reclaimed;
66e1707b
BS
6462}
6463#endif
6464
ac35a490 6465static void kswapd_age_node(struct pglist_data *pgdat, struct scan_control *sc)
f16015fb 6466{
b95a2f2d 6467 struct mem_cgroup *memcg;
b91ac374 6468 struct lruvec *lruvec;
f16015fb 6469
ac35a490
YZ
6470 if (lru_gen_enabled()) {
6471 lru_gen_age_node(pgdat, sc);
6472 return;
6473 }
6474
2f368a9f 6475 if (!can_age_anon_pages(pgdat, sc))
b95a2f2d
JW
6476 return;
6477
b91ac374
JW
6478 lruvec = mem_cgroup_lruvec(NULL, pgdat);
6479 if (!inactive_is_low(lruvec, LRU_INACTIVE_ANON))
6480 return;
6481
b95a2f2d
JW
6482 memcg = mem_cgroup_iter(NULL, NULL, NULL);
6483 do {
b91ac374
JW
6484 lruvec = mem_cgroup_lruvec(memcg, pgdat);
6485 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
6486 sc, LRU_ACTIVE_ANON);
b95a2f2d
JW
6487 memcg = mem_cgroup_iter(NULL, memcg, NULL);
6488 } while (memcg);
f16015fb
JW
6489}
6490
97a225e6 6491static bool pgdat_watermark_boosted(pg_data_t *pgdat, int highest_zoneidx)
1c30844d
MG
6492{
6493 int i;
6494 struct zone *zone;
6495
6496 /*
6497 * Check for watermark boosts top-down as the higher zones
6498 * are more likely to be boosted. Both watermarks and boosts
1eba09c1 6499 * should not be checked at the same time as reclaim would
1c30844d
MG
6500 * start prematurely when there is no boosting and a lower
6501 * zone is balanced.
6502 */
97a225e6 6503 for (i = highest_zoneidx; i >= 0; i--) {
1c30844d
MG
6504 zone = pgdat->node_zones + i;
6505 if (!managed_zone(zone))
6506 continue;
6507
6508 if (zone->watermark_boost)
6509 return true;
6510 }
6511
6512 return false;
6513}
6514
e716f2eb
MG
6515/*
6516 * Returns true if there is an eligible zone balanced for the request order
97a225e6 6517 * and highest_zoneidx
e716f2eb 6518 */
97a225e6 6519static bool pgdat_balanced(pg_data_t *pgdat, int order, int highest_zoneidx)
60cefed4 6520{
e716f2eb
MG
6521 int i;
6522 unsigned long mark = -1;
6523 struct zone *zone;
60cefed4 6524
1c30844d
MG
6525 /*
6526 * Check watermarks bottom-up as lower zones are more likely to
6527 * meet watermarks.
6528 */
97a225e6 6529 for (i = 0; i <= highest_zoneidx; i++) {
e716f2eb 6530 zone = pgdat->node_zones + i;
6256c6b4 6531
e716f2eb
MG
6532 if (!managed_zone(zone))
6533 continue;
6534
c574bbe9
HY
6535 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING)
6536 mark = wmark_pages(zone, WMARK_PROMO);
6537 else
6538 mark = high_wmark_pages(zone);
97a225e6 6539 if (zone_watermark_ok_safe(zone, order, mark, highest_zoneidx))
e716f2eb
MG
6540 return true;
6541 }
6542
6543 /*
36c26128 6544 * If a node has no managed zone within highest_zoneidx, it does not
e716f2eb
MG
6545 * need balancing by definition. This can happen if a zone-restricted
6546 * allocation tries to wake a remote kswapd.
6547 */
6548 if (mark == -1)
6549 return true;
6550
6551 return false;
60cefed4
JW
6552}
6553
631b6e08
MG
6554/* Clear pgdat state for congested, dirty or under writeback. */
6555static void clear_pgdat_congested(pg_data_t *pgdat)
6556{
1b05117d
JW
6557 struct lruvec *lruvec = mem_cgroup_lruvec(NULL, pgdat);
6558
1bc545bf
YA
6559 clear_bit(LRUVEC_NODE_CONGESTED, &lruvec->flags);
6560 clear_bit(LRUVEC_CGROUP_CONGESTED, &lruvec->flags);
631b6e08
MG
6561 clear_bit(PGDAT_DIRTY, &pgdat->flags);
6562 clear_bit(PGDAT_WRITEBACK, &pgdat->flags);
6563}
6564
5515061d
MG
6565/*
6566 * Prepare kswapd for sleeping. This verifies that there are no processes
6567 * waiting in throttle_direct_reclaim() and that watermarks have been met.
6568 *
6569 * Returns true if kswapd is ready to sleep
6570 */
97a225e6
JK
6571static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order,
6572 int highest_zoneidx)
f50de2d3 6573{
5515061d 6574 /*
9e5e3661 6575 * The throttled processes are normally woken up in balance_pgdat() as
c73322d0 6576 * soon as allow_direct_reclaim() is true. But there is a potential
9e5e3661
VB
6577 * race between when kswapd checks the watermarks and a process gets
6578 * throttled. There is also a potential race if processes get
6579 * throttled, kswapd wakes, a large process exits thereby balancing the
6580 * zones, which causes kswapd to exit balance_pgdat() before reaching
6581 * the wake up checks. If kswapd is going to sleep, no process should
6582 * be sleeping on pfmemalloc_wait, so wake them now if necessary. If
6583 * the wake up is premature, processes will wake kswapd and get
6584 * throttled again. The difference from wake ups in balance_pgdat() is
6585 * that here we are under prepare_to_wait().
5515061d 6586 */
9e5e3661
VB
6587 if (waitqueue_active(&pgdat->pfmemalloc_wait))
6588 wake_up_all(&pgdat->pfmemalloc_wait);
f50de2d3 6589
c73322d0
JW
6590 /* Hopeless node, leave it to direct reclaim */
6591 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
6592 return true;
6593
97a225e6 6594 if (pgdat_balanced(pgdat, order, highest_zoneidx)) {
e716f2eb
MG
6595 clear_pgdat_congested(pgdat);
6596 return true;
1d82de61
MG
6597 }
6598
333b0a45 6599 return false;
f50de2d3
MG
6600}
6601
75485363 6602/*
1d82de61
MG
6603 * kswapd shrinks a node of pages that are at or below the highest usable
6604 * zone that is currently unbalanced.
b8e83b94
MG
6605 *
6606 * Returns true if kswapd scanned at least the requested number of pages to
283aba9f
MG
6607 * reclaim or if the lack of progress was due to pages under writeback.
6608 * This is used to determine if the scanning priority needs to be raised.
75485363 6609 */
1d82de61 6610static bool kswapd_shrink_node(pg_data_t *pgdat,
accf6242 6611 struct scan_control *sc)
75485363 6612{
1d82de61
MG
6613 struct zone *zone;
6614 int z;
75485363 6615
1d82de61
MG
6616 /* Reclaim a number of pages proportional to the number of zones */
6617 sc->nr_to_reclaim = 0;
970a39a3 6618 for (z = 0; z <= sc->reclaim_idx; z++) {
1d82de61 6619 zone = pgdat->node_zones + z;
6aa303de 6620 if (!managed_zone(zone))
1d82de61 6621 continue;
7c954f6d 6622
1d82de61
MG
6623 sc->nr_to_reclaim += max(high_wmark_pages(zone), SWAP_CLUSTER_MAX);
6624 }
7c954f6d
MG
6625
6626 /*
1d82de61
MG
6627 * Historically care was taken to put equal pressure on all zones but
6628 * now pressure is applied based on node LRU order.
7c954f6d 6629 */
970a39a3 6630 shrink_node(pgdat, sc);
283aba9f 6631
7c954f6d 6632 /*
1d82de61
MG
6633 * Fragmentation may mean that the system cannot be rebalanced for
6634 * high-order allocations. If twice the allocation size has been
6635 * reclaimed then recheck watermarks only at order-0 to prevent
6636 * excessive reclaim. Assume that a process requested a high-order
6637 * can direct reclaim/compact.
7c954f6d 6638 */
9861a62c 6639 if (sc->order && sc->nr_reclaimed >= compact_gap(sc->order))
1d82de61 6640 sc->order = 0;
7c954f6d 6641
b8e83b94 6642 return sc->nr_scanned >= sc->nr_to_reclaim;
75485363
MG
6643}
6644
c49c2c47
MG
6645/* Page allocator PCP high watermark is lowered if reclaim is active. */
6646static inline void
6647update_reclaim_active(pg_data_t *pgdat, int highest_zoneidx, bool active)
6648{
6649 int i;
6650 struct zone *zone;
6651
6652 for (i = 0; i <= highest_zoneidx; i++) {
6653 zone = pgdat->node_zones + i;
6654
6655 if (!managed_zone(zone))
6656 continue;
6657
6658 if (active)
6659 set_bit(ZONE_RECLAIM_ACTIVE, &zone->flags);
6660 else
6661 clear_bit(ZONE_RECLAIM_ACTIVE, &zone->flags);
6662 }
6663}
6664
6665static inline void
6666set_reclaim_active(pg_data_t *pgdat, int highest_zoneidx)
6667{
6668 update_reclaim_active(pgdat, highest_zoneidx, true);
6669}
6670
6671static inline void
6672clear_reclaim_active(pg_data_t *pgdat, int highest_zoneidx)
6673{
6674 update_reclaim_active(pgdat, highest_zoneidx, false);
6675}
6676
1da177e4 6677/*
1d82de61
MG
6678 * For kswapd, balance_pgdat() will reclaim pages across a node from zones
6679 * that are eligible for use by the caller until at least one zone is
6680 * balanced.
1da177e4 6681 *
1d82de61 6682 * Returns the order kswapd finished reclaiming at.
1da177e4
LT
6683 *
6684 * kswapd scans the zones in the highmem->normal->dma direction. It skips
41858966 6685 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
8bb4e7a2 6686 * found to have free_pages <= high_wmark_pages(zone), any page in that zone
1d82de61
MG
6687 * or lower is eligible for reclaim until at least one usable zone is
6688 * balanced.
1da177e4 6689 */
97a225e6 6690static int balance_pgdat(pg_data_t *pgdat, int order, int highest_zoneidx)
1da177e4 6691{
1da177e4 6692 int i;
0608f43d
AM
6693 unsigned long nr_soft_reclaimed;
6694 unsigned long nr_soft_scanned;
eb414681 6695 unsigned long pflags;
1c30844d
MG
6696 unsigned long nr_boost_reclaim;
6697 unsigned long zone_boosts[MAX_NR_ZONES] = { 0, };
6698 bool boosted;
1d82de61 6699 struct zone *zone;
179e9639
AM
6700 struct scan_control sc = {
6701 .gfp_mask = GFP_KERNEL,
ee814fe2 6702 .order = order,
a6dc60f8 6703 .may_unmap = 1,
179e9639 6704 };
93781325 6705
1732d2b0 6706 set_task_reclaim_state(current, &sc.reclaim_state);
eb414681 6707 psi_memstall_enter(&pflags);
4f3eaf45 6708 __fs_reclaim_acquire(_THIS_IP_);
93781325 6709
f8891e5e 6710 count_vm_event(PAGEOUTRUN);
1da177e4 6711
1c30844d
MG
6712 /*
6713 * Account for the reclaim boost. Note that the zone boost is left in
6714 * place so that parallel allocations that are near the watermark will
6715 * stall or direct reclaim until kswapd is finished.
6716 */
6717 nr_boost_reclaim = 0;
97a225e6 6718 for (i = 0; i <= highest_zoneidx; i++) {
1c30844d
MG
6719 zone = pgdat->node_zones + i;
6720 if (!managed_zone(zone))
6721 continue;
6722
6723 nr_boost_reclaim += zone->watermark_boost;
6724 zone_boosts[i] = zone->watermark_boost;
6725 }
6726 boosted = nr_boost_reclaim;
6727
6728restart:
c49c2c47 6729 set_reclaim_active(pgdat, highest_zoneidx);
1c30844d 6730 sc.priority = DEF_PRIORITY;
9e3b2f8c 6731 do {
c73322d0 6732 unsigned long nr_reclaimed = sc.nr_reclaimed;
b8e83b94 6733 bool raise_priority = true;
1c30844d 6734 bool balanced;
93781325 6735 bool ret;
b8e83b94 6736
97a225e6 6737 sc.reclaim_idx = highest_zoneidx;
1da177e4 6738
86c79f6b 6739 /*
84c7a777
MG
6740 * If the number of buffer_heads exceeds the maximum allowed
6741 * then consider reclaiming from all zones. This has a dual
6742 * purpose -- on 64-bit systems it is expected that
6743 * buffer_heads are stripped during active rotation. On 32-bit
6744 * systems, highmem pages can pin lowmem memory and shrinking
6745 * buffers can relieve lowmem pressure. Reclaim may still not
6746 * go ahead if all eligible zones for the original allocation
6747 * request are balanced to avoid excessive reclaim from kswapd.
86c79f6b
MG
6748 */
6749 if (buffer_heads_over_limit) {
6750 for (i = MAX_NR_ZONES - 1; i >= 0; i--) {
6751 zone = pgdat->node_zones + i;
6aa303de 6752 if (!managed_zone(zone))
86c79f6b 6753 continue;
cc715d99 6754
970a39a3 6755 sc.reclaim_idx = i;
e1dbeda6 6756 break;
1da177e4 6757 }
1da177e4 6758 }
dafcb73e 6759
86c79f6b 6760 /*
1c30844d
MG
6761 * If the pgdat is imbalanced then ignore boosting and preserve
6762 * the watermarks for a later time and restart. Note that the
6763 * zone watermarks will be still reset at the end of balancing
6764 * on the grounds that the normal reclaim should be enough to
6765 * re-evaluate if boosting is required when kswapd next wakes.
6766 */
97a225e6 6767 balanced = pgdat_balanced(pgdat, sc.order, highest_zoneidx);
1c30844d
MG
6768 if (!balanced && nr_boost_reclaim) {
6769 nr_boost_reclaim = 0;
6770 goto restart;
6771 }
6772
6773 /*
6774 * If boosting is not active then only reclaim if there are no
6775 * eligible zones. Note that sc.reclaim_idx is not used as
6776 * buffer_heads_over_limit may have adjusted it.
86c79f6b 6777 */
1c30844d 6778 if (!nr_boost_reclaim && balanced)
e716f2eb 6779 goto out;
e1dbeda6 6780
1c30844d
MG
6781 /* Limit the priority of boosting to avoid reclaim writeback */
6782 if (nr_boost_reclaim && sc.priority == DEF_PRIORITY - 2)
6783 raise_priority = false;
6784
6785 /*
6786 * Do not writeback or swap pages for boosted reclaim. The
6787 * intent is to relieve pressure not issue sub-optimal IO
6788 * from reclaim context. If no pages are reclaimed, the
6789 * reclaim will be aborted.
6790 */
6791 sc.may_writepage = !laptop_mode && !nr_boost_reclaim;
6792 sc.may_swap = !nr_boost_reclaim;
1c30844d 6793
1d82de61 6794 /*
ac35a490
YZ
6795 * Do some background aging, to give pages a chance to be
6796 * referenced before reclaiming. All pages are rotated
6797 * regardless of classzone as this is about consistent aging.
1d82de61 6798 */
ac35a490 6799 kswapd_age_node(pgdat, &sc);
1d82de61 6800
b7ea3c41
MG
6801 /*
6802 * If we're getting trouble reclaiming, start doing writepage
6803 * even in laptop mode.
6804 */
047d72c3 6805 if (sc.priority < DEF_PRIORITY - 2)
b7ea3c41
MG
6806 sc.may_writepage = 1;
6807
1d82de61
MG
6808 /* Call soft limit reclaim before calling shrink_node. */
6809 sc.nr_scanned = 0;
6810 nr_soft_scanned = 0;
ef8f2327 6811 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(pgdat, sc.order,
1d82de61
MG
6812 sc.gfp_mask, &nr_soft_scanned);
6813 sc.nr_reclaimed += nr_soft_reclaimed;
6814
1da177e4 6815 /*
1d82de61
MG
6816 * There should be no need to raise the scanning priority if
6817 * enough pages are already being scanned that that high
6818 * watermark would be met at 100% efficiency.
1da177e4 6819 */
970a39a3 6820 if (kswapd_shrink_node(pgdat, &sc))
1d82de61 6821 raise_priority = false;
5515061d
MG
6822
6823 /*
6824 * If the low watermark is met there is no need for processes
6825 * to be throttled on pfmemalloc_wait as they should not be
6826 * able to safely make forward progress. Wake them
6827 */
6828 if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
c73322d0 6829 allow_direct_reclaim(pgdat))
cfc51155 6830 wake_up_all(&pgdat->pfmemalloc_wait);
5515061d 6831
b8e83b94 6832 /* Check if kswapd should be suspending */
4f3eaf45 6833 __fs_reclaim_release(_THIS_IP_);
93781325 6834 ret = try_to_freeze();
4f3eaf45 6835 __fs_reclaim_acquire(_THIS_IP_);
93781325 6836 if (ret || kthread_should_stop())
b8e83b94 6837 break;
8357376d 6838
73ce02e9 6839 /*
b8e83b94
MG
6840 * Raise priority if scanning rate is too low or there was no
6841 * progress in reclaiming pages
73ce02e9 6842 */
c73322d0 6843 nr_reclaimed = sc.nr_reclaimed - nr_reclaimed;
1c30844d
MG
6844 nr_boost_reclaim -= min(nr_boost_reclaim, nr_reclaimed);
6845
6846 /*
6847 * If reclaim made no progress for a boost, stop reclaim as
6848 * IO cannot be queued and it could be an infinite loop in
6849 * extreme circumstances.
6850 */
6851 if (nr_boost_reclaim && !nr_reclaimed)
6852 break;
6853
c73322d0 6854 if (raise_priority || !nr_reclaimed)
b8e83b94 6855 sc.priority--;
1d82de61 6856 } while (sc.priority >= 1);
1da177e4 6857
c73322d0
JW
6858 if (!sc.nr_reclaimed)
6859 pgdat->kswapd_failures++;
6860
b8e83b94 6861out:
c49c2c47
MG
6862 clear_reclaim_active(pgdat, highest_zoneidx);
6863
1c30844d
MG
6864 /* If reclaim was boosted, account for the reclaim done in this pass */
6865 if (boosted) {
6866 unsigned long flags;
6867
97a225e6 6868 for (i = 0; i <= highest_zoneidx; i++) {
1c30844d
MG
6869 if (!zone_boosts[i])
6870 continue;
6871
6872 /* Increments are under the zone lock */
6873 zone = pgdat->node_zones + i;
6874 spin_lock_irqsave(&zone->lock, flags);
6875 zone->watermark_boost -= min(zone->watermark_boost, zone_boosts[i]);
6876 spin_unlock_irqrestore(&zone->lock, flags);
6877 }
6878
6879 /*
6880 * As there is now likely space, wakeup kcompact to defragment
6881 * pageblocks.
6882 */
97a225e6 6883 wakeup_kcompactd(pgdat, pageblock_order, highest_zoneidx);
1c30844d
MG
6884 }
6885
2a2e4885 6886 snapshot_refaults(NULL, pgdat);
4f3eaf45 6887 __fs_reclaim_release(_THIS_IP_);
eb414681 6888 psi_memstall_leave(&pflags);
1732d2b0 6889 set_task_reclaim_state(current, NULL);
e5ca8071 6890
0abdee2b 6891 /*
1d82de61
MG
6892 * Return the order kswapd stopped reclaiming at as
6893 * prepare_kswapd_sleep() takes it into account. If another caller
6894 * entered the allocator slow path while kswapd was awake, order will
6895 * remain at the higher level.
0abdee2b 6896 */
1d82de61 6897 return sc.order;
1da177e4
LT
6898}
6899
e716f2eb 6900/*
97a225e6
JK
6901 * The pgdat->kswapd_highest_zoneidx is used to pass the highest zone index to
6902 * be reclaimed by kswapd from the waker. If the value is MAX_NR_ZONES which is
6903 * not a valid index then either kswapd runs for first time or kswapd couldn't
6904 * sleep after previous reclaim attempt (node is still unbalanced). In that
6905 * case return the zone index of the previous kswapd reclaim cycle.
e716f2eb 6906 */
97a225e6
JK
6907static enum zone_type kswapd_highest_zoneidx(pg_data_t *pgdat,
6908 enum zone_type prev_highest_zoneidx)
e716f2eb 6909{
97a225e6 6910 enum zone_type curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
5644e1fb 6911
97a225e6 6912 return curr_idx == MAX_NR_ZONES ? prev_highest_zoneidx : curr_idx;
e716f2eb
MG
6913}
6914
38087d9b 6915static void kswapd_try_to_sleep(pg_data_t *pgdat, int alloc_order, int reclaim_order,
97a225e6 6916 unsigned int highest_zoneidx)
f0bc0a60
KM
6917{
6918 long remaining = 0;
6919 DEFINE_WAIT(wait);
6920
6921 if (freezing(current) || kthread_should_stop())
6922 return;
6923
6924 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
6925
333b0a45
SG
6926 /*
6927 * Try to sleep for a short interval. Note that kcompactd will only be
6928 * woken if it is possible to sleep for a short interval. This is
6929 * deliberate on the assumption that if reclaim cannot keep an
6930 * eligible zone balanced that it's also unlikely that compaction will
6931 * succeed.
6932 */
97a225e6 6933 if (prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
fd901c95
VB
6934 /*
6935 * Compaction records what page blocks it recently failed to
6936 * isolate pages from and skips them in the future scanning.
6937 * When kswapd is going to sleep, it is reasonable to assume
6938 * that pages and compaction may succeed so reset the cache.
6939 */
6940 reset_isolation_suitable(pgdat);
6941
6942 /*
6943 * We have freed the memory, now we should compact it to make
6944 * allocation of the requested order possible.
6945 */
97a225e6 6946 wakeup_kcompactd(pgdat, alloc_order, highest_zoneidx);
fd901c95 6947
f0bc0a60 6948 remaining = schedule_timeout(HZ/10);
38087d9b
MG
6949
6950 /*
97a225e6 6951 * If woken prematurely then reset kswapd_highest_zoneidx and
38087d9b
MG
6952 * order. The values will either be from a wakeup request or
6953 * the previous request that slept prematurely.
6954 */
6955 if (remaining) {
97a225e6
JK
6956 WRITE_ONCE(pgdat->kswapd_highest_zoneidx,
6957 kswapd_highest_zoneidx(pgdat,
6958 highest_zoneidx));
5644e1fb
QC
6959
6960 if (READ_ONCE(pgdat->kswapd_order) < reclaim_order)
6961 WRITE_ONCE(pgdat->kswapd_order, reclaim_order);
38087d9b
MG
6962 }
6963
f0bc0a60
KM
6964 finish_wait(&pgdat->kswapd_wait, &wait);
6965 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
6966 }
6967
6968 /*
6969 * After a short sleep, check if it was a premature sleep. If not, then
6970 * go fully to sleep until explicitly woken up.
6971 */
d9f21d42 6972 if (!remaining &&
97a225e6 6973 prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
f0bc0a60
KM
6974 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
6975
6976 /*
6977 * vmstat counters are not perfectly accurate and the estimated
6978 * value for counters such as NR_FREE_PAGES can deviate from the
6979 * true value by nr_online_cpus * threshold. To avoid the zone
6980 * watermarks being breached while under pressure, we reduce the
6981 * per-cpu vmstat threshold while kswapd is awake and restore
6982 * them before going back to sleep.
6983 */
6984 set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
1c7e7f6c
AK
6985
6986 if (!kthread_should_stop())
6987 schedule();
6988
f0bc0a60
KM
6989 set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
6990 } else {
6991 if (remaining)
6992 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
6993 else
6994 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
6995 }
6996 finish_wait(&pgdat->kswapd_wait, &wait);
6997}
6998
1da177e4
LT
6999/*
7000 * The background pageout daemon, started as a kernel thread
4f98a2fe 7001 * from the init process.
1da177e4
LT
7002 *
7003 * This basically trickles out pages so that we have _some_
7004 * free memory available even if there is no other activity
7005 * that frees anything up. This is needed for things like routing
7006 * etc, where we otherwise might have all activity going on in
7007 * asynchronous contexts that cannot page things out.
7008 *
7009 * If there are applications that are active memory-allocators
7010 * (most normal use), this basically shouldn't matter.
7011 */
7012static int kswapd(void *p)
7013{
e716f2eb 7014 unsigned int alloc_order, reclaim_order;
97a225e6 7015 unsigned int highest_zoneidx = MAX_NR_ZONES - 1;
68d68ff6 7016 pg_data_t *pgdat = (pg_data_t *)p;
1da177e4 7017 struct task_struct *tsk = current;
a70f7302 7018 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
1da177e4 7019
174596a0 7020 if (!cpumask_empty(cpumask))
c5f59f08 7021 set_cpus_allowed_ptr(tsk, cpumask);
1da177e4
LT
7022
7023 /*
7024 * Tell the memory management that we're a "memory allocator",
7025 * and that if we need more memory we should get access to it
7026 * regardless (see "__alloc_pages()"). "kswapd" should
7027 * never get caught in the normal page freeing logic.
7028 *
7029 * (Kswapd normally doesn't need memory anyway, but sometimes
7030 * you need a small amount of memory in order to be able to
7031 * page out something else, and this flag essentially protects
7032 * us from recursively trying to free more memory as we're
7033 * trying to free the first piece of memory in the first place).
7034 */
b698f0a1 7035 tsk->flags |= PF_MEMALLOC | PF_KSWAPD;
83144186 7036 set_freezable();
1da177e4 7037
5644e1fb 7038 WRITE_ONCE(pgdat->kswapd_order, 0);
97a225e6 7039 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
8cd7c588 7040 atomic_set(&pgdat->nr_writeback_throttled, 0);
1da177e4 7041 for ( ; ; ) {
6f6313d4 7042 bool ret;
3e1d1d28 7043
5644e1fb 7044 alloc_order = reclaim_order = READ_ONCE(pgdat->kswapd_order);
97a225e6
JK
7045 highest_zoneidx = kswapd_highest_zoneidx(pgdat,
7046 highest_zoneidx);
e716f2eb 7047
38087d9b
MG
7048kswapd_try_sleep:
7049 kswapd_try_to_sleep(pgdat, alloc_order, reclaim_order,
97a225e6 7050 highest_zoneidx);
215ddd66 7051
97a225e6 7052 /* Read the new order and highest_zoneidx */
2b47a24c 7053 alloc_order = READ_ONCE(pgdat->kswapd_order);
97a225e6
JK
7054 highest_zoneidx = kswapd_highest_zoneidx(pgdat,
7055 highest_zoneidx);
5644e1fb 7056 WRITE_ONCE(pgdat->kswapd_order, 0);
97a225e6 7057 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
1da177e4 7058
8fe23e05
DR
7059 ret = try_to_freeze();
7060 if (kthread_should_stop())
7061 break;
7062
7063 /*
7064 * We can speed up thawing tasks if we don't call balance_pgdat
7065 * after returning from the refrigerator
7066 */
38087d9b
MG
7067 if (ret)
7068 continue;
7069
7070 /*
7071 * Reclaim begins at the requested order but if a high-order
7072 * reclaim fails then kswapd falls back to reclaiming for
7073 * order-0. If that happens, kswapd will consider sleeping
7074 * for the order it finished reclaiming at (reclaim_order)
7075 * but kcompactd is woken to compact for the original
7076 * request (alloc_order).
7077 */
97a225e6 7078 trace_mm_vmscan_kswapd_wake(pgdat->node_id, highest_zoneidx,
e5146b12 7079 alloc_order);
97a225e6
JK
7080 reclaim_order = balance_pgdat(pgdat, alloc_order,
7081 highest_zoneidx);
38087d9b
MG
7082 if (reclaim_order < alloc_order)
7083 goto kswapd_try_sleep;
1da177e4 7084 }
b0a8cc58 7085
b698f0a1 7086 tsk->flags &= ~(PF_MEMALLOC | PF_KSWAPD);
71abdc15 7087
1da177e4
LT
7088 return 0;
7089}
7090
7091/*
5ecd9d40
DR
7092 * A zone is low on free memory or too fragmented for high-order memory. If
7093 * kswapd should reclaim (direct reclaim is deferred), wake it up for the zone's
7094 * pgdat. It will wake up kcompactd after reclaiming memory. If kswapd reclaim
7095 * has failed or is not needed, still wake up kcompactd if only compaction is
7096 * needed.
1da177e4 7097 */
5ecd9d40 7098void wakeup_kswapd(struct zone *zone, gfp_t gfp_flags, int order,
97a225e6 7099 enum zone_type highest_zoneidx)
1da177e4
LT
7100{
7101 pg_data_t *pgdat;
5644e1fb 7102 enum zone_type curr_idx;
1da177e4 7103
6aa303de 7104 if (!managed_zone(zone))
1da177e4
LT
7105 return;
7106
5ecd9d40 7107 if (!cpuset_zone_allowed(zone, gfp_flags))
1da177e4 7108 return;
5644e1fb 7109
88f5acf8 7110 pgdat = zone->zone_pgdat;
97a225e6 7111 curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
5644e1fb 7112
97a225e6
JK
7113 if (curr_idx == MAX_NR_ZONES || curr_idx < highest_zoneidx)
7114 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, highest_zoneidx);
5644e1fb
QC
7115
7116 if (READ_ONCE(pgdat->kswapd_order) < order)
7117 WRITE_ONCE(pgdat->kswapd_order, order);
dffcac2c 7118
8d0986e2 7119 if (!waitqueue_active(&pgdat->kswapd_wait))
1da177e4 7120 return;
e1a55637 7121
5ecd9d40
DR
7122 /* Hopeless node, leave it to direct reclaim if possible */
7123 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES ||
97a225e6
JK
7124 (pgdat_balanced(pgdat, order, highest_zoneidx) &&
7125 !pgdat_watermark_boosted(pgdat, highest_zoneidx))) {
5ecd9d40
DR
7126 /*
7127 * There may be plenty of free memory available, but it's too
7128 * fragmented for high-order allocations. Wake up kcompactd
7129 * and rely on compaction_suitable() to determine if it's
7130 * needed. If it fails, it will defer subsequent attempts to
7131 * ratelimit its work.
7132 */
7133 if (!(gfp_flags & __GFP_DIRECT_RECLAIM))
97a225e6 7134 wakeup_kcompactd(pgdat, order, highest_zoneidx);
e716f2eb 7135 return;
5ecd9d40 7136 }
88f5acf8 7137
97a225e6 7138 trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, highest_zoneidx, order,
5ecd9d40 7139 gfp_flags);
8d0986e2 7140 wake_up_interruptible(&pgdat->kswapd_wait);
1da177e4
LT
7141}
7142
c6f37f12 7143#ifdef CONFIG_HIBERNATION
1da177e4 7144/*
7b51755c 7145 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
d6277db4
RW
7146 * freed pages.
7147 *
7148 * Rather than trying to age LRUs the aim is to preserve the overall
7149 * LRU order by reclaiming preferentially
7150 * inactive > active > active referenced > active mapped
1da177e4 7151 */
7b51755c 7152unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
1da177e4 7153{
d6277db4 7154 struct scan_control sc = {
ee814fe2 7155 .nr_to_reclaim = nr_to_reclaim,
7b51755c 7156 .gfp_mask = GFP_HIGHUSER_MOVABLE,
b2e18757 7157 .reclaim_idx = MAX_NR_ZONES - 1,
ee814fe2 7158 .priority = DEF_PRIORITY,
d6277db4 7159 .may_writepage = 1,
ee814fe2
JW
7160 .may_unmap = 1,
7161 .may_swap = 1,
7b51755c 7162 .hibernation_mode = 1,
1da177e4 7163 };
a09ed5e0 7164 struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
7b51755c 7165 unsigned long nr_reclaimed;
499118e9 7166 unsigned int noreclaim_flag;
1da177e4 7167
d92a8cfc 7168 fs_reclaim_acquire(sc.gfp_mask);
93781325 7169 noreclaim_flag = memalloc_noreclaim_save();
1732d2b0 7170 set_task_reclaim_state(current, &sc.reclaim_state);
d6277db4 7171
3115cd91 7172 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
d979677c 7173
1732d2b0 7174 set_task_reclaim_state(current, NULL);
499118e9 7175 memalloc_noreclaim_restore(noreclaim_flag);
93781325 7176 fs_reclaim_release(sc.gfp_mask);
d6277db4 7177
7b51755c 7178 return nr_reclaimed;
1da177e4 7179}
c6f37f12 7180#endif /* CONFIG_HIBERNATION */
1da177e4 7181
3218ae14
YG
7182/*
7183 * This kswapd start function will be called by init and node-hot-add.
3218ae14 7184 */
e5797dc0 7185void __meminit kswapd_run(int nid)
3218ae14
YG
7186{
7187 pg_data_t *pgdat = NODE_DATA(nid);
3218ae14 7188
b4a0215e
KW
7189 pgdat_kswapd_lock(pgdat);
7190 if (!pgdat->kswapd) {
7191 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
7192 if (IS_ERR(pgdat->kswapd)) {
7193 /* failure at boot is fatal */
037dd8f9
AC
7194 pr_err("Failed to start kswapd on node %d,ret=%ld\n",
7195 nid, PTR_ERR(pgdat->kswapd));
b4a0215e 7196 BUG_ON(system_state < SYSTEM_RUNNING);
b4a0215e
KW
7197 pgdat->kswapd = NULL;
7198 }
3218ae14 7199 }
b4a0215e 7200 pgdat_kswapd_unlock(pgdat);
3218ae14
YG
7201}
7202
8fe23e05 7203/*
d8adde17 7204 * Called by memory hotplug when all memory in a node is offlined. Caller must
e8da368a 7205 * be holding mem_hotplug_begin/done().
8fe23e05 7206 */
e5797dc0 7207void __meminit kswapd_stop(int nid)
8fe23e05 7208{
b4a0215e
KW
7209 pg_data_t *pgdat = NODE_DATA(nid);
7210 struct task_struct *kswapd;
8fe23e05 7211
b4a0215e
KW
7212 pgdat_kswapd_lock(pgdat);
7213 kswapd = pgdat->kswapd;
d8adde17 7214 if (kswapd) {
8fe23e05 7215 kthread_stop(kswapd);
b4a0215e 7216 pgdat->kswapd = NULL;
d8adde17 7217 }
b4a0215e 7218 pgdat_kswapd_unlock(pgdat);
8fe23e05
DR
7219}
7220
1da177e4
LT
7221static int __init kswapd_init(void)
7222{
6b700b5b 7223 int nid;
69e05944 7224
1da177e4 7225 swap_setup();
48fb2e24 7226 for_each_node_state(nid, N_MEMORY)
3218ae14 7227 kswapd_run(nid);
1da177e4
LT
7228 return 0;
7229}
7230
7231module_init(kswapd_init)
9eeff239
CL
7232
7233#ifdef CONFIG_NUMA
7234/*
a5f5f91d 7235 * Node reclaim mode
9eeff239 7236 *
a5f5f91d 7237 * If non-zero call node_reclaim when the number of free pages falls below
9eeff239 7238 * the watermarks.
9eeff239 7239 */
a5f5f91d 7240int node_reclaim_mode __read_mostly;
9eeff239 7241
a92f7126 7242/*
a5f5f91d 7243 * Priority for NODE_RECLAIM. This determines the fraction of pages
a92f7126
CL
7244 * of a node considered for each zone_reclaim. 4 scans 1/16th of
7245 * a zone.
7246 */
a5f5f91d 7247#define NODE_RECLAIM_PRIORITY 4
a92f7126 7248
9614634f 7249/*
a5f5f91d 7250 * Percentage of pages in a zone that must be unmapped for node_reclaim to
9614634f
CL
7251 * occur.
7252 */
7253int sysctl_min_unmapped_ratio = 1;
7254
0ff38490
CL
7255/*
7256 * If the number of slab pages in a zone grows beyond this percentage then
7257 * slab reclaim needs to occur.
7258 */
7259int sysctl_min_slab_ratio = 5;
7260
11fb9989 7261static inline unsigned long node_unmapped_file_pages(struct pglist_data *pgdat)
90afa5de 7262{
11fb9989
MG
7263 unsigned long file_mapped = node_page_state(pgdat, NR_FILE_MAPPED);
7264 unsigned long file_lru = node_page_state(pgdat, NR_INACTIVE_FILE) +
7265 node_page_state(pgdat, NR_ACTIVE_FILE);
90afa5de
MG
7266
7267 /*
7268 * It's possible for there to be more file mapped pages than
7269 * accounted for by the pages on the file LRU lists because
7270 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
7271 */
7272 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
7273}
7274
7275/* Work out how many page cache pages we can reclaim in this reclaim_mode */
a5f5f91d 7276static unsigned long node_pagecache_reclaimable(struct pglist_data *pgdat)
90afa5de 7277{
d031a157
AM
7278 unsigned long nr_pagecache_reclaimable;
7279 unsigned long delta = 0;
90afa5de
MG
7280
7281 /*
95bbc0c7 7282 * If RECLAIM_UNMAP is set, then all file pages are considered
90afa5de 7283 * potentially reclaimable. Otherwise, we have to worry about
11fb9989 7284 * pages like swapcache and node_unmapped_file_pages() provides
90afa5de
MG
7285 * a better estimate
7286 */
a5f5f91d
MG
7287 if (node_reclaim_mode & RECLAIM_UNMAP)
7288 nr_pagecache_reclaimable = node_page_state(pgdat, NR_FILE_PAGES);
90afa5de 7289 else
a5f5f91d 7290 nr_pagecache_reclaimable = node_unmapped_file_pages(pgdat);
90afa5de
MG
7291
7292 /* If we can't clean pages, remove dirty pages from consideration */
a5f5f91d
MG
7293 if (!(node_reclaim_mode & RECLAIM_WRITE))
7294 delta += node_page_state(pgdat, NR_FILE_DIRTY);
90afa5de
MG
7295
7296 /* Watch for any possible underflows due to delta */
7297 if (unlikely(delta > nr_pagecache_reclaimable))
7298 delta = nr_pagecache_reclaimable;
7299
7300 return nr_pagecache_reclaimable - delta;
7301}
7302
9eeff239 7303/*
a5f5f91d 7304 * Try to free up some pages from this node through reclaim.
9eeff239 7305 */
a5f5f91d 7306static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
9eeff239 7307{
7fb2d46d 7308 /* Minimum pages needed in order to stay on node */
69e05944 7309 const unsigned long nr_pages = 1 << order;
9eeff239 7310 struct task_struct *p = current;
499118e9 7311 unsigned int noreclaim_flag;
179e9639 7312 struct scan_control sc = {
62b726c1 7313 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
f2f43e56 7314 .gfp_mask = current_gfp_context(gfp_mask),
bd2f6199 7315 .order = order,
a5f5f91d
MG
7316 .priority = NODE_RECLAIM_PRIORITY,
7317 .may_writepage = !!(node_reclaim_mode & RECLAIM_WRITE),
7318 .may_unmap = !!(node_reclaim_mode & RECLAIM_UNMAP),
ee814fe2 7319 .may_swap = 1,
f2f43e56 7320 .reclaim_idx = gfp_zone(gfp_mask),
179e9639 7321 };
57f29762 7322 unsigned long pflags;
9eeff239 7323
132bb8cf
YS
7324 trace_mm_vmscan_node_reclaim_begin(pgdat->node_id, order,
7325 sc.gfp_mask);
7326
9eeff239 7327 cond_resched();
57f29762 7328 psi_memstall_enter(&pflags);
76a0fb4f 7329 delayacct_freepages_start();
93781325 7330 fs_reclaim_acquire(sc.gfp_mask);
d4f7796e 7331 /*
95bbc0c7 7332 * We need to be able to allocate from the reserves for RECLAIM_UNMAP
d4f7796e 7333 */
499118e9 7334 noreclaim_flag = memalloc_noreclaim_save();
1732d2b0 7335 set_task_reclaim_state(p, &sc.reclaim_state);
c84db23c 7336
d8ff6fde
ML
7337 if (node_pagecache_reclaimable(pgdat) > pgdat->min_unmapped_pages ||
7338 node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B) > pgdat->min_slab_pages) {
0ff38490 7339 /*
894befec 7340 * Free memory by calling shrink node with increasing
0ff38490
CL
7341 * priorities until we have enough memory freed.
7342 */
0ff38490 7343 do {
970a39a3 7344 shrink_node(pgdat, &sc);
9e3b2f8c 7345 } while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
0ff38490 7346 }
c84db23c 7347
1732d2b0 7348 set_task_reclaim_state(p, NULL);
499118e9 7349 memalloc_noreclaim_restore(noreclaim_flag);
93781325 7350 fs_reclaim_release(sc.gfp_mask);
57f29762 7351 psi_memstall_leave(&pflags);
76a0fb4f 7352 delayacct_freepages_end();
132bb8cf
YS
7353
7354 trace_mm_vmscan_node_reclaim_end(sc.nr_reclaimed);
7355
a79311c1 7356 return sc.nr_reclaimed >= nr_pages;
9eeff239 7357}
179e9639 7358
a5f5f91d 7359int node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
179e9639 7360{
d773ed6b 7361 int ret;
179e9639
AM
7362
7363 /*
a5f5f91d 7364 * Node reclaim reclaims unmapped file backed pages and
0ff38490 7365 * slab pages if we are over the defined limits.
34aa1330 7366 *
9614634f
CL
7367 * A small portion of unmapped file backed pages is needed for
7368 * file I/O otherwise pages read by file I/O will be immediately
a5f5f91d
MG
7369 * thrown out if the node is overallocated. So we do not reclaim
7370 * if less than a specified percentage of the node is used by
9614634f 7371 * unmapped file backed pages.
179e9639 7372 */
a5f5f91d 7373 if (node_pagecache_reclaimable(pgdat) <= pgdat->min_unmapped_pages &&
d42f3245
RG
7374 node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B) <=
7375 pgdat->min_slab_pages)
a5f5f91d 7376 return NODE_RECLAIM_FULL;
179e9639
AM
7377
7378 /*
d773ed6b 7379 * Do not scan if the allocation should not be delayed.
179e9639 7380 */
d0164adc 7381 if (!gfpflags_allow_blocking(gfp_mask) || (current->flags & PF_MEMALLOC))
a5f5f91d 7382 return NODE_RECLAIM_NOSCAN;
179e9639
AM
7383
7384 /*
a5f5f91d 7385 * Only run node reclaim on the local node or on nodes that do not
179e9639
AM
7386 * have associated processors. This will favor the local processor
7387 * over remote processors and spread off node memory allocations
7388 * as wide as possible.
7389 */
a5f5f91d
MG
7390 if (node_state(pgdat->node_id, N_CPU) && pgdat->node_id != numa_node_id())
7391 return NODE_RECLAIM_NOSCAN;
d773ed6b 7392
a5f5f91d
MG
7393 if (test_and_set_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags))
7394 return NODE_RECLAIM_NOSCAN;
fa5e084e 7395
a5f5f91d
MG
7396 ret = __node_reclaim(pgdat, gfp_mask, order);
7397 clear_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags);
d773ed6b 7398
24cf7251
MG
7399 if (!ret)
7400 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
7401
d773ed6b 7402 return ret;
179e9639 7403}
9eeff239 7404#endif
894bc310 7405
89e004ea 7406/**
77414d19
MWO
7407 * check_move_unevictable_folios - Move evictable folios to appropriate zone
7408 * lru list
7409 * @fbatch: Batch of lru folios to check.
89e004ea 7410 *
77414d19 7411 * Checks folios for evictability, if an evictable folio is in the unevictable
64e3d12f 7412 * lru list, moves it to the appropriate evictable lru list. This function
77414d19 7413 * should be only used for lru folios.
89e004ea 7414 */
77414d19 7415void check_move_unevictable_folios(struct folio_batch *fbatch)
89e004ea 7416{
6168d0da 7417 struct lruvec *lruvec = NULL;
24513264
HD
7418 int pgscanned = 0;
7419 int pgrescued = 0;
7420 int i;
89e004ea 7421
77414d19
MWO
7422 for (i = 0; i < fbatch->nr; i++) {
7423 struct folio *folio = fbatch->folios[i];
7424 int nr_pages = folio_nr_pages(folio);
8d8869ca 7425
8d8869ca 7426 pgscanned += nr_pages;
89e004ea 7427
77414d19
MWO
7428 /* block memcg migration while the folio moves between lrus */
7429 if (!folio_test_clear_lru(folio))
d25b5bd8
AS
7430 continue;
7431
0de340cb 7432 lruvec = folio_lruvec_relock_irq(folio, lruvec);
77414d19
MWO
7433 if (folio_evictable(folio) && folio_test_unevictable(folio)) {
7434 lruvec_del_folio(lruvec, folio);
7435 folio_clear_unevictable(folio);
7436 lruvec_add_folio(lruvec, folio);
8d8869ca 7437 pgrescued += nr_pages;
89e004ea 7438 }
77414d19 7439 folio_set_lru(folio);
24513264 7440 }
89e004ea 7441
6168d0da 7442 if (lruvec) {
24513264
HD
7443 __count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
7444 __count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
6168d0da 7445 unlock_page_lruvec_irq(lruvec);
d25b5bd8
AS
7446 } else if (pgscanned) {
7447 count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
89e004ea 7448 }
89e004ea 7449}
77414d19 7450EXPORT_SYMBOL_GPL(check_move_unevictable_folios);