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