1 From ce45f1c4b32cf69b166f56ef5bc6c761e06ed4e5 Mon Sep 17 00:00:00 2001
2 From: Yu Zhao <yuzhao@google.com>
3 Date: Wed, 21 Dec 2022 21:19:01 -0700
4 Subject: [PATCH 23/29] mm: multi-gen LRU: remove eviction fairness safeguard
6 Recall that the eviction consumes the oldest generation: first it
7 bucket-sorts folios whose gen counters were updated by the aging and
8 reclaims the rest; then it increments lrugen->min_seq.
10 The current eviction fairness safeguard for global reclaim has a
11 dilemma: when there are multiple eligible memcgs, should it continue
12 or stop upon meeting the reclaim goal? If it continues, it overshoots
13 and increases direct reclaim latency; if it stops, it loses fairness
14 between memcgs it has taken memory away from and those it has yet to.
16 With memcg LRU, the eviction, while ensuring eventual fairness, will
17 stop upon meeting its goal. Therefore the current eviction fairness
18 safeguard for global reclaim will not be needed.
20 Note that memcg LRU only applies to global reclaim. For memcg reclaim,
21 the eviction will continue, even if it is overshooting. This becomes
22 unconditional due to code simplification.
24 Link: https://lkml.kernel.org/r/20221222041905.2431096-4-yuzhao@google.com
25 Signed-off-by: Yu Zhao <yuzhao@google.com>
26 Cc: Johannes Weiner <hannes@cmpxchg.org>
27 Cc: Jonathan Corbet <corbet@lwn.net>
28 Cc: Michael Larabel <Michael@MichaelLarabel.com>
29 Cc: Michal Hocko <mhocko@kernel.org>
30 Cc: Mike Rapoport <rppt@kernel.org>
31 Cc: Roman Gushchin <roman.gushchin@linux.dev>
32 Cc: Suren Baghdasaryan <surenb@google.com>
33 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
35 mm/vmscan.c | 82 +++++++++++++++--------------------------------------
36 1 file changed, 23 insertions(+), 59 deletions(-)
40 @@ -448,6 +448,11 @@ static bool cgroup_reclaim(struct scan_c
41 return sc->target_mem_cgroup;
44 +static bool global_reclaim(struct scan_control *sc)
46 + return !sc->target_mem_cgroup || mem_cgroup_is_root(sc->target_mem_cgroup);
50 * writeback_throttling_sane - is the usual dirty throttling mechanism available?
51 * @sc: scan_control in question
52 @@ -498,6 +503,11 @@ static bool cgroup_reclaim(struct scan_c
56 +static bool global_reclaim(struct scan_control *sc)
61 static bool writeback_throttling_sane(struct scan_control *sc)
64 @@ -4996,8 +5006,7 @@ static int isolate_folios(struct lruvec
68 -static int evict_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness,
69 - bool *need_swapping)
70 +static int evict_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness)
74 @@ -5086,9 +5095,6 @@ retry:
78 - if (need_swapping && type == LRU_GEN_ANON)
79 - *need_swapping = true;
84 @@ -5127,67 +5133,26 @@ done:
85 return min_seq[!can_swap] + MIN_NR_GENS <= max_seq ? nr_to_scan : 0;
88 -static bool should_abort_scan(struct lruvec *lruvec, unsigned long seq,
89 - struct scan_control *sc, bool need_swapping)
90 +static unsigned long get_nr_to_reclaim(struct scan_control *sc)
93 - DEFINE_MAX_SEQ(lruvec);
95 - if (!current_is_kswapd()) {
96 - /* age each memcg at most once to ensure fairness */
97 - if (max_seq - seq > 1)
100 - /* over-swapping can increase allocation latency */
101 - if (sc->nr_reclaimed >= sc->nr_to_reclaim && need_swapping)
104 - /* give this thread a chance to exit and free its memory */
105 - if (fatal_signal_pending(current)) {
106 - sc->nr_reclaimed += MIN_LRU_BATCH;
110 - if (cgroup_reclaim(sc))
112 - } else if (sc->nr_reclaimed - sc->last_reclaimed < sc->nr_to_reclaim)
115 - /* keep scanning at low priorities to ensure fairness */
116 - if (sc->priority > DEF_PRIORITY - 2)
120 - * A minimum amount of work was done under global memory pressure. For
121 - * kswapd, it may be overshooting. For direct reclaim, the allocation
122 - * may succeed if all suitable zones are somewhat safe. In either case,
123 - * it's better to stop now, and restart later if necessary.
125 - for (i = 0; i <= sc->reclaim_idx; i++) {
126 - unsigned long wmark;
127 - struct zone *zone = lruvec_pgdat(lruvec)->node_zones + i;
129 - if (!managed_zone(zone))
132 - wmark = current_is_kswapd() ? high_wmark_pages(zone) : low_wmark_pages(zone);
133 - if (wmark > zone_page_state(zone, NR_FREE_PAGES))
136 + /* don't abort memcg reclaim to ensure fairness */
137 + if (!global_reclaim(sc))
140 - sc->nr_reclaimed += MIN_LRU_BATCH;
141 + /* discount the previous progress for kswapd */
142 + if (current_is_kswapd())
143 + return sc->nr_to_reclaim + sc->last_reclaimed;
146 + return max(sc->nr_to_reclaim, compact_gap(sc->order));
149 static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
151 struct blk_plug plug;
152 bool need_aging = false;
153 - bool need_swapping = false;
154 unsigned long scanned = 0;
155 unsigned long reclaimed = sc->nr_reclaimed;
156 - DEFINE_MAX_SEQ(lruvec);
157 + unsigned long nr_to_reclaim = get_nr_to_reclaim(sc);
161 @@ -5211,7 +5176,7 @@ static void lru_gen_shrink_lruvec(struct
165 - delta = evict_folios(lruvec, sc, swappiness, &need_swapping);
166 + delta = evict_folios(lruvec, sc, swappiness);
170 @@ -5219,7 +5184,7 @@ static void lru_gen_shrink_lruvec(struct
171 if (scanned >= nr_to_scan)
174 - if (should_abort_scan(lruvec, max_seq, sc, need_swapping))
175 + if (sc->nr_reclaimed >= nr_to_reclaim)
179 @@ -5669,7 +5634,7 @@ static int run_eviction(struct lruvec *l
180 if (sc->nr_reclaimed >= nr_to_reclaim)
183 - if (!evict_folios(lruvec, sc, swappiness, NULL))
184 + if (!evict_folios(lruvec, sc, swappiness))