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