]>
Commit | Line | Data |
---|---|---|
457c8996 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * linux/mm/swap.c | |
4 | * | |
5 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds | |
6 | */ | |
7 | ||
8 | /* | |
183ff22b | 9 | * This file contains the default values for the operation of the |
1da177e4 | 10 | * Linux VM subsystem. Fine-tuning documentation can be found in |
57043247 | 11 | * Documentation/admin-guide/sysctl/vm.rst. |
1da177e4 LT |
12 | * Started 18.12.91 |
13 | * Swap aging added 23.2.95, Stephen Tweedie. | |
14 | * Buffermem limits added 12.3.98, Rik van Riel. | |
15 | */ | |
16 | ||
17 | #include <linux/mm.h> | |
18 | #include <linux/sched.h> | |
19 | #include <linux/kernel_stat.h> | |
20 | #include <linux/swap.h> | |
21 | #include <linux/mman.h> | |
22 | #include <linux/pagemap.h> | |
23 | #include <linux/pagevec.h> | |
24 | #include <linux/init.h> | |
b95f1b31 | 25 | #include <linux/export.h> |
1da177e4 | 26 | #include <linux/mm_inline.h> |
1da177e4 | 27 | #include <linux/percpu_counter.h> |
3565fce3 | 28 | #include <linux/memremap.h> |
1da177e4 LT |
29 | #include <linux/percpu.h> |
30 | #include <linux/cpu.h> | |
31 | #include <linux/notifier.h> | |
e0bf68dd | 32 | #include <linux/backing-dev.h> |
66e1707b | 33 | #include <linux/memcontrol.h> |
5a0e3ad6 | 34 | #include <linux/gfp.h> |
a27bb332 | 35 | #include <linux/uio.h> |
822fc613 | 36 | #include <linux/hugetlb.h> |
33c3fc71 | 37 | #include <linux/page_idle.h> |
b01b2141 | 38 | #include <linux/local_lock.h> |
8cc621d2 | 39 | #include <linux/buffer_head.h> |
1da177e4 | 40 | |
64d6519d LS |
41 | #include "internal.h" |
42 | ||
c6286c98 MG |
43 | #define CREATE_TRACE_POINTS |
44 | #include <trace/events/pagemap.h> | |
45 | ||
1da177e4 LT |
46 | /* How many pages do we try to swap or page in/out together? */ |
47 | int page_cluster; | |
48 | ||
c2bc1681 | 49 | /* Protecting only lru_rotate.fbatch which requires disabling interrupts */ |
b01b2141 IM |
50 | struct lru_rotate { |
51 | local_lock_t lock; | |
c2bc1681 | 52 | struct folio_batch fbatch; |
b01b2141 IM |
53 | }; |
54 | static DEFINE_PER_CPU(struct lru_rotate, lru_rotate) = { | |
55 | .lock = INIT_LOCAL_LOCK(lock), | |
56 | }; | |
57 | ||
58 | /* | |
59 | * The following struct pagevec are grouped together because they are protected | |
60 | * by disabling preemption (and interrupts remain enabled). | |
61 | */ | |
62 | struct lru_pvecs { | |
63 | local_lock_t lock; | |
70dea534 | 64 | struct folio_batch lru_add; |
7a3dbfe8 | 65 | struct folio_batch lru_deactivate_file; |
b01b2141 IM |
66 | struct pagevec lru_deactivate; |
67 | struct pagevec lru_lazyfree; | |
a4a921aa | 68 | #ifdef CONFIG_SMP |
b01b2141 | 69 | struct pagevec activate_page; |
a4a921aa | 70 | #endif |
b01b2141 IM |
71 | }; |
72 | static DEFINE_PER_CPU(struct lru_pvecs, lru_pvecs) = { | |
73 | .lock = INIT_LOCAL_LOCK(lock), | |
74 | }; | |
902aaed0 | 75 | |
b221385b | 76 | /* |
b109b870 HD |
77 | * This path almost never happens for VM activity - pages are normally freed |
78 | * via pagevecs. But it gets used by networking - and for compound pages. | |
b221385b | 79 | */ |
920c7a5d | 80 | static void __page_cache_release(struct page *page) |
b221385b AB |
81 | { |
82 | if (PageLRU(page)) { | |
e809c3fe | 83 | struct folio *folio = page_folio(page); |
fa9add64 HD |
84 | struct lruvec *lruvec; |
85 | unsigned long flags; | |
b221385b | 86 | |
e809c3fe | 87 | lruvec = folio_lruvec_lock_irqsave(folio, &flags); |
46ae6b2c | 88 | del_page_from_lru_list(page, lruvec); |
87560179 | 89 | __clear_page_lru_flags(page); |
6168d0da | 90 | unlock_page_lruvec_irqrestore(lruvec, flags); |
b221385b | 91 | } |
b109b870 HD |
92 | /* See comment on PageMlocked in release_pages() */ |
93 | if (unlikely(PageMlocked(page))) { | |
94 | int nr_pages = thp_nr_pages(page); | |
95 | ||
96 | __ClearPageMlocked(page); | |
97 | mod_zone_page_state(page_zone(page), NR_MLOCK, -nr_pages); | |
98 | count_vm_events(UNEVICTABLE_PGCLEARED, nr_pages); | |
99 | } | |
91807063 AA |
100 | } |
101 | ||
102 | static void __put_single_page(struct page *page) | |
103 | { | |
104 | __page_cache_release(page); | |
bbc6b703 | 105 | mem_cgroup_uncharge(page_folio(page)); |
44042b44 | 106 | free_unref_page(page, 0); |
b221385b AB |
107 | } |
108 | ||
91807063 | 109 | static void __put_compound_page(struct page *page) |
1da177e4 | 110 | { |
822fc613 NH |
111 | /* |
112 | * __page_cache_release() is supposed to be called for thp, not for | |
113 | * hugetlb. This is because hugetlb page does never have PageLRU set | |
114 | * (it's never listed to any LRU lists) and no memcg routines should | |
115 | * be called for hugetlb (it has a separate hugetlb_cgroup.) | |
116 | */ | |
117 | if (!PageHuge(page)) | |
118 | __page_cache_release(page); | |
ff45fc3c | 119 | destroy_compound_page(page); |
91807063 AA |
120 | } |
121 | ||
ddc58f27 | 122 | void __put_page(struct page *page) |
8519fb30 | 123 | { |
27674ef6 CH |
124 | if (unlikely(is_zone_device_page(page))) |
125 | free_zone_device_page(page); | |
126 | else if (unlikely(PageCompound(page))) | |
ddc58f27 KS |
127 | __put_compound_page(page); |
128 | else | |
91807063 | 129 | __put_single_page(page); |
1da177e4 | 130 | } |
ddc58f27 | 131 | EXPORT_SYMBOL(__put_page); |
70b50f94 | 132 | |
1d7ea732 | 133 | /** |
7682486b RD |
134 | * put_pages_list() - release a list of pages |
135 | * @pages: list of pages threaded on page->lru | |
1d7ea732 | 136 | * |
988c69f1 | 137 | * Release a list of pages which are strung together on page.lru. |
1d7ea732 AZ |
138 | */ |
139 | void put_pages_list(struct list_head *pages) | |
140 | { | |
988c69f1 MWO |
141 | struct page *page, *next; |
142 | ||
143 | list_for_each_entry_safe(page, next, pages, lru) { | |
144 | if (!put_page_testzero(page)) { | |
145 | list_del(&page->lru); | |
146 | continue; | |
147 | } | |
148 | if (PageHead(page)) { | |
149 | list_del(&page->lru); | |
150 | __put_compound_page(page); | |
151 | continue; | |
152 | } | |
153 | /* Cannot be PageLRU because it's passed to us using the lru */ | |
1d7ea732 | 154 | } |
988c69f1 MWO |
155 | |
156 | free_unref_page_list(pages); | |
3cd018b4 | 157 | INIT_LIST_HEAD(pages); |
1d7ea732 AZ |
158 | } |
159 | EXPORT_SYMBOL(put_pages_list); | |
160 | ||
18022c5d MG |
161 | /* |
162 | * get_kernel_pages() - pin kernel pages in memory | |
163 | * @kiov: An array of struct kvec structures | |
164 | * @nr_segs: number of segments to pin | |
165 | * @write: pinning for read/write, currently ignored | |
166 | * @pages: array that receives pointers to the pages pinned. | |
167 | * Should be at least nr_segs long. | |
168 | * | |
133d2743 ML |
169 | * Returns number of pages pinned. This may be fewer than the number requested. |
170 | * If nr_segs is 0 or negative, returns 0. If no pages were pinned, returns 0. | |
171 | * Each page returned must be released with a put_page() call when it is | |
172 | * finished with. | |
18022c5d MG |
173 | */ |
174 | int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write, | |
175 | struct page **pages) | |
176 | { | |
177 | int seg; | |
178 | ||
179 | for (seg = 0; seg < nr_segs; seg++) { | |
180 | if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE)) | |
181 | return seg; | |
182 | ||
5a178119 | 183 | pages[seg] = kmap_to_page(kiov[seg].iov_base); |
09cbfeaf | 184 | get_page(pages[seg]); |
18022c5d MG |
185 | } |
186 | ||
187 | return seg; | |
188 | } | |
189 | EXPORT_SYMBOL_GPL(get_kernel_pages); | |
190 | ||
3dd7ae8e | 191 | static void pagevec_lru_move_fn(struct pagevec *pvec, |
c7c7b80c | 192 | void (*move_fn)(struct page *page, struct lruvec *lruvec)) |
902aaed0 HH |
193 | { |
194 | int i; | |
6168d0da | 195 | struct lruvec *lruvec = NULL; |
3dd7ae8e | 196 | unsigned long flags = 0; |
902aaed0 HH |
197 | |
198 | for (i = 0; i < pagevec_count(pvec); i++) { | |
199 | struct page *page = pvec->pages[i]; | |
0de340cb | 200 | struct folio *folio = page_folio(page); |
3dd7ae8e | 201 | |
fc574c23 AS |
202 | /* block memcg migration during page moving between lru */ |
203 | if (!TestClearPageLRU(page)) | |
204 | continue; | |
205 | ||
0de340cb | 206 | lruvec = folio_lruvec_relock_irqsave(folio, lruvec, &flags); |
c7c7b80c | 207 | (*move_fn)(page, lruvec); |
fc574c23 AS |
208 | |
209 | SetPageLRU(page); | |
902aaed0 | 210 | } |
6168d0da AS |
211 | if (lruvec) |
212 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
c6f92f9f | 213 | release_pages(pvec->pages, pvec->nr); |
83896fb5 | 214 | pagevec_reinit(pvec); |
d8505dee SL |
215 | } |
216 | ||
d479960e MK |
217 | /* return true if pagevec needs to drain */ |
218 | static bool pagevec_add_and_need_flush(struct pagevec *pvec, struct page *page) | |
219 | { | |
220 | bool ret = false; | |
221 | ||
222 | if (!pagevec_add(pvec, page) || PageCompound(page) || | |
223 | lru_cache_disabled()) | |
224 | ret = true; | |
225 | ||
226 | return ret; | |
227 | } | |
228 | ||
c2bc1681 MWO |
229 | typedef void (*move_fn_t)(struct lruvec *lruvec, struct folio *folio); |
230 | ||
70dea534 | 231 | static void lru_add_fn(struct lruvec *lruvec, struct folio *folio) |
7d80dd09 MWO |
232 | { |
233 | int was_unevictable = folio_test_clear_unevictable(folio); | |
234 | long nr_pages = folio_nr_pages(folio); | |
235 | ||
236 | VM_BUG_ON_FOLIO(folio_test_lru(folio), folio); | |
237 | ||
7d80dd09 MWO |
238 | /* |
239 | * Is an smp_mb__after_atomic() still required here, before | |
240 | * folio_evictable() tests PageMlocked, to rule out the possibility | |
241 | * of stranding an evictable folio on an unevictable LRU? I think | |
242 | * not, because __munlock_page() only clears PageMlocked while the LRU | |
243 | * lock is held. | |
244 | * | |
245 | * (That is not true of __page_cache_release(), and not necessarily | |
246 | * true of release_pages(): but those only clear PageMlocked after | |
247 | * put_page_testzero() has excluded any other users of the page.) | |
248 | */ | |
249 | if (folio_evictable(folio)) { | |
250 | if (was_unevictable) | |
251 | __count_vm_events(UNEVICTABLE_PGRESCUED, nr_pages); | |
252 | } else { | |
253 | folio_clear_active(folio); | |
254 | folio_set_unevictable(folio); | |
255 | /* | |
256 | * folio->mlock_count = !!folio_test_mlocked(folio)? | |
257 | * But that leaves __mlock_page() in doubt whether another | |
258 | * actor has already counted the mlock or not. Err on the | |
259 | * safe side, underestimate, let page reclaim fix it, rather | |
260 | * than leaving a page on the unevictable LRU indefinitely. | |
261 | */ | |
262 | folio->mlock_count = 0; | |
263 | if (!was_unevictable) | |
264 | __count_vm_events(UNEVICTABLE_PGCULLED, nr_pages); | |
265 | } | |
266 | ||
267 | lruvec_add_folio(lruvec, folio); | |
268 | trace_mm_lru_insertion(folio); | |
269 | } | |
270 | ||
c2bc1681 MWO |
271 | static void folio_batch_move_lru(struct folio_batch *fbatch, move_fn_t move_fn) |
272 | { | |
273 | int i; | |
274 | struct lruvec *lruvec = NULL; | |
275 | unsigned long flags = 0; | |
276 | ||
277 | for (i = 0; i < folio_batch_count(fbatch); i++) { | |
278 | struct folio *folio = fbatch->folios[i]; | |
279 | ||
280 | /* block memcg migration while the folio moves between lru */ | |
70dea534 | 281 | if (move_fn != lru_add_fn && !folio_test_clear_lru(folio)) |
c2bc1681 MWO |
282 | continue; |
283 | ||
284 | lruvec = folio_lruvec_relock_irqsave(folio, lruvec, &flags); | |
285 | move_fn(lruvec, folio); | |
286 | ||
287 | folio_set_lru(folio); | |
288 | } | |
289 | ||
290 | if (lruvec) | |
291 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
292 | folios_put(fbatch->folios, folio_batch_count(fbatch)); | |
293 | folio_batch_init(fbatch); | |
294 | } | |
295 | ||
296 | static void folio_batch_add_and_move(struct folio_batch *fbatch, | |
297 | struct folio *folio, move_fn_t move_fn) | |
298 | { | |
299 | if (folio_batch_add(fbatch, folio) && !folio_test_large(folio) && | |
300 | !lru_cache_disabled()) | |
301 | return; | |
302 | folio_batch_move_lru(fbatch, move_fn); | |
303 | } | |
304 | ||
305 | static void lru_move_tail_fn(struct lruvec *lruvec, struct folio *folio) | |
306 | { | |
307 | if (!folio_test_unevictable(folio)) { | |
308 | lruvec_del_folio(lruvec, folio); | |
309 | folio_clear_active(folio); | |
310 | lruvec_add_folio_tail(lruvec, folio); | |
311 | __count_vm_events(PGROTATED, folio_nr_pages(folio)); | |
312 | } | |
313 | } | |
314 | ||
1da177e4 | 315 | /* |
575ced1c MWO |
316 | * Writeback is about to end against a folio which has been marked for |
317 | * immediate reclaim. If it still appears to be reclaimable, move it | |
318 | * to the tail of the inactive list. | |
c7c7b80c | 319 | * |
575ced1c | 320 | * folio_rotate_reclaimable() must disable IRQs, to prevent nasty races. |
1da177e4 | 321 | */ |
575ced1c | 322 | void folio_rotate_reclaimable(struct folio *folio) |
1da177e4 | 323 | { |
575ced1c MWO |
324 | if (!folio_test_locked(folio) && !folio_test_dirty(folio) && |
325 | !folio_test_unevictable(folio) && folio_test_lru(folio)) { | |
c2bc1681 | 326 | struct folio_batch *fbatch; |
ac6aadb2 MS |
327 | unsigned long flags; |
328 | ||
575ced1c | 329 | folio_get(folio); |
b01b2141 | 330 | local_lock_irqsave(&lru_rotate.lock, flags); |
c2bc1681 MWO |
331 | fbatch = this_cpu_ptr(&lru_rotate.fbatch); |
332 | folio_batch_add_and_move(fbatch, folio, lru_move_tail_fn); | |
b01b2141 | 333 | local_unlock_irqrestore(&lru_rotate.lock, flags); |
ac6aadb2 | 334 | } |
1da177e4 LT |
335 | } |
336 | ||
96f8bf4f | 337 | void lru_note_cost(struct lruvec *lruvec, bool file, unsigned int nr_pages) |
3e2f41f1 | 338 | { |
7cf111bc JW |
339 | do { |
340 | unsigned long lrusize; | |
341 | ||
6168d0da AS |
342 | /* |
343 | * Hold lruvec->lru_lock is safe here, since | |
344 | * 1) The pinned lruvec in reclaim, or | |
345 | * 2) From a pre-LRU page during refault (which also holds the | |
346 | * rcu lock, so would be safe even if the page was on the LRU | |
347 | * and could move simultaneously to a new lruvec). | |
348 | */ | |
349 | spin_lock_irq(&lruvec->lru_lock); | |
7cf111bc | 350 | /* Record cost event */ |
96f8bf4f JW |
351 | if (file) |
352 | lruvec->file_cost += nr_pages; | |
7cf111bc | 353 | else |
96f8bf4f | 354 | lruvec->anon_cost += nr_pages; |
7cf111bc JW |
355 | |
356 | /* | |
357 | * Decay previous events | |
358 | * | |
359 | * Because workloads change over time (and to avoid | |
360 | * overflow) we keep these statistics as a floating | |
361 | * average, which ends up weighing recent refaults | |
362 | * more than old ones. | |
363 | */ | |
364 | lrusize = lruvec_page_state(lruvec, NR_INACTIVE_ANON) + | |
365 | lruvec_page_state(lruvec, NR_ACTIVE_ANON) + | |
366 | lruvec_page_state(lruvec, NR_INACTIVE_FILE) + | |
367 | lruvec_page_state(lruvec, NR_ACTIVE_FILE); | |
368 | ||
369 | if (lruvec->file_cost + lruvec->anon_cost > lrusize / 4) { | |
370 | lruvec->file_cost /= 2; | |
371 | lruvec->anon_cost /= 2; | |
372 | } | |
6168d0da | 373 | spin_unlock_irq(&lruvec->lru_lock); |
7cf111bc | 374 | } while ((lruvec = parent_lruvec(lruvec))); |
3e2f41f1 KM |
375 | } |
376 | ||
0995d7e5 | 377 | void lru_note_cost_folio(struct folio *folio) |
96f8bf4f | 378 | { |
0995d7e5 MWO |
379 | lru_note_cost(folio_lruvec(folio), folio_is_file_lru(folio), |
380 | folio_nr_pages(folio)); | |
96f8bf4f JW |
381 | } |
382 | ||
f2d27392 | 383 | static void __folio_activate(struct folio *folio, struct lruvec *lruvec) |
1da177e4 | 384 | { |
f2d27392 MWO |
385 | if (!folio_test_active(folio) && !folio_test_unevictable(folio)) { |
386 | long nr_pages = folio_nr_pages(folio); | |
744ed144 | 387 | |
f2d27392 MWO |
388 | lruvec_del_folio(lruvec, folio); |
389 | folio_set_active(folio); | |
390 | lruvec_add_folio(lruvec, folio); | |
391 | trace_mm_lru_activate(folio); | |
4f98a2fe | 392 | |
21e330fc SB |
393 | __count_vm_events(PGACTIVATE, nr_pages); |
394 | __count_memcg_events(lruvec_memcg(lruvec), PGACTIVATE, | |
395 | nr_pages); | |
1da177e4 | 396 | } |
eb709b0d SL |
397 | } |
398 | ||
399 | #ifdef CONFIG_SMP | |
f2d27392 MWO |
400 | static void __activate_page(struct page *page, struct lruvec *lruvec) |
401 | { | |
402 | return __folio_activate(page_folio(page), lruvec); | |
403 | } | |
404 | ||
eb709b0d SL |
405 | static void activate_page_drain(int cpu) |
406 | { | |
b01b2141 | 407 | struct pagevec *pvec = &per_cpu(lru_pvecs.activate_page, cpu); |
eb709b0d SL |
408 | |
409 | if (pagevec_count(pvec)) | |
c7c7b80c | 410 | pagevec_lru_move_fn(pvec, __activate_page); |
eb709b0d SL |
411 | } |
412 | ||
5fbc4616 CM |
413 | static bool need_activate_page_drain(int cpu) |
414 | { | |
b01b2141 | 415 | return pagevec_count(&per_cpu(lru_pvecs.activate_page, cpu)) != 0; |
5fbc4616 CM |
416 | } |
417 | ||
f2d27392 | 418 | static void folio_activate(struct folio *folio) |
eb709b0d | 419 | { |
f2d27392 MWO |
420 | if (folio_test_lru(folio) && !folio_test_active(folio) && |
421 | !folio_test_unevictable(folio)) { | |
b01b2141 | 422 | struct pagevec *pvec; |
eb709b0d | 423 | |
f2d27392 | 424 | folio_get(folio); |
b01b2141 IM |
425 | local_lock(&lru_pvecs.lock); |
426 | pvec = this_cpu_ptr(&lru_pvecs.activate_page); | |
f2d27392 | 427 | if (pagevec_add_and_need_flush(pvec, &folio->page)) |
c7c7b80c | 428 | pagevec_lru_move_fn(pvec, __activate_page); |
b01b2141 | 429 | local_unlock(&lru_pvecs.lock); |
eb709b0d SL |
430 | } |
431 | } | |
432 | ||
433 | #else | |
434 | static inline void activate_page_drain(int cpu) | |
435 | { | |
436 | } | |
437 | ||
f2d27392 | 438 | static void folio_activate(struct folio *folio) |
eb709b0d | 439 | { |
6168d0da | 440 | struct lruvec *lruvec; |
eb709b0d | 441 | |
f2d27392 | 442 | if (folio_test_clear_lru(folio)) { |
e809c3fe | 443 | lruvec = folio_lruvec_lock_irq(folio); |
f2d27392 | 444 | __folio_activate(folio, lruvec); |
6168d0da | 445 | unlock_page_lruvec_irq(lruvec); |
f2d27392 | 446 | folio_set_lru(folio); |
6168d0da | 447 | } |
1da177e4 | 448 | } |
eb709b0d | 449 | #endif |
1da177e4 | 450 | |
76580b65 | 451 | static void __lru_cache_activate_folio(struct folio *folio) |
059285a2 | 452 | { |
70dea534 | 453 | struct folio_batch *fbatch; |
059285a2 MG |
454 | int i; |
455 | ||
b01b2141 | 456 | local_lock(&lru_pvecs.lock); |
70dea534 | 457 | fbatch = this_cpu_ptr(&lru_pvecs.lru_add); |
b01b2141 | 458 | |
059285a2 | 459 | /* |
70dea534 MWO |
460 | * Search backwards on the optimistic assumption that the folio being |
461 | * activated has just been added to this batch. Note that only | |
462 | * the local batch is examined as a !LRU folio could be in the | |
059285a2 | 463 | * process of being released, reclaimed, migrated or on a remote |
70dea534 MWO |
464 | * batch that is currently being drained. Furthermore, marking |
465 | * a remote batch's folio active potentially hits a race where | |
466 | * a folio is marked active just after it is added to the inactive | |
059285a2 MG |
467 | * list causing accounting errors and BUG_ON checks to trigger. |
468 | */ | |
70dea534 MWO |
469 | for (i = folio_batch_count(fbatch) - 1; i >= 0; i--) { |
470 | struct folio *batch_folio = fbatch->folios[i]; | |
059285a2 | 471 | |
70dea534 | 472 | if (batch_folio == folio) { |
76580b65 | 473 | folio_set_active(folio); |
059285a2 MG |
474 | break; |
475 | } | |
476 | } | |
477 | ||
b01b2141 | 478 | local_unlock(&lru_pvecs.lock); |
059285a2 MG |
479 | } |
480 | ||
1da177e4 LT |
481 | /* |
482 | * Mark a page as having seen activity. | |
483 | * | |
484 | * inactive,unreferenced -> inactive,referenced | |
485 | * inactive,referenced -> active,unreferenced | |
486 | * active,unreferenced -> active,referenced | |
eb39d618 HD |
487 | * |
488 | * When a newly allocated page is not yet visible, so safe for non-atomic ops, | |
489 | * __SetPageReferenced(page) may be substituted for mark_page_accessed(page). | |
1da177e4 | 490 | */ |
76580b65 | 491 | void folio_mark_accessed(struct folio *folio) |
1da177e4 | 492 | { |
76580b65 MWO |
493 | if (!folio_test_referenced(folio)) { |
494 | folio_set_referenced(folio); | |
495 | } else if (folio_test_unevictable(folio)) { | |
a1100a74 FW |
496 | /* |
497 | * Unevictable pages are on the "LRU_UNEVICTABLE" list. But, | |
498 | * this list is never rotated or maintained, so marking an | |
914c32e4 | 499 | * unevictable page accessed has no effect. |
a1100a74 | 500 | */ |
76580b65 | 501 | } else if (!folio_test_active(folio)) { |
059285a2 MG |
502 | /* |
503 | * If the page is on the LRU, queue it for activation via | |
b01b2141 | 504 | * lru_pvecs.activate_page. Otherwise, assume the page is on a |
059285a2 MG |
505 | * pagevec, mark it active and it'll be moved to the active |
506 | * LRU on the next drain. | |
507 | */ | |
76580b65 MWO |
508 | if (folio_test_lru(folio)) |
509 | folio_activate(folio); | |
059285a2 | 510 | else |
76580b65 MWO |
511 | __lru_cache_activate_folio(folio); |
512 | folio_clear_referenced(folio); | |
513 | workingset_activation(folio); | |
1da177e4 | 514 | } |
76580b65 MWO |
515 | if (folio_test_idle(folio)) |
516 | folio_clear_idle(folio); | |
1da177e4 | 517 | } |
76580b65 | 518 | EXPORT_SYMBOL(folio_mark_accessed); |
1da177e4 | 519 | |
f04e9ebb | 520 | /** |
0d31125d MWO |
521 | * folio_add_lru - Add a folio to an LRU list. |
522 | * @folio: The folio to be added to the LRU. | |
2329d375 | 523 | * |
0d31125d | 524 | * Queue the folio for addition to the LRU. The decision on whether |
2329d375 | 525 | * to add the page to the [in]active [file|anon] list is deferred until the |
0d31125d MWO |
526 | * pagevec is drained. This gives a chance for the caller of folio_add_lru() |
527 | * have the folio added to the active list using folio_mark_accessed(). | |
f04e9ebb | 528 | */ |
0d31125d | 529 | void folio_add_lru(struct folio *folio) |
1da177e4 | 530 | { |
70dea534 | 531 | struct folio_batch *fbatch; |
6058eaec | 532 | |
70dea534 MWO |
533 | VM_BUG_ON_FOLIO(folio_test_active(folio) && |
534 | folio_test_unevictable(folio), folio); | |
0d31125d | 535 | VM_BUG_ON_FOLIO(folio_test_lru(folio), folio); |
6058eaec | 536 | |
0d31125d | 537 | folio_get(folio); |
6058eaec | 538 | local_lock(&lru_pvecs.lock); |
70dea534 MWO |
539 | fbatch = this_cpu_ptr(&lru_pvecs.lru_add); |
540 | folio_batch_add_and_move(fbatch, folio, lru_add_fn); | |
6058eaec | 541 | local_unlock(&lru_pvecs.lock); |
1da177e4 | 542 | } |
0d31125d | 543 | EXPORT_SYMBOL(folio_add_lru); |
1da177e4 | 544 | |
00501b53 | 545 | /** |
b518154e | 546 | * lru_cache_add_inactive_or_unevictable |
00501b53 JW |
547 | * @page: the page to be added to LRU |
548 | * @vma: vma in which page is mapped for determining reclaimability | |
549 | * | |
b518154e | 550 | * Place @page on the inactive or unevictable LRU list, depending on its |
12eab428 | 551 | * evictability. |
00501b53 | 552 | */ |
b518154e | 553 | void lru_cache_add_inactive_or_unevictable(struct page *page, |
00501b53 JW |
554 | struct vm_area_struct *vma) |
555 | { | |
556 | VM_BUG_ON_PAGE(PageLRU(page), page); | |
557 | ||
2fbb0c10 HD |
558 | if (unlikely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) == VM_LOCKED)) |
559 | mlock_new_page(page); | |
560 | else | |
561 | lru_cache_add(page); | |
00501b53 JW |
562 | } |
563 | ||
31560180 | 564 | /* |
7a3dbfe8 | 565 | * If the folio cannot be invalidated, it is moved to the |
31560180 MK |
566 | * inactive list to speed up its reclaim. It is moved to the |
567 | * head of the list, rather than the tail, to give the flusher | |
568 | * threads some time to write it out, as this is much more | |
569 | * effective than the single-page writeout from reclaim. | |
278df9f4 | 570 | * |
7a3dbfe8 MWO |
571 | * If the folio isn't mapped and dirty/writeback, the folio |
572 | * could be reclaimed asap using the reclaim flag. | |
278df9f4 | 573 | * |
7a3dbfe8 MWO |
574 | * 1. active, mapped folio -> none |
575 | * 2. active, dirty/writeback folio -> inactive, head, reclaim | |
576 | * 3. inactive, mapped folio -> none | |
577 | * 4. inactive, dirty/writeback folio -> inactive, head, reclaim | |
278df9f4 MK |
578 | * 5. inactive, clean -> inactive, tail |
579 | * 6. Others -> none | |
580 | * | |
7a3dbfe8 MWO |
581 | * In 4, it moves to the head of the inactive list so the folio is |
582 | * written out by flusher threads as this is much more efficient | |
278df9f4 | 583 | * than the single-page writeout from reclaim. |
31560180 | 584 | */ |
7a3dbfe8 | 585 | static void lru_deactivate_file_fn(struct lruvec *lruvec, struct folio *folio) |
31560180 | 586 | { |
7a3dbfe8 MWO |
587 | bool active = folio_test_active(folio); |
588 | long nr_pages = folio_nr_pages(folio); | |
31560180 | 589 | |
7a3dbfe8 | 590 | if (folio_test_unevictable(folio)) |
bad49d9c MK |
591 | return; |
592 | ||
7a3dbfe8 MWO |
593 | /* Some processes are using the folio */ |
594 | if (folio_mapped(folio)) | |
31560180 MK |
595 | return; |
596 | ||
7a3dbfe8 MWO |
597 | lruvec_del_folio(lruvec, folio); |
598 | folio_clear_active(folio); | |
599 | folio_clear_referenced(folio); | |
31560180 | 600 | |
7a3dbfe8 | 601 | if (folio_test_writeback(folio) || folio_test_dirty(folio)) { |
278df9f4 | 602 | /* |
7a3dbfe8 MWO |
603 | * Setting the reclaim flag could race with |
604 | * folio_end_writeback() and confuse readahead. But the | |
605 | * race window is _really_ small and it's not a critical | |
606 | * problem. | |
278df9f4 | 607 | */ |
7a3dbfe8 MWO |
608 | lruvec_add_folio(lruvec, folio); |
609 | folio_set_reclaim(folio); | |
278df9f4 MK |
610 | } else { |
611 | /* | |
7a3dbfe8 MWO |
612 | * The folio's writeback ended while it was in the batch. |
613 | * We move that folio to the tail of the inactive list. | |
278df9f4 | 614 | */ |
7a3dbfe8 | 615 | lruvec_add_folio_tail(lruvec, folio); |
5d91f31f | 616 | __count_vm_events(PGROTATED, nr_pages); |
278df9f4 MK |
617 | } |
618 | ||
21e330fc | 619 | if (active) { |
5d91f31f | 620 | __count_vm_events(PGDEACTIVATE, nr_pages); |
21e330fc SB |
621 | __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, |
622 | nr_pages); | |
623 | } | |
31560180 MK |
624 | } |
625 | ||
c7c7b80c | 626 | static void lru_deactivate_fn(struct page *page, struct lruvec *lruvec) |
9c276cc6 | 627 | { |
fc574c23 | 628 | if (PageActive(page) && !PageUnevictable(page)) { |
6c357848 | 629 | int nr_pages = thp_nr_pages(page); |
9c276cc6 | 630 | |
46ae6b2c | 631 | del_page_from_lru_list(page, lruvec); |
9c276cc6 MK |
632 | ClearPageActive(page); |
633 | ClearPageReferenced(page); | |
3a9c9788 | 634 | add_page_to_lru_list(page, lruvec); |
9c276cc6 | 635 | |
21e330fc SB |
636 | __count_vm_events(PGDEACTIVATE, nr_pages); |
637 | __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, | |
638 | nr_pages); | |
9c276cc6 MK |
639 | } |
640 | } | |
10853a03 | 641 | |
c7c7b80c | 642 | static void lru_lazyfree_fn(struct page *page, struct lruvec *lruvec) |
10853a03 | 643 | { |
fc574c23 | 644 | if (PageAnon(page) && PageSwapBacked(page) && |
24c92eb7 | 645 | !PageSwapCache(page) && !PageUnevictable(page)) { |
6c357848 | 646 | int nr_pages = thp_nr_pages(page); |
10853a03 | 647 | |
46ae6b2c | 648 | del_page_from_lru_list(page, lruvec); |
10853a03 MK |
649 | ClearPageActive(page); |
650 | ClearPageReferenced(page); | |
f7ad2a6c | 651 | /* |
9de4f22a YH |
652 | * Lazyfree pages are clean anonymous pages. They have |
653 | * PG_swapbacked flag cleared, to distinguish them from normal | |
654 | * anonymous pages | |
f7ad2a6c SL |
655 | */ |
656 | ClearPageSwapBacked(page); | |
3a9c9788 | 657 | add_page_to_lru_list(page, lruvec); |
10853a03 | 658 | |
21e330fc SB |
659 | __count_vm_events(PGLAZYFREE, nr_pages); |
660 | __count_memcg_events(lruvec_memcg(lruvec), PGLAZYFREE, | |
661 | nr_pages); | |
10853a03 MK |
662 | } |
663 | } | |
664 | ||
902aaed0 HH |
665 | /* |
666 | * Drain pages out of the cpu's pagevecs. | |
667 | * Either "cpu" is the current CPU, and preemption has already been | |
668 | * disabled; or "cpu" is being hot-unplugged, and is already dead. | |
669 | */ | |
f0cb3c76 | 670 | void lru_add_drain_cpu(int cpu) |
1da177e4 | 671 | { |
70dea534 MWO |
672 | struct folio_batch *fbatch = &per_cpu(lru_pvecs.lru_add, cpu); |
673 | struct pagevec *pvec; | |
1da177e4 | 674 | |
70dea534 MWO |
675 | if (folio_batch_count(fbatch)) |
676 | folio_batch_move_lru(fbatch, lru_add_fn); | |
902aaed0 | 677 | |
c2bc1681 | 678 | fbatch = &per_cpu(lru_rotate.fbatch, cpu); |
7e0cc01e | 679 | /* Disabling interrupts below acts as a compiler barrier. */ |
c2bc1681 | 680 | if (data_race(folio_batch_count(fbatch))) { |
902aaed0 HH |
681 | unsigned long flags; |
682 | ||
683 | /* No harm done if a racing interrupt already did this */ | |
b01b2141 | 684 | local_lock_irqsave(&lru_rotate.lock, flags); |
c2bc1681 | 685 | folio_batch_move_lru(fbatch, lru_move_tail_fn); |
b01b2141 | 686 | local_unlock_irqrestore(&lru_rotate.lock, flags); |
902aaed0 | 687 | } |
31560180 | 688 | |
7a3dbfe8 MWO |
689 | fbatch = &per_cpu(lru_pvecs.lru_deactivate_file, cpu); |
690 | if (folio_batch_count(fbatch)) | |
691 | folio_batch_move_lru(fbatch, lru_deactivate_file_fn); | |
eb709b0d | 692 | |
b01b2141 | 693 | pvec = &per_cpu(lru_pvecs.lru_deactivate, cpu); |
9c276cc6 | 694 | if (pagevec_count(pvec)) |
c7c7b80c | 695 | pagevec_lru_move_fn(pvec, lru_deactivate_fn); |
9c276cc6 | 696 | |
b01b2141 | 697 | pvec = &per_cpu(lru_pvecs.lru_lazyfree, cpu); |
10853a03 | 698 | if (pagevec_count(pvec)) |
c7c7b80c | 699 | pagevec_lru_move_fn(pvec, lru_lazyfree_fn); |
10853a03 | 700 | |
eb709b0d | 701 | activate_page_drain(cpu); |
31560180 MK |
702 | } |
703 | ||
704 | /** | |
7a3dbfe8 | 705 | * deactivate_file_folio() - Deactivate a file folio. |
261b6840 | 706 | * @folio: Folio to deactivate. |
31560180 | 707 | * |
261b6840 MWO |
708 | * This function hints to the VM that @folio is a good reclaim candidate, |
709 | * for example if its invalidation fails due to the folio being dirty | |
31560180 | 710 | * or under writeback. |
261b6840 | 711 | * |
7a3dbfe8 | 712 | * Context: Caller holds a reference on the folio. |
31560180 | 713 | */ |
261b6840 | 714 | void deactivate_file_folio(struct folio *folio) |
31560180 | 715 | { |
7a3dbfe8 | 716 | struct folio_batch *fbatch; |
261b6840 | 717 | |
7a3dbfe8 | 718 | /* Deactivating an unevictable folio will not accelerate reclaim */ |
261b6840 | 719 | if (folio_test_unevictable(folio)) |
821ed6bb MK |
720 | return; |
721 | ||
261b6840 MWO |
722 | folio_get(folio); |
723 | local_lock(&lru_pvecs.lock); | |
7a3dbfe8 MWO |
724 | fbatch = this_cpu_ptr(&lru_pvecs.lru_deactivate_file); |
725 | folio_batch_add_and_move(fbatch, folio, lru_deactivate_file_fn); | |
261b6840 | 726 | local_unlock(&lru_pvecs.lock); |
80bfed90 AM |
727 | } |
728 | ||
9c276cc6 MK |
729 | /* |
730 | * deactivate_page - deactivate a page | |
731 | * @page: page to deactivate | |
732 | * | |
733 | * deactivate_page() moves @page to the inactive list if @page was on the active | |
734 | * list and was not an unevictable page. This is done to accelerate the reclaim | |
735 | * of @page. | |
736 | */ | |
737 | void deactivate_page(struct page *page) | |
738 | { | |
739 | if (PageLRU(page) && PageActive(page) && !PageUnevictable(page)) { | |
b01b2141 | 740 | struct pagevec *pvec; |
9c276cc6 | 741 | |
b01b2141 IM |
742 | local_lock(&lru_pvecs.lock); |
743 | pvec = this_cpu_ptr(&lru_pvecs.lru_deactivate); | |
9c276cc6 | 744 | get_page(page); |
d479960e | 745 | if (pagevec_add_and_need_flush(pvec, page)) |
c7c7b80c | 746 | pagevec_lru_move_fn(pvec, lru_deactivate_fn); |
b01b2141 | 747 | local_unlock(&lru_pvecs.lock); |
9c276cc6 MK |
748 | } |
749 | } | |
750 | ||
10853a03 | 751 | /** |
f7ad2a6c | 752 | * mark_page_lazyfree - make an anon page lazyfree |
10853a03 MK |
753 | * @page: page to deactivate |
754 | * | |
f7ad2a6c SL |
755 | * mark_page_lazyfree() moves @page to the inactive file list. |
756 | * This is done to accelerate the reclaim of @page. | |
10853a03 | 757 | */ |
f7ad2a6c | 758 | void mark_page_lazyfree(struct page *page) |
10853a03 | 759 | { |
f7ad2a6c | 760 | if (PageLRU(page) && PageAnon(page) && PageSwapBacked(page) && |
24c92eb7 | 761 | !PageSwapCache(page) && !PageUnevictable(page)) { |
b01b2141 | 762 | struct pagevec *pvec; |
10853a03 | 763 | |
b01b2141 IM |
764 | local_lock(&lru_pvecs.lock); |
765 | pvec = this_cpu_ptr(&lru_pvecs.lru_lazyfree); | |
09cbfeaf | 766 | get_page(page); |
d479960e | 767 | if (pagevec_add_and_need_flush(pvec, page)) |
c7c7b80c | 768 | pagevec_lru_move_fn(pvec, lru_lazyfree_fn); |
b01b2141 | 769 | local_unlock(&lru_pvecs.lock); |
10853a03 MK |
770 | } |
771 | } | |
772 | ||
80bfed90 AM |
773 | void lru_add_drain(void) |
774 | { | |
b01b2141 IM |
775 | local_lock(&lru_pvecs.lock); |
776 | lru_add_drain_cpu(smp_processor_id()); | |
777 | local_unlock(&lru_pvecs.lock); | |
adb11e78 | 778 | mlock_page_drain_local(); |
b01b2141 IM |
779 | } |
780 | ||
243418e3 MK |
781 | /* |
782 | * It's called from per-cpu workqueue context in SMP case so | |
783 | * lru_add_drain_cpu and invalidate_bh_lrus_cpu should run on | |
784 | * the same cpu. It shouldn't be a problem in !SMP case since | |
785 | * the core is only one and the locks will disable preemption. | |
786 | */ | |
787 | static void lru_add_and_bh_lrus_drain(void) | |
788 | { | |
789 | local_lock(&lru_pvecs.lock); | |
790 | lru_add_drain_cpu(smp_processor_id()); | |
791 | local_unlock(&lru_pvecs.lock); | |
792 | invalidate_bh_lrus_cpu(); | |
adb11e78 | 793 | mlock_page_drain_local(); |
243418e3 MK |
794 | } |
795 | ||
b01b2141 IM |
796 | void lru_add_drain_cpu_zone(struct zone *zone) |
797 | { | |
798 | local_lock(&lru_pvecs.lock); | |
799 | lru_add_drain_cpu(smp_processor_id()); | |
800 | drain_local_pages(zone); | |
801 | local_unlock(&lru_pvecs.lock); | |
adb11e78 | 802 | mlock_page_drain_local(); |
1da177e4 LT |
803 | } |
804 | ||
6ea183d6 MH |
805 | #ifdef CONFIG_SMP |
806 | ||
807 | static DEFINE_PER_CPU(struct work_struct, lru_add_drain_work); | |
808 | ||
c4028958 | 809 | static void lru_add_drain_per_cpu(struct work_struct *dummy) |
053837fc | 810 | { |
243418e3 | 811 | lru_add_and_bh_lrus_drain(); |
053837fc NP |
812 | } |
813 | ||
9852a721 MH |
814 | /* |
815 | * Doesn't need any cpu hotplug locking because we do rely on per-cpu | |
816 | * kworkers being shut down before our page_alloc_cpu_dead callback is | |
817 | * executed on the offlined cpu. | |
818 | * Calling this function with cpu hotplug locks held can actually lead | |
819 | * to obscure indirect dependencies via WQ context. | |
820 | */ | |
3db3264d | 821 | static inline void __lru_add_drain_all(bool force_all_cpus) |
053837fc | 822 | { |
6446a513 AD |
823 | /* |
824 | * lru_drain_gen - Global pages generation number | |
825 | * | |
826 | * (A) Definition: global lru_drain_gen = x implies that all generations | |
827 | * 0 < n <= x are already *scheduled* for draining. | |
828 | * | |
829 | * This is an optimization for the highly-contended use case where a | |
830 | * user space workload keeps constantly generating a flow of pages for | |
831 | * each CPU. | |
832 | */ | |
833 | static unsigned int lru_drain_gen; | |
5fbc4616 | 834 | static struct cpumask has_work; |
6446a513 AD |
835 | static DEFINE_MUTEX(lock); |
836 | unsigned cpu, this_gen; | |
5fbc4616 | 837 | |
ce612879 MH |
838 | /* |
839 | * Make sure nobody triggers this path before mm_percpu_wq is fully | |
840 | * initialized. | |
841 | */ | |
842 | if (WARN_ON(!mm_percpu_wq)) | |
843 | return; | |
844 | ||
6446a513 AD |
845 | /* |
846 | * Guarantee pagevec counter stores visible by this CPU are visible to | |
847 | * other CPUs before loading the current drain generation. | |
848 | */ | |
849 | smp_mb(); | |
850 | ||
851 | /* | |
852 | * (B) Locally cache global LRU draining generation number | |
853 | * | |
854 | * The read barrier ensures that the counter is loaded before the mutex | |
855 | * is taken. It pairs with smp_mb() inside the mutex critical section | |
856 | * at (D). | |
857 | */ | |
858 | this_gen = smp_load_acquire(&lru_drain_gen); | |
eef1a429 | 859 | |
5fbc4616 | 860 | mutex_lock(&lock); |
eef1a429 KK |
861 | |
862 | /* | |
6446a513 AD |
863 | * (C) Exit the draining operation if a newer generation, from another |
864 | * lru_add_drain_all(), was already scheduled for draining. Check (A). | |
eef1a429 | 865 | */ |
d479960e | 866 | if (unlikely(this_gen != lru_drain_gen && !force_all_cpus)) |
eef1a429 KK |
867 | goto done; |
868 | ||
6446a513 AD |
869 | /* |
870 | * (D) Increment global generation number | |
871 | * | |
872 | * Pairs with smp_load_acquire() at (B), outside of the critical | |
873 | * section. Use a full memory barrier to guarantee that the new global | |
874 | * drain generation number is stored before loading pagevec counters. | |
875 | * | |
876 | * This pairing must be done here, before the for_each_online_cpu loop | |
877 | * below which drains the page vectors. | |
878 | * | |
879 | * Let x, y, and z represent some system CPU numbers, where x < y < z. | |
cb152a1a | 880 | * Assume CPU #z is in the middle of the for_each_online_cpu loop |
6446a513 AD |
881 | * below and has already reached CPU #y's per-cpu data. CPU #x comes |
882 | * along, adds some pages to its per-cpu vectors, then calls | |
883 | * lru_add_drain_all(). | |
884 | * | |
885 | * If the paired barrier is done at any later step, e.g. after the | |
886 | * loop, CPU #x will just exit at (C) and miss flushing out all of its | |
887 | * added pages. | |
888 | */ | |
889 | WRITE_ONCE(lru_drain_gen, lru_drain_gen + 1); | |
890 | smp_mb(); | |
eef1a429 | 891 | |
5fbc4616 | 892 | cpumask_clear(&has_work); |
5fbc4616 CM |
893 | for_each_online_cpu(cpu) { |
894 | struct work_struct *work = &per_cpu(lru_add_drain_work, cpu); | |
895 | ||
70dea534 | 896 | if (folio_batch_count(&per_cpu(lru_pvecs.lru_add, cpu)) || |
c2bc1681 | 897 | data_race(folio_batch_count(&per_cpu(lru_rotate.fbatch, cpu))) || |
7a3dbfe8 | 898 | folio_batch_count(&per_cpu(lru_pvecs.lru_deactivate_file, cpu)) || |
b01b2141 IM |
899 | pagevec_count(&per_cpu(lru_pvecs.lru_deactivate, cpu)) || |
900 | pagevec_count(&per_cpu(lru_pvecs.lru_lazyfree, cpu)) || | |
8cc621d2 | 901 | need_activate_page_drain(cpu) || |
2fbb0c10 | 902 | need_mlock_page_drain(cpu) || |
8cc621d2 | 903 | has_bh_in_lru(cpu, NULL)) { |
5fbc4616 | 904 | INIT_WORK(work, lru_add_drain_per_cpu); |
ce612879 | 905 | queue_work_on(cpu, mm_percpu_wq, work); |
6446a513 | 906 | __cpumask_set_cpu(cpu, &has_work); |
5fbc4616 CM |
907 | } |
908 | } | |
909 | ||
910 | for_each_cpu(cpu, &has_work) | |
911 | flush_work(&per_cpu(lru_add_drain_work, cpu)); | |
912 | ||
eef1a429 | 913 | done: |
5fbc4616 | 914 | mutex_unlock(&lock); |
053837fc | 915 | } |
d479960e MK |
916 | |
917 | void lru_add_drain_all(void) | |
918 | { | |
919 | __lru_add_drain_all(false); | |
920 | } | |
6ea183d6 MH |
921 | #else |
922 | void lru_add_drain_all(void) | |
923 | { | |
924 | lru_add_drain(); | |
925 | } | |
6446a513 | 926 | #endif /* CONFIG_SMP */ |
053837fc | 927 | |
d479960e MK |
928 | atomic_t lru_disable_count = ATOMIC_INIT(0); |
929 | ||
930 | /* | |
931 | * lru_cache_disable() needs to be called before we start compiling | |
932 | * a list of pages to be migrated using isolate_lru_page(). | |
933 | * It drains pages on LRU cache and then disable on all cpus until | |
934 | * lru_cache_enable is called. | |
935 | * | |
936 | * Must be paired with a call to lru_cache_enable(). | |
937 | */ | |
938 | void lru_cache_disable(void) | |
939 | { | |
940 | atomic_inc(&lru_disable_count); | |
d479960e | 941 | /* |
ff042f4a MT |
942 | * Readers of lru_disable_count are protected by either disabling |
943 | * preemption or rcu_read_lock: | |
944 | * | |
945 | * preempt_disable, local_irq_disable [bh_lru_lock()] | |
946 | * rcu_read_lock [rt_spin_lock CONFIG_PREEMPT_RT] | |
947 | * preempt_disable [local_lock !CONFIG_PREEMPT_RT] | |
948 | * | |
949 | * Since v5.1 kernel, synchronize_rcu() is guaranteed to wait on | |
950 | * preempt_disable() regions of code. So any CPU which sees | |
951 | * lru_disable_count = 0 will have exited the critical | |
952 | * section when synchronize_rcu() returns. | |
d479960e | 953 | */ |
31733463 | 954 | synchronize_rcu_expedited(); |
ff042f4a | 955 | #ifdef CONFIG_SMP |
d479960e MK |
956 | __lru_add_drain_all(true); |
957 | #else | |
243418e3 | 958 | lru_add_and_bh_lrus_drain(); |
d479960e MK |
959 | #endif |
960 | } | |
961 | ||
aabfb572 | 962 | /** |
ea1754a0 | 963 | * release_pages - batched put_page() |
aabfb572 MH |
964 | * @pages: array of pages to release |
965 | * @nr: number of pages | |
1da177e4 | 966 | * |
aabfb572 MH |
967 | * Decrement the reference count on all the pages in @pages. If it |
968 | * fell to zero, remove the page from the LRU and free it. | |
1da177e4 | 969 | */ |
c6f92f9f | 970 | void release_pages(struct page **pages, int nr) |
1da177e4 LT |
971 | { |
972 | int i; | |
cc59850e | 973 | LIST_HEAD(pages_to_free); |
6168d0da | 974 | struct lruvec *lruvec = NULL; |
0de340cb | 975 | unsigned long flags = 0; |
3f649ab7 | 976 | unsigned int lock_batch; |
1da177e4 | 977 | |
1da177e4 LT |
978 | for (i = 0; i < nr; i++) { |
979 | struct page *page = pages[i]; | |
0de340cb | 980 | struct folio *folio = page_folio(page); |
1da177e4 | 981 | |
aabfb572 MH |
982 | /* |
983 | * Make sure the IRQ-safe lock-holding time does not get | |
984 | * excessive with a continuous string of pages from the | |
6168d0da | 985 | * same lruvec. The lock is held only if lruvec != NULL. |
aabfb572 | 986 | */ |
6168d0da AS |
987 | if (lruvec && ++lock_batch == SWAP_CLUSTER_MAX) { |
988 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
989 | lruvec = NULL; | |
aabfb572 MH |
990 | } |
991 | ||
0de340cb | 992 | page = &folio->page; |
6fcb52a5 | 993 | if (is_huge_zero_page(page)) |
aa88b68c | 994 | continue; |
aa88b68c | 995 | |
c5d6c45e | 996 | if (is_zone_device_page(page)) { |
6168d0da AS |
997 | if (lruvec) { |
998 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
999 | lruvec = NULL; | |
df6ad698 | 1000 | } |
89574945 | 1001 | if (put_devmap_managed_page(page)) |
c5d6c45e | 1002 | continue; |
43fbdeb3 | 1003 | if (put_page_testzero(page)) |
27674ef6 | 1004 | free_zone_device_page(page); |
43fbdeb3 | 1005 | continue; |
df6ad698 JG |
1006 | } |
1007 | ||
b5810039 | 1008 | if (!put_page_testzero(page)) |
1da177e4 LT |
1009 | continue; |
1010 | ||
ddc58f27 | 1011 | if (PageCompound(page)) { |
6168d0da AS |
1012 | if (lruvec) { |
1013 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
1014 | lruvec = NULL; | |
ddc58f27 KS |
1015 | } |
1016 | __put_compound_page(page); | |
1017 | continue; | |
1018 | } | |
1019 | ||
46453a6e | 1020 | if (PageLRU(page)) { |
2a5e4e34 AD |
1021 | struct lruvec *prev_lruvec = lruvec; |
1022 | ||
0de340cb | 1023 | lruvec = folio_lruvec_relock_irqsave(folio, lruvec, |
2a5e4e34 AD |
1024 | &flags); |
1025 | if (prev_lruvec != lruvec) | |
aabfb572 | 1026 | lock_batch = 0; |
fa9add64 | 1027 | |
46ae6b2c | 1028 | del_page_from_lru_list(page, lruvec); |
87560179 | 1029 | __clear_page_lru_flags(page); |
46453a6e NP |
1030 | } |
1031 | ||
b109b870 HD |
1032 | /* |
1033 | * In rare cases, when truncation or holepunching raced with | |
1034 | * munlock after VM_LOCKED was cleared, Mlocked may still be | |
1035 | * found set here. This does not indicate a problem, unless | |
1036 | * "unevictable_pgs_cleared" appears worryingly large. | |
1037 | */ | |
1038 | if (unlikely(PageMlocked(page))) { | |
1039 | __ClearPageMlocked(page); | |
1040 | dec_zone_page_state(page, NR_MLOCK); | |
1041 | count_vm_event(UNEVICTABLE_PGCLEARED); | |
1042 | } | |
1043 | ||
cc59850e | 1044 | list_add(&page->lru, &pages_to_free); |
1da177e4 | 1045 | } |
6168d0da AS |
1046 | if (lruvec) |
1047 | unlock_page_lruvec_irqrestore(lruvec, flags); | |
1da177e4 | 1048 | |
747db954 | 1049 | mem_cgroup_uncharge_list(&pages_to_free); |
2d4894b5 | 1050 | free_unref_page_list(&pages_to_free); |
1da177e4 | 1051 | } |
0be8557b | 1052 | EXPORT_SYMBOL(release_pages); |
1da177e4 LT |
1053 | |
1054 | /* | |
1055 | * The pages which we're about to release may be in the deferred lru-addition | |
1056 | * queues. That would prevent them from really being freed right now. That's | |
1057 | * OK from a correctness point of view but is inefficient - those pages may be | |
1058 | * cache-warm and we want to give them back to the page allocator ASAP. | |
1059 | * | |
70dea534 MWO |
1060 | * So __pagevec_release() will drain those queues here. |
1061 | * folio_batch_move_lru() calls folios_put() directly to avoid | |
1da177e4 LT |
1062 | * mutual recursion. |
1063 | */ | |
1064 | void __pagevec_release(struct pagevec *pvec) | |
1065 | { | |
7f0b5fb9 | 1066 | if (!pvec->percpu_pvec_drained) { |
d9ed0d08 | 1067 | lru_add_drain(); |
7f0b5fb9 | 1068 | pvec->percpu_pvec_drained = true; |
d9ed0d08 | 1069 | } |
c6f92f9f | 1070 | release_pages(pvec->pages, pagevec_count(pvec)); |
1da177e4 LT |
1071 | pagevec_reinit(pvec); |
1072 | } | |
7f285701 SF |
1073 | EXPORT_SYMBOL(__pagevec_release); |
1074 | ||
0cd6144a | 1075 | /** |
1613fac9 MWO |
1076 | * folio_batch_remove_exceptionals() - Prune non-folios from a batch. |
1077 | * @fbatch: The batch to prune | |
0cd6144a | 1078 | * |
1613fac9 MWO |
1079 | * find_get_entries() fills a batch with both folios and shadow/swap/DAX |
1080 | * entries. This function prunes all the non-folio entries from @fbatch | |
1081 | * without leaving holes, so that it can be passed on to folio-only batch | |
1082 | * operations. | |
0cd6144a | 1083 | */ |
1613fac9 | 1084 | void folio_batch_remove_exceptionals(struct folio_batch *fbatch) |
0cd6144a | 1085 | { |
1613fac9 | 1086 | unsigned int i, j; |
0cd6144a | 1087 | |
1613fac9 MWO |
1088 | for (i = 0, j = 0; i < folio_batch_count(fbatch); i++) { |
1089 | struct folio *folio = fbatch->folios[i]; | |
1090 | if (!xa_is_value(folio)) | |
1091 | fbatch->folios[j++] = folio; | |
0cd6144a | 1092 | } |
1613fac9 | 1093 | fbatch->nr = j; |
0cd6144a JW |
1094 | } |
1095 | ||
1da177e4 | 1096 | /** |
b947cee4 | 1097 | * pagevec_lookup_range - gang pagecache lookup |
1da177e4 LT |
1098 | * @pvec: Where the resulting pages are placed |
1099 | * @mapping: The address_space to search | |
1100 | * @start: The starting page index | |
b947cee4 | 1101 | * @end: The final page index |
1da177e4 | 1102 | * |
e02a9f04 | 1103 | * pagevec_lookup_range() will search for & return a group of up to PAGEVEC_SIZE |
b947cee4 JK |
1104 | * pages in the mapping starting from index @start and upto index @end |
1105 | * (inclusive). The pages are placed in @pvec. pagevec_lookup() takes a | |
1da177e4 LT |
1106 | * reference against the pages in @pvec. |
1107 | * | |
1108 | * The search returns a group of mapping-contiguous pages with ascending | |
d72dc8a2 JK |
1109 | * indexes. There may be holes in the indices due to not-present pages. We |
1110 | * also update @start to index the next page for the traversal. | |
1da177e4 | 1111 | * |
b947cee4 | 1112 | * pagevec_lookup_range() returns the number of pages which were found. If this |
e02a9f04 | 1113 | * number is smaller than PAGEVEC_SIZE, the end of specified range has been |
b947cee4 | 1114 | * reached. |
1da177e4 | 1115 | */ |
b947cee4 | 1116 | unsigned pagevec_lookup_range(struct pagevec *pvec, |
397162ff | 1117 | struct address_space *mapping, pgoff_t *start, pgoff_t end) |
1da177e4 | 1118 | { |
397162ff | 1119 | pvec->nr = find_get_pages_range(mapping, start, end, PAGEVEC_SIZE, |
b947cee4 | 1120 | pvec->pages); |
1da177e4 LT |
1121 | return pagevec_count(pvec); |
1122 | } | |
b947cee4 | 1123 | EXPORT_SYMBOL(pagevec_lookup_range); |
78539fdf | 1124 | |
72b045ae JK |
1125 | unsigned pagevec_lookup_range_tag(struct pagevec *pvec, |
1126 | struct address_space *mapping, pgoff_t *index, pgoff_t end, | |
10bbd235 | 1127 | xa_mark_t tag) |
1da177e4 | 1128 | { |
72b045ae | 1129 | pvec->nr = find_get_pages_range_tag(mapping, index, end, tag, |
67fd707f | 1130 | PAGEVEC_SIZE, pvec->pages); |
1da177e4 LT |
1131 | return pagevec_count(pvec); |
1132 | } | |
72b045ae | 1133 | EXPORT_SYMBOL(pagevec_lookup_range_tag); |
1da177e4 | 1134 | |
1da177e4 LT |
1135 | /* |
1136 | * Perform any setup for the swap system | |
1137 | */ | |
1138 | void __init swap_setup(void) | |
1139 | { | |
ca79b0c2 | 1140 | unsigned long megs = totalram_pages() >> (20 - PAGE_SHIFT); |
e0bf68dd | 1141 | |
1da177e4 LT |
1142 | /* Use a smaller cluster for small-memory machines */ |
1143 | if (megs < 16) | |
1144 | page_cluster = 2; | |
1145 | else | |
1146 | page_cluster = 3; | |
1147 | /* | |
1148 | * Right now other parts of the system means that we | |
1149 | * _really_ don't want to cluster much more | |
1150 | */ | |
1da177e4 | 1151 | } |