* [RFC PATCH] mm: keep LRU order by move unisolated folios to tail
@ 2024-07-22 10:23 zhaoyang.huang
0 siblings, 0 replies; only message in thread
From: zhaoyang.huang @ 2024-07-22 10:23 UTC (permalink / raw)
To: Andrew Morton, Yu Zhao, linux-mm, linux-kernel, Zhaoyang Huang,
steve.kang
From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
Unlike legacy LRU management, MGLRU will switch to other zones or types
when current lrugen[gen][type][zone] scanning failed, which means skipped
folios could become available in next scan. This commit would like to
suggest to keep the LRU's order by moving unisolated folios to the tail
of LRU during the first 2 round scan to avoid potential livelock on the
unisolated ones.
Signed-off-by: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
---
mm/vmscan.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/mm/vmscan.c b/mm/vmscan.c
index 2e34de9cd0d4..cd1f38bb1d45 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -4397,7 +4397,10 @@ static int scan_folios(struct lruvec *lruvec, struct scan_control *sc,
}
if (skipped_zone) {
- list_splice(&moved, head);
+ if (sc->priority > DEF_PRIORITY - 2)
+ list_splice_tail(&moved, head);
+ else
+ list_splice(&moved, head);
__count_zid_vm_events(PGSCAN_SKIP, zone, skipped_zone);
skipped += skipped_zone;
}
--
2.25.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-07-22 10:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-22 10:23 [RFC PATCH] mm: keep LRU order by move unisolated folios to tail zhaoyang.huang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox