xref: /linux/mm/swap.c (revision ec1c86b25f4bdd9dce6436c0539d2a6ae676e1c4)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  linux/mm/swap.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds /*
9183ff22bSSimon Arlott  * This file contains the default values for the operation of the
101da177e4SLinus Torvalds  * Linux VM subsystem. Fine-tuning documentation can be found in
1157043247SMauro Carvalho Chehab  * Documentation/admin-guide/sysctl/vm.rst.
121da177e4SLinus Torvalds  * Started 18.12.91
131da177e4SLinus Torvalds  * Swap aging added 23.2.95, Stephen Tweedie.
141da177e4SLinus Torvalds  * Buffermem limits added 12.3.98, Rik van Riel.
151da177e4SLinus Torvalds  */
161da177e4SLinus Torvalds 
171da177e4SLinus Torvalds #include <linux/mm.h>
181da177e4SLinus Torvalds #include <linux/sched.h>
191da177e4SLinus Torvalds #include <linux/kernel_stat.h>
201da177e4SLinus Torvalds #include <linux/swap.h>
211da177e4SLinus Torvalds #include <linux/mman.h>
221da177e4SLinus Torvalds #include <linux/pagemap.h>
231da177e4SLinus Torvalds #include <linux/pagevec.h>
241da177e4SLinus Torvalds #include <linux/init.h>
25b95f1b31SPaul Gortmaker #include <linux/export.h>
261da177e4SLinus Torvalds #include <linux/mm_inline.h>
271da177e4SLinus Torvalds #include <linux/percpu_counter.h>
283565fce3SDan Williams #include <linux/memremap.h>
291da177e4SLinus Torvalds #include <linux/percpu.h>
301da177e4SLinus Torvalds #include <linux/cpu.h>
311da177e4SLinus Torvalds #include <linux/notifier.h>
32e0bf68ddSPeter Zijlstra #include <linux/backing-dev.h>
3366e1707bSBalbir Singh #include <linux/memcontrol.h>
345a0e3ad6STejun Heo #include <linux/gfp.h>
35a27bb332SKent Overstreet #include <linux/uio.h>
36822fc613SNaoya Horiguchi #include <linux/hugetlb.h>
3733c3fc71SVladimir Davydov #include <linux/page_idle.h>
38b01b2141SIngo Molnar #include <linux/local_lock.h>
398cc621d2SMinchan Kim #include <linux/buffer_head.h>
401da177e4SLinus Torvalds 
4164d6519dSLee Schermerhorn #include "internal.h"
4264d6519dSLee Schermerhorn 
43c6286c98SMel Gorman #define CREATE_TRACE_POINTS
44c6286c98SMel Gorman #include <trace/events/pagemap.h>
45c6286c98SMel Gorman 
461da177e4SLinus Torvalds /* How many pages do we try to swap or page in/out together? */
471da177e4SLinus Torvalds int page_cluster;
481da177e4SLinus Torvalds 
49c2bc1681SMatthew Wilcox (Oracle) /* Protecting only lru_rotate.fbatch which requires disabling interrupts */
50b01b2141SIngo Molnar struct lru_rotate {
51b01b2141SIngo Molnar 	local_lock_t lock;
52c2bc1681SMatthew Wilcox (Oracle) 	struct folio_batch fbatch;
53b01b2141SIngo Molnar };
54b01b2141SIngo Molnar static DEFINE_PER_CPU(struct lru_rotate, lru_rotate) = {
55b01b2141SIngo Molnar 	.lock = INIT_LOCAL_LOCK(lock),
56b01b2141SIngo Molnar };
57b01b2141SIngo Molnar 
58b01b2141SIngo Molnar /*
5982ac64d8SMatthew Wilcox (Oracle)  * The following folio batches are grouped together because they are protected
60b01b2141SIngo Molnar  * by disabling preemption (and interrupts remain enabled).
61b01b2141SIngo Molnar  */
6282ac64d8SMatthew Wilcox (Oracle) struct cpu_fbatches {
63b01b2141SIngo Molnar 	local_lock_t lock;
6470dea534SMatthew Wilcox (Oracle) 	struct folio_batch lru_add;
657a3dbfe8SMatthew Wilcox (Oracle) 	struct folio_batch lru_deactivate_file;
6685cd7791SMatthew Wilcox (Oracle) 	struct folio_batch lru_deactivate;
67cec394baSMatthew Wilcox (Oracle) 	struct folio_batch lru_lazyfree;
68a4a921aaSMing Li #ifdef CONFIG_SMP
693a44610bSMatthew Wilcox (Oracle) 	struct folio_batch activate;
70a4a921aaSMing Li #endif
71b01b2141SIngo Molnar };
7282ac64d8SMatthew Wilcox (Oracle) static DEFINE_PER_CPU(struct cpu_fbatches, cpu_fbatches) = {
73b01b2141SIngo Molnar 	.lock = INIT_LOCAL_LOCK(lock),
74b01b2141SIngo Molnar };
75902aaed0SHisashi Hifumi 
76b221385bSAdrian Bunk /*
77b109b870SHugh Dickins  * This path almost never happens for VM activity - pages are normally freed
78b109b870SHugh Dickins  * via pagevecs.  But it gets used by networking - and for compound pages.
79b221385bSAdrian Bunk  */
80188e8caeSMatthew Wilcox (Oracle) static void __page_cache_release(struct folio *folio)
81b221385bSAdrian Bunk {
82188e8caeSMatthew Wilcox (Oracle) 	if (folio_test_lru(folio)) {
83fa9add64SHugh Dickins 		struct lruvec *lruvec;
84fa9add64SHugh Dickins 		unsigned long flags;
85b221385bSAdrian Bunk 
86e809c3feSMatthew Wilcox (Oracle) 		lruvec = folio_lruvec_lock_irqsave(folio, &flags);
87188e8caeSMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
88188e8caeSMatthew Wilcox (Oracle) 		__folio_clear_lru_flags(folio);
896168d0daSAlex Shi 		unlock_page_lruvec_irqrestore(lruvec, flags);
90b221385bSAdrian Bunk 	}
91188e8caeSMatthew Wilcox (Oracle) 	/* See comment on folio_test_mlocked in release_pages() */
92188e8caeSMatthew Wilcox (Oracle) 	if (unlikely(folio_test_mlocked(folio))) {
93188e8caeSMatthew Wilcox (Oracle) 		long nr_pages = folio_nr_pages(folio);
94b109b870SHugh Dickins 
95188e8caeSMatthew Wilcox (Oracle) 		__folio_clear_mlocked(folio);
96188e8caeSMatthew Wilcox (Oracle) 		zone_stat_mod_folio(folio, NR_MLOCK, -nr_pages);
97b109b870SHugh Dickins 		count_vm_events(UNEVICTABLE_PGCLEARED, nr_pages);
98b109b870SHugh Dickins 	}
9991807063SAndrea Arcangeli }
10091807063SAndrea Arcangeli 
10183d99659SMatthew Wilcox (Oracle) static void __folio_put_small(struct folio *folio)
10291807063SAndrea Arcangeli {
103188e8caeSMatthew Wilcox (Oracle) 	__page_cache_release(folio);
10483d99659SMatthew Wilcox (Oracle) 	mem_cgroup_uncharge(folio);
10583d99659SMatthew Wilcox (Oracle) 	free_unref_page(&folio->page, 0);
106b221385bSAdrian Bunk }
107b221385bSAdrian Bunk 
1085ef82fe7SMatthew Wilcox (Oracle) static void __folio_put_large(struct folio *folio)
10991807063SAndrea Arcangeli {
110822fc613SNaoya Horiguchi 	/*
111822fc613SNaoya Horiguchi 	 * __page_cache_release() is supposed to be called for thp, not for
112822fc613SNaoya Horiguchi 	 * hugetlb. This is because hugetlb page does never have PageLRU set
113822fc613SNaoya Horiguchi 	 * (it's never listed to any LRU lists) and no memcg routines should
114822fc613SNaoya Horiguchi 	 * be called for hugetlb (it has a separate hugetlb_cgroup.)
115822fc613SNaoya Horiguchi 	 */
1165ef82fe7SMatthew Wilcox (Oracle) 	if (!folio_test_hugetlb(folio))
117188e8caeSMatthew Wilcox (Oracle) 		__page_cache_release(folio);
1185375336cSMatthew Wilcox (Oracle) 	destroy_large_folio(folio);
11991807063SAndrea Arcangeli }
12091807063SAndrea Arcangeli 
1218d29c703SMatthew Wilcox (Oracle) void __folio_put(struct folio *folio)
122c747ce79SJianyu Zhan {
1238d29c703SMatthew Wilcox (Oracle) 	if (unlikely(folio_is_zone_device(folio)))
1248d29c703SMatthew Wilcox (Oracle) 		free_zone_device_page(&folio->page);
1258d29c703SMatthew Wilcox (Oracle) 	else if (unlikely(folio_test_large(folio)))
1265ef82fe7SMatthew Wilcox (Oracle) 		__folio_put_large(folio);
12726296ad2SAndrew Morton 	else
12883d99659SMatthew Wilcox (Oracle) 		__folio_put_small(folio);
12926296ad2SAndrew Morton }
1308d29c703SMatthew Wilcox (Oracle) EXPORT_SYMBOL(__folio_put);
13170b50f94SAndrea Arcangeli 
1321d7ea732SAlexander Zarochentsev /**
1337682486bSRandy Dunlap  * put_pages_list() - release a list of pages
1347682486bSRandy Dunlap  * @pages: list of pages threaded on page->lru
1351d7ea732SAlexander Zarochentsev  *
136988c69f1SMatthew Wilcox (Oracle)  * Release a list of pages which are strung together on page.lru.
1371d7ea732SAlexander Zarochentsev  */
1381d7ea732SAlexander Zarochentsev void put_pages_list(struct list_head *pages)
1391d7ea732SAlexander Zarochentsev {
1402f58e5deSMatthew Wilcox (Oracle) 	struct folio *folio, *next;
1411d7ea732SAlexander Zarochentsev 
1422f58e5deSMatthew Wilcox (Oracle) 	list_for_each_entry_safe(folio, next, pages, lru) {
1432f58e5deSMatthew Wilcox (Oracle) 		if (!folio_put_testzero(folio)) {
1442f58e5deSMatthew Wilcox (Oracle) 			list_del(&folio->lru);
145988c69f1SMatthew Wilcox (Oracle) 			continue;
1461d7ea732SAlexander Zarochentsev 		}
1472f58e5deSMatthew Wilcox (Oracle) 		if (folio_test_large(folio)) {
1482f58e5deSMatthew Wilcox (Oracle) 			list_del(&folio->lru);
1495ef82fe7SMatthew Wilcox (Oracle) 			__folio_put_large(folio);
150988c69f1SMatthew Wilcox (Oracle) 			continue;
151988c69f1SMatthew Wilcox (Oracle) 		}
1522f58e5deSMatthew Wilcox (Oracle) 		/* LRU flag must be clear because it's passed using the lru */
153988c69f1SMatthew Wilcox (Oracle) 	}
154988c69f1SMatthew Wilcox (Oracle) 
155988c69f1SMatthew Wilcox (Oracle) 	free_unref_page_list(pages);
1563cd018b4SMatthew Wilcox 	INIT_LIST_HEAD(pages);
1571d7ea732SAlexander Zarochentsev }
1581d7ea732SAlexander Zarochentsev EXPORT_SYMBOL(put_pages_list);
1591d7ea732SAlexander Zarochentsev 
16018022c5dSMel Gorman /*
16118022c5dSMel Gorman  * get_kernel_pages() - pin kernel pages in memory
16218022c5dSMel Gorman  * @kiov:	An array of struct kvec structures
16318022c5dSMel Gorman  * @nr_segs:	number of segments to pin
16418022c5dSMel Gorman  * @write:	pinning for read/write, currently ignored
16518022c5dSMel Gorman  * @pages:	array that receives pointers to the pages pinned.
16618022c5dSMel Gorman  *		Should be at least nr_segs long.
16718022c5dSMel Gorman  *
168133d2743SMiaohe Lin  * Returns number of pages pinned. This may be fewer than the number requested.
169133d2743SMiaohe Lin  * If nr_segs is 0 or negative, returns 0.  If no pages were pinned, returns 0.
170133d2743SMiaohe Lin  * Each page returned must be released with a put_page() call when it is
171133d2743SMiaohe Lin  * finished with.
17218022c5dSMel Gorman  */
17318022c5dSMel Gorman int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write,
17418022c5dSMel Gorman 		struct page **pages)
17518022c5dSMel Gorman {
17618022c5dSMel Gorman 	int seg;
17718022c5dSMel Gorman 
17818022c5dSMel Gorman 	for (seg = 0; seg < nr_segs; seg++) {
17918022c5dSMel Gorman 		if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE))
18018022c5dSMel Gorman 			return seg;
18118022c5dSMel Gorman 
1825a178119SMel Gorman 		pages[seg] = kmap_to_page(kiov[seg].iov_base);
18309cbfeafSKirill A. Shutemov 		get_page(pages[seg]);
18418022c5dSMel Gorman 	}
18518022c5dSMel Gorman 
18618022c5dSMel Gorman 	return seg;
18718022c5dSMel Gorman }
18818022c5dSMel Gorman EXPORT_SYMBOL_GPL(get_kernel_pages);
18918022c5dSMel Gorman 
190c2bc1681SMatthew Wilcox (Oracle) typedef void (*move_fn_t)(struct lruvec *lruvec, struct folio *folio);
191c2bc1681SMatthew Wilcox (Oracle) 
19270dea534SMatthew Wilcox (Oracle) static void lru_add_fn(struct lruvec *lruvec, struct folio *folio)
1937d80dd09SMatthew Wilcox (Oracle) {
1947d80dd09SMatthew Wilcox (Oracle) 	int was_unevictable = folio_test_clear_unevictable(folio);
1957d80dd09SMatthew Wilcox (Oracle) 	long nr_pages = folio_nr_pages(folio);
1967d80dd09SMatthew Wilcox (Oracle) 
1977d80dd09SMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
1987d80dd09SMatthew Wilcox (Oracle) 
1997d80dd09SMatthew Wilcox (Oracle) 	/*
2007d80dd09SMatthew Wilcox (Oracle) 	 * Is an smp_mb__after_atomic() still required here, before
201188e8caeSMatthew Wilcox (Oracle) 	 * folio_evictable() tests the mlocked flag, to rule out the possibility
2027d80dd09SMatthew Wilcox (Oracle) 	 * of stranding an evictable folio on an unevictable LRU?  I think
203188e8caeSMatthew Wilcox (Oracle) 	 * not, because __munlock_page() only clears the mlocked flag
204188e8caeSMatthew Wilcox (Oracle) 	 * while the LRU lock is held.
2057d80dd09SMatthew Wilcox (Oracle) 	 *
2067d80dd09SMatthew Wilcox (Oracle) 	 * (That is not true of __page_cache_release(), and not necessarily
207188e8caeSMatthew Wilcox (Oracle) 	 * true of release_pages(): but those only clear the mlocked flag after
208188e8caeSMatthew Wilcox (Oracle) 	 * folio_put_testzero() has excluded any other users of the folio.)
2097d80dd09SMatthew Wilcox (Oracle) 	 */
2107d80dd09SMatthew Wilcox (Oracle) 	if (folio_evictable(folio)) {
2117d80dd09SMatthew Wilcox (Oracle) 		if (was_unevictable)
2127d80dd09SMatthew Wilcox (Oracle) 			__count_vm_events(UNEVICTABLE_PGRESCUED, nr_pages);
2137d80dd09SMatthew Wilcox (Oracle) 	} else {
2147d80dd09SMatthew Wilcox (Oracle) 		folio_clear_active(folio);
2157d80dd09SMatthew Wilcox (Oracle) 		folio_set_unevictable(folio);
2167d80dd09SMatthew Wilcox (Oracle) 		/*
2177d80dd09SMatthew Wilcox (Oracle) 		 * folio->mlock_count = !!folio_test_mlocked(folio)?
2187d80dd09SMatthew Wilcox (Oracle) 		 * But that leaves __mlock_page() in doubt whether another
2197d80dd09SMatthew Wilcox (Oracle) 		 * actor has already counted the mlock or not.  Err on the
2207d80dd09SMatthew Wilcox (Oracle) 		 * safe side, underestimate, let page reclaim fix it, rather
2217d80dd09SMatthew Wilcox (Oracle) 		 * than leaving a page on the unevictable LRU indefinitely.
2227d80dd09SMatthew Wilcox (Oracle) 		 */
2237d80dd09SMatthew Wilcox (Oracle) 		folio->mlock_count = 0;
2247d80dd09SMatthew Wilcox (Oracle) 		if (!was_unevictable)
2257d80dd09SMatthew Wilcox (Oracle) 			__count_vm_events(UNEVICTABLE_PGCULLED, nr_pages);
2267d80dd09SMatthew Wilcox (Oracle) 	}
2277d80dd09SMatthew Wilcox (Oracle) 
2287d80dd09SMatthew Wilcox (Oracle) 	lruvec_add_folio(lruvec, folio);
2297d80dd09SMatthew Wilcox (Oracle) 	trace_mm_lru_insertion(folio);
2307d80dd09SMatthew Wilcox (Oracle) }
2317d80dd09SMatthew Wilcox (Oracle) 
232c2bc1681SMatthew Wilcox (Oracle) static void folio_batch_move_lru(struct folio_batch *fbatch, move_fn_t move_fn)
233902aaed0SHisashi Hifumi {
234902aaed0SHisashi Hifumi 	int i;
2356168d0daSAlex Shi 	struct lruvec *lruvec = NULL;
2363dd7ae8eSShaohua Li 	unsigned long flags = 0;
237902aaed0SHisashi Hifumi 
238c2bc1681SMatthew Wilcox (Oracle) 	for (i = 0; i < folio_batch_count(fbatch); i++) {
239c2bc1681SMatthew Wilcox (Oracle) 		struct folio *folio = fbatch->folios[i];
2403dd7ae8eSShaohua Li 
241c2bc1681SMatthew Wilcox (Oracle) 		/* block memcg migration while the folio moves between lru */
24270dea534SMatthew Wilcox (Oracle) 		if (move_fn != lru_add_fn && !folio_test_clear_lru(folio))
243fc574c23SAlex Shi 			continue;
244fc574c23SAlex Shi 
2450de340cbSMatthew Wilcox (Oracle) 		lruvec = folio_lruvec_relock_irqsave(folio, lruvec, &flags);
246c2bc1681SMatthew Wilcox (Oracle) 		move_fn(lruvec, folio);
247fc574c23SAlex Shi 
248c2bc1681SMatthew Wilcox (Oracle) 		folio_set_lru(folio);
2493dd7ae8eSShaohua Li 	}
250c2bc1681SMatthew Wilcox (Oracle) 
2516168d0daSAlex Shi 	if (lruvec)
2526168d0daSAlex Shi 		unlock_page_lruvec_irqrestore(lruvec, flags);
253c2bc1681SMatthew Wilcox (Oracle) 	folios_put(fbatch->folios, folio_batch_count(fbatch));
254c2bc1681SMatthew Wilcox (Oracle) 	folio_batch_init(fbatch);
2553dd7ae8eSShaohua Li }
2563dd7ae8eSShaohua Li 
257c2bc1681SMatthew Wilcox (Oracle) static void folio_batch_add_and_move(struct folio_batch *fbatch,
258c2bc1681SMatthew Wilcox (Oracle) 		struct folio *folio, move_fn_t move_fn)
2593dd7ae8eSShaohua Li {
260c2bc1681SMatthew Wilcox (Oracle) 	if (folio_batch_add(fbatch, folio) && !folio_test_large(folio) &&
261c2bc1681SMatthew Wilcox (Oracle) 	    !lru_cache_disabled())
262c2bc1681SMatthew Wilcox (Oracle) 		return;
263c2bc1681SMatthew Wilcox (Oracle) 	folio_batch_move_lru(fbatch, move_fn);
264c2bc1681SMatthew Wilcox (Oracle) }
265575ced1cSMatthew Wilcox (Oracle) 
266c2bc1681SMatthew Wilcox (Oracle) static void lru_move_tail_fn(struct lruvec *lruvec, struct folio *folio)
267c2bc1681SMatthew Wilcox (Oracle) {
268575ced1cSMatthew Wilcox (Oracle) 	if (!folio_test_unevictable(folio)) {
269575ced1cSMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
270575ced1cSMatthew Wilcox (Oracle) 		folio_clear_active(folio);
271575ced1cSMatthew Wilcox (Oracle) 		lruvec_add_folio_tail(lruvec, folio);
272575ced1cSMatthew Wilcox (Oracle) 		__count_vm_events(PGROTATED, folio_nr_pages(folio));
273902aaed0SHisashi Hifumi 	}
274902aaed0SHisashi Hifumi }
2753dd7ae8eSShaohua Li 
2763dd7ae8eSShaohua Li /*
277575ced1cSMatthew Wilcox (Oracle)  * Writeback is about to end against a folio which has been marked for
278575ced1cSMatthew Wilcox (Oracle)  * immediate reclaim.  If it still appears to be reclaimable, move it
279575ced1cSMatthew Wilcox (Oracle)  * to the tail of the inactive list.
280c7c7b80cSAlex Shi  *
281575ced1cSMatthew Wilcox (Oracle)  * folio_rotate_reclaimable() must disable IRQs, to prevent nasty races.
2821da177e4SLinus Torvalds  */
283575ced1cSMatthew Wilcox (Oracle) void folio_rotate_reclaimable(struct folio *folio)
2841da177e4SLinus Torvalds {
285575ced1cSMatthew Wilcox (Oracle) 	if (!folio_test_locked(folio) && !folio_test_dirty(folio) &&
286575ced1cSMatthew Wilcox (Oracle) 	    !folio_test_unevictable(folio) && folio_test_lru(folio)) {
287c2bc1681SMatthew Wilcox (Oracle) 		struct folio_batch *fbatch;
2881da177e4SLinus Torvalds 		unsigned long flags;
2891da177e4SLinus Torvalds 
290575ced1cSMatthew Wilcox (Oracle) 		folio_get(folio);
291b01b2141SIngo Molnar 		local_lock_irqsave(&lru_rotate.lock, flags);
292c2bc1681SMatthew Wilcox (Oracle) 		fbatch = this_cpu_ptr(&lru_rotate.fbatch);
293c2bc1681SMatthew Wilcox (Oracle) 		folio_batch_add_and_move(fbatch, folio, lru_move_tail_fn);
294b01b2141SIngo Molnar 		local_unlock_irqrestore(&lru_rotate.lock, flags);
295ac6aadb2SMiklos Szeredi 	}
2961da177e4SLinus Torvalds }
2971da177e4SLinus Torvalds 
29896f8bf4fSJohannes Weiner void lru_note_cost(struct lruvec *lruvec, bool file, unsigned int nr_pages)
2993e2f41f1SKOSAKI Motohiro {
3007cf111bcSJohannes Weiner 	do {
3017cf111bcSJohannes Weiner 		unsigned long lrusize;
3027cf111bcSJohannes Weiner 
3036168d0daSAlex Shi 		/*
3046168d0daSAlex Shi 		 * Hold lruvec->lru_lock is safe here, since
3056168d0daSAlex Shi 		 * 1) The pinned lruvec in reclaim, or
3066168d0daSAlex Shi 		 * 2) From a pre-LRU page during refault (which also holds the
3076168d0daSAlex Shi 		 *    rcu lock, so would be safe even if the page was on the LRU
3086168d0daSAlex Shi 		 *    and could move simultaneously to a new lruvec).
3096168d0daSAlex Shi 		 */
3106168d0daSAlex Shi 		spin_lock_irq(&lruvec->lru_lock);
3117cf111bcSJohannes Weiner 		/* Record cost event */
31296f8bf4fSJohannes Weiner 		if (file)
31396f8bf4fSJohannes Weiner 			lruvec->file_cost += nr_pages;
3141431d4d1SJohannes Weiner 		else
31596f8bf4fSJohannes Weiner 			lruvec->anon_cost += nr_pages;
3167cf111bcSJohannes Weiner 
3177cf111bcSJohannes Weiner 		/*
3187cf111bcSJohannes Weiner 		 * Decay previous events
3197cf111bcSJohannes Weiner 		 *
3207cf111bcSJohannes Weiner 		 * Because workloads change over time (and to avoid
3217cf111bcSJohannes Weiner 		 * overflow) we keep these statistics as a floating
3227cf111bcSJohannes Weiner 		 * average, which ends up weighing recent refaults
3237cf111bcSJohannes Weiner 		 * more than old ones.
3247cf111bcSJohannes Weiner 		 */
3257cf111bcSJohannes Weiner 		lrusize = lruvec_page_state(lruvec, NR_INACTIVE_ANON) +
3267cf111bcSJohannes Weiner 			  lruvec_page_state(lruvec, NR_ACTIVE_ANON) +
3277cf111bcSJohannes Weiner 			  lruvec_page_state(lruvec, NR_INACTIVE_FILE) +
3287cf111bcSJohannes Weiner 			  lruvec_page_state(lruvec, NR_ACTIVE_FILE);
3297cf111bcSJohannes Weiner 
3307cf111bcSJohannes Weiner 		if (lruvec->file_cost + lruvec->anon_cost > lrusize / 4) {
3317cf111bcSJohannes Weiner 			lruvec->file_cost /= 2;
3327cf111bcSJohannes Weiner 			lruvec->anon_cost /= 2;
3337cf111bcSJohannes Weiner 		}
3346168d0daSAlex Shi 		spin_unlock_irq(&lruvec->lru_lock);
3357cf111bcSJohannes Weiner 	} while ((lruvec = parent_lruvec(lruvec)));
3363e2f41f1SKOSAKI Motohiro }
3373e2f41f1SKOSAKI Motohiro 
3380995d7e5SMatthew Wilcox (Oracle) void lru_note_cost_folio(struct folio *folio)
33996f8bf4fSJohannes Weiner {
3400995d7e5SMatthew Wilcox (Oracle) 	lru_note_cost(folio_lruvec(folio), folio_is_file_lru(folio),
3410995d7e5SMatthew Wilcox (Oracle) 			folio_nr_pages(folio));
34296f8bf4fSJohannes Weiner }
34396f8bf4fSJohannes Weiner 
3443a44610bSMatthew Wilcox (Oracle) static void folio_activate_fn(struct lruvec *lruvec, struct folio *folio)
345744ed144SShaohua Li {
346f2d27392SMatthew Wilcox (Oracle) 	if (!folio_test_active(folio) && !folio_test_unevictable(folio)) {
347f2d27392SMatthew Wilcox (Oracle) 		long nr_pages = folio_nr_pages(folio);
348744ed144SShaohua Li 
349f2d27392SMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
350f2d27392SMatthew Wilcox (Oracle) 		folio_set_active(folio);
351f2d27392SMatthew Wilcox (Oracle) 		lruvec_add_folio(lruvec, folio);
352f2d27392SMatthew Wilcox (Oracle) 		trace_mm_lru_activate(folio);
3537a608572SLinus Torvalds 
35421e330fcSShakeel Butt 		__count_vm_events(PGACTIVATE, nr_pages);
35521e330fcSShakeel Butt 		__count_memcg_events(lruvec_memcg(lruvec), PGACTIVATE,
35621e330fcSShakeel Butt 				     nr_pages);
357744ed144SShaohua Li 	}
358eb709b0dSShaohua Li }
359eb709b0dSShaohua Li 
360eb709b0dSShaohua Li #ifdef CONFIG_SMP
3613a44610bSMatthew Wilcox (Oracle) static void folio_activate_drain(int cpu)
362f2d27392SMatthew Wilcox (Oracle) {
36382ac64d8SMatthew Wilcox (Oracle) 	struct folio_batch *fbatch = &per_cpu(cpu_fbatches.activate, cpu);
364f2d27392SMatthew Wilcox (Oracle) 
3653a44610bSMatthew Wilcox (Oracle) 	if (folio_batch_count(fbatch))
3663a44610bSMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, folio_activate_fn);
3675fbc4616SChris Metcalf }
3685fbc4616SChris Metcalf 
369f2d27392SMatthew Wilcox (Oracle) static void folio_activate(struct folio *folio)
370eb709b0dSShaohua Li {
371f2d27392SMatthew Wilcox (Oracle) 	if (folio_test_lru(folio) && !folio_test_active(folio) &&
372f2d27392SMatthew Wilcox (Oracle) 	    !folio_test_unevictable(folio)) {
3733a44610bSMatthew Wilcox (Oracle) 		struct folio_batch *fbatch;
374eb709b0dSShaohua Li 
375f2d27392SMatthew Wilcox (Oracle) 		folio_get(folio);
37682ac64d8SMatthew Wilcox (Oracle) 		local_lock(&cpu_fbatches.lock);
37782ac64d8SMatthew Wilcox (Oracle) 		fbatch = this_cpu_ptr(&cpu_fbatches.activate);
3783a44610bSMatthew Wilcox (Oracle) 		folio_batch_add_and_move(fbatch, folio, folio_activate_fn);
37982ac64d8SMatthew Wilcox (Oracle) 		local_unlock(&cpu_fbatches.lock);
380eb709b0dSShaohua Li 	}
381eb709b0dSShaohua Li }
382eb709b0dSShaohua Li 
383eb709b0dSShaohua Li #else
3843a44610bSMatthew Wilcox (Oracle) static inline void folio_activate_drain(int cpu)
385eb709b0dSShaohua Li {
386eb709b0dSShaohua Li }
387eb709b0dSShaohua Li 
388f2d27392SMatthew Wilcox (Oracle) static void folio_activate(struct folio *folio)
389eb709b0dSShaohua Li {
3906168d0daSAlex Shi 	struct lruvec *lruvec;
391eb709b0dSShaohua Li 
392f2d27392SMatthew Wilcox (Oracle) 	if (folio_test_clear_lru(folio)) {
393e809c3feSMatthew Wilcox (Oracle) 		lruvec = folio_lruvec_lock_irq(folio);
3943a44610bSMatthew Wilcox (Oracle) 		folio_activate_fn(lruvec, folio);
3956168d0daSAlex Shi 		unlock_page_lruvec_irq(lruvec);
396f2d27392SMatthew Wilcox (Oracle) 		folio_set_lru(folio);
3976168d0daSAlex Shi 	}
3981da177e4SLinus Torvalds }
399eb709b0dSShaohua Li #endif
4001da177e4SLinus Torvalds 
40176580b65SMatthew Wilcox (Oracle) static void __lru_cache_activate_folio(struct folio *folio)
402059285a2SMel Gorman {
40370dea534SMatthew Wilcox (Oracle) 	struct folio_batch *fbatch;
404059285a2SMel Gorman 	int i;
405059285a2SMel Gorman 
40682ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
40782ac64d8SMatthew Wilcox (Oracle) 	fbatch = this_cpu_ptr(&cpu_fbatches.lru_add);
408b01b2141SIngo Molnar 
409059285a2SMel Gorman 	/*
41070dea534SMatthew Wilcox (Oracle) 	 * Search backwards on the optimistic assumption that the folio being
41170dea534SMatthew Wilcox (Oracle) 	 * activated has just been added to this batch. Note that only
41270dea534SMatthew Wilcox (Oracle) 	 * the local batch is examined as a !LRU folio could be in the
413059285a2SMel Gorman 	 * process of being released, reclaimed, migrated or on a remote
41470dea534SMatthew Wilcox (Oracle) 	 * batch that is currently being drained. Furthermore, marking
41570dea534SMatthew Wilcox (Oracle) 	 * a remote batch's folio active potentially hits a race where
41670dea534SMatthew Wilcox (Oracle) 	 * a folio is marked active just after it is added to the inactive
417059285a2SMel Gorman 	 * list causing accounting errors and BUG_ON checks to trigger.
418059285a2SMel Gorman 	 */
41970dea534SMatthew Wilcox (Oracle) 	for (i = folio_batch_count(fbatch) - 1; i >= 0; i--) {
42070dea534SMatthew Wilcox (Oracle) 		struct folio *batch_folio = fbatch->folios[i];
421059285a2SMel Gorman 
42270dea534SMatthew Wilcox (Oracle) 		if (batch_folio == folio) {
42376580b65SMatthew Wilcox (Oracle) 			folio_set_active(folio);
424059285a2SMel Gorman 			break;
425059285a2SMel Gorman 		}
426059285a2SMel Gorman 	}
427059285a2SMel Gorman 
42882ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
429059285a2SMel Gorman }
430059285a2SMel Gorman 
4311da177e4SLinus Torvalds /*
4321da177e4SLinus Torvalds  * Mark a page as having seen activity.
4331da177e4SLinus Torvalds  *
4341da177e4SLinus Torvalds  * inactive,unreferenced	->	inactive,referenced
4351da177e4SLinus Torvalds  * inactive,referenced		->	active,unreferenced
4361da177e4SLinus Torvalds  * active,unreferenced		->	active,referenced
437eb39d618SHugh Dickins  *
438eb39d618SHugh Dickins  * When a newly allocated page is not yet visible, so safe for non-atomic ops,
439eb39d618SHugh Dickins  * __SetPageReferenced(page) may be substituted for mark_page_accessed(page).
4401da177e4SLinus Torvalds  */
44176580b65SMatthew Wilcox (Oracle) void folio_mark_accessed(struct folio *folio)
4421da177e4SLinus Torvalds {
44376580b65SMatthew Wilcox (Oracle) 	if (!folio_test_referenced(folio)) {
44476580b65SMatthew Wilcox (Oracle) 		folio_set_referenced(folio);
44576580b65SMatthew Wilcox (Oracle) 	} else if (folio_test_unevictable(folio)) {
446a1100a74SFengguang Wu 		/*
447a1100a74SFengguang Wu 		 * Unevictable pages are on the "LRU_UNEVICTABLE" list. But,
448a1100a74SFengguang Wu 		 * this list is never rotated or maintained, so marking an
449914c32e4SBang Li 		 * unevictable page accessed has no effect.
450a1100a74SFengguang Wu 		 */
45176580b65SMatthew Wilcox (Oracle) 	} else if (!folio_test_active(folio)) {
452059285a2SMel Gorman 		/*
4533a44610bSMatthew Wilcox (Oracle) 		 * If the folio is on the LRU, queue it for activation via
45482ac64d8SMatthew Wilcox (Oracle) 		 * cpu_fbatches.activate. Otherwise, assume the folio is in a
4553a44610bSMatthew Wilcox (Oracle) 		 * folio_batch, mark it active and it'll be moved to the active
456059285a2SMel Gorman 		 * LRU on the next drain.
457059285a2SMel Gorman 		 */
45876580b65SMatthew Wilcox (Oracle) 		if (folio_test_lru(folio))
45976580b65SMatthew Wilcox (Oracle) 			folio_activate(folio);
460059285a2SMel Gorman 		else
46176580b65SMatthew Wilcox (Oracle) 			__lru_cache_activate_folio(folio);
46276580b65SMatthew Wilcox (Oracle) 		folio_clear_referenced(folio);
46376580b65SMatthew Wilcox (Oracle) 		workingset_activation(folio);
4641da177e4SLinus Torvalds 	}
46576580b65SMatthew Wilcox (Oracle) 	if (folio_test_idle(folio))
46676580b65SMatthew Wilcox (Oracle) 		folio_clear_idle(folio);
4671da177e4SLinus Torvalds }
46876580b65SMatthew Wilcox (Oracle) EXPORT_SYMBOL(folio_mark_accessed);
4691da177e4SLinus Torvalds 
470f04e9ebbSKOSAKI Motohiro /**
4710d31125dSMatthew Wilcox (Oracle)  * folio_add_lru - Add a folio to an LRU list.
4720d31125dSMatthew Wilcox (Oracle)  * @folio: The folio to be added to the LRU.
4732329d375SJianyu Zhan  *
4740d31125dSMatthew Wilcox (Oracle)  * Queue the folio for addition to the LRU. The decision on whether
4752329d375SJianyu Zhan  * to add the page to the [in]active [file|anon] list is deferred until the
47682ac64d8SMatthew Wilcox (Oracle)  * folio_batch is drained. This gives a chance for the caller of folio_add_lru()
4770d31125dSMatthew Wilcox (Oracle)  * have the folio added to the active list using folio_mark_accessed().
478f04e9ebbSKOSAKI Motohiro  */
4790d31125dSMatthew Wilcox (Oracle) void folio_add_lru(struct folio *folio)
4801da177e4SLinus Torvalds {
48170dea534SMatthew Wilcox (Oracle) 	struct folio_batch *fbatch;
4826058eaecSJohannes Weiner 
48370dea534SMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(folio_test_active(folio) &&
48470dea534SMatthew Wilcox (Oracle) 			folio_test_unevictable(folio), folio);
4850d31125dSMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
4866058eaecSJohannes Weiner 
487*ec1c86b2SYu Zhao 	/* see the comment in lru_gen_add_folio() */
488*ec1c86b2SYu Zhao 	if (lru_gen_enabled() && !folio_test_unevictable(folio) &&
489*ec1c86b2SYu Zhao 	    lru_gen_in_fault() && !(current->flags & PF_MEMALLOC))
490*ec1c86b2SYu Zhao 		folio_set_active(folio);
491*ec1c86b2SYu Zhao 
4920d31125dSMatthew Wilcox (Oracle) 	folio_get(folio);
49382ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
49482ac64d8SMatthew Wilcox (Oracle) 	fbatch = this_cpu_ptr(&cpu_fbatches.lru_add);
49570dea534SMatthew Wilcox (Oracle) 	folio_batch_add_and_move(fbatch, folio, lru_add_fn);
49682ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
4971da177e4SLinus Torvalds }
4980d31125dSMatthew Wilcox (Oracle) EXPORT_SYMBOL(folio_add_lru);
4991da177e4SLinus Torvalds 
500894bc310SLee Schermerhorn /**
501b518154eSJoonsoo Kim  * lru_cache_add_inactive_or_unevictable
50200501b53SJohannes Weiner  * @page:  the page to be added to LRU
50300501b53SJohannes Weiner  * @vma:   vma in which page is mapped for determining reclaimability
50400501b53SJohannes Weiner  *
505b518154eSJoonsoo Kim  * Place @page on the inactive or unevictable LRU list, depending on its
50612eab428SMiaohe Lin  * evictability.
50700501b53SJohannes Weiner  */
508b518154eSJoonsoo Kim void lru_cache_add_inactive_or_unevictable(struct page *page,
50900501b53SJohannes Weiner 					 struct vm_area_struct *vma)
51000501b53SJohannes Weiner {
51100501b53SJohannes Weiner 	VM_BUG_ON_PAGE(PageLRU(page), page);
51200501b53SJohannes Weiner 
5132fbb0c10SHugh Dickins 	if (unlikely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) == VM_LOCKED))
5142fbb0c10SHugh Dickins 		mlock_new_page(page);
5152fbb0c10SHugh Dickins 	else
5169c4e6b1aSShakeel Butt 		lru_cache_add(page);
51700501b53SJohannes Weiner }
51800501b53SJohannes Weiner 
519902aaed0SHisashi Hifumi /*
5207a3dbfe8SMatthew Wilcox (Oracle)  * If the folio cannot be invalidated, it is moved to the
52131560180SMinchan Kim  * inactive list to speed up its reclaim.  It is moved to the
52231560180SMinchan Kim  * head of the list, rather than the tail, to give the flusher
52331560180SMinchan Kim  * threads some time to write it out, as this is much more
52431560180SMinchan Kim  * effective than the single-page writeout from reclaim.
525278df9f4SMinchan Kim  *
5267a3dbfe8SMatthew Wilcox (Oracle)  * If the folio isn't mapped and dirty/writeback, the folio
5277a3dbfe8SMatthew Wilcox (Oracle)  * could be reclaimed asap using the reclaim flag.
528278df9f4SMinchan Kim  *
5297a3dbfe8SMatthew Wilcox (Oracle)  * 1. active, mapped folio -> none
5307a3dbfe8SMatthew Wilcox (Oracle)  * 2. active, dirty/writeback folio -> inactive, head, reclaim
5317a3dbfe8SMatthew Wilcox (Oracle)  * 3. inactive, mapped folio -> none
5327a3dbfe8SMatthew Wilcox (Oracle)  * 4. inactive, dirty/writeback folio -> inactive, head, reclaim
533278df9f4SMinchan Kim  * 5. inactive, clean -> inactive, tail
534278df9f4SMinchan Kim  * 6. Others -> none
535278df9f4SMinchan Kim  *
5367a3dbfe8SMatthew Wilcox (Oracle)  * In 4, it moves to the head of the inactive list so the folio is
5377a3dbfe8SMatthew Wilcox (Oracle)  * written out by flusher threads as this is much more efficient
538278df9f4SMinchan Kim  * than the single-page writeout from reclaim.
53931560180SMinchan Kim  */
5407a3dbfe8SMatthew Wilcox (Oracle) static void lru_deactivate_file_fn(struct lruvec *lruvec, struct folio *folio)
54131560180SMinchan Kim {
5427a3dbfe8SMatthew Wilcox (Oracle) 	bool active = folio_test_active(folio);
5437a3dbfe8SMatthew Wilcox (Oracle) 	long nr_pages = folio_nr_pages(folio);
54431560180SMinchan Kim 
5457a3dbfe8SMatthew Wilcox (Oracle) 	if (folio_test_unevictable(folio))
546bad49d9cSMinchan Kim 		return;
547bad49d9cSMinchan Kim 
5487a3dbfe8SMatthew Wilcox (Oracle) 	/* Some processes are using the folio */
5497a3dbfe8SMatthew Wilcox (Oracle) 	if (folio_mapped(folio))
55031560180SMinchan Kim 		return;
55131560180SMinchan Kim 
5527a3dbfe8SMatthew Wilcox (Oracle) 	lruvec_del_folio(lruvec, folio);
5537a3dbfe8SMatthew Wilcox (Oracle) 	folio_clear_active(folio);
5547a3dbfe8SMatthew Wilcox (Oracle) 	folio_clear_referenced(folio);
55531560180SMinchan Kim 
5567a3dbfe8SMatthew Wilcox (Oracle) 	if (folio_test_writeback(folio) || folio_test_dirty(folio)) {
557278df9f4SMinchan Kim 		/*
5587a3dbfe8SMatthew Wilcox (Oracle) 		 * Setting the reclaim flag could race with
5597a3dbfe8SMatthew Wilcox (Oracle) 		 * folio_end_writeback() and confuse readahead.  But the
5607a3dbfe8SMatthew Wilcox (Oracle) 		 * race window is _really_ small and  it's not a critical
5617a3dbfe8SMatthew Wilcox (Oracle) 		 * problem.
562278df9f4SMinchan Kim 		 */
5637a3dbfe8SMatthew Wilcox (Oracle) 		lruvec_add_folio(lruvec, folio);
5647a3dbfe8SMatthew Wilcox (Oracle) 		folio_set_reclaim(folio);
565278df9f4SMinchan Kim 	} else {
566278df9f4SMinchan Kim 		/*
5677a3dbfe8SMatthew Wilcox (Oracle) 		 * The folio's writeback ended while it was in the batch.
5687a3dbfe8SMatthew Wilcox (Oracle) 		 * We move that folio to the tail of the inactive list.
569278df9f4SMinchan Kim 		 */
5707a3dbfe8SMatthew Wilcox (Oracle) 		lruvec_add_folio_tail(lruvec, folio);
5715d91f31fSShakeel Butt 		__count_vm_events(PGROTATED, nr_pages);
572278df9f4SMinchan Kim 	}
573278df9f4SMinchan Kim 
57421e330fcSShakeel Butt 	if (active) {
5755d91f31fSShakeel Butt 		__count_vm_events(PGDEACTIVATE, nr_pages);
57621e330fcSShakeel Butt 		__count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE,
57721e330fcSShakeel Butt 				     nr_pages);
57821e330fcSShakeel Butt 	}
57931560180SMinchan Kim }
58031560180SMinchan Kim 
58185cd7791SMatthew Wilcox (Oracle) static void lru_deactivate_fn(struct lruvec *lruvec, struct folio *folio)
5829c276cc6SMinchan Kim {
583*ec1c86b2SYu Zhao 	if (!folio_test_unevictable(folio) && (folio_test_active(folio) || lru_gen_enabled())) {
58485cd7791SMatthew Wilcox (Oracle) 		long nr_pages = folio_nr_pages(folio);
5859c276cc6SMinchan Kim 
58685cd7791SMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
58785cd7791SMatthew Wilcox (Oracle) 		folio_clear_active(folio);
58885cd7791SMatthew Wilcox (Oracle) 		folio_clear_referenced(folio);
58985cd7791SMatthew Wilcox (Oracle) 		lruvec_add_folio(lruvec, folio);
5909c276cc6SMinchan Kim 
59121e330fcSShakeel Butt 		__count_vm_events(PGDEACTIVATE, nr_pages);
59221e330fcSShakeel Butt 		__count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE,
59321e330fcSShakeel Butt 				     nr_pages);
5949c276cc6SMinchan Kim 	}
5959c276cc6SMinchan Kim }
59610853a03SMinchan Kim 
597cec394baSMatthew Wilcox (Oracle) static void lru_lazyfree_fn(struct lruvec *lruvec, struct folio *folio)
59810853a03SMinchan Kim {
599cec394baSMatthew Wilcox (Oracle) 	if (folio_test_anon(folio) && folio_test_swapbacked(folio) &&
600cec394baSMatthew Wilcox (Oracle) 	    !folio_test_swapcache(folio) && !folio_test_unevictable(folio)) {
601cec394baSMatthew Wilcox (Oracle) 		long nr_pages = folio_nr_pages(folio);
60210853a03SMinchan Kim 
603cec394baSMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
604cec394baSMatthew Wilcox (Oracle) 		folio_clear_active(folio);
605cec394baSMatthew Wilcox (Oracle) 		folio_clear_referenced(folio);
606f7ad2a6cSShaohua Li 		/*
607cec394baSMatthew Wilcox (Oracle) 		 * Lazyfree folios are clean anonymous folios.  They have
608cec394baSMatthew Wilcox (Oracle) 		 * the swapbacked flag cleared, to distinguish them from normal
609cec394baSMatthew Wilcox (Oracle) 		 * anonymous folios
610f7ad2a6cSShaohua Li 		 */
611cec394baSMatthew Wilcox (Oracle) 		folio_clear_swapbacked(folio);
612cec394baSMatthew Wilcox (Oracle) 		lruvec_add_folio(lruvec, folio);
61310853a03SMinchan Kim 
61421e330fcSShakeel Butt 		__count_vm_events(PGLAZYFREE, nr_pages);
61521e330fcSShakeel Butt 		__count_memcg_events(lruvec_memcg(lruvec), PGLAZYFREE,
61621e330fcSShakeel Butt 				     nr_pages);
61710853a03SMinchan Kim 	}
61810853a03SMinchan Kim }
61910853a03SMinchan Kim 
62031560180SMinchan Kim /*
62182ac64d8SMatthew Wilcox (Oracle)  * Drain pages out of the cpu's folio_batch.
622902aaed0SHisashi Hifumi  * Either "cpu" is the current CPU, and preemption has already been
623902aaed0SHisashi Hifumi  * disabled; or "cpu" is being hot-unplugged, and is already dead.
624902aaed0SHisashi Hifumi  */
625f0cb3c76SKonstantin Khlebnikov void lru_add_drain_cpu(int cpu)
6261da177e4SLinus Torvalds {
627a2d33b5dSMatthew Wilcox (Oracle) 	struct cpu_fbatches *fbatches = &per_cpu(cpu_fbatches, cpu);
628a2d33b5dSMatthew Wilcox (Oracle) 	struct folio_batch *fbatch = &fbatches->lru_add;
6291da177e4SLinus Torvalds 
63070dea534SMatthew Wilcox (Oracle) 	if (folio_batch_count(fbatch))
63170dea534SMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, lru_add_fn);
632902aaed0SHisashi Hifumi 
633c2bc1681SMatthew Wilcox (Oracle) 	fbatch = &per_cpu(lru_rotate.fbatch, cpu);
6347e0cc01eSQian Cai 	/* Disabling interrupts below acts as a compiler barrier. */
635c2bc1681SMatthew Wilcox (Oracle) 	if (data_race(folio_batch_count(fbatch))) {
636902aaed0SHisashi Hifumi 		unsigned long flags;
637902aaed0SHisashi Hifumi 
638902aaed0SHisashi Hifumi 		/* No harm done if a racing interrupt already did this */
639b01b2141SIngo Molnar 		local_lock_irqsave(&lru_rotate.lock, flags);
640c2bc1681SMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, lru_move_tail_fn);
641b01b2141SIngo Molnar 		local_unlock_irqrestore(&lru_rotate.lock, flags);
642902aaed0SHisashi Hifumi 	}
64331560180SMinchan Kim 
644a2d33b5dSMatthew Wilcox (Oracle) 	fbatch = &fbatches->lru_deactivate_file;
6457a3dbfe8SMatthew Wilcox (Oracle) 	if (folio_batch_count(fbatch))
6467a3dbfe8SMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, lru_deactivate_file_fn);
647eb709b0dSShaohua Li 
648a2d33b5dSMatthew Wilcox (Oracle) 	fbatch = &fbatches->lru_deactivate;
64985cd7791SMatthew Wilcox (Oracle) 	if (folio_batch_count(fbatch))
65085cd7791SMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, lru_deactivate_fn);
6519c276cc6SMinchan Kim 
652a2d33b5dSMatthew Wilcox (Oracle) 	fbatch = &fbatches->lru_lazyfree;
653cec394baSMatthew Wilcox (Oracle) 	if (folio_batch_count(fbatch))
654cec394baSMatthew Wilcox (Oracle) 		folio_batch_move_lru(fbatch, lru_lazyfree_fn);
65510853a03SMinchan Kim 
6563a44610bSMatthew Wilcox (Oracle) 	folio_activate_drain(cpu);
65731560180SMinchan Kim }
65831560180SMinchan Kim 
65931560180SMinchan Kim /**
6607a3dbfe8SMatthew Wilcox (Oracle)  * deactivate_file_folio() - Deactivate a file folio.
661261b6840SMatthew Wilcox (Oracle)  * @folio: Folio to deactivate.
66231560180SMinchan Kim  *
663261b6840SMatthew Wilcox (Oracle)  * This function hints to the VM that @folio is a good reclaim candidate,
664261b6840SMatthew Wilcox (Oracle)  * for example if its invalidation fails due to the folio being dirty
66531560180SMinchan Kim  * or under writeback.
666261b6840SMatthew Wilcox (Oracle)  *
6677a3dbfe8SMatthew Wilcox (Oracle)  * Context: Caller holds a reference on the folio.
66831560180SMinchan Kim  */
669261b6840SMatthew Wilcox (Oracle) void deactivate_file_folio(struct folio *folio)
67031560180SMinchan Kim {
6717a3dbfe8SMatthew Wilcox (Oracle) 	struct folio_batch *fbatch;
672b01b2141SIngo Molnar 
6737a3dbfe8SMatthew Wilcox (Oracle) 	/* Deactivating an unevictable folio will not accelerate reclaim */
674261b6840SMatthew Wilcox (Oracle) 	if (folio_test_unevictable(folio))
675261b6840SMatthew Wilcox (Oracle) 		return;
676261b6840SMatthew Wilcox (Oracle) 
677261b6840SMatthew Wilcox (Oracle) 	folio_get(folio);
67882ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
67982ac64d8SMatthew Wilcox (Oracle) 	fbatch = this_cpu_ptr(&cpu_fbatches.lru_deactivate_file);
6807a3dbfe8SMatthew Wilcox (Oracle) 	folio_batch_add_and_move(fbatch, folio, lru_deactivate_file_fn);
68182ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
68231560180SMinchan Kim }
68380bfed90SAndrew Morton 
6849c276cc6SMinchan Kim /*
6859c276cc6SMinchan Kim  * deactivate_page - deactivate a page
6869c276cc6SMinchan Kim  * @page: page to deactivate
6879c276cc6SMinchan Kim  *
6889c276cc6SMinchan Kim  * deactivate_page() moves @page to the inactive list if @page was on the active
6899c276cc6SMinchan Kim  * list and was not an unevictable page.  This is done to accelerate the reclaim
6909c276cc6SMinchan Kim  * of @page.
6919c276cc6SMinchan Kim  */
6929c276cc6SMinchan Kim void deactivate_page(struct page *page)
6939c276cc6SMinchan Kim {
69485cd7791SMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
6959c276cc6SMinchan Kim 
696*ec1c86b2SYu Zhao 	if (folio_test_lru(folio) && !folio_test_unevictable(folio) &&
697*ec1c86b2SYu Zhao 	    (folio_test_active(folio) || lru_gen_enabled())) {
69885cd7791SMatthew Wilcox (Oracle) 		struct folio_batch *fbatch;
69985cd7791SMatthew Wilcox (Oracle) 
70085cd7791SMatthew Wilcox (Oracle) 		folio_get(folio);
70182ac64d8SMatthew Wilcox (Oracle) 		local_lock(&cpu_fbatches.lock);
70282ac64d8SMatthew Wilcox (Oracle) 		fbatch = this_cpu_ptr(&cpu_fbatches.lru_deactivate);
70385cd7791SMatthew Wilcox (Oracle) 		folio_batch_add_and_move(fbatch, folio, lru_deactivate_fn);
70482ac64d8SMatthew Wilcox (Oracle) 		local_unlock(&cpu_fbatches.lock);
7059c276cc6SMinchan Kim 	}
7069c276cc6SMinchan Kim }
7079c276cc6SMinchan Kim 
70810853a03SMinchan Kim /**
709f7ad2a6cSShaohua Li  * mark_page_lazyfree - make an anon page lazyfree
71010853a03SMinchan Kim  * @page: page to deactivate
71110853a03SMinchan Kim  *
712f7ad2a6cSShaohua Li  * mark_page_lazyfree() moves @page to the inactive file list.
713f7ad2a6cSShaohua Li  * This is done to accelerate the reclaim of @page.
71410853a03SMinchan Kim  */
715f7ad2a6cSShaohua Li void mark_page_lazyfree(struct page *page)
71610853a03SMinchan Kim {
717cec394baSMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
71810853a03SMinchan Kim 
719cec394baSMatthew Wilcox (Oracle) 	if (folio_test_lru(folio) && folio_test_anon(folio) &&
720cec394baSMatthew Wilcox (Oracle) 	    folio_test_swapbacked(folio) && !folio_test_swapcache(folio) &&
721cec394baSMatthew Wilcox (Oracle) 	    !folio_test_unevictable(folio)) {
722cec394baSMatthew Wilcox (Oracle) 		struct folio_batch *fbatch;
723cec394baSMatthew Wilcox (Oracle) 
724cec394baSMatthew Wilcox (Oracle) 		folio_get(folio);
72582ac64d8SMatthew Wilcox (Oracle) 		local_lock(&cpu_fbatches.lock);
72682ac64d8SMatthew Wilcox (Oracle) 		fbatch = this_cpu_ptr(&cpu_fbatches.lru_lazyfree);
727cec394baSMatthew Wilcox (Oracle) 		folio_batch_add_and_move(fbatch, folio, lru_lazyfree_fn);
72882ac64d8SMatthew Wilcox (Oracle) 		local_unlock(&cpu_fbatches.lock);
72910853a03SMinchan Kim 	}
73010853a03SMinchan Kim }
73110853a03SMinchan Kim 
73280bfed90SAndrew Morton void lru_add_drain(void)
73380bfed90SAndrew Morton {
73482ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
735b01b2141SIngo Molnar 	lru_add_drain_cpu(smp_processor_id());
73682ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
737adb11e78SSebastian Andrzej Siewior 	mlock_page_drain_local();
738b01b2141SIngo Molnar }
739b01b2141SIngo Molnar 
740243418e3SMinchan Kim /*
741243418e3SMinchan Kim  * It's called from per-cpu workqueue context in SMP case so
742243418e3SMinchan Kim  * lru_add_drain_cpu and invalidate_bh_lrus_cpu should run on
743243418e3SMinchan Kim  * the same cpu. It shouldn't be a problem in !SMP case since
744243418e3SMinchan Kim  * the core is only one and the locks will disable preemption.
745243418e3SMinchan Kim  */
746243418e3SMinchan Kim static void lru_add_and_bh_lrus_drain(void)
747243418e3SMinchan Kim {
74882ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
749243418e3SMinchan Kim 	lru_add_drain_cpu(smp_processor_id());
75082ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
751243418e3SMinchan Kim 	invalidate_bh_lrus_cpu();
752adb11e78SSebastian Andrzej Siewior 	mlock_page_drain_local();
753243418e3SMinchan Kim }
754243418e3SMinchan Kim 
755b01b2141SIngo Molnar void lru_add_drain_cpu_zone(struct zone *zone)
756b01b2141SIngo Molnar {
75782ac64d8SMatthew Wilcox (Oracle) 	local_lock(&cpu_fbatches.lock);
758b01b2141SIngo Molnar 	lru_add_drain_cpu(smp_processor_id());
759b01b2141SIngo Molnar 	drain_local_pages(zone);
76082ac64d8SMatthew Wilcox (Oracle) 	local_unlock(&cpu_fbatches.lock);
761adb11e78SSebastian Andrzej Siewior 	mlock_page_drain_local();
7621da177e4SLinus Torvalds }
7631da177e4SLinus Torvalds 
7646ea183d6SMichal Hocko #ifdef CONFIG_SMP
7656ea183d6SMichal Hocko 
7666ea183d6SMichal Hocko static DEFINE_PER_CPU(struct work_struct, lru_add_drain_work);
7676ea183d6SMichal Hocko 
768c4028958SDavid Howells static void lru_add_drain_per_cpu(struct work_struct *dummy)
769053837fcSNick Piggin {
770243418e3SMinchan Kim 	lru_add_and_bh_lrus_drain();
771053837fcSNick Piggin }
772053837fcSNick Piggin 
7734864545aSMatthew Wilcox (Oracle) static bool cpu_needs_drain(unsigned int cpu)
7744864545aSMatthew Wilcox (Oracle) {
7754864545aSMatthew Wilcox (Oracle) 	struct cpu_fbatches *fbatches = &per_cpu(cpu_fbatches, cpu);
7764864545aSMatthew Wilcox (Oracle) 
7774864545aSMatthew Wilcox (Oracle) 	/* Check these in order of likelihood that they're not zero */
7784864545aSMatthew Wilcox (Oracle) 	return folio_batch_count(&fbatches->lru_add) ||
7794864545aSMatthew Wilcox (Oracle) 		data_race(folio_batch_count(&per_cpu(lru_rotate.fbatch, cpu))) ||
7804864545aSMatthew Wilcox (Oracle) 		folio_batch_count(&fbatches->lru_deactivate_file) ||
7814864545aSMatthew Wilcox (Oracle) 		folio_batch_count(&fbatches->lru_deactivate) ||
7824864545aSMatthew Wilcox (Oracle) 		folio_batch_count(&fbatches->lru_lazyfree) ||
7834864545aSMatthew Wilcox (Oracle) 		folio_batch_count(&fbatches->activate) ||
7844864545aSMatthew Wilcox (Oracle) 		need_mlock_page_drain(cpu) ||
7854864545aSMatthew Wilcox (Oracle) 		has_bh_in_lru(cpu, NULL);
7864864545aSMatthew Wilcox (Oracle) }
7874864545aSMatthew Wilcox (Oracle) 
7889852a721SMichal Hocko /*
7899852a721SMichal Hocko  * Doesn't need any cpu hotplug locking because we do rely on per-cpu
7909852a721SMichal Hocko  * kworkers being shut down before our page_alloc_cpu_dead callback is
7919852a721SMichal Hocko  * executed on the offlined cpu.
7929852a721SMichal Hocko  * Calling this function with cpu hotplug locks held can actually lead
7939852a721SMichal Hocko  * to obscure indirect dependencies via WQ context.
7949852a721SMichal Hocko  */
7953db3264dSMiaohe Lin static inline void __lru_add_drain_all(bool force_all_cpus)
796053837fcSNick Piggin {
7976446a513SAhmed S. Darwish 	/*
7986446a513SAhmed S. Darwish 	 * lru_drain_gen - Global pages generation number
7996446a513SAhmed S. Darwish 	 *
8006446a513SAhmed S. Darwish 	 * (A) Definition: global lru_drain_gen = x implies that all generations
8016446a513SAhmed S. Darwish 	 *     0 < n <= x are already *scheduled* for draining.
8026446a513SAhmed S. Darwish 	 *
8036446a513SAhmed S. Darwish 	 * This is an optimization for the highly-contended use case where a
8046446a513SAhmed S. Darwish 	 * user space workload keeps constantly generating a flow of pages for
8056446a513SAhmed S. Darwish 	 * each CPU.
8066446a513SAhmed S. Darwish 	 */
8076446a513SAhmed S. Darwish 	static unsigned int lru_drain_gen;
8085fbc4616SChris Metcalf 	static struct cpumask has_work;
8096446a513SAhmed S. Darwish 	static DEFINE_MUTEX(lock);
8106446a513SAhmed S. Darwish 	unsigned cpu, this_gen;
8115fbc4616SChris Metcalf 
812ce612879SMichal Hocko 	/*
813ce612879SMichal Hocko 	 * Make sure nobody triggers this path before mm_percpu_wq is fully
814ce612879SMichal Hocko 	 * initialized.
815ce612879SMichal Hocko 	 */
816ce612879SMichal Hocko 	if (WARN_ON(!mm_percpu_wq))
817ce612879SMichal Hocko 		return;
818ce612879SMichal Hocko 
8196446a513SAhmed S. Darwish 	/*
82082ac64d8SMatthew Wilcox (Oracle) 	 * Guarantee folio_batch counter stores visible by this CPU
82182ac64d8SMatthew Wilcox (Oracle) 	 * are visible to other CPUs before loading the current drain
82282ac64d8SMatthew Wilcox (Oracle) 	 * generation.
8236446a513SAhmed S. Darwish 	 */
8246446a513SAhmed S. Darwish 	smp_mb();
8256446a513SAhmed S. Darwish 
8266446a513SAhmed S. Darwish 	/*
8276446a513SAhmed S. Darwish 	 * (B) Locally cache global LRU draining generation number
8286446a513SAhmed S. Darwish 	 *
8296446a513SAhmed S. Darwish 	 * The read barrier ensures that the counter is loaded before the mutex
8306446a513SAhmed S. Darwish 	 * is taken. It pairs with smp_mb() inside the mutex critical section
8316446a513SAhmed S. Darwish 	 * at (D).
8326446a513SAhmed S. Darwish 	 */
8336446a513SAhmed S. Darwish 	this_gen = smp_load_acquire(&lru_drain_gen);
834eef1a429SKonstantin Khlebnikov 
8355fbc4616SChris Metcalf 	mutex_lock(&lock);
836eef1a429SKonstantin Khlebnikov 
837eef1a429SKonstantin Khlebnikov 	/*
8386446a513SAhmed S. Darwish 	 * (C) Exit the draining operation if a newer generation, from another
8396446a513SAhmed S. Darwish 	 * lru_add_drain_all(), was already scheduled for draining. Check (A).
840eef1a429SKonstantin Khlebnikov 	 */
841d479960eSMinchan Kim 	if (unlikely(this_gen != lru_drain_gen && !force_all_cpus))
842eef1a429SKonstantin Khlebnikov 		goto done;
843eef1a429SKonstantin Khlebnikov 
8446446a513SAhmed S. Darwish 	/*
8456446a513SAhmed S. Darwish 	 * (D) Increment global generation number
8466446a513SAhmed S. Darwish 	 *
8476446a513SAhmed S. Darwish 	 * Pairs with smp_load_acquire() at (B), outside of the critical
84882ac64d8SMatthew Wilcox (Oracle) 	 * section. Use a full memory barrier to guarantee that the
84982ac64d8SMatthew Wilcox (Oracle) 	 * new global drain generation number is stored before loading
85082ac64d8SMatthew Wilcox (Oracle) 	 * folio_batch counters.
8516446a513SAhmed S. Darwish 	 *
8526446a513SAhmed S. Darwish 	 * This pairing must be done here, before the for_each_online_cpu loop
8536446a513SAhmed S. Darwish 	 * below which drains the page vectors.
8546446a513SAhmed S. Darwish 	 *
8556446a513SAhmed S. Darwish 	 * Let x, y, and z represent some system CPU numbers, where x < y < z.
856cb152a1aSShijie Luo 	 * Assume CPU #z is in the middle of the for_each_online_cpu loop
8576446a513SAhmed S. Darwish 	 * below and has already reached CPU #y's per-cpu data. CPU #x comes
8586446a513SAhmed S. Darwish 	 * along, adds some pages to its per-cpu vectors, then calls
8596446a513SAhmed S. Darwish 	 * lru_add_drain_all().
8606446a513SAhmed S. Darwish 	 *
8616446a513SAhmed S. Darwish 	 * If the paired barrier is done at any later step, e.g. after the
8626446a513SAhmed S. Darwish 	 * loop, CPU #x will just exit at (C) and miss flushing out all of its
8636446a513SAhmed S. Darwish 	 * added pages.
8646446a513SAhmed S. Darwish 	 */
8656446a513SAhmed S. Darwish 	WRITE_ONCE(lru_drain_gen, lru_drain_gen + 1);
8666446a513SAhmed S. Darwish 	smp_mb();
867eef1a429SKonstantin Khlebnikov 
8685fbc4616SChris Metcalf 	cpumask_clear(&has_work);
8695fbc4616SChris Metcalf 	for_each_online_cpu(cpu) {
8705fbc4616SChris Metcalf 		struct work_struct *work = &per_cpu(lru_add_drain_work, cpu);
8715fbc4616SChris Metcalf 
8724864545aSMatthew Wilcox (Oracle) 		if (cpu_needs_drain(cpu)) {
8735fbc4616SChris Metcalf 			INIT_WORK(work, lru_add_drain_per_cpu);
874ce612879SMichal Hocko 			queue_work_on(cpu, mm_percpu_wq, work);
8756446a513SAhmed S. Darwish 			__cpumask_set_cpu(cpu, &has_work);
8765fbc4616SChris Metcalf 		}
8775fbc4616SChris Metcalf 	}
8785fbc4616SChris Metcalf 
8795fbc4616SChris Metcalf 	for_each_cpu(cpu, &has_work)
8805fbc4616SChris Metcalf 		flush_work(&per_cpu(lru_add_drain_work, cpu));
8815fbc4616SChris Metcalf 
882eef1a429SKonstantin Khlebnikov done:
8835fbc4616SChris Metcalf 	mutex_unlock(&lock);
884053837fcSNick Piggin }
885d479960eSMinchan Kim 
886d479960eSMinchan Kim void lru_add_drain_all(void)
887d479960eSMinchan Kim {
888d479960eSMinchan Kim 	__lru_add_drain_all(false);
889d479960eSMinchan Kim }
8906ea183d6SMichal Hocko #else
8916ea183d6SMichal Hocko void lru_add_drain_all(void)
8926ea183d6SMichal Hocko {
8936ea183d6SMichal Hocko 	lru_add_drain();
8946ea183d6SMichal Hocko }
8956446a513SAhmed S. Darwish #endif /* CONFIG_SMP */
896053837fcSNick Piggin 
897d479960eSMinchan Kim atomic_t lru_disable_count = ATOMIC_INIT(0);
898d479960eSMinchan Kim 
899d479960eSMinchan Kim /*
900d479960eSMinchan Kim  * lru_cache_disable() needs to be called before we start compiling
901d479960eSMinchan Kim  * a list of pages to be migrated using isolate_lru_page().
902d479960eSMinchan Kim  * It drains pages on LRU cache and then disable on all cpus until
903d479960eSMinchan Kim  * lru_cache_enable is called.
904d479960eSMinchan Kim  *
905d479960eSMinchan Kim  * Must be paired with a call to lru_cache_enable().
906d479960eSMinchan Kim  */
907d479960eSMinchan Kim void lru_cache_disable(void)
908d479960eSMinchan Kim {
909d479960eSMinchan Kim 	atomic_inc(&lru_disable_count);
910d479960eSMinchan Kim 	/*
911ff042f4aSMarcelo Tosatti 	 * Readers of lru_disable_count are protected by either disabling
912ff042f4aSMarcelo Tosatti 	 * preemption or rcu_read_lock:
913ff042f4aSMarcelo Tosatti 	 *
914ff042f4aSMarcelo Tosatti 	 * preempt_disable, local_irq_disable  [bh_lru_lock()]
915ff042f4aSMarcelo Tosatti 	 * rcu_read_lock		       [rt_spin_lock CONFIG_PREEMPT_RT]
916ff042f4aSMarcelo Tosatti 	 * preempt_disable		       [local_lock !CONFIG_PREEMPT_RT]
917ff042f4aSMarcelo Tosatti 	 *
918ff042f4aSMarcelo Tosatti 	 * Since v5.1 kernel, synchronize_rcu() is guaranteed to wait on
919ff042f4aSMarcelo Tosatti 	 * preempt_disable() regions of code. So any CPU which sees
920ff042f4aSMarcelo Tosatti 	 * lru_disable_count = 0 will have exited the critical
921ff042f4aSMarcelo Tosatti 	 * section when synchronize_rcu() returns.
922d479960eSMinchan Kim 	 */
92331733463SMarcelo Tosatti 	synchronize_rcu_expedited();
924ff042f4aSMarcelo Tosatti #ifdef CONFIG_SMP
925d479960eSMinchan Kim 	__lru_add_drain_all(true);
926d479960eSMinchan Kim #else
927243418e3SMinchan Kim 	lru_add_and_bh_lrus_drain();
928d479960eSMinchan Kim #endif
929d479960eSMinchan Kim }
930d479960eSMinchan Kim 
931aabfb572SMichal Hocko /**
932ea1754a0SKirill A. Shutemov  * release_pages - batched put_page()
933aabfb572SMichal Hocko  * @pages: array of pages to release
934aabfb572SMichal Hocko  * @nr: number of pages
9351da177e4SLinus Torvalds  *
936aabfb572SMichal Hocko  * Decrement the reference count on all the pages in @pages.  If it
937aabfb572SMichal Hocko  * fell to zero, remove the page from the LRU and free it.
9381da177e4SLinus Torvalds  */
939c6f92f9fSMel Gorman void release_pages(struct page **pages, int nr)
9401da177e4SLinus Torvalds {
9411da177e4SLinus Torvalds 	int i;
942cc59850eSKonstantin Khlebnikov 	LIST_HEAD(pages_to_free);
9436168d0daSAlex Shi 	struct lruvec *lruvec = NULL;
9440de340cbSMatthew Wilcox (Oracle) 	unsigned long flags = 0;
9453f649ab7SKees Cook 	unsigned int lock_batch;
9461da177e4SLinus Torvalds 
9471da177e4SLinus Torvalds 	for (i = 0; i < nr; i++) {
948ab5e653eSMatthew Wilcox (Oracle) 		struct folio *folio = page_folio(pages[i]);
9491da177e4SLinus Torvalds 
950aabfb572SMichal Hocko 		/*
951aabfb572SMichal Hocko 		 * Make sure the IRQ-safe lock-holding time does not get
952aabfb572SMichal Hocko 		 * excessive with a continuous string of pages from the
9536168d0daSAlex Shi 		 * same lruvec. The lock is held only if lruvec != NULL.
954aabfb572SMichal Hocko 		 */
9556168d0daSAlex Shi 		if (lruvec && ++lock_batch == SWAP_CLUSTER_MAX) {
9566168d0daSAlex Shi 			unlock_page_lruvec_irqrestore(lruvec, flags);
9576168d0daSAlex Shi 			lruvec = NULL;
958aabfb572SMichal Hocko 		}
959aabfb572SMichal Hocko 
960ab5e653eSMatthew Wilcox (Oracle) 		if (is_huge_zero_page(&folio->page))
961aa88b68cSKirill A. Shutemov 			continue;
962aa88b68cSKirill A. Shutemov 
963ab5e653eSMatthew Wilcox (Oracle) 		if (folio_is_zone_device(folio)) {
9646168d0daSAlex Shi 			if (lruvec) {
9656168d0daSAlex Shi 				unlock_page_lruvec_irqrestore(lruvec, flags);
9666168d0daSAlex Shi 				lruvec = NULL;
967df6ad698SJérôme Glisse 			}
968ab5e653eSMatthew Wilcox (Oracle) 			if (put_devmap_managed_page(&folio->page))
969df6ad698SJérôme Glisse 				continue;
970ab5e653eSMatthew Wilcox (Oracle) 			if (folio_put_testzero(folio))
971ab5e653eSMatthew Wilcox (Oracle) 				free_zone_device_page(&folio->page);
97243fbdeb3SRalph Campbell 			continue;
97307d80269SJohn Hubbard 		}
974df6ad698SJérôme Glisse 
975ab5e653eSMatthew Wilcox (Oracle) 		if (!folio_put_testzero(folio))
9761da177e4SLinus Torvalds 			continue;
9771da177e4SLinus Torvalds 
978ab5e653eSMatthew Wilcox (Oracle) 		if (folio_test_large(folio)) {
9796168d0daSAlex Shi 			if (lruvec) {
9806168d0daSAlex Shi 				unlock_page_lruvec_irqrestore(lruvec, flags);
9816168d0daSAlex Shi 				lruvec = NULL;
982ddc58f27SKirill A. Shutemov 			}
9835ef82fe7SMatthew Wilcox (Oracle) 			__folio_put_large(folio);
984ddc58f27SKirill A. Shutemov 			continue;
985ddc58f27SKirill A. Shutemov 		}
986ddc58f27SKirill A. Shutemov 
987ab5e653eSMatthew Wilcox (Oracle) 		if (folio_test_lru(folio)) {
9882a5e4e34SAlexander Duyck 			struct lruvec *prev_lruvec = lruvec;
989894bc310SLee Schermerhorn 
9900de340cbSMatthew Wilcox (Oracle) 			lruvec = folio_lruvec_relock_irqsave(folio, lruvec,
9912a5e4e34SAlexander Duyck 									&flags);
9922a5e4e34SAlexander Duyck 			if (prev_lruvec != lruvec)
993aabfb572SMichal Hocko 				lock_batch = 0;
994fa9add64SHugh Dickins 
995ab5e653eSMatthew Wilcox (Oracle) 			lruvec_del_folio(lruvec, folio);
996ab5e653eSMatthew Wilcox (Oracle) 			__folio_clear_lru_flags(folio);
99746453a6eSNick Piggin 		}
99846453a6eSNick Piggin 
999b109b870SHugh Dickins 		/*
1000b109b870SHugh Dickins 		 * In rare cases, when truncation or holepunching raced with
1001b109b870SHugh Dickins 		 * munlock after VM_LOCKED was cleared, Mlocked may still be
1002b109b870SHugh Dickins 		 * found set here.  This does not indicate a problem, unless
1003b109b870SHugh Dickins 		 * "unevictable_pgs_cleared" appears worryingly large.
1004b109b870SHugh Dickins 		 */
1005ab5e653eSMatthew Wilcox (Oracle) 		if (unlikely(folio_test_mlocked(folio))) {
1006ab5e653eSMatthew Wilcox (Oracle) 			__folio_clear_mlocked(folio);
1007ab5e653eSMatthew Wilcox (Oracle) 			zone_stat_sub_folio(folio, NR_MLOCK);
1008b109b870SHugh Dickins 			count_vm_event(UNEVICTABLE_PGCLEARED);
1009b109b870SHugh Dickins 		}
1010b109b870SHugh Dickins 
1011ab5e653eSMatthew Wilcox (Oracle) 		list_add(&folio->lru, &pages_to_free);
10121da177e4SLinus Torvalds 	}
10136168d0daSAlex Shi 	if (lruvec)
10146168d0daSAlex Shi 		unlock_page_lruvec_irqrestore(lruvec, flags);
10151da177e4SLinus Torvalds 
1016747db954SJohannes Weiner 	mem_cgroup_uncharge_list(&pages_to_free);
10172d4894b5SMel Gorman 	free_unref_page_list(&pages_to_free);
10181da177e4SLinus Torvalds }
10190be8557bSMiklos Szeredi EXPORT_SYMBOL(release_pages);
10201da177e4SLinus Torvalds 
10211da177e4SLinus Torvalds /*
10221da177e4SLinus Torvalds  * The pages which we're about to release may be in the deferred lru-addition
10231da177e4SLinus Torvalds  * queues.  That would prevent them from really being freed right now.  That's
10241da177e4SLinus Torvalds  * OK from a correctness point of view but is inefficient - those pages may be
10251da177e4SLinus Torvalds  * cache-warm and we want to give them back to the page allocator ASAP.
10261da177e4SLinus Torvalds  *
102770dea534SMatthew Wilcox (Oracle)  * So __pagevec_release() will drain those queues here.
102870dea534SMatthew Wilcox (Oracle)  * folio_batch_move_lru() calls folios_put() directly to avoid
10291da177e4SLinus Torvalds  * mutual recursion.
10301da177e4SLinus Torvalds  */
10311da177e4SLinus Torvalds void __pagevec_release(struct pagevec *pvec)
10321da177e4SLinus Torvalds {
10337f0b5fb9SMel Gorman 	if (!pvec->percpu_pvec_drained) {
10341da177e4SLinus Torvalds 		lru_add_drain();
10357f0b5fb9SMel Gorman 		pvec->percpu_pvec_drained = true;
1036d9ed0d08SMel Gorman 	}
1037c6f92f9fSMel Gorman 	release_pages(pvec->pages, pagevec_count(pvec));
10381da177e4SLinus Torvalds 	pagevec_reinit(pvec);
10391da177e4SLinus Torvalds }
10407f285701SSteve French EXPORT_SYMBOL(__pagevec_release);
10417f285701SSteve French 
10421da177e4SLinus Torvalds /**
10431613fac9SMatthew Wilcox (Oracle)  * folio_batch_remove_exceptionals() - Prune non-folios from a batch.
10441613fac9SMatthew Wilcox (Oracle)  * @fbatch: The batch to prune
10450cd6144aSJohannes Weiner  *
10461613fac9SMatthew Wilcox (Oracle)  * find_get_entries() fills a batch with both folios and shadow/swap/DAX
10471613fac9SMatthew Wilcox (Oracle)  * entries.  This function prunes all the non-folio entries from @fbatch
10481613fac9SMatthew Wilcox (Oracle)  * without leaving holes, so that it can be passed on to folio-only batch
10491613fac9SMatthew Wilcox (Oracle)  * operations.
10500cd6144aSJohannes Weiner  */
10511613fac9SMatthew Wilcox (Oracle) void folio_batch_remove_exceptionals(struct folio_batch *fbatch)
10520cd6144aSJohannes Weiner {
10531613fac9SMatthew Wilcox (Oracle) 	unsigned int i, j;
10540cd6144aSJohannes Weiner 
10551613fac9SMatthew Wilcox (Oracle) 	for (i = 0, j = 0; i < folio_batch_count(fbatch); i++) {
10561613fac9SMatthew Wilcox (Oracle) 		struct folio *folio = fbatch->folios[i];
10571613fac9SMatthew Wilcox (Oracle) 		if (!xa_is_value(folio))
10581613fac9SMatthew Wilcox (Oracle) 			fbatch->folios[j++] = folio;
10590cd6144aSJohannes Weiner 	}
10601613fac9SMatthew Wilcox (Oracle) 	fbatch->nr = j;
10610cd6144aSJohannes Weiner }
10620cd6144aSJohannes Weiner 
106372b045aeSJan Kara unsigned pagevec_lookup_range_tag(struct pagevec *pvec,
106472b045aeSJan Kara 		struct address_space *mapping, pgoff_t *index, pgoff_t end,
106510bbd235SMatthew Wilcox 		xa_mark_t tag)
10661da177e4SLinus Torvalds {
106772b045aeSJan Kara 	pvec->nr = find_get_pages_range_tag(mapping, index, end, tag,
106867fd707fSJan Kara 					PAGEVEC_SIZE, pvec->pages);
10691da177e4SLinus Torvalds 	return pagevec_count(pvec);
10701da177e4SLinus Torvalds }
107172b045aeSJan Kara EXPORT_SYMBOL(pagevec_lookup_range_tag);
10721da177e4SLinus Torvalds 
10731da177e4SLinus Torvalds /*
10741da177e4SLinus Torvalds  * Perform any setup for the swap system
10751da177e4SLinus Torvalds  */
10761da177e4SLinus Torvalds void __init swap_setup(void)
10771da177e4SLinus Torvalds {
1078ca79b0c2SArun KS 	unsigned long megs = totalram_pages() >> (20 - PAGE_SHIFT);
1079e0bf68ddSPeter Zijlstra 
10801da177e4SLinus Torvalds 	/* Use a smaller cluster for small-memory machines */
10811da177e4SLinus Torvalds 	if (megs < 16)
10821da177e4SLinus Torvalds 		page_cluster = 2;
10831da177e4SLinus Torvalds 	else
10841da177e4SLinus Torvalds 		page_cluster = 3;
10851da177e4SLinus Torvalds 	/*
10861da177e4SLinus Torvalds 	 * Right now other parts of the system means that we
10871da177e4SLinus Torvalds 	 * _really_ don't want to cluster much more
10881da177e4SLinus Torvalds 	 */
10891da177e4SLinus Torvalds }
1090