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