diff mbox series

[RFC] mm: keep LRU order by move unisolated folios to tail

Message ID 20240722102338.2567810-1-zhaoyang.huang@unisoc.com (mailing list archive)
State New
Headers show
Series [RFC] mm: keep LRU order by move unisolated folios to tail | expand

Commit Message

zhaoyang.huang July 22, 2024, 10:23 a.m. UTC
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 mbox series

Patch

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;
 		}