xref: /openbmc/linux/mm/vmscan.c (revision 018ee47f14893d500131dfca2ff9f3ff8ebd4ed2)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Swap reorganised 29.12.95, Stephen Tweedie.
61da177e4SLinus Torvalds  *  kswapd added: 7.1.96  sct
71da177e4SLinus Torvalds  *  Removed kswapd_ctl limits, and swap out as many pages as needed
81da177e4SLinus Torvalds  *  to bring the system back to freepages.high: 2.4.97, Rik van Riel.
91da177e4SLinus Torvalds  *  Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
101da177e4SLinus Torvalds  *  Multiqueue VM started 5.8.00, Rik van Riel.
111da177e4SLinus Torvalds  */
121da177e4SLinus Torvalds 
13b1de0d13SMitchel Humpherys #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14b1de0d13SMitchel Humpherys 
151da177e4SLinus Torvalds #include <linux/mm.h>
165b3cc15aSIngo Molnar #include <linux/sched/mm.h>
171da177e4SLinus Torvalds #include <linux/module.h>
185a0e3ad6STejun Heo #include <linux/gfp.h>
191da177e4SLinus Torvalds #include <linux/kernel_stat.h>
201da177e4SLinus Torvalds #include <linux/swap.h>
211da177e4SLinus Torvalds #include <linux/pagemap.h>
221da177e4SLinus Torvalds #include <linux/init.h>
231da177e4SLinus Torvalds #include <linux/highmem.h>
2470ddf637SAnton Vorontsov #include <linux/vmpressure.h>
25e129b5c2SAndrew Morton #include <linux/vmstat.h>
261da177e4SLinus Torvalds #include <linux/file.h>
271da177e4SLinus Torvalds #include <linux/writeback.h>
281da177e4SLinus Torvalds #include <linux/blkdev.h>
2907f67a8dSMatthew Wilcox (Oracle) #include <linux/buffer_head.h>	/* for buffer_heads_over_limit */
301da177e4SLinus Torvalds #include <linux/mm_inline.h>
311da177e4SLinus Torvalds #include <linux/backing-dev.h>
321da177e4SLinus Torvalds #include <linux/rmap.h>
331da177e4SLinus Torvalds #include <linux/topology.h>
341da177e4SLinus Torvalds #include <linux/cpu.h>
351da177e4SLinus Torvalds #include <linux/cpuset.h>
363e7d3449SMel Gorman #include <linux/compaction.h>
371da177e4SLinus Torvalds #include <linux/notifier.h>
381da177e4SLinus Torvalds #include <linux/rwsem.h>
39248a0301SRafael J. Wysocki #include <linux/delay.h>
403218ae14SYasunori Goto #include <linux/kthread.h>
417dfb7103SNigel Cunningham #include <linux/freezer.h>
4266e1707bSBalbir Singh #include <linux/memcontrol.h>
4326aa2d19SDave Hansen #include <linux/migrate.h>
44873b4771SKeika Kobayashi #include <linux/delayacct.h>
45af936a16SLee Schermerhorn #include <linux/sysctl.h>
46929bea7cSKOSAKI Motohiro #include <linux/oom.h>
4764e3d12fSKuo-Hsin Yang #include <linux/pagevec.h>
48268bb0ceSLinus Torvalds #include <linux/prefetch.h>
49b1de0d13SMitchel Humpherys #include <linux/printk.h>
50f9fe48beSRoss Zwisler #include <linux/dax.h>
51eb414681SJohannes Weiner #include <linux/psi.h>
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds #include <asm/tlbflush.h>
541da177e4SLinus Torvalds #include <asm/div64.h>
551da177e4SLinus Torvalds 
561da177e4SLinus Torvalds #include <linux/swapops.h>
57117aad1eSRafael Aquini #include <linux/balloon_compaction.h>
58c574bbe9SHuang Ying #include <linux/sched/sysctl.h>
591da177e4SLinus Torvalds 
600f8053a5SNick Piggin #include "internal.h"
61014bb1deSNeilBrown #include "swap.h"
620f8053a5SNick Piggin 
6333906bc5SMel Gorman #define CREATE_TRACE_POINTS
6433906bc5SMel Gorman #include <trace/events/vmscan.h>
6533906bc5SMel Gorman 
661da177e4SLinus Torvalds struct scan_control {
6722fba335SKOSAKI Motohiro 	/* How many pages shrink_list() should reclaim */
6822fba335SKOSAKI Motohiro 	unsigned long nr_to_reclaim;
6922fba335SKOSAKI Motohiro 
70ee814fe2SJohannes Weiner 	/*
71ee814fe2SJohannes Weiner 	 * Nodemask of nodes allowed by the caller. If NULL, all nodes
72ee814fe2SJohannes Weiner 	 * are scanned.
73ee814fe2SJohannes Weiner 	 */
74ee814fe2SJohannes Weiner 	nodemask_t	*nodemask;
759e3b2f8cSKonstantin Khlebnikov 
765f53e762SKOSAKI Motohiro 	/*
77f16015fbSJohannes Weiner 	 * The memory cgroup that hit its limit and as a result is the
78f16015fbSJohannes Weiner 	 * primary target of this reclaim invocation.
79f16015fbSJohannes Weiner 	 */
80f16015fbSJohannes Weiner 	struct mem_cgroup *target_mem_cgroup;
8166e1707bSBalbir Singh 
827cf111bcSJohannes Weiner 	/*
837cf111bcSJohannes Weiner 	 * Scan pressure balancing between anon and file LRUs
847cf111bcSJohannes Weiner 	 */
857cf111bcSJohannes Weiner 	unsigned long	anon_cost;
867cf111bcSJohannes Weiner 	unsigned long	file_cost;
877cf111bcSJohannes Weiner 
88b91ac374SJohannes Weiner 	/* Can active pages be deactivated as part of reclaim? */
89b91ac374SJohannes Weiner #define DEACTIVATE_ANON 1
90b91ac374SJohannes Weiner #define DEACTIVATE_FILE 2
91b91ac374SJohannes Weiner 	unsigned int may_deactivate:2;
92b91ac374SJohannes Weiner 	unsigned int force_deactivate:1;
93b91ac374SJohannes Weiner 	unsigned int skipped_deactivate:1;
94b91ac374SJohannes Weiner 
951276ad68SJohannes Weiner 	/* Writepage batching in laptop mode; RECLAIM_WRITE */
96ee814fe2SJohannes Weiner 	unsigned int may_writepage:1;
97ee814fe2SJohannes Weiner 
98ee814fe2SJohannes Weiner 	/* Can mapped pages be reclaimed? */
99ee814fe2SJohannes Weiner 	unsigned int may_unmap:1;
100ee814fe2SJohannes Weiner 
101ee814fe2SJohannes Weiner 	/* Can pages be swapped as part of reclaim? */
102ee814fe2SJohannes Weiner 	unsigned int may_swap:1;
103ee814fe2SJohannes Weiner 
10473b73bacSYosry Ahmed 	/* Proactive reclaim invoked by userspace through memory.reclaim */
10573b73bacSYosry Ahmed 	unsigned int proactive:1;
10673b73bacSYosry Ahmed 
107d6622f63SYisheng Xie 	/*
108f56ce412SJohannes Weiner 	 * Cgroup memory below memory.low is protected as long as we
109f56ce412SJohannes Weiner 	 * don't threaten to OOM. If any cgroup is reclaimed at
110f56ce412SJohannes Weiner 	 * reduced force or passed over entirely due to its memory.low
111f56ce412SJohannes Weiner 	 * setting (memcg_low_skipped), and nothing is reclaimed as a
112f56ce412SJohannes Weiner 	 * result, then go back for one more cycle that reclaims the protected
113f56ce412SJohannes Weiner 	 * memory (memcg_low_reclaim) to avert OOM.
114d6622f63SYisheng Xie 	 */
115d6622f63SYisheng Xie 	unsigned int memcg_low_reclaim:1;
116d6622f63SYisheng Xie 	unsigned int memcg_low_skipped:1;
117241994edSJohannes Weiner 
118ee814fe2SJohannes Weiner 	unsigned int hibernation_mode:1;
119ee814fe2SJohannes Weiner 
120ee814fe2SJohannes Weiner 	/* One of the zones is ready for compaction */
121ee814fe2SJohannes Weiner 	unsigned int compaction_ready:1;
122ee814fe2SJohannes Weiner 
123b91ac374SJohannes Weiner 	/* There is easily reclaimable cold cache in the current node */
124b91ac374SJohannes Weiner 	unsigned int cache_trim_mode:1;
125b91ac374SJohannes Weiner 
12653138ceaSJohannes Weiner 	/* The file pages on the current node are dangerously low */
12753138ceaSJohannes Weiner 	unsigned int file_is_tiny:1;
12853138ceaSJohannes Weiner 
12926aa2d19SDave Hansen 	/* Always discard instead of demoting to lower tier memory */
13026aa2d19SDave Hansen 	unsigned int no_demotion:1;
13126aa2d19SDave Hansen 
132bb451fdfSGreg Thelen 	/* Allocation order */
133bb451fdfSGreg Thelen 	s8 order;
134bb451fdfSGreg Thelen 
135bb451fdfSGreg Thelen 	/* Scan (total_size >> priority) pages at once */
136bb451fdfSGreg Thelen 	s8 priority;
137bb451fdfSGreg Thelen 
138bb451fdfSGreg Thelen 	/* The highest zone to isolate pages for reclaim from */
139bb451fdfSGreg Thelen 	s8 reclaim_idx;
140bb451fdfSGreg Thelen 
141bb451fdfSGreg Thelen 	/* This context's GFP mask */
142bb451fdfSGreg Thelen 	gfp_t gfp_mask;
143bb451fdfSGreg Thelen 
144ee814fe2SJohannes Weiner 	/* Incremented by the number of inactive pages that were scanned */
145ee814fe2SJohannes Weiner 	unsigned long nr_scanned;
146ee814fe2SJohannes Weiner 
147ee814fe2SJohannes Weiner 	/* Number of pages freed so far during a call to shrink_zones() */
148ee814fe2SJohannes Weiner 	unsigned long nr_reclaimed;
149d108c772SAndrey Ryabinin 
150d108c772SAndrey Ryabinin 	struct {
151d108c772SAndrey Ryabinin 		unsigned int dirty;
152d108c772SAndrey Ryabinin 		unsigned int unqueued_dirty;
153d108c772SAndrey Ryabinin 		unsigned int congested;
154d108c772SAndrey Ryabinin 		unsigned int writeback;
155d108c772SAndrey Ryabinin 		unsigned int immediate;
156d108c772SAndrey Ryabinin 		unsigned int file_taken;
157d108c772SAndrey Ryabinin 		unsigned int taken;
158d108c772SAndrey Ryabinin 	} nr;
159e5ca8071SYafang Shao 
160e5ca8071SYafang Shao 	/* for recording the reclaimed slab by now */
161e5ca8071SYafang Shao 	struct reclaim_state reclaim_state;
1621da177e4SLinus Torvalds };
1631da177e4SLinus Torvalds 
1641da177e4SLinus Torvalds #ifdef ARCH_HAS_PREFETCHW
165166e3d32SMatthew Wilcox (Oracle) #define prefetchw_prev_lru_folio(_folio, _base, _field)			\
1661da177e4SLinus Torvalds 	do {								\
167166e3d32SMatthew Wilcox (Oracle) 		if ((_folio)->lru.prev != _base) {			\
168166e3d32SMatthew Wilcox (Oracle) 			struct folio *prev;				\
1691da177e4SLinus Torvalds 									\
170166e3d32SMatthew Wilcox (Oracle) 			prev = lru_to_folio(&(_folio->lru));		\
1711da177e4SLinus Torvalds 			prefetchw(&prev->_field);			\
1721da177e4SLinus Torvalds 		}							\
1731da177e4SLinus Torvalds 	} while (0)
1741da177e4SLinus Torvalds #else
175166e3d32SMatthew Wilcox (Oracle) #define prefetchw_prev_lru_folio(_folio, _base, _field) do { } while (0)
1761da177e4SLinus Torvalds #endif
1771da177e4SLinus Torvalds 
1781da177e4SLinus Torvalds /*
179c843966cSJohannes Weiner  * From 0 .. 200.  Higher means more swappy.
1801da177e4SLinus Torvalds  */
1811da177e4SLinus Torvalds int vm_swappiness = 60;
1821da177e4SLinus Torvalds 
1830a432dcbSYang Shi static void set_task_reclaim_state(struct task_struct *task,
1840a432dcbSYang Shi 				   struct reclaim_state *rs)
1850a432dcbSYang Shi {
1860a432dcbSYang Shi 	/* Check for an overwrite */
1870a432dcbSYang Shi 	WARN_ON_ONCE(rs && task->reclaim_state);
1880a432dcbSYang Shi 
1890a432dcbSYang Shi 	/* Check for the nulling of an already-nulled member */
1900a432dcbSYang Shi 	WARN_ON_ONCE(!rs && !task->reclaim_state);
1910a432dcbSYang Shi 
1920a432dcbSYang Shi 	task->reclaim_state = rs;
1930a432dcbSYang Shi }
1940a432dcbSYang Shi 
1955035ebc6SRoman Gushchin LIST_HEAD(shrinker_list);
1965035ebc6SRoman Gushchin DECLARE_RWSEM(shrinker_rwsem);
1971da177e4SLinus Torvalds 
1980a432dcbSYang Shi #ifdef CONFIG_MEMCG
199a2fb1261SYang Shi static int shrinker_nr_max;
2002bfd3637SYang Shi 
2013c6f17e6SYang Shi /* The shrinker_info is expanded in a batch of BITS_PER_LONG */
202a2fb1261SYang Shi static inline int shrinker_map_size(int nr_items)
203a2fb1261SYang Shi {
204a2fb1261SYang Shi 	return (DIV_ROUND_UP(nr_items, BITS_PER_LONG) * sizeof(unsigned long));
205a2fb1261SYang Shi }
2062bfd3637SYang Shi 
2073c6f17e6SYang Shi static inline int shrinker_defer_size(int nr_items)
2083c6f17e6SYang Shi {
2093c6f17e6SYang Shi 	return (round_up(nr_items, BITS_PER_LONG) * sizeof(atomic_long_t));
2103c6f17e6SYang Shi }
2113c6f17e6SYang Shi 
212468ab843SYang Shi static struct shrinker_info *shrinker_info_protected(struct mem_cgroup *memcg,
213468ab843SYang Shi 						     int nid)
214468ab843SYang Shi {
215468ab843SYang Shi 	return rcu_dereference_protected(memcg->nodeinfo[nid]->shrinker_info,
216468ab843SYang Shi 					 lockdep_is_held(&shrinker_rwsem));
217468ab843SYang Shi }
218468ab843SYang Shi 
219e4262c4fSYang Shi static int expand_one_shrinker_info(struct mem_cgroup *memcg,
2203c6f17e6SYang Shi 				    int map_size, int defer_size,
2213c6f17e6SYang Shi 				    int old_map_size, int old_defer_size)
2222bfd3637SYang Shi {
223e4262c4fSYang Shi 	struct shrinker_info *new, *old;
2242bfd3637SYang Shi 	struct mem_cgroup_per_node *pn;
2252bfd3637SYang Shi 	int nid;
2263c6f17e6SYang Shi 	int size = map_size + defer_size;
2272bfd3637SYang Shi 
2282bfd3637SYang Shi 	for_each_node(nid) {
2292bfd3637SYang Shi 		pn = memcg->nodeinfo[nid];
230468ab843SYang Shi 		old = shrinker_info_protected(memcg, nid);
2312bfd3637SYang Shi 		/* Not yet online memcg */
2322bfd3637SYang Shi 		if (!old)
2332bfd3637SYang Shi 			return 0;
2342bfd3637SYang Shi 
2352bfd3637SYang Shi 		new = kvmalloc_node(sizeof(*new) + size, GFP_KERNEL, nid);
2362bfd3637SYang Shi 		if (!new)
2372bfd3637SYang Shi 			return -ENOMEM;
2382bfd3637SYang Shi 
2393c6f17e6SYang Shi 		new->nr_deferred = (atomic_long_t *)(new + 1);
2403c6f17e6SYang Shi 		new->map = (void *)new->nr_deferred + defer_size;
2413c6f17e6SYang Shi 
2423c6f17e6SYang Shi 		/* map: set all old bits, clear all new bits */
2433c6f17e6SYang Shi 		memset(new->map, (int)0xff, old_map_size);
2443c6f17e6SYang Shi 		memset((void *)new->map + old_map_size, 0, map_size - old_map_size);
2453c6f17e6SYang Shi 		/* nr_deferred: copy old values, clear all new values */
2463c6f17e6SYang Shi 		memcpy(new->nr_deferred, old->nr_deferred, old_defer_size);
2473c6f17e6SYang Shi 		memset((void *)new->nr_deferred + old_defer_size, 0,
2483c6f17e6SYang Shi 		       defer_size - old_defer_size);
2492bfd3637SYang Shi 
250e4262c4fSYang Shi 		rcu_assign_pointer(pn->shrinker_info, new);
25172673e86SYang Shi 		kvfree_rcu(old, rcu);
2522bfd3637SYang Shi 	}
2532bfd3637SYang Shi 
2542bfd3637SYang Shi 	return 0;
2552bfd3637SYang Shi }
2562bfd3637SYang Shi 
257e4262c4fSYang Shi void free_shrinker_info(struct mem_cgroup *memcg)
2582bfd3637SYang Shi {
2592bfd3637SYang Shi 	struct mem_cgroup_per_node *pn;
260e4262c4fSYang Shi 	struct shrinker_info *info;
2612bfd3637SYang Shi 	int nid;
2622bfd3637SYang Shi 
2632bfd3637SYang Shi 	for_each_node(nid) {
2642bfd3637SYang Shi 		pn = memcg->nodeinfo[nid];
265e4262c4fSYang Shi 		info = rcu_dereference_protected(pn->shrinker_info, true);
266e4262c4fSYang Shi 		kvfree(info);
267e4262c4fSYang Shi 		rcu_assign_pointer(pn->shrinker_info, NULL);
2682bfd3637SYang Shi 	}
2692bfd3637SYang Shi }
2702bfd3637SYang Shi 
271e4262c4fSYang Shi int alloc_shrinker_info(struct mem_cgroup *memcg)
2722bfd3637SYang Shi {
273e4262c4fSYang Shi 	struct shrinker_info *info;
2742bfd3637SYang Shi 	int nid, size, ret = 0;
2753c6f17e6SYang Shi 	int map_size, defer_size = 0;
2762bfd3637SYang Shi 
277d27cf2aaSYang Shi 	down_write(&shrinker_rwsem);
2783c6f17e6SYang Shi 	map_size = shrinker_map_size(shrinker_nr_max);
2793c6f17e6SYang Shi 	defer_size = shrinker_defer_size(shrinker_nr_max);
2803c6f17e6SYang Shi 	size = map_size + defer_size;
2812bfd3637SYang Shi 	for_each_node(nid) {
282e4262c4fSYang Shi 		info = kvzalloc_node(sizeof(*info) + size, GFP_KERNEL, nid);
283e4262c4fSYang Shi 		if (!info) {
284e4262c4fSYang Shi 			free_shrinker_info(memcg);
2852bfd3637SYang Shi 			ret = -ENOMEM;
2862bfd3637SYang Shi 			break;
2872bfd3637SYang Shi 		}
2883c6f17e6SYang Shi 		info->nr_deferred = (atomic_long_t *)(info + 1);
2893c6f17e6SYang Shi 		info->map = (void *)info->nr_deferred + defer_size;
290e4262c4fSYang Shi 		rcu_assign_pointer(memcg->nodeinfo[nid]->shrinker_info, info);
2912bfd3637SYang Shi 	}
292d27cf2aaSYang Shi 	up_write(&shrinker_rwsem);
2932bfd3637SYang Shi 
2942bfd3637SYang Shi 	return ret;
2952bfd3637SYang Shi }
2962bfd3637SYang Shi 
2973c6f17e6SYang Shi static inline bool need_expand(int nr_max)
2983c6f17e6SYang Shi {
2993c6f17e6SYang Shi 	return round_up(nr_max, BITS_PER_LONG) >
3003c6f17e6SYang Shi 	       round_up(shrinker_nr_max, BITS_PER_LONG);
3013c6f17e6SYang Shi }
3023c6f17e6SYang Shi 
303e4262c4fSYang Shi static int expand_shrinker_info(int new_id)
3042bfd3637SYang Shi {
3053c6f17e6SYang Shi 	int ret = 0;
306a2fb1261SYang Shi 	int new_nr_max = new_id + 1;
3073c6f17e6SYang Shi 	int map_size, defer_size = 0;
3083c6f17e6SYang Shi 	int old_map_size, old_defer_size = 0;
3092bfd3637SYang Shi 	struct mem_cgroup *memcg;
3102bfd3637SYang Shi 
3113c6f17e6SYang Shi 	if (!need_expand(new_nr_max))
312a2fb1261SYang Shi 		goto out;
3132bfd3637SYang Shi 
3142bfd3637SYang Shi 	if (!root_mem_cgroup)
315d27cf2aaSYang Shi 		goto out;
316d27cf2aaSYang Shi 
317d27cf2aaSYang Shi 	lockdep_assert_held(&shrinker_rwsem);
3182bfd3637SYang Shi 
3193c6f17e6SYang Shi 	map_size = shrinker_map_size(new_nr_max);
3203c6f17e6SYang Shi 	defer_size = shrinker_defer_size(new_nr_max);
3213c6f17e6SYang Shi 	old_map_size = shrinker_map_size(shrinker_nr_max);
3223c6f17e6SYang Shi 	old_defer_size = shrinker_defer_size(shrinker_nr_max);
3233c6f17e6SYang Shi 
3242bfd3637SYang Shi 	memcg = mem_cgroup_iter(NULL, NULL, NULL);
3252bfd3637SYang Shi 	do {
3263c6f17e6SYang Shi 		ret = expand_one_shrinker_info(memcg, map_size, defer_size,
3273c6f17e6SYang Shi 					       old_map_size, old_defer_size);
3282bfd3637SYang Shi 		if (ret) {
3292bfd3637SYang Shi 			mem_cgroup_iter_break(NULL, memcg);
330d27cf2aaSYang Shi 			goto out;
3312bfd3637SYang Shi 		}
3322bfd3637SYang Shi 	} while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
333d27cf2aaSYang Shi out:
3342bfd3637SYang Shi 	if (!ret)
335a2fb1261SYang Shi 		shrinker_nr_max = new_nr_max;
336d27cf2aaSYang Shi 
3372bfd3637SYang Shi 	return ret;
3382bfd3637SYang Shi }
3392bfd3637SYang Shi 
3402bfd3637SYang Shi void set_shrinker_bit(struct mem_cgroup *memcg, int nid, int shrinker_id)
3412bfd3637SYang Shi {
3422bfd3637SYang Shi 	if (shrinker_id >= 0 && memcg && !mem_cgroup_is_root(memcg)) {
343e4262c4fSYang Shi 		struct shrinker_info *info;
3442bfd3637SYang Shi 
3452bfd3637SYang Shi 		rcu_read_lock();
346e4262c4fSYang Shi 		info = rcu_dereference(memcg->nodeinfo[nid]->shrinker_info);
3472bfd3637SYang Shi 		/* Pairs with smp mb in shrink_slab() */
3482bfd3637SYang Shi 		smp_mb__before_atomic();
349e4262c4fSYang Shi 		set_bit(shrinker_id, info->map);
3502bfd3637SYang Shi 		rcu_read_unlock();
3512bfd3637SYang Shi 	}
3522bfd3637SYang Shi }
3532bfd3637SYang Shi 
354b4c2b231SKirill Tkhai static DEFINE_IDR(shrinker_idr);
355b4c2b231SKirill Tkhai 
356b4c2b231SKirill Tkhai static int prealloc_memcg_shrinker(struct shrinker *shrinker)
357b4c2b231SKirill Tkhai {
358b4c2b231SKirill Tkhai 	int id, ret = -ENOMEM;
359b4c2b231SKirill Tkhai 
360476b30a0SYang Shi 	if (mem_cgroup_disabled())
361476b30a0SYang Shi 		return -ENOSYS;
362476b30a0SYang Shi 
363b4c2b231SKirill Tkhai 	down_write(&shrinker_rwsem);
364b4c2b231SKirill Tkhai 	/* This may call shrinker, so it must use down_read_trylock() */
36541ca668aSYang Shi 	id = idr_alloc(&shrinker_idr, shrinker, 0, 0, GFP_KERNEL);
366b4c2b231SKirill Tkhai 	if (id < 0)
367b4c2b231SKirill Tkhai 		goto unlock;
368b4c2b231SKirill Tkhai 
3690a4465d3SKirill Tkhai 	if (id >= shrinker_nr_max) {
370e4262c4fSYang Shi 		if (expand_shrinker_info(id)) {
3710a4465d3SKirill Tkhai 			idr_remove(&shrinker_idr, id);
3720a4465d3SKirill Tkhai 			goto unlock;
3730a4465d3SKirill Tkhai 		}
3740a4465d3SKirill Tkhai 	}
375b4c2b231SKirill Tkhai 	shrinker->id = id;
376b4c2b231SKirill Tkhai 	ret = 0;
377b4c2b231SKirill Tkhai unlock:
378b4c2b231SKirill Tkhai 	up_write(&shrinker_rwsem);
379b4c2b231SKirill Tkhai 	return ret;
380b4c2b231SKirill Tkhai }
381b4c2b231SKirill Tkhai 
382b4c2b231SKirill Tkhai static void unregister_memcg_shrinker(struct shrinker *shrinker)
383b4c2b231SKirill Tkhai {
384b4c2b231SKirill Tkhai 	int id = shrinker->id;
385b4c2b231SKirill Tkhai 
386b4c2b231SKirill Tkhai 	BUG_ON(id < 0);
387b4c2b231SKirill Tkhai 
38841ca668aSYang Shi 	lockdep_assert_held(&shrinker_rwsem);
38941ca668aSYang Shi 
390b4c2b231SKirill Tkhai 	idr_remove(&shrinker_idr, id);
391b4c2b231SKirill Tkhai }
392b4c2b231SKirill Tkhai 
39386750830SYang Shi static long xchg_nr_deferred_memcg(int nid, struct shrinker *shrinker,
39486750830SYang Shi 				   struct mem_cgroup *memcg)
39586750830SYang Shi {
39686750830SYang Shi 	struct shrinker_info *info;
39786750830SYang Shi 
39886750830SYang Shi 	info = shrinker_info_protected(memcg, nid);
39986750830SYang Shi 	return atomic_long_xchg(&info->nr_deferred[shrinker->id], 0);
40086750830SYang Shi }
40186750830SYang Shi 
40286750830SYang Shi static long add_nr_deferred_memcg(long nr, int nid, struct shrinker *shrinker,
40386750830SYang Shi 				  struct mem_cgroup *memcg)
40486750830SYang Shi {
40586750830SYang Shi 	struct shrinker_info *info;
40686750830SYang Shi 
40786750830SYang Shi 	info = shrinker_info_protected(memcg, nid);
40886750830SYang Shi 	return atomic_long_add_return(nr, &info->nr_deferred[shrinker->id]);
40986750830SYang Shi }
41086750830SYang Shi 
411a178015cSYang Shi void reparent_shrinker_deferred(struct mem_cgroup *memcg)
412a178015cSYang Shi {
413a178015cSYang Shi 	int i, nid;
414a178015cSYang Shi 	long nr;
415a178015cSYang Shi 	struct mem_cgroup *parent;
416a178015cSYang Shi 	struct shrinker_info *child_info, *parent_info;
417a178015cSYang Shi 
418a178015cSYang Shi 	parent = parent_mem_cgroup(memcg);
419a178015cSYang Shi 	if (!parent)
420a178015cSYang Shi 		parent = root_mem_cgroup;
421a178015cSYang Shi 
422a178015cSYang Shi 	/* Prevent from concurrent shrinker_info expand */
423a178015cSYang Shi 	down_read(&shrinker_rwsem);
424a178015cSYang Shi 	for_each_node(nid) {
425a178015cSYang Shi 		child_info = shrinker_info_protected(memcg, nid);
426a178015cSYang Shi 		parent_info = shrinker_info_protected(parent, nid);
427a178015cSYang Shi 		for (i = 0; i < shrinker_nr_max; i++) {
428a178015cSYang Shi 			nr = atomic_long_read(&child_info->nr_deferred[i]);
429a178015cSYang Shi 			atomic_long_add(nr, &parent_info->nr_deferred[i]);
430a178015cSYang Shi 		}
431a178015cSYang Shi 	}
432a178015cSYang Shi 	up_read(&shrinker_rwsem);
433a178015cSYang Shi }
434a178015cSYang Shi 
435b5ead35eSJohannes Weiner static bool cgroup_reclaim(struct scan_control *sc)
43689b5fae5SJohannes Weiner {
437b5ead35eSJohannes Weiner 	return sc->target_mem_cgroup;
43889b5fae5SJohannes Weiner }
43997c9341fSTejun Heo 
44097c9341fSTejun Heo /**
441b5ead35eSJohannes Weiner  * writeback_throttling_sane - is the usual dirty throttling mechanism available?
44297c9341fSTejun Heo  * @sc: scan_control in question
44397c9341fSTejun Heo  *
44497c9341fSTejun Heo  * The normal page dirty throttling mechanism in balance_dirty_pages() is
44597c9341fSTejun Heo  * completely broken with the legacy memcg and direct stalling in
44697c9341fSTejun Heo  * shrink_page_list() is used for throttling instead, which lacks all the
44797c9341fSTejun Heo  * niceties such as fairness, adaptive pausing, bandwidth proportional
44897c9341fSTejun Heo  * allocation and configurability.
44997c9341fSTejun Heo  *
45097c9341fSTejun Heo  * This function tests whether the vmscan currently in progress can assume
45197c9341fSTejun Heo  * that the normal dirty throttling mechanism is operational.
45297c9341fSTejun Heo  */
453b5ead35eSJohannes Weiner static bool writeback_throttling_sane(struct scan_control *sc)
45497c9341fSTejun Heo {
455b5ead35eSJohannes Weiner 	if (!cgroup_reclaim(sc))
45697c9341fSTejun Heo 		return true;
45797c9341fSTejun Heo #ifdef CONFIG_CGROUP_WRITEBACK
45869234aceSLinus Torvalds 	if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
45997c9341fSTejun Heo 		return true;
46097c9341fSTejun Heo #endif
46197c9341fSTejun Heo 	return false;
46297c9341fSTejun Heo }
46391a45470SKAMEZAWA Hiroyuki #else
4640a432dcbSYang Shi static int prealloc_memcg_shrinker(struct shrinker *shrinker)
4650a432dcbSYang Shi {
466476b30a0SYang Shi 	return -ENOSYS;
4670a432dcbSYang Shi }
4680a432dcbSYang Shi 
4690a432dcbSYang Shi static void unregister_memcg_shrinker(struct shrinker *shrinker)
4700a432dcbSYang Shi {
4710a432dcbSYang Shi }
4720a432dcbSYang Shi 
47386750830SYang Shi static long xchg_nr_deferred_memcg(int nid, struct shrinker *shrinker,
47486750830SYang Shi 				   struct mem_cgroup *memcg)
47586750830SYang Shi {
47686750830SYang Shi 	return 0;
47786750830SYang Shi }
47886750830SYang Shi 
47986750830SYang Shi static long add_nr_deferred_memcg(long nr, int nid, struct shrinker *shrinker,
48086750830SYang Shi 				  struct mem_cgroup *memcg)
48186750830SYang Shi {
48286750830SYang Shi 	return 0;
48386750830SYang Shi }
48486750830SYang Shi 
485b5ead35eSJohannes Weiner static bool cgroup_reclaim(struct scan_control *sc)
48689b5fae5SJohannes Weiner {
487b5ead35eSJohannes Weiner 	return false;
48889b5fae5SJohannes Weiner }
48997c9341fSTejun Heo 
490b5ead35eSJohannes Weiner static bool writeback_throttling_sane(struct scan_control *sc)
49197c9341fSTejun Heo {
49297c9341fSTejun Heo 	return true;
49397c9341fSTejun Heo }
49491a45470SKAMEZAWA Hiroyuki #endif
49591a45470SKAMEZAWA Hiroyuki 
49686750830SYang Shi static long xchg_nr_deferred(struct shrinker *shrinker,
49786750830SYang Shi 			     struct shrink_control *sc)
49886750830SYang Shi {
49986750830SYang Shi 	int nid = sc->nid;
50086750830SYang Shi 
50186750830SYang Shi 	if (!(shrinker->flags & SHRINKER_NUMA_AWARE))
50286750830SYang Shi 		nid = 0;
50386750830SYang Shi 
50486750830SYang Shi 	if (sc->memcg &&
50586750830SYang Shi 	    (shrinker->flags & SHRINKER_MEMCG_AWARE))
50686750830SYang Shi 		return xchg_nr_deferred_memcg(nid, shrinker,
50786750830SYang Shi 					      sc->memcg);
50886750830SYang Shi 
50986750830SYang Shi 	return atomic_long_xchg(&shrinker->nr_deferred[nid], 0);
51086750830SYang Shi }
51186750830SYang Shi 
51286750830SYang Shi 
51386750830SYang Shi static long add_nr_deferred(long nr, struct shrinker *shrinker,
51486750830SYang Shi 			    struct shrink_control *sc)
51586750830SYang Shi {
51686750830SYang Shi 	int nid = sc->nid;
51786750830SYang Shi 
51886750830SYang Shi 	if (!(shrinker->flags & SHRINKER_NUMA_AWARE))
51986750830SYang Shi 		nid = 0;
52086750830SYang Shi 
52186750830SYang Shi 	if (sc->memcg &&
52286750830SYang Shi 	    (shrinker->flags & SHRINKER_MEMCG_AWARE))
52386750830SYang Shi 		return add_nr_deferred_memcg(nr, nid, shrinker,
52486750830SYang Shi 					     sc->memcg);
52586750830SYang Shi 
52686750830SYang Shi 	return atomic_long_add_return(nr, &shrinker->nr_deferred[nid]);
52786750830SYang Shi }
52886750830SYang Shi 
52926aa2d19SDave Hansen static bool can_demote(int nid, struct scan_control *sc)
53026aa2d19SDave Hansen {
53120b51af1SHuang Ying 	if (!numa_demotion_enabled)
53220b51af1SHuang Ying 		return false;
5333f1509c5SJohannes Weiner 	if (sc && sc->no_demotion)
53426aa2d19SDave Hansen 		return false;
53526aa2d19SDave Hansen 	if (next_demotion_node(nid) == NUMA_NO_NODE)
53626aa2d19SDave Hansen 		return false;
53726aa2d19SDave Hansen 
53820b51af1SHuang Ying 	return true;
53926aa2d19SDave Hansen }
54026aa2d19SDave Hansen 
541a2a36488SKeith Busch static inline bool can_reclaim_anon_pages(struct mem_cgroup *memcg,
542a2a36488SKeith Busch 					  int nid,
543a2a36488SKeith Busch 					  struct scan_control *sc)
544a2a36488SKeith Busch {
545a2a36488SKeith Busch 	if (memcg == NULL) {
546a2a36488SKeith Busch 		/*
547a2a36488SKeith Busch 		 * For non-memcg reclaim, is there
548a2a36488SKeith Busch 		 * space in any swap device?
549a2a36488SKeith Busch 		 */
550a2a36488SKeith Busch 		if (get_nr_swap_pages() > 0)
551a2a36488SKeith Busch 			return true;
552a2a36488SKeith Busch 	} else {
553a2a36488SKeith Busch 		/* Is the memcg below its swap limit? */
554a2a36488SKeith Busch 		if (mem_cgroup_get_nr_swap_pages(memcg) > 0)
555a2a36488SKeith Busch 			return true;
556a2a36488SKeith Busch 	}
557a2a36488SKeith Busch 
558a2a36488SKeith Busch 	/*
559a2a36488SKeith Busch 	 * The page can not be swapped.
560a2a36488SKeith Busch 	 *
561a2a36488SKeith Busch 	 * Can it be reclaimed from this node via demotion?
562a2a36488SKeith Busch 	 */
563a2a36488SKeith Busch 	return can_demote(nid, sc);
564a2a36488SKeith Busch }
565a2a36488SKeith Busch 
5665a1c84b4SMel Gorman /*
5675a1c84b4SMel Gorman  * This misses isolated pages which are not accounted for to save counters.
5685a1c84b4SMel Gorman  * As the data only determines if reclaim or compaction continues, it is
5695a1c84b4SMel Gorman  * not expected that isolated pages will be a dominating factor.
5705a1c84b4SMel Gorman  */
5715a1c84b4SMel Gorman unsigned long zone_reclaimable_pages(struct zone *zone)
5725a1c84b4SMel Gorman {
5735a1c84b4SMel Gorman 	unsigned long nr;
5745a1c84b4SMel Gorman 
5755a1c84b4SMel Gorman 	nr = zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_FILE) +
5765a1c84b4SMel Gorman 		zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_FILE);
577a2a36488SKeith Busch 	if (can_reclaim_anon_pages(NULL, zone_to_nid(zone), NULL))
5785a1c84b4SMel Gorman 		nr += zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_ANON) +
5795a1c84b4SMel Gorman 			zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_ANON);
5805a1c84b4SMel Gorman 
5815a1c84b4SMel Gorman 	return nr;
5825a1c84b4SMel Gorman }
5835a1c84b4SMel Gorman 
584fd538803SMichal Hocko /**
585fd538803SMichal Hocko  * lruvec_lru_size -  Returns the number of pages on the given LRU list.
586fd538803SMichal Hocko  * @lruvec: lru vector
587fd538803SMichal Hocko  * @lru: lru to use
5888b3a899aSWei Yang  * @zone_idx: zones to consider (use MAX_NR_ZONES - 1 for the whole LRU list)
589fd538803SMichal Hocko  */
5902091339dSYu Zhao static unsigned long lruvec_lru_size(struct lruvec *lruvec, enum lru_list lru,
5912091339dSYu Zhao 				     int zone_idx)
592c9f299d9SKOSAKI Motohiro {
593de3b0150SJohannes Weiner 	unsigned long size = 0;
594fd538803SMichal Hocko 	int zid;
595a3d8e054SKOSAKI Motohiro 
5968b3a899aSWei Yang 	for (zid = 0; zid <= zone_idx; zid++) {
597fd538803SMichal Hocko 		struct zone *zone = &lruvec_pgdat(lruvec)->node_zones[zid];
598fd538803SMichal Hocko 
599fd538803SMichal Hocko 		if (!managed_zone(zone))
600fd538803SMichal Hocko 			continue;
601fd538803SMichal Hocko 
602fd538803SMichal Hocko 		if (!mem_cgroup_disabled())
603de3b0150SJohannes Weiner 			size += mem_cgroup_get_zone_lru_size(lruvec, lru, zid);
604fd538803SMichal Hocko 		else
605de3b0150SJohannes Weiner 			size += zone_page_state(zone, NR_ZONE_LRU_BASE + lru);
606c9f299d9SKOSAKI Motohiro 	}
607de3b0150SJohannes Weiner 	return size;
608b4536f0cSMichal Hocko }
609b4536f0cSMichal Hocko 
6101da177e4SLinus Torvalds /*
6111d3d4437SGlauber Costa  * Add a shrinker callback to be called from the vm.
6121da177e4SLinus Torvalds  */
613e33c267aSRoman Gushchin static int __prealloc_shrinker(struct shrinker *shrinker)
6141da177e4SLinus Torvalds {
615476b30a0SYang Shi 	unsigned int size;
616476b30a0SYang Shi 	int err;
6171d3d4437SGlauber Costa 
618476b30a0SYang Shi 	if (shrinker->flags & SHRINKER_MEMCG_AWARE) {
619476b30a0SYang Shi 		err = prealloc_memcg_shrinker(shrinker);
620476b30a0SYang Shi 		if (err != -ENOSYS)
621476b30a0SYang Shi 			return err;
622476b30a0SYang Shi 
623476b30a0SYang Shi 		shrinker->flags &= ~SHRINKER_MEMCG_AWARE;
624476b30a0SYang Shi 	}
625476b30a0SYang Shi 
626476b30a0SYang Shi 	size = sizeof(*shrinker->nr_deferred);
6271d3d4437SGlauber Costa 	if (shrinker->flags & SHRINKER_NUMA_AWARE)
6281d3d4437SGlauber Costa 		size *= nr_node_ids;
6291d3d4437SGlauber Costa 
6301d3d4437SGlauber Costa 	shrinker->nr_deferred = kzalloc(size, GFP_KERNEL);
6311d3d4437SGlauber Costa 	if (!shrinker->nr_deferred)
6321d3d4437SGlauber Costa 		return -ENOMEM;
633b4c2b231SKirill Tkhai 
6348e04944fSTetsuo Handa 	return 0;
6358e04944fSTetsuo Handa }
6361d3d4437SGlauber Costa 
637e33c267aSRoman Gushchin #ifdef CONFIG_SHRINKER_DEBUG
638e33c267aSRoman Gushchin int prealloc_shrinker(struct shrinker *shrinker, const char *fmt, ...)
639e33c267aSRoman Gushchin {
640e33c267aSRoman Gushchin 	va_list ap;
641e33c267aSRoman Gushchin 	int err;
642e33c267aSRoman Gushchin 
643e33c267aSRoman Gushchin 	va_start(ap, fmt);
644e33c267aSRoman Gushchin 	shrinker->name = kvasprintf_const(GFP_KERNEL, fmt, ap);
645e33c267aSRoman Gushchin 	va_end(ap);
646e33c267aSRoman Gushchin 	if (!shrinker->name)
647e33c267aSRoman Gushchin 		return -ENOMEM;
648e33c267aSRoman Gushchin 
649e33c267aSRoman Gushchin 	err = __prealloc_shrinker(shrinker);
65014773bfaSTetsuo Handa 	if (err) {
651e33c267aSRoman Gushchin 		kfree_const(shrinker->name);
65214773bfaSTetsuo Handa 		shrinker->name = NULL;
65314773bfaSTetsuo Handa 	}
654e33c267aSRoman Gushchin 
655e33c267aSRoman Gushchin 	return err;
656e33c267aSRoman Gushchin }
657e33c267aSRoman Gushchin #else
658e33c267aSRoman Gushchin int prealloc_shrinker(struct shrinker *shrinker, const char *fmt, ...)
659e33c267aSRoman Gushchin {
660e33c267aSRoman Gushchin 	return __prealloc_shrinker(shrinker);
661e33c267aSRoman Gushchin }
662e33c267aSRoman Gushchin #endif
663e33c267aSRoman Gushchin 
6648e04944fSTetsuo Handa void free_prealloced_shrinker(struct shrinker *shrinker)
6658e04944fSTetsuo Handa {
666e33c267aSRoman Gushchin #ifdef CONFIG_SHRINKER_DEBUG
667e33c267aSRoman Gushchin 	kfree_const(shrinker->name);
66814773bfaSTetsuo Handa 	shrinker->name = NULL;
669e33c267aSRoman Gushchin #endif
67041ca668aSYang Shi 	if (shrinker->flags & SHRINKER_MEMCG_AWARE) {
67141ca668aSYang Shi 		down_write(&shrinker_rwsem);
672b4c2b231SKirill Tkhai 		unregister_memcg_shrinker(shrinker);
67341ca668aSYang Shi 		up_write(&shrinker_rwsem);
674476b30a0SYang Shi 		return;
67541ca668aSYang Shi 	}
676b4c2b231SKirill Tkhai 
6778e04944fSTetsuo Handa 	kfree(shrinker->nr_deferred);
6788e04944fSTetsuo Handa 	shrinker->nr_deferred = NULL;
6798e04944fSTetsuo Handa }
6808e04944fSTetsuo Handa 
6818e04944fSTetsuo Handa void register_shrinker_prepared(struct shrinker *shrinker)
6828e04944fSTetsuo Handa {
6831da177e4SLinus Torvalds 	down_write(&shrinker_rwsem);
6841da177e4SLinus Torvalds 	list_add_tail(&shrinker->list, &shrinker_list);
68541ca668aSYang Shi 	shrinker->flags |= SHRINKER_REGISTERED;
6865035ebc6SRoman Gushchin 	shrinker_debugfs_add(shrinker);
6871da177e4SLinus Torvalds 	up_write(&shrinker_rwsem);
6888e04944fSTetsuo Handa }
6898e04944fSTetsuo Handa 
690e33c267aSRoman Gushchin static int __register_shrinker(struct shrinker *shrinker)
6918e04944fSTetsuo Handa {
692e33c267aSRoman Gushchin 	int err = __prealloc_shrinker(shrinker);
6938e04944fSTetsuo Handa 
6948e04944fSTetsuo Handa 	if (err)
6958e04944fSTetsuo Handa 		return err;
6968e04944fSTetsuo Handa 	register_shrinker_prepared(shrinker);
6971d3d4437SGlauber Costa 	return 0;
6981da177e4SLinus Torvalds }
699e33c267aSRoman Gushchin 
700e33c267aSRoman Gushchin #ifdef CONFIG_SHRINKER_DEBUG
701e33c267aSRoman Gushchin int register_shrinker(struct shrinker *shrinker, const char *fmt, ...)
702e33c267aSRoman Gushchin {
703e33c267aSRoman Gushchin 	va_list ap;
704e33c267aSRoman Gushchin 	int err;
705e33c267aSRoman Gushchin 
706e33c267aSRoman Gushchin 	va_start(ap, fmt);
707e33c267aSRoman Gushchin 	shrinker->name = kvasprintf_const(GFP_KERNEL, fmt, ap);
708e33c267aSRoman Gushchin 	va_end(ap);
709e33c267aSRoman Gushchin 	if (!shrinker->name)
710e33c267aSRoman Gushchin 		return -ENOMEM;
711e33c267aSRoman Gushchin 
712e33c267aSRoman Gushchin 	err = __register_shrinker(shrinker);
71314773bfaSTetsuo Handa 	if (err) {
714e33c267aSRoman Gushchin 		kfree_const(shrinker->name);
71514773bfaSTetsuo Handa 		shrinker->name = NULL;
71614773bfaSTetsuo Handa 	}
717e33c267aSRoman Gushchin 	return err;
718e33c267aSRoman Gushchin }
719e33c267aSRoman Gushchin #else
720e33c267aSRoman Gushchin int register_shrinker(struct shrinker *shrinker, const char *fmt, ...)
721e33c267aSRoman Gushchin {
722e33c267aSRoman Gushchin 	return __register_shrinker(shrinker);
723e33c267aSRoman Gushchin }
724e33c267aSRoman Gushchin #endif
7258e1f936bSRusty Russell EXPORT_SYMBOL(register_shrinker);
7261da177e4SLinus Torvalds 
7271da177e4SLinus Torvalds /*
7281da177e4SLinus Torvalds  * Remove one
7291da177e4SLinus Torvalds  */
7308e1f936bSRusty Russell void unregister_shrinker(struct shrinker *shrinker)
7311da177e4SLinus Torvalds {
73241ca668aSYang Shi 	if (!(shrinker->flags & SHRINKER_REGISTERED))
733bb422a73STetsuo Handa 		return;
73441ca668aSYang Shi 
7351da177e4SLinus Torvalds 	down_write(&shrinker_rwsem);
7361da177e4SLinus Torvalds 	list_del(&shrinker->list);
73741ca668aSYang Shi 	shrinker->flags &= ~SHRINKER_REGISTERED;
73841ca668aSYang Shi 	if (shrinker->flags & SHRINKER_MEMCG_AWARE)
73941ca668aSYang Shi 		unregister_memcg_shrinker(shrinker);
7405035ebc6SRoman Gushchin 	shrinker_debugfs_remove(shrinker);
7411da177e4SLinus Torvalds 	up_write(&shrinker_rwsem);
74241ca668aSYang Shi 
743ae393321SAndrew Vagin 	kfree(shrinker->nr_deferred);
744bb422a73STetsuo Handa 	shrinker->nr_deferred = NULL;
7451da177e4SLinus Torvalds }
7468e1f936bSRusty Russell EXPORT_SYMBOL(unregister_shrinker);
7471da177e4SLinus Torvalds 
748880121beSChristian König /**
749880121beSChristian König  * synchronize_shrinkers - Wait for all running shrinkers to complete.
750880121beSChristian König  *
751880121beSChristian König  * This is equivalent to calling unregister_shrink() and register_shrinker(),
752880121beSChristian König  * but atomically and with less overhead. This is useful to guarantee that all
753880121beSChristian König  * shrinker invocations have seen an update, before freeing memory, similar to
754880121beSChristian König  * rcu.
755880121beSChristian König  */
756880121beSChristian König void synchronize_shrinkers(void)
757880121beSChristian König {
758880121beSChristian König 	down_write(&shrinker_rwsem);
759880121beSChristian König 	up_write(&shrinker_rwsem);
760880121beSChristian König }
761880121beSChristian König EXPORT_SYMBOL(synchronize_shrinkers);
762880121beSChristian König 
7631da177e4SLinus Torvalds #define SHRINK_BATCH 128
7641d3d4437SGlauber Costa 
765cb731d6cSVladimir Davydov static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
7669092c71bSJosef Bacik 				    struct shrinker *shrinker, int priority)
7671da177e4SLinus Torvalds {
76824f7c6b9SDave Chinner 	unsigned long freed = 0;
7691da177e4SLinus Torvalds 	unsigned long long delta;
770635697c6SKonstantin Khlebnikov 	long total_scan;
771d5bc5fd3SVladimir Davydov 	long freeable;
772acf92b48SDave Chinner 	long nr;
773acf92b48SDave Chinner 	long new_nr;
774e9299f50SDave Chinner 	long batch_size = shrinker->batch ? shrinker->batch
775e9299f50SDave Chinner 					  : SHRINK_BATCH;
7765f33a080SShaohua Li 	long scanned = 0, next_deferred;
7771da177e4SLinus Torvalds 
778d5bc5fd3SVladimir Davydov 	freeable = shrinker->count_objects(shrinker, shrinkctl);
7799b996468SKirill Tkhai 	if (freeable == 0 || freeable == SHRINK_EMPTY)
7809b996468SKirill Tkhai 		return freeable;
781635697c6SKonstantin Khlebnikov 
782acf92b48SDave Chinner 	/*
783acf92b48SDave Chinner 	 * copy the current shrinker scan count into a local variable
784acf92b48SDave Chinner 	 * and zero it so that other concurrent shrinker invocations
785acf92b48SDave Chinner 	 * don't also do this scanning work.
786acf92b48SDave Chinner 	 */
78786750830SYang Shi 	nr = xchg_nr_deferred(shrinker, shrinkctl);
788acf92b48SDave Chinner 
7894b85afbdSJohannes Weiner 	if (shrinker->seeks) {
7909092c71bSJosef Bacik 		delta = freeable >> priority;
7919092c71bSJosef Bacik 		delta *= 4;
7929092c71bSJosef Bacik 		do_div(delta, shrinker->seeks);
7934b85afbdSJohannes Weiner 	} else {
7944b85afbdSJohannes Weiner 		/*
7954b85afbdSJohannes Weiner 		 * These objects don't require any IO to create. Trim
7964b85afbdSJohannes Weiner 		 * them aggressively under memory pressure to keep
7974b85afbdSJohannes Weiner 		 * them from causing refetches in the IO caches.
7984b85afbdSJohannes Weiner 		 */
7994b85afbdSJohannes Weiner 		delta = freeable / 2;
8004b85afbdSJohannes Weiner 	}
801172b06c3SRoman Gushchin 
80218bb473eSYang Shi 	total_scan = nr >> priority;
803acf92b48SDave Chinner 	total_scan += delta;
80418bb473eSYang Shi 	total_scan = min(total_scan, (2 * freeable));
8051da177e4SLinus Torvalds 
80624f7c6b9SDave Chinner 	trace_mm_shrink_slab_start(shrinker, shrinkctl, nr,
8079092c71bSJosef Bacik 				   freeable, delta, total_scan, priority);
80809576073SDave Chinner 
8090b1fb40aSVladimir Davydov 	/*
8100b1fb40aSVladimir Davydov 	 * Normally, we should not scan less than batch_size objects in one
8110b1fb40aSVladimir Davydov 	 * pass to avoid too frequent shrinker calls, but if the slab has less
8120b1fb40aSVladimir Davydov 	 * than batch_size objects in total and we are really tight on memory,
8130b1fb40aSVladimir Davydov 	 * we will try to reclaim all available objects, otherwise we can end
8140b1fb40aSVladimir Davydov 	 * up failing allocations although there are plenty of reclaimable
8150b1fb40aSVladimir Davydov 	 * objects spread over several slabs with usage less than the
8160b1fb40aSVladimir Davydov 	 * batch_size.
8170b1fb40aSVladimir Davydov 	 *
8180b1fb40aSVladimir Davydov 	 * We detect the "tight on memory" situations by looking at the total
8190b1fb40aSVladimir Davydov 	 * number of objects we want to scan (total_scan). If it is greater
820d5bc5fd3SVladimir Davydov 	 * than the total number of objects on slab (freeable), we must be
8210b1fb40aSVladimir Davydov 	 * scanning at high prio and therefore should try to reclaim as much as
8220b1fb40aSVladimir Davydov 	 * possible.
8230b1fb40aSVladimir Davydov 	 */
8240b1fb40aSVladimir Davydov 	while (total_scan >= batch_size ||
825d5bc5fd3SVladimir Davydov 	       total_scan >= freeable) {
82624f7c6b9SDave Chinner 		unsigned long ret;
8270b1fb40aSVladimir Davydov 		unsigned long nr_to_scan = min(batch_size, total_scan);
8281da177e4SLinus Torvalds 
8290b1fb40aSVladimir Davydov 		shrinkctl->nr_to_scan = nr_to_scan;
830d460acb5SChris Wilson 		shrinkctl->nr_scanned = nr_to_scan;
83124f7c6b9SDave Chinner 		ret = shrinker->scan_objects(shrinker, shrinkctl);
83224f7c6b9SDave Chinner 		if (ret == SHRINK_STOP)
8331da177e4SLinus Torvalds 			break;
83424f7c6b9SDave Chinner 		freed += ret;
83524f7c6b9SDave Chinner 
836d460acb5SChris Wilson 		count_vm_events(SLABS_SCANNED, shrinkctl->nr_scanned);
837d460acb5SChris Wilson 		total_scan -= shrinkctl->nr_scanned;
838d460acb5SChris Wilson 		scanned += shrinkctl->nr_scanned;
8391da177e4SLinus Torvalds 
8401da177e4SLinus Torvalds 		cond_resched();
8411da177e4SLinus Torvalds 	}
8421da177e4SLinus Torvalds 
84318bb473eSYang Shi 	/*
84418bb473eSYang Shi 	 * The deferred work is increased by any new work (delta) that wasn't
84518bb473eSYang Shi 	 * done, decreased by old deferred work that was done now.
84618bb473eSYang Shi 	 *
84718bb473eSYang Shi 	 * And it is capped to two times of the freeable items.
84818bb473eSYang Shi 	 */
84918bb473eSYang Shi 	next_deferred = max_t(long, (nr + delta - scanned), 0);
85018bb473eSYang Shi 	next_deferred = min(next_deferred, (2 * freeable));
85118bb473eSYang Shi 
852acf92b48SDave Chinner 	/*
853acf92b48SDave Chinner 	 * move the unused scan count back into the shrinker in a
85486750830SYang Shi 	 * manner that handles concurrent updates.
855acf92b48SDave Chinner 	 */
85686750830SYang Shi 	new_nr = add_nr_deferred(next_deferred, shrinker, shrinkctl);
857acf92b48SDave Chinner 
8588efb4b59SYang Shi 	trace_mm_shrink_slab_end(shrinker, shrinkctl->nid, freed, nr, new_nr, total_scan);
8591d3d4437SGlauber Costa 	return freed;
8601d3d4437SGlauber Costa }
8611d3d4437SGlauber Costa 
8620a432dcbSYang Shi #ifdef CONFIG_MEMCG
863b0dedc49SKirill Tkhai static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
864b0dedc49SKirill Tkhai 			struct mem_cgroup *memcg, int priority)
865b0dedc49SKirill Tkhai {
866e4262c4fSYang Shi 	struct shrinker_info *info;
867b8e57efaSKirill Tkhai 	unsigned long ret, freed = 0;
868b8e57efaSKirill Tkhai 	int i;
869b0dedc49SKirill Tkhai 
8700a432dcbSYang Shi 	if (!mem_cgroup_online(memcg))
871b0dedc49SKirill Tkhai 		return 0;
872b0dedc49SKirill Tkhai 
873b0dedc49SKirill Tkhai 	if (!down_read_trylock(&shrinker_rwsem))
874b0dedc49SKirill Tkhai 		return 0;
875b0dedc49SKirill Tkhai 
876468ab843SYang Shi 	info = shrinker_info_protected(memcg, nid);
877e4262c4fSYang Shi 	if (unlikely(!info))
878b0dedc49SKirill Tkhai 		goto unlock;
879b0dedc49SKirill Tkhai 
880e4262c4fSYang Shi 	for_each_set_bit(i, info->map, shrinker_nr_max) {
881b0dedc49SKirill Tkhai 		struct shrink_control sc = {
882b0dedc49SKirill Tkhai 			.gfp_mask = gfp_mask,
883b0dedc49SKirill Tkhai 			.nid = nid,
884b0dedc49SKirill Tkhai 			.memcg = memcg,
885b0dedc49SKirill Tkhai 		};
886b0dedc49SKirill Tkhai 		struct shrinker *shrinker;
887b0dedc49SKirill Tkhai 
888b0dedc49SKirill Tkhai 		shrinker = idr_find(&shrinker_idr, i);
88941ca668aSYang Shi 		if (unlikely(!shrinker || !(shrinker->flags & SHRINKER_REGISTERED))) {
8907e010df5SKirill Tkhai 			if (!shrinker)
891e4262c4fSYang Shi 				clear_bit(i, info->map);
892b0dedc49SKirill Tkhai 			continue;
893b0dedc49SKirill Tkhai 		}
894b0dedc49SKirill Tkhai 
8950a432dcbSYang Shi 		/* Call non-slab shrinkers even though kmem is disabled */
8960a432dcbSYang Shi 		if (!memcg_kmem_enabled() &&
8970a432dcbSYang Shi 		    !(shrinker->flags & SHRINKER_NONSLAB))
8980a432dcbSYang Shi 			continue;
8990a432dcbSYang Shi 
900b0dedc49SKirill Tkhai 		ret = do_shrink_slab(&sc, shrinker, priority);
901f90280d6SKirill Tkhai 		if (ret == SHRINK_EMPTY) {
902e4262c4fSYang Shi 			clear_bit(i, info->map);
903f90280d6SKirill Tkhai 			/*
904f90280d6SKirill Tkhai 			 * After the shrinker reported that it had no objects to
905f90280d6SKirill Tkhai 			 * free, but before we cleared the corresponding bit in
906f90280d6SKirill Tkhai 			 * the memcg shrinker map, a new object might have been
907f90280d6SKirill Tkhai 			 * added. To make sure, we have the bit set in this
908f90280d6SKirill Tkhai 			 * case, we invoke the shrinker one more time and reset
909f90280d6SKirill Tkhai 			 * the bit if it reports that it is not empty anymore.
910f90280d6SKirill Tkhai 			 * The memory barrier here pairs with the barrier in
9112bfd3637SYang Shi 			 * set_shrinker_bit():
912f90280d6SKirill Tkhai 			 *
913f90280d6SKirill Tkhai 			 * list_lru_add()     shrink_slab_memcg()
914f90280d6SKirill Tkhai 			 *   list_add_tail()    clear_bit()
915f90280d6SKirill Tkhai 			 *   <MB>               <MB>
916f90280d6SKirill Tkhai 			 *   set_bit()          do_shrink_slab()
917f90280d6SKirill Tkhai 			 */
918f90280d6SKirill Tkhai 			smp_mb__after_atomic();
919f90280d6SKirill Tkhai 			ret = do_shrink_slab(&sc, shrinker, priority);
9209b996468SKirill Tkhai 			if (ret == SHRINK_EMPTY)
9219b996468SKirill Tkhai 				ret = 0;
922f90280d6SKirill Tkhai 			else
9232bfd3637SYang Shi 				set_shrinker_bit(memcg, nid, i);
924f90280d6SKirill Tkhai 		}
925b0dedc49SKirill Tkhai 		freed += ret;
926b0dedc49SKirill Tkhai 
927b0dedc49SKirill Tkhai 		if (rwsem_is_contended(&shrinker_rwsem)) {
928b0dedc49SKirill Tkhai 			freed = freed ? : 1;
929b0dedc49SKirill Tkhai 			break;
930b0dedc49SKirill Tkhai 		}
931b0dedc49SKirill Tkhai 	}
932b0dedc49SKirill Tkhai unlock:
933b0dedc49SKirill Tkhai 	up_read(&shrinker_rwsem);
934b0dedc49SKirill Tkhai 	return freed;
935b0dedc49SKirill Tkhai }
9360a432dcbSYang Shi #else /* CONFIG_MEMCG */
937b0dedc49SKirill Tkhai static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
938b0dedc49SKirill Tkhai 			struct mem_cgroup *memcg, int priority)
939b0dedc49SKirill Tkhai {
940b0dedc49SKirill Tkhai 	return 0;
941b0dedc49SKirill Tkhai }
9420a432dcbSYang Shi #endif /* CONFIG_MEMCG */
943b0dedc49SKirill Tkhai 
9446b4f7799SJohannes Weiner /**
945cb731d6cSVladimir Davydov  * shrink_slab - shrink slab caches
9466b4f7799SJohannes Weiner  * @gfp_mask: allocation context
9476b4f7799SJohannes Weiner  * @nid: node whose slab caches to target
948cb731d6cSVladimir Davydov  * @memcg: memory cgroup whose slab caches to target
9499092c71bSJosef Bacik  * @priority: the reclaim priority
9501d3d4437SGlauber Costa  *
9516b4f7799SJohannes Weiner  * Call the shrink functions to age shrinkable caches.
9521d3d4437SGlauber Costa  *
9536b4f7799SJohannes Weiner  * @nid is passed along to shrinkers with SHRINKER_NUMA_AWARE set,
9546b4f7799SJohannes Weiner  * unaware shrinkers will receive a node id of 0 instead.
9551d3d4437SGlauber Costa  *
956aeed1d32SVladimir Davydov  * @memcg specifies the memory cgroup to target. Unaware shrinkers
957aeed1d32SVladimir Davydov  * are called only if it is the root cgroup.
958cb731d6cSVladimir Davydov  *
9599092c71bSJosef Bacik  * @priority is sc->priority, we take the number of objects and >> by priority
9609092c71bSJosef Bacik  * in order to get the scan target.
9611d3d4437SGlauber Costa  *
9626b4f7799SJohannes Weiner  * Returns the number of reclaimed slab objects.
9631d3d4437SGlauber Costa  */
964cb731d6cSVladimir Davydov static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
965cb731d6cSVladimir Davydov 				 struct mem_cgroup *memcg,
9669092c71bSJosef Bacik 				 int priority)
9671d3d4437SGlauber Costa {
968b8e57efaSKirill Tkhai 	unsigned long ret, freed = 0;
9691d3d4437SGlauber Costa 	struct shrinker *shrinker;
9701d3d4437SGlauber Costa 
971fa1e512fSYang Shi 	/*
972fa1e512fSYang Shi 	 * The root memcg might be allocated even though memcg is disabled
973fa1e512fSYang Shi 	 * via "cgroup_disable=memory" boot parameter.  This could make
974fa1e512fSYang Shi 	 * mem_cgroup_is_root() return false, then just run memcg slab
975fa1e512fSYang Shi 	 * shrink, but skip global shrink.  This may result in premature
976fa1e512fSYang Shi 	 * oom.
977fa1e512fSYang Shi 	 */
978fa1e512fSYang Shi 	if (!mem_cgroup_disabled() && !mem_cgroup_is_root(memcg))
979b0dedc49SKirill Tkhai 		return shrink_slab_memcg(gfp_mask, nid, memcg, priority);
980cb731d6cSVladimir Davydov 
981e830c63aSTetsuo Handa 	if (!down_read_trylock(&shrinker_rwsem))
9821d3d4437SGlauber Costa 		goto out;
9831d3d4437SGlauber Costa 
9841d3d4437SGlauber Costa 	list_for_each_entry(shrinker, &shrinker_list, list) {
9856b4f7799SJohannes Weiner 		struct shrink_control sc = {
9866b4f7799SJohannes Weiner 			.gfp_mask = gfp_mask,
9876b4f7799SJohannes Weiner 			.nid = nid,
988cb731d6cSVladimir Davydov 			.memcg = memcg,
9896b4f7799SJohannes Weiner 		};
9906b4f7799SJohannes Weiner 
9919b996468SKirill Tkhai 		ret = do_shrink_slab(&sc, shrinker, priority);
9929b996468SKirill Tkhai 		if (ret == SHRINK_EMPTY)
9939b996468SKirill Tkhai 			ret = 0;
9949b996468SKirill Tkhai 		freed += ret;
995e496612cSMinchan Kim 		/*
996e496612cSMinchan Kim 		 * Bail out if someone want to register a new shrinker to
99755b65a57SEthon Paul 		 * prevent the registration from being stalled for long periods
998e496612cSMinchan Kim 		 * by parallel ongoing shrinking.
999e496612cSMinchan Kim 		 */
1000e496612cSMinchan Kim 		if (rwsem_is_contended(&shrinker_rwsem)) {
1001e496612cSMinchan Kim 			freed = freed ? : 1;
1002e496612cSMinchan Kim 			break;
1003e496612cSMinchan Kim 		}
1004ec97097bSVladimir Davydov 	}
10051d3d4437SGlauber Costa 
10061da177e4SLinus Torvalds 	up_read(&shrinker_rwsem);
1007f06590bdSMinchan Kim out:
1008f06590bdSMinchan Kim 	cond_resched();
100924f7c6b9SDave Chinner 	return freed;
10101da177e4SLinus Torvalds }
10111da177e4SLinus Torvalds 
1012e4b424b7SGang Li static void drop_slab_node(int nid)
1013cb731d6cSVladimir Davydov {
1014cb731d6cSVladimir Davydov 	unsigned long freed;
10151399af7eSVlastimil Babka 	int shift = 0;
1016cb731d6cSVladimir Davydov 
1017cb731d6cSVladimir Davydov 	do {
1018cb731d6cSVladimir Davydov 		struct mem_cgroup *memcg = NULL;
1019cb731d6cSVladimir Davydov 
1020069c411dSChunxin Zang 		if (fatal_signal_pending(current))
1021069c411dSChunxin Zang 			return;
1022069c411dSChunxin Zang 
1023cb731d6cSVladimir Davydov 		freed = 0;
1024aeed1d32SVladimir Davydov 		memcg = mem_cgroup_iter(NULL, NULL, NULL);
1025cb731d6cSVladimir Davydov 		do {
10269092c71bSJosef Bacik 			freed += shrink_slab(GFP_KERNEL, nid, memcg, 0);
1027cb731d6cSVladimir Davydov 		} while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
10281399af7eSVlastimil Babka 	} while ((freed >> shift++) > 1);
1029cb731d6cSVladimir Davydov }
1030cb731d6cSVladimir Davydov 
1031cb731d6cSVladimir Davydov void drop_slab(void)
1032cb731d6cSVladimir Davydov {
1033cb731d6cSVladimir Davydov 	int nid;
1034cb731d6cSVladimir Davydov 
1035cb731d6cSVladimir Davydov 	for_each_online_node(nid)
1036cb731d6cSVladimir Davydov 		drop_slab_node(nid);
1037cb731d6cSVladimir Davydov }
1038cb731d6cSVladimir Davydov 
1039e0cd5e7fSMatthew Wilcox (Oracle) static inline int is_page_cache_freeable(struct folio *folio)
10401da177e4SLinus Torvalds {
1041ceddc3a5SJohannes Weiner 	/*
1042ceddc3a5SJohannes Weiner 	 * A freeable page cache page is referenced only by the caller
104367891fffSMatthew Wilcox 	 * that isolated the page, the page cache and optional buffer
104467891fffSMatthew Wilcox 	 * heads at page->private.
1045ceddc3a5SJohannes Weiner 	 */
1046e0cd5e7fSMatthew Wilcox (Oracle) 	return folio_ref_count(folio) - folio_test_private(folio) ==
1047e0cd5e7fSMatthew Wilcox (Oracle) 		1 + folio_nr_pages(folio);
10481da177e4SLinus Torvalds }
10491da177e4SLinus Torvalds 
10501da177e4SLinus Torvalds /*
1051e0cd5e7fSMatthew Wilcox (Oracle)  * We detected a synchronous write error writing a folio out.  Probably
10521da177e4SLinus Torvalds  * -ENOSPC.  We need to propagate that into the address_space for a subsequent
10531da177e4SLinus Torvalds  * fsync(), msync() or close().
10541da177e4SLinus Torvalds  *
10551da177e4SLinus Torvalds  * The tricky part is that after writepage we cannot touch the mapping: nothing
1056e0cd5e7fSMatthew Wilcox (Oracle)  * prevents it from being freed up.  But we have a ref on the folio and once
1057e0cd5e7fSMatthew Wilcox (Oracle)  * that folio is locked, the mapping is pinned.
10581da177e4SLinus Torvalds  *
1059e0cd5e7fSMatthew Wilcox (Oracle)  * We're allowed to run sleeping folio_lock() here because we know the caller has
10601da177e4SLinus Torvalds  * __GFP_FS.
10611da177e4SLinus Torvalds  */
10621da177e4SLinus Torvalds static void handle_write_error(struct address_space *mapping,
1063e0cd5e7fSMatthew Wilcox (Oracle) 				struct folio *folio, int error)
10641da177e4SLinus Torvalds {
1065e0cd5e7fSMatthew Wilcox (Oracle) 	folio_lock(folio);
1066e0cd5e7fSMatthew Wilcox (Oracle) 	if (folio_mapping(folio) == mapping)
10673e9f45bdSGuillaume Chazarain 		mapping_set_error(mapping, error);
1068e0cd5e7fSMatthew Wilcox (Oracle) 	folio_unlock(folio);
10691da177e4SLinus Torvalds }
10701da177e4SLinus Torvalds 
10711b4e3f26SMel Gorman static bool skip_throttle_noprogress(pg_data_t *pgdat)
10721b4e3f26SMel Gorman {
10731b4e3f26SMel Gorman 	int reclaimable = 0, write_pending = 0;
10741b4e3f26SMel Gorman 	int i;
10751b4e3f26SMel Gorman 
10761b4e3f26SMel Gorman 	/*
10771b4e3f26SMel Gorman 	 * If kswapd is disabled, reschedule if necessary but do not
10781b4e3f26SMel Gorman 	 * throttle as the system is likely near OOM.
10791b4e3f26SMel Gorman 	 */
10801b4e3f26SMel Gorman 	if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
10811b4e3f26SMel Gorman 		return true;
10821b4e3f26SMel Gorman 
10831b4e3f26SMel Gorman 	/*
10841b4e3f26SMel Gorman 	 * If there are a lot of dirty/writeback pages then do not
10851b4e3f26SMel Gorman 	 * throttle as throttling will occur when the pages cycle
10861b4e3f26SMel Gorman 	 * towards the end of the LRU if still under writeback.
10871b4e3f26SMel Gorman 	 */
10881b4e3f26SMel Gorman 	for (i = 0; i < MAX_NR_ZONES; i++) {
10891b4e3f26SMel Gorman 		struct zone *zone = pgdat->node_zones + i;
10901b4e3f26SMel Gorman 
109136c26128SWei Yang 		if (!managed_zone(zone))
10921b4e3f26SMel Gorman 			continue;
10931b4e3f26SMel Gorman 
10941b4e3f26SMel Gorman 		reclaimable += zone_reclaimable_pages(zone);
10951b4e3f26SMel Gorman 		write_pending += zone_page_state_snapshot(zone,
10961b4e3f26SMel Gorman 						  NR_ZONE_WRITE_PENDING);
10971b4e3f26SMel Gorman 	}
10981b4e3f26SMel Gorman 	if (2 * write_pending <= reclaimable)
10991b4e3f26SMel Gorman 		return true;
11001b4e3f26SMel Gorman 
11011b4e3f26SMel Gorman 	return false;
11021b4e3f26SMel Gorman }
11031b4e3f26SMel Gorman 
1104c3f4a9a2SMel Gorman void reclaim_throttle(pg_data_t *pgdat, enum vmscan_throttle_state reason)
11058cd7c588SMel Gorman {
11068cd7c588SMel Gorman 	wait_queue_head_t *wqh = &pgdat->reclaim_wait[reason];
1107c3f4a9a2SMel Gorman 	long timeout, ret;
11088cd7c588SMel Gorman 	DEFINE_WAIT(wait);
11098cd7c588SMel Gorman 
11108cd7c588SMel Gorman 	/*
11118cd7c588SMel Gorman 	 * Do not throttle IO workers, kthreads other than kswapd or
11128cd7c588SMel Gorman 	 * workqueues. They may be required for reclaim to make
11138cd7c588SMel Gorman 	 * forward progress (e.g. journalling workqueues or kthreads).
11148cd7c588SMel Gorman 	 */
11158cd7c588SMel Gorman 	if (!current_is_kswapd() &&
1116b485c6f1SMel Gorman 	    current->flags & (PF_IO_WORKER|PF_KTHREAD)) {
1117b485c6f1SMel Gorman 		cond_resched();
11188cd7c588SMel Gorman 		return;
1119b485c6f1SMel Gorman 	}
11208cd7c588SMel Gorman 
1121c3f4a9a2SMel Gorman 	/*
1122c3f4a9a2SMel Gorman 	 * These figures are pulled out of thin air.
1123c3f4a9a2SMel Gorman 	 * VMSCAN_THROTTLE_ISOLATED is a transient condition based on too many
1124c3f4a9a2SMel Gorman 	 * parallel reclaimers which is a short-lived event so the timeout is
1125c3f4a9a2SMel Gorman 	 * short. Failing to make progress or waiting on writeback are
1126c3f4a9a2SMel Gorman 	 * potentially long-lived events so use a longer timeout. This is shaky
1127c3f4a9a2SMel Gorman 	 * logic as a failure to make progress could be due to anything from
1128c3f4a9a2SMel Gorman 	 * writeback to a slow device to excessive references pages at the tail
1129c3f4a9a2SMel Gorman 	 * of the inactive LRU.
1130c3f4a9a2SMel Gorman 	 */
1131c3f4a9a2SMel Gorman 	switch(reason) {
1132c3f4a9a2SMel Gorman 	case VMSCAN_THROTTLE_WRITEBACK:
1133c3f4a9a2SMel Gorman 		timeout = HZ/10;
1134c3f4a9a2SMel Gorman 
1135c3f4a9a2SMel Gorman 		if (atomic_inc_return(&pgdat->nr_writeback_throttled) == 1) {
11368cd7c588SMel Gorman 			WRITE_ONCE(pgdat->nr_reclaim_start,
11378cd7c588SMel Gorman 				node_page_state(pgdat, NR_THROTTLED_WRITTEN));
11388cd7c588SMel Gorman 		}
11398cd7c588SMel Gorman 
1140c3f4a9a2SMel Gorman 		break;
11411b4e3f26SMel Gorman 	case VMSCAN_THROTTLE_CONGESTED:
11421b4e3f26SMel Gorman 		fallthrough;
1143c3f4a9a2SMel Gorman 	case VMSCAN_THROTTLE_NOPROGRESS:
11441b4e3f26SMel Gorman 		if (skip_throttle_noprogress(pgdat)) {
11451b4e3f26SMel Gorman 			cond_resched();
11461b4e3f26SMel Gorman 			return;
11471b4e3f26SMel Gorman 		}
11481b4e3f26SMel Gorman 
11491b4e3f26SMel Gorman 		timeout = 1;
11501b4e3f26SMel Gorman 
1151c3f4a9a2SMel Gorman 		break;
1152c3f4a9a2SMel Gorman 	case VMSCAN_THROTTLE_ISOLATED:
1153c3f4a9a2SMel Gorman 		timeout = HZ/50;
1154c3f4a9a2SMel Gorman 		break;
1155c3f4a9a2SMel Gorman 	default:
1156c3f4a9a2SMel Gorman 		WARN_ON_ONCE(1);
1157c3f4a9a2SMel Gorman 		timeout = HZ;
1158c3f4a9a2SMel Gorman 		break;
1159c3f4a9a2SMel Gorman 	}
1160c3f4a9a2SMel Gorman 
11618cd7c588SMel Gorman 	prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
11628cd7c588SMel Gorman 	ret = schedule_timeout(timeout);
11638cd7c588SMel Gorman 	finish_wait(wqh, &wait);
1164d818fca1SMel Gorman 
1165c3f4a9a2SMel Gorman 	if (reason == VMSCAN_THROTTLE_WRITEBACK)
11668cd7c588SMel Gorman 		atomic_dec(&pgdat->nr_writeback_throttled);
11678cd7c588SMel Gorman 
11688cd7c588SMel Gorman 	trace_mm_vmscan_throttled(pgdat->node_id, jiffies_to_usecs(timeout),
11698cd7c588SMel Gorman 				jiffies_to_usecs(timeout - ret),
11708cd7c588SMel Gorman 				reason);
11718cd7c588SMel Gorman }
11728cd7c588SMel Gorman 
11738cd7c588SMel Gorman /*
11748cd7c588SMel Gorman  * Account for pages written if tasks are throttled waiting on dirty
11758cd7c588SMel Gorman  * pages to clean. If enough pages have been cleaned since throttling
11768cd7c588SMel Gorman  * started then wakeup the throttled tasks.
11778cd7c588SMel Gorman  */
1178512b7931SLinus Torvalds void __acct_reclaim_writeback(pg_data_t *pgdat, struct folio *folio,
11798cd7c588SMel Gorman 							int nr_throttled)
11808cd7c588SMel Gorman {
11818cd7c588SMel Gorman 	unsigned long nr_written;
11828cd7c588SMel Gorman 
1183512b7931SLinus Torvalds 	node_stat_add_folio(folio, NR_THROTTLED_WRITTEN);
11848cd7c588SMel Gorman 
11858cd7c588SMel Gorman 	/*
11868cd7c588SMel Gorman 	 * This is an inaccurate read as the per-cpu deltas may not
11878cd7c588SMel Gorman 	 * be synchronised. However, given that the system is
11888cd7c588SMel Gorman 	 * writeback throttled, it is not worth taking the penalty
11898cd7c588SMel Gorman 	 * of getting an accurate count. At worst, the throttle
11908cd7c588SMel Gorman 	 * timeout guarantees forward progress.
11918cd7c588SMel Gorman 	 */
11928cd7c588SMel Gorman 	nr_written = node_page_state(pgdat, NR_THROTTLED_WRITTEN) -
11938cd7c588SMel Gorman 		READ_ONCE(pgdat->nr_reclaim_start);
11948cd7c588SMel Gorman 
11958cd7c588SMel Gorman 	if (nr_written > SWAP_CLUSTER_MAX * nr_throttled)
11968cd7c588SMel Gorman 		wake_up(&pgdat->reclaim_wait[VMSCAN_THROTTLE_WRITEBACK]);
11978cd7c588SMel Gorman }
11988cd7c588SMel Gorman 
119904e62a29SChristoph Lameter /* possible outcome of pageout() */
120004e62a29SChristoph Lameter typedef enum {
120104e62a29SChristoph Lameter 	/* failed to write page out, page is locked */
120204e62a29SChristoph Lameter 	PAGE_KEEP,
120304e62a29SChristoph Lameter 	/* move page to the active list, page is locked */
120404e62a29SChristoph Lameter 	PAGE_ACTIVATE,
120504e62a29SChristoph Lameter 	/* page has been sent to the disk successfully, page is unlocked */
120604e62a29SChristoph Lameter 	PAGE_SUCCESS,
120704e62a29SChristoph Lameter 	/* page is clean and locked */
120804e62a29SChristoph Lameter 	PAGE_CLEAN,
120904e62a29SChristoph Lameter } pageout_t;
121004e62a29SChristoph Lameter 
12111da177e4SLinus Torvalds /*
12121742f19fSAndrew Morton  * pageout is called by shrink_page_list() for each dirty page.
12131742f19fSAndrew Morton  * Calls ->writepage().
12141da177e4SLinus Torvalds  */
12152282679fSNeilBrown static pageout_t pageout(struct folio *folio, struct address_space *mapping,
12162282679fSNeilBrown 			 struct swap_iocb **plug)
12171da177e4SLinus Torvalds {
12181da177e4SLinus Torvalds 	/*
1219e0cd5e7fSMatthew Wilcox (Oracle) 	 * If the folio is dirty, only perform writeback if that write
12201da177e4SLinus Torvalds 	 * will be non-blocking.  To prevent this allocation from being
12211da177e4SLinus Torvalds 	 * stalled by pagecache activity.  But note that there may be
12221da177e4SLinus Torvalds 	 * stalls if we need to run get_block().  We could test
12231da177e4SLinus Torvalds 	 * PagePrivate for that.
12241da177e4SLinus Torvalds 	 *
12258174202bSAl Viro 	 * If this process is currently in __generic_file_write_iter() against
1226e0cd5e7fSMatthew Wilcox (Oracle) 	 * this folio's queue, we can perform writeback even if that
12271da177e4SLinus Torvalds 	 * will block.
12281da177e4SLinus Torvalds 	 *
1229e0cd5e7fSMatthew Wilcox (Oracle) 	 * If the folio is swapcache, write it back even if that would
12301da177e4SLinus Torvalds 	 * block, for some throttling. This happens by accident, because
12311da177e4SLinus Torvalds 	 * swap_backing_dev_info is bust: it doesn't reflect the
12321da177e4SLinus Torvalds 	 * congestion state of the swapdevs.  Easy to fix, if needed.
12331da177e4SLinus Torvalds 	 */
1234e0cd5e7fSMatthew Wilcox (Oracle) 	if (!is_page_cache_freeable(folio))
12351da177e4SLinus Torvalds 		return PAGE_KEEP;
12361da177e4SLinus Torvalds 	if (!mapping) {
12371da177e4SLinus Torvalds 		/*
1238e0cd5e7fSMatthew Wilcox (Oracle) 		 * Some data journaling orphaned folios can have
1239e0cd5e7fSMatthew Wilcox (Oracle) 		 * folio->mapping == NULL while being dirty with clean buffers.
12401da177e4SLinus Torvalds 		 */
1241e0cd5e7fSMatthew Wilcox (Oracle) 		if (folio_test_private(folio)) {
124268189fefSMatthew Wilcox (Oracle) 			if (try_to_free_buffers(folio)) {
1243e0cd5e7fSMatthew Wilcox (Oracle) 				folio_clear_dirty(folio);
1244e0cd5e7fSMatthew Wilcox (Oracle) 				pr_info("%s: orphaned folio\n", __func__);
12451da177e4SLinus Torvalds 				return PAGE_CLEAN;
12461da177e4SLinus Torvalds 			}
12471da177e4SLinus Torvalds 		}
12481da177e4SLinus Torvalds 		return PAGE_KEEP;
12491da177e4SLinus Torvalds 	}
12501da177e4SLinus Torvalds 	if (mapping->a_ops->writepage == NULL)
12511da177e4SLinus Torvalds 		return PAGE_ACTIVATE;
12521da177e4SLinus Torvalds 
1253e0cd5e7fSMatthew Wilcox (Oracle) 	if (folio_clear_dirty_for_io(folio)) {
12541da177e4SLinus Torvalds 		int res;
12551da177e4SLinus Torvalds 		struct writeback_control wbc = {
12561da177e4SLinus Torvalds 			.sync_mode = WB_SYNC_NONE,
12571da177e4SLinus Torvalds 			.nr_to_write = SWAP_CLUSTER_MAX,
1258111ebb6eSOGAWA Hirofumi 			.range_start = 0,
1259111ebb6eSOGAWA Hirofumi 			.range_end = LLONG_MAX,
12601da177e4SLinus Torvalds 			.for_reclaim = 1,
12612282679fSNeilBrown 			.swap_plug = plug,
12621da177e4SLinus Torvalds 		};
12631da177e4SLinus Torvalds 
1264e0cd5e7fSMatthew Wilcox (Oracle) 		folio_set_reclaim(folio);
1265e0cd5e7fSMatthew Wilcox (Oracle) 		res = mapping->a_ops->writepage(&folio->page, &wbc);
12661da177e4SLinus Torvalds 		if (res < 0)
1267e0cd5e7fSMatthew Wilcox (Oracle) 			handle_write_error(mapping, folio, res);
1268994fc28cSZach Brown 		if (res == AOP_WRITEPAGE_ACTIVATE) {
1269e0cd5e7fSMatthew Wilcox (Oracle) 			folio_clear_reclaim(folio);
12701da177e4SLinus Torvalds 			return PAGE_ACTIVATE;
12711da177e4SLinus Torvalds 		}
1272c661b078SAndy Whitcroft 
1273e0cd5e7fSMatthew Wilcox (Oracle) 		if (!folio_test_writeback(folio)) {
12741da177e4SLinus Torvalds 			/* synchronous write or broken a_ops? */
1275e0cd5e7fSMatthew Wilcox (Oracle) 			folio_clear_reclaim(folio);
12761da177e4SLinus Torvalds 		}
1277e0cd5e7fSMatthew Wilcox (Oracle) 		trace_mm_vmscan_write_folio(folio);
1278e0cd5e7fSMatthew Wilcox (Oracle) 		node_stat_add_folio(folio, NR_VMSCAN_WRITE);
12791da177e4SLinus Torvalds 		return PAGE_SUCCESS;
12801da177e4SLinus Torvalds 	}
12811da177e4SLinus Torvalds 
12821da177e4SLinus Torvalds 	return PAGE_CLEAN;
12831da177e4SLinus Torvalds }
12841da177e4SLinus Torvalds 
1285a649fd92SAndrew Morton /*
1286e286781dSNick Piggin  * Same as remove_mapping, but if the page is removed from the mapping, it
1287e286781dSNick Piggin  * gets returned with a refcount of 0.
1288a649fd92SAndrew Morton  */
1289be7c07d6SMatthew Wilcox (Oracle) static int __remove_mapping(struct address_space *mapping, struct folio *folio,
1290b910718aSJohannes Weiner 			    bool reclaimed, struct mem_cgroup *target_memcg)
129149d2e9ccSChristoph Lameter {
1292bd4c82c2SHuang Ying 	int refcount;
1293aae466b0SJoonsoo Kim 	void *shadow = NULL;
1294c4843a75SGreg Thelen 
1295be7c07d6SMatthew Wilcox (Oracle) 	BUG_ON(!folio_test_locked(folio));
1296be7c07d6SMatthew Wilcox (Oracle) 	BUG_ON(mapping != folio_mapping(folio));
129749d2e9ccSChristoph Lameter 
1298be7c07d6SMatthew Wilcox (Oracle) 	if (!folio_test_swapcache(folio))
129951b8c1feSJohannes Weiner 		spin_lock(&mapping->host->i_lock);
130030472509SJohannes Weiner 	xa_lock_irq(&mapping->i_pages);
130149d2e9ccSChristoph Lameter 	/*
13020fd0e6b0SNick Piggin 	 * The non racy check for a busy page.
13030fd0e6b0SNick Piggin 	 *
13040fd0e6b0SNick Piggin 	 * Must be careful with the order of the tests. When someone has
13050fd0e6b0SNick Piggin 	 * a ref to the page, it may be possible that they dirty it then
13060fd0e6b0SNick Piggin 	 * drop the reference. So if PageDirty is tested before page_count
13070fd0e6b0SNick Piggin 	 * here, then the following race may occur:
13080fd0e6b0SNick Piggin 	 *
13090fd0e6b0SNick Piggin 	 * get_user_pages(&page);
13100fd0e6b0SNick Piggin 	 * [user mapping goes away]
13110fd0e6b0SNick Piggin 	 * write_to(page);
13120fd0e6b0SNick Piggin 	 *				!PageDirty(page)    [good]
13130fd0e6b0SNick Piggin 	 * SetPageDirty(page);
13140fd0e6b0SNick Piggin 	 * put_page(page);
13150fd0e6b0SNick Piggin 	 *				!page_count(page)   [good, discard it]
13160fd0e6b0SNick Piggin 	 *
13170fd0e6b0SNick Piggin 	 * [oops, our write_to data is lost]
13180fd0e6b0SNick Piggin 	 *
13190fd0e6b0SNick Piggin 	 * Reversing the order of the tests ensures such a situation cannot
13200fd0e6b0SNick Piggin 	 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
13210139aa7bSJoonsoo Kim 	 * load is not satisfied before that of page->_refcount.
13220fd0e6b0SNick Piggin 	 *
13230fd0e6b0SNick Piggin 	 * Note that if SetPageDirty is always performed via set_page_dirty,
1324b93b0163SMatthew Wilcox 	 * and thus under the i_pages lock, then this ordering is not required.
132549d2e9ccSChristoph Lameter 	 */
1326be7c07d6SMatthew Wilcox (Oracle) 	refcount = 1 + folio_nr_pages(folio);
1327be7c07d6SMatthew Wilcox (Oracle) 	if (!folio_ref_freeze(folio, refcount))
132849d2e9ccSChristoph Lameter 		goto cannot_free;
13291c4c3b99SJiang Biao 	/* note: atomic_cmpxchg in page_ref_freeze provides the smp_rmb */
1330be7c07d6SMatthew Wilcox (Oracle) 	if (unlikely(folio_test_dirty(folio))) {
1331be7c07d6SMatthew Wilcox (Oracle) 		folio_ref_unfreeze(folio, refcount);
133249d2e9ccSChristoph Lameter 		goto cannot_free;
1333e286781dSNick Piggin 	}
133449d2e9ccSChristoph Lameter 
1335be7c07d6SMatthew Wilcox (Oracle) 	if (folio_test_swapcache(folio)) {
1336be7c07d6SMatthew Wilcox (Oracle) 		swp_entry_t swap = folio_swap_entry(folio);
1337ac35a490SYu Zhao 
1338ac35a490SYu Zhao 		/* get a shadow entry before mem_cgroup_swapout() clears folio_memcg() */
1339aae466b0SJoonsoo Kim 		if (reclaimed && !mapping_exiting(mapping))
13408927f647SMatthew Wilcox (Oracle) 			shadow = workingset_eviction(folio, target_memcg);
1341ac35a490SYu Zhao 		mem_cgroup_swapout(folio, swap);
1342ceff9d33SMatthew Wilcox (Oracle) 		__delete_from_swap_cache(folio, swap, shadow);
134330472509SJohannes Weiner 		xa_unlock_irq(&mapping->i_pages);
1344be7c07d6SMatthew Wilcox (Oracle) 		put_swap_page(&folio->page, swap);
1345e286781dSNick Piggin 	} else {
1346d2329aa0SMatthew Wilcox (Oracle) 		void (*free_folio)(struct folio *);
13476072d13cSLinus Torvalds 
1348d2329aa0SMatthew Wilcox (Oracle) 		free_folio = mapping->a_ops->free_folio;
1349a528910eSJohannes Weiner 		/*
1350a528910eSJohannes Weiner 		 * Remember a shadow entry for reclaimed file cache in
1351a528910eSJohannes Weiner 		 * order to detect refaults, thus thrashing, later on.
1352a528910eSJohannes Weiner 		 *
1353a528910eSJohannes Weiner 		 * But don't store shadows in an address space that is
1354238c3046Sdylan-meiners 		 * already exiting.  This is not just an optimization,
1355a528910eSJohannes Weiner 		 * inode reclaim needs to empty out the radix tree or
1356a528910eSJohannes Weiner 		 * the nodes are lost.  Don't plant shadows behind its
1357a528910eSJohannes Weiner 		 * back.
1358f9fe48beSRoss Zwisler 		 *
1359f9fe48beSRoss Zwisler 		 * We also don't store shadows for DAX mappings because the
1360f9fe48beSRoss Zwisler 		 * only page cache pages found in these are zero pages
1361f9fe48beSRoss Zwisler 		 * covering holes, and because we don't want to mix DAX
1362f9fe48beSRoss Zwisler 		 * exceptional entries and shadow exceptional entries in the
1363b93b0163SMatthew Wilcox 		 * same address_space.
1364a528910eSJohannes Weiner 		 */
1365be7c07d6SMatthew Wilcox (Oracle) 		if (reclaimed && folio_is_file_lru(folio) &&
1366f9fe48beSRoss Zwisler 		    !mapping_exiting(mapping) && !dax_mapping(mapping))
13678927f647SMatthew Wilcox (Oracle) 			shadow = workingset_eviction(folio, target_memcg);
13688927f647SMatthew Wilcox (Oracle) 		__filemap_remove_folio(folio, shadow);
136930472509SJohannes Weiner 		xa_unlock_irq(&mapping->i_pages);
137051b8c1feSJohannes Weiner 		if (mapping_shrinkable(mapping))
137151b8c1feSJohannes Weiner 			inode_add_lru(mapping->host);
137251b8c1feSJohannes Weiner 		spin_unlock(&mapping->host->i_lock);
13736072d13cSLinus Torvalds 
1374d2329aa0SMatthew Wilcox (Oracle) 		if (free_folio)
1375d2329aa0SMatthew Wilcox (Oracle) 			free_folio(folio);
1376e286781dSNick Piggin 	}
1377e286781dSNick Piggin 
137849d2e9ccSChristoph Lameter 	return 1;
137949d2e9ccSChristoph Lameter 
138049d2e9ccSChristoph Lameter cannot_free:
138130472509SJohannes Weiner 	xa_unlock_irq(&mapping->i_pages);
1382be7c07d6SMatthew Wilcox (Oracle) 	if (!folio_test_swapcache(folio))
138351b8c1feSJohannes Weiner 		spin_unlock(&mapping->host->i_lock);
138449d2e9ccSChristoph Lameter 	return 0;
138549d2e9ccSChristoph Lameter }
138649d2e9ccSChristoph Lameter 
13875100da38SMatthew Wilcox (Oracle) /**
13885100da38SMatthew Wilcox (Oracle)  * remove_mapping() - Attempt to remove a folio from its mapping.
13895100da38SMatthew Wilcox (Oracle)  * @mapping: The address space.
13905100da38SMatthew Wilcox (Oracle)  * @folio: The folio to remove.
13915100da38SMatthew Wilcox (Oracle)  *
13925100da38SMatthew Wilcox (Oracle)  * If the folio is dirty, under writeback or if someone else has a ref
13935100da38SMatthew Wilcox (Oracle)  * on it, removal will fail.
13945100da38SMatthew Wilcox (Oracle)  * Return: The number of pages removed from the mapping.  0 if the folio
13955100da38SMatthew Wilcox (Oracle)  * could not be removed.
13965100da38SMatthew Wilcox (Oracle)  * Context: The caller should have a single refcount on the folio and
13975100da38SMatthew Wilcox (Oracle)  * hold its lock.
1398e286781dSNick Piggin  */
13995100da38SMatthew Wilcox (Oracle) long remove_mapping(struct address_space *mapping, struct folio *folio)
1400e286781dSNick Piggin {
1401be7c07d6SMatthew Wilcox (Oracle) 	if (__remove_mapping(mapping, folio, false, NULL)) {
1402e286781dSNick Piggin 		/*
14035100da38SMatthew Wilcox (Oracle) 		 * Unfreezing the refcount with 1 effectively
1404e286781dSNick Piggin 		 * drops the pagecache ref for us without requiring another
1405e286781dSNick Piggin 		 * atomic operation.
1406e286781dSNick Piggin 		 */
1407be7c07d6SMatthew Wilcox (Oracle) 		folio_ref_unfreeze(folio, 1);
14085100da38SMatthew Wilcox (Oracle) 		return folio_nr_pages(folio);
1409e286781dSNick Piggin 	}
1410e286781dSNick Piggin 	return 0;
1411e286781dSNick Piggin }
1412e286781dSNick Piggin 
1413894bc310SLee Schermerhorn /**
1414ca6d60f3SMatthew Wilcox (Oracle)  * folio_putback_lru - Put previously isolated folio onto appropriate LRU list.
1415ca6d60f3SMatthew Wilcox (Oracle)  * @folio: Folio to be returned to an LRU list.
1416894bc310SLee Schermerhorn  *
1417ca6d60f3SMatthew Wilcox (Oracle)  * Add previously isolated @folio to appropriate LRU list.
1418ca6d60f3SMatthew Wilcox (Oracle)  * The folio may still be unevictable for other reasons.
1419894bc310SLee Schermerhorn  *
1420ca6d60f3SMatthew Wilcox (Oracle)  * Context: lru_lock must not be held, interrupts must be enabled.
1421894bc310SLee Schermerhorn  */
1422ca6d60f3SMatthew Wilcox (Oracle) void folio_putback_lru(struct folio *folio)
1423894bc310SLee Schermerhorn {
1424ca6d60f3SMatthew Wilcox (Oracle) 	folio_add_lru(folio);
1425ca6d60f3SMatthew Wilcox (Oracle) 	folio_put(folio);		/* drop ref from isolate */
1426894bc310SLee Schermerhorn }
1427894bc310SLee Schermerhorn 
1428dfc8d636SJohannes Weiner enum page_references {
1429dfc8d636SJohannes Weiner 	PAGEREF_RECLAIM,
1430dfc8d636SJohannes Weiner 	PAGEREF_RECLAIM_CLEAN,
143164574746SJohannes Weiner 	PAGEREF_KEEP,
1432dfc8d636SJohannes Weiner 	PAGEREF_ACTIVATE,
1433dfc8d636SJohannes Weiner };
1434dfc8d636SJohannes Weiner 
1435d92013d1SMatthew Wilcox (Oracle) static enum page_references folio_check_references(struct folio *folio,
1436dfc8d636SJohannes Weiner 						  struct scan_control *sc)
1437dfc8d636SJohannes Weiner {
1438d92013d1SMatthew Wilcox (Oracle) 	int referenced_ptes, referenced_folio;
1439dfc8d636SJohannes Weiner 	unsigned long vm_flags;
1440dfc8d636SJohannes Weiner 
1441b3ac0413SMatthew Wilcox (Oracle) 	referenced_ptes = folio_referenced(folio, 1, sc->target_mem_cgroup,
1442c3ac9a8aSJohannes Weiner 					   &vm_flags);
1443d92013d1SMatthew Wilcox (Oracle) 	referenced_folio = folio_test_clear_referenced(folio);
1444dfc8d636SJohannes Weiner 
1445dfc8d636SJohannes Weiner 	/*
1446d92013d1SMatthew Wilcox (Oracle) 	 * The supposedly reclaimable folio was found to be in a VM_LOCKED vma.
1447d92013d1SMatthew Wilcox (Oracle) 	 * Let the folio, now marked Mlocked, be moved to the unevictable list.
1448dfc8d636SJohannes Weiner 	 */
1449dfc8d636SJohannes Weiner 	if (vm_flags & VM_LOCKED)
145047d4f3eeSHugh Dickins 		return PAGEREF_ACTIVATE;
1451dfc8d636SJohannes Weiner 
14526d4675e6SMinchan Kim 	/* rmap lock contention: rotate */
14536d4675e6SMinchan Kim 	if (referenced_ptes == -1)
14546d4675e6SMinchan Kim 		return PAGEREF_KEEP;
14556d4675e6SMinchan Kim 
145664574746SJohannes Weiner 	if (referenced_ptes) {
145764574746SJohannes Weiner 		/*
1458d92013d1SMatthew Wilcox (Oracle) 		 * All mapped folios start out with page table
145964574746SJohannes Weiner 		 * references from the instantiating fault, so we need
14609030fb0bSLinus Torvalds 		 * to look twice if a mapped file/anon folio is used more
146164574746SJohannes Weiner 		 * than once.
146264574746SJohannes Weiner 		 *
146364574746SJohannes Weiner 		 * Mark it and spare it for another trip around the
146464574746SJohannes Weiner 		 * inactive list.  Another page table reference will
146564574746SJohannes Weiner 		 * lead to its activation.
146664574746SJohannes Weiner 		 *
1467d92013d1SMatthew Wilcox (Oracle) 		 * Note: the mark is set for activated folios as well
1468d92013d1SMatthew Wilcox (Oracle) 		 * so that recently deactivated but used folios are
146964574746SJohannes Weiner 		 * quickly recovered.
147064574746SJohannes Weiner 		 */
1471d92013d1SMatthew Wilcox (Oracle) 		folio_set_referenced(folio);
147264574746SJohannes Weiner 
1473d92013d1SMatthew Wilcox (Oracle) 		if (referenced_folio || referenced_ptes > 1)
1474dfc8d636SJohannes Weiner 			return PAGEREF_ACTIVATE;
1475dfc8d636SJohannes Weiner 
1476c909e993SKonstantin Khlebnikov 		/*
1477d92013d1SMatthew Wilcox (Oracle) 		 * Activate file-backed executable folios after first usage.
1478c909e993SKonstantin Khlebnikov 		 */
1479f19a27e3SMiaohe Lin 		if ((vm_flags & VM_EXEC) && folio_is_file_lru(folio))
1480c909e993SKonstantin Khlebnikov 			return PAGEREF_ACTIVATE;
1481c909e993SKonstantin Khlebnikov 
148264574746SJohannes Weiner 		return PAGEREF_KEEP;
148364574746SJohannes Weiner 	}
148464574746SJohannes Weiner 
1485d92013d1SMatthew Wilcox (Oracle) 	/* Reclaim if clean, defer dirty folios to writeback */
1486f19a27e3SMiaohe Lin 	if (referenced_folio && folio_is_file_lru(folio))
1487dfc8d636SJohannes Weiner 		return PAGEREF_RECLAIM_CLEAN;
148864574746SJohannes Weiner 
148964574746SJohannes Weiner 	return PAGEREF_RECLAIM;
1490dfc8d636SJohannes Weiner }
1491dfc8d636SJohannes Weiner 
1492e2be15f6SMel Gorman /* Check if a page is dirty or under writeback */
1493e20c41b1SMatthew Wilcox (Oracle) static void folio_check_dirty_writeback(struct folio *folio,
1494e2be15f6SMel Gorman 				       bool *dirty, bool *writeback)
1495e2be15f6SMel Gorman {
1496b4597226SMel Gorman 	struct address_space *mapping;
1497b4597226SMel Gorman 
1498e2be15f6SMel Gorman 	/*
1499e2be15f6SMel Gorman 	 * Anonymous pages are not handled by flushers and must be written
150032a331a7SMiaohe Lin 	 * from reclaim context. Do not stall reclaim based on them.
150132a331a7SMiaohe Lin 	 * MADV_FREE anonymous pages are put into inactive file list too.
150232a331a7SMiaohe Lin 	 * They could be mistakenly treated as file lru. So further anon
150332a331a7SMiaohe Lin 	 * test is needed.
1504e2be15f6SMel Gorman 	 */
1505e20c41b1SMatthew Wilcox (Oracle) 	if (!folio_is_file_lru(folio) ||
1506e20c41b1SMatthew Wilcox (Oracle) 	    (folio_test_anon(folio) && !folio_test_swapbacked(folio))) {
1507e2be15f6SMel Gorman 		*dirty = false;
1508e2be15f6SMel Gorman 		*writeback = false;
1509e2be15f6SMel Gorman 		return;
1510e2be15f6SMel Gorman 	}
1511e2be15f6SMel Gorman 
1512e20c41b1SMatthew Wilcox (Oracle) 	/* By default assume that the folio flags are accurate */
1513e20c41b1SMatthew Wilcox (Oracle) 	*dirty = folio_test_dirty(folio);
1514e20c41b1SMatthew Wilcox (Oracle) 	*writeback = folio_test_writeback(folio);
1515b4597226SMel Gorman 
1516b4597226SMel Gorman 	/* Verify dirty/writeback state if the filesystem supports it */
1517e20c41b1SMatthew Wilcox (Oracle) 	if (!folio_test_private(folio))
1518b4597226SMel Gorman 		return;
1519b4597226SMel Gorman 
1520e20c41b1SMatthew Wilcox (Oracle) 	mapping = folio_mapping(folio);
1521b4597226SMel Gorman 	if (mapping && mapping->a_ops->is_dirty_writeback)
1522520f301cSMatthew Wilcox (Oracle) 		mapping->a_ops->is_dirty_writeback(folio, dirty, writeback);
1523e2be15f6SMel Gorman }
1524e2be15f6SMel Gorman 
152526aa2d19SDave Hansen static struct page *alloc_demote_page(struct page *page, unsigned long node)
152626aa2d19SDave Hansen {
152726aa2d19SDave Hansen 	struct migration_target_control mtc = {
152826aa2d19SDave Hansen 		/*
152926aa2d19SDave Hansen 		 * Allocate from 'node', or fail quickly and quietly.
153026aa2d19SDave Hansen 		 * When this happens, 'page' will likely just be discarded
153126aa2d19SDave Hansen 		 * instead of migrated.
153226aa2d19SDave Hansen 		 */
153326aa2d19SDave Hansen 		.gfp_mask = (GFP_HIGHUSER_MOVABLE & ~__GFP_RECLAIM) |
153426aa2d19SDave Hansen 			    __GFP_THISNODE  | __GFP_NOWARN |
153526aa2d19SDave Hansen 			    __GFP_NOMEMALLOC | GFP_NOWAIT,
153626aa2d19SDave Hansen 		.nid = node
153726aa2d19SDave Hansen 	};
153826aa2d19SDave Hansen 
153926aa2d19SDave Hansen 	return alloc_migration_target(page, (unsigned long)&mtc);
154026aa2d19SDave Hansen }
154126aa2d19SDave Hansen 
154226aa2d19SDave Hansen /*
154326aa2d19SDave Hansen  * Take pages on @demote_list and attempt to demote them to
154426aa2d19SDave Hansen  * another node.  Pages which are not demoted are left on
154526aa2d19SDave Hansen  * @demote_pages.
154626aa2d19SDave Hansen  */
154726aa2d19SDave Hansen static unsigned int demote_page_list(struct list_head *demote_pages,
154826aa2d19SDave Hansen 				     struct pglist_data *pgdat)
154926aa2d19SDave Hansen {
155026aa2d19SDave Hansen 	int target_nid = next_demotion_node(pgdat->node_id);
155126aa2d19SDave Hansen 	unsigned int nr_succeeded;
155226aa2d19SDave Hansen 
155326aa2d19SDave Hansen 	if (list_empty(demote_pages))
155426aa2d19SDave Hansen 		return 0;
155526aa2d19SDave Hansen 
155626aa2d19SDave Hansen 	if (target_nid == NUMA_NO_NODE)
155726aa2d19SDave Hansen 		return 0;
155826aa2d19SDave Hansen 
155926aa2d19SDave Hansen 	/* Demotion ignores all cpuset and mempolicy settings */
1560cb75463cSKai Song 	migrate_pages(demote_pages, alloc_demote_page, NULL,
156126aa2d19SDave Hansen 			    target_nid, MIGRATE_ASYNC, MR_DEMOTION,
156226aa2d19SDave Hansen 			    &nr_succeeded);
156326aa2d19SDave Hansen 
1564668e4147SYang Shi 	if (current_is_kswapd())
1565668e4147SYang Shi 		__count_vm_events(PGDEMOTE_KSWAPD, nr_succeeded);
1566668e4147SYang Shi 	else
1567668e4147SYang Shi 		__count_vm_events(PGDEMOTE_DIRECT, nr_succeeded);
1568668e4147SYang Shi 
156926aa2d19SDave Hansen 	return nr_succeeded;
157026aa2d19SDave Hansen }
157126aa2d19SDave Hansen 
1572c28a0e96SMatthew Wilcox (Oracle) static bool may_enter_fs(struct folio *folio, gfp_t gfp_mask)
1573d791ea67SNeilBrown {
1574d791ea67SNeilBrown 	if (gfp_mask & __GFP_FS)
1575d791ea67SNeilBrown 		return true;
1576c28a0e96SMatthew Wilcox (Oracle) 	if (!folio_test_swapcache(folio) || !(gfp_mask & __GFP_IO))
1577d791ea67SNeilBrown 		return false;
1578d791ea67SNeilBrown 	/*
1579d791ea67SNeilBrown 	 * We can "enter_fs" for swap-cache with only __GFP_IO
1580d791ea67SNeilBrown 	 * providing this isn't SWP_FS_OPS.
1581d791ea67SNeilBrown 	 * ->flags can be updated non-atomicially (scan_swap_map_slots),
1582d791ea67SNeilBrown 	 * but that will never affect SWP_FS_OPS, so the data_race
1583d791ea67SNeilBrown 	 * is safe.
1584d791ea67SNeilBrown 	 */
1585b98c359fSMatthew Wilcox (Oracle) 	return !data_race(folio_swap_flags(folio) & SWP_FS_OPS);
1586d791ea67SNeilBrown }
1587d791ea67SNeilBrown 
1588e286781dSNick Piggin /*
15891742f19fSAndrew Morton  * shrink_page_list() returns the number of reclaimed pages
15901da177e4SLinus Torvalds  */
1591730ec8c0SManinder Singh static unsigned int shrink_page_list(struct list_head *page_list,
1592599d0c95SMel Gorman 				     struct pglist_data *pgdat,
1593f84f6e2bSMel Gorman 				     struct scan_control *sc,
15943c710c1aSMichal Hocko 				     struct reclaim_stat *stat,
15958940b34aSMinchan Kim 				     bool ignore_references)
15961da177e4SLinus Torvalds {
15971da177e4SLinus Torvalds 	LIST_HEAD(ret_pages);
1598abe4c3b5SMel Gorman 	LIST_HEAD(free_pages);
159926aa2d19SDave Hansen 	LIST_HEAD(demote_pages);
1600730ec8c0SManinder Singh 	unsigned int nr_reclaimed = 0;
1601730ec8c0SManinder Singh 	unsigned int pgactivate = 0;
160226aa2d19SDave Hansen 	bool do_demote_pass;
16032282679fSNeilBrown 	struct swap_iocb *plug = NULL;
16041da177e4SLinus Torvalds 
1605060f005fSKirill Tkhai 	memset(stat, 0, sizeof(*stat));
16061da177e4SLinus Torvalds 	cond_resched();
160726aa2d19SDave Hansen 	do_demote_pass = can_demote(pgdat->node_id, sc);
16081da177e4SLinus Torvalds 
160926aa2d19SDave Hansen retry:
16101da177e4SLinus Torvalds 	while (!list_empty(page_list)) {
16111da177e4SLinus Torvalds 		struct address_space *mapping;
1612be7c07d6SMatthew Wilcox (Oracle) 		struct folio *folio;
16138940b34aSMinchan Kim 		enum page_references references = PAGEREF_RECLAIM;
1614d791ea67SNeilBrown 		bool dirty, writeback;
161598879b3bSYang Shi 		unsigned int nr_pages;
16161da177e4SLinus Torvalds 
16171da177e4SLinus Torvalds 		cond_resched();
16181da177e4SLinus Torvalds 
1619be7c07d6SMatthew Wilcox (Oracle) 		folio = lru_to_folio(page_list);
1620be7c07d6SMatthew Wilcox (Oracle) 		list_del(&folio->lru);
16211da177e4SLinus Torvalds 
1622c28a0e96SMatthew Wilcox (Oracle) 		if (!folio_trylock(folio))
16231da177e4SLinus Torvalds 			goto keep;
16241da177e4SLinus Torvalds 
1625c28a0e96SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(folio_test_active(folio), folio);
16261da177e4SLinus Torvalds 
1627c28a0e96SMatthew Wilcox (Oracle) 		nr_pages = folio_nr_pages(folio);
162898879b3bSYang Shi 
1629c28a0e96SMatthew Wilcox (Oracle) 		/* Account the number of base pages */
163098879b3bSYang Shi 		sc->nr_scanned += nr_pages;
163180e43426SChristoph Lameter 
1632c28a0e96SMatthew Wilcox (Oracle) 		if (unlikely(!folio_evictable(folio)))
1633ad6b6704SMinchan Kim 			goto activate_locked;
1634894bc310SLee Schermerhorn 
16351bee2c16SMatthew Wilcox (Oracle) 		if (!sc->may_unmap && folio_mapped(folio))
163680e43426SChristoph Lameter 			goto keep_locked;
163780e43426SChristoph Lameter 
1638*018ee47fSYu Zhao 		/* folio_update_gen() tried to promote this page? */
1639*018ee47fSYu Zhao 		if (lru_gen_enabled() && !ignore_references &&
1640*018ee47fSYu Zhao 		    folio_mapped(folio) && folio_test_referenced(folio))
1641*018ee47fSYu Zhao 			goto keep_locked;
1642*018ee47fSYu Zhao 
1643e62e384eSMichal Hocko 		/*
1644894befecSAndrey Ryabinin 		 * The number of dirty pages determines if a node is marked
16458cd7c588SMel Gorman 		 * reclaim_congested. kswapd will stall and start writing
1646c28a0e96SMatthew Wilcox (Oracle) 		 * folios if the tail of the LRU is all dirty unqueued folios.
1647e2be15f6SMel Gorman 		 */
1648e20c41b1SMatthew Wilcox (Oracle) 		folio_check_dirty_writeback(folio, &dirty, &writeback);
1649e2be15f6SMel Gorman 		if (dirty || writeback)
1650c79b7b96SMatthew Wilcox (Oracle) 			stat->nr_dirty += nr_pages;
1651e2be15f6SMel Gorman 
1652e2be15f6SMel Gorman 		if (dirty && !writeback)
1653c79b7b96SMatthew Wilcox (Oracle) 			stat->nr_unqueued_dirty += nr_pages;
1654e2be15f6SMel Gorman 
1655d04e8acdSMel Gorman 		/*
1656c28a0e96SMatthew Wilcox (Oracle) 		 * Treat this folio as congested if folios are cycling
1657c28a0e96SMatthew Wilcox (Oracle) 		 * through the LRU so quickly that the folios marked
1658c28a0e96SMatthew Wilcox (Oracle) 		 * for immediate reclaim are making it to the end of
1659c28a0e96SMatthew Wilcox (Oracle) 		 * the LRU a second time.
1660d04e8acdSMel Gorman 		 */
1661c28a0e96SMatthew Wilcox (Oracle) 		if (writeback && folio_test_reclaim(folio))
1662c79b7b96SMatthew Wilcox (Oracle) 			stat->nr_congested += nr_pages;
1663e2be15f6SMel Gorman 
1664e2be15f6SMel Gorman 		/*
1665d33e4e14SMatthew Wilcox (Oracle) 		 * If a folio at the tail of the LRU is under writeback, there
1666283aba9fSMel Gorman 		 * are three cases to consider.
1667e62e384eSMichal Hocko 		 *
1668c28a0e96SMatthew Wilcox (Oracle) 		 * 1) If reclaim is encountering an excessive number
1669c28a0e96SMatthew Wilcox (Oracle) 		 *    of folios under writeback and this folio has both
1670c28a0e96SMatthew Wilcox (Oracle) 		 *    the writeback and reclaim flags set, then it
1671d33e4e14SMatthew Wilcox (Oracle) 		 *    indicates that folios are being queued for I/O but
1672d33e4e14SMatthew Wilcox (Oracle) 		 *    are being recycled through the LRU before the I/O
1673d33e4e14SMatthew Wilcox (Oracle) 		 *    can complete. Waiting on the folio itself risks an
1674d33e4e14SMatthew Wilcox (Oracle) 		 *    indefinite stall if it is impossible to writeback
1675d33e4e14SMatthew Wilcox (Oracle) 		 *    the folio due to I/O error or disconnected storage
1676d33e4e14SMatthew Wilcox (Oracle) 		 *    so instead note that the LRU is being scanned too
1677d33e4e14SMatthew Wilcox (Oracle) 		 *    quickly and the caller can stall after the folio
1678d33e4e14SMatthew Wilcox (Oracle) 		 *    list has been processed.
1679c3b94f44SHugh Dickins 		 *
1680d33e4e14SMatthew Wilcox (Oracle) 		 * 2) Global or new memcg reclaim encounters a folio that is
1681ecf5fc6eSMichal Hocko 		 *    not marked for immediate reclaim, or the caller does not
1682ecf5fc6eSMichal Hocko 		 *    have __GFP_FS (or __GFP_IO if it's simply going to swap,
1683d33e4e14SMatthew Wilcox (Oracle) 		 *    not to fs). In this case mark the folio for immediate
168497c9341fSTejun Heo 		 *    reclaim and continue scanning.
1685283aba9fSMel Gorman 		 *
1686d791ea67SNeilBrown 		 *    Require may_enter_fs() because we would wait on fs, which
1687d33e4e14SMatthew Wilcox (Oracle) 		 *    may not have submitted I/O yet. And the loop driver might
1688d33e4e14SMatthew Wilcox (Oracle) 		 *    enter reclaim, and deadlock if it waits on a folio for
1689283aba9fSMel Gorman 		 *    which it is needed to do the write (loop masks off
1690283aba9fSMel Gorman 		 *    __GFP_IO|__GFP_FS for this reason); but more thought
1691283aba9fSMel Gorman 		 *    would probably show more reasons.
1692283aba9fSMel Gorman 		 *
1693d33e4e14SMatthew Wilcox (Oracle) 		 * 3) Legacy memcg encounters a folio that already has the
1694d33e4e14SMatthew Wilcox (Oracle) 		 *    reclaim flag set. memcg does not have any dirty folio
1695283aba9fSMel Gorman 		 *    throttling so we could easily OOM just because too many
1696d33e4e14SMatthew Wilcox (Oracle) 		 *    folios are in writeback and there is nothing else to
1697283aba9fSMel Gorman 		 *    reclaim. Wait for the writeback to complete.
1698c55e8d03SJohannes Weiner 		 *
1699d33e4e14SMatthew Wilcox (Oracle) 		 * In cases 1) and 2) we activate the folios to get them out of
1700d33e4e14SMatthew Wilcox (Oracle) 		 * the way while we continue scanning for clean folios on the
1701c55e8d03SJohannes Weiner 		 * inactive list and refilling from the active list. The
1702c55e8d03SJohannes Weiner 		 * observation here is that waiting for disk writes is more
1703c55e8d03SJohannes Weiner 		 * expensive than potentially causing reloads down the line.
1704c55e8d03SJohannes Weiner 		 * Since they're marked for immediate reclaim, they won't put
1705c55e8d03SJohannes Weiner 		 * memory pressure on the cache working set any longer than it
1706c55e8d03SJohannes Weiner 		 * takes to write them to disk.
1707e62e384eSMichal Hocko 		 */
1708d33e4e14SMatthew Wilcox (Oracle) 		if (folio_test_writeback(folio)) {
1709283aba9fSMel Gorman 			/* Case 1 above */
1710283aba9fSMel Gorman 			if (current_is_kswapd() &&
1711d33e4e14SMatthew Wilcox (Oracle) 			    folio_test_reclaim(folio) &&
1712599d0c95SMel Gorman 			    test_bit(PGDAT_WRITEBACK, &pgdat->flags)) {
1713c79b7b96SMatthew Wilcox (Oracle) 				stat->nr_immediate += nr_pages;
1714c55e8d03SJohannes Weiner 				goto activate_locked;
1715283aba9fSMel Gorman 
1716283aba9fSMel Gorman 			/* Case 2 above */
1717b5ead35eSJohannes Weiner 			} else if (writeback_throttling_sane(sc) ||
1718d33e4e14SMatthew Wilcox (Oracle) 			    !folio_test_reclaim(folio) ||
1719c28a0e96SMatthew Wilcox (Oracle) 			    !may_enter_fs(folio, sc->gfp_mask)) {
1720c3b94f44SHugh Dickins 				/*
1721d33e4e14SMatthew Wilcox (Oracle) 				 * This is slightly racy -
1722c28a0e96SMatthew Wilcox (Oracle) 				 * folio_end_writeback() might have
1723c28a0e96SMatthew Wilcox (Oracle) 				 * just cleared the reclaim flag, then
1724c28a0e96SMatthew Wilcox (Oracle) 				 * setting the reclaim flag here ends up
1725c28a0e96SMatthew Wilcox (Oracle) 				 * interpreted as the readahead flag - but
1726c28a0e96SMatthew Wilcox (Oracle) 				 * that does not matter enough to care.
1727c28a0e96SMatthew Wilcox (Oracle) 				 * What we do want is for this folio to
1728c28a0e96SMatthew Wilcox (Oracle) 				 * have the reclaim flag set next time
1729c28a0e96SMatthew Wilcox (Oracle) 				 * memcg reclaim reaches the tests above,
1730c28a0e96SMatthew Wilcox (Oracle) 				 * so it will then wait for writeback to
1731c28a0e96SMatthew Wilcox (Oracle) 				 * avoid OOM; and it's also appropriate
1732d33e4e14SMatthew Wilcox (Oracle) 				 * in global reclaim.
1733c3b94f44SHugh Dickins 				 */
1734d33e4e14SMatthew Wilcox (Oracle) 				folio_set_reclaim(folio);
1735c79b7b96SMatthew Wilcox (Oracle) 				stat->nr_writeback += nr_pages;
1736c55e8d03SJohannes Weiner 				goto activate_locked;
1737283aba9fSMel Gorman 
1738283aba9fSMel Gorman 			/* Case 3 above */
1739283aba9fSMel Gorman 			} else {
1740d33e4e14SMatthew Wilcox (Oracle) 				folio_unlock(folio);
1741d33e4e14SMatthew Wilcox (Oracle) 				folio_wait_writeback(folio);
1742d33e4e14SMatthew Wilcox (Oracle) 				/* then go back and try same folio again */
1743d33e4e14SMatthew Wilcox (Oracle) 				list_add_tail(&folio->lru, page_list);
17447fadc820SHugh Dickins 				continue;
1745e62e384eSMichal Hocko 			}
1746283aba9fSMel Gorman 		}
17471da177e4SLinus Torvalds 
17488940b34aSMinchan Kim 		if (!ignore_references)
1749d92013d1SMatthew Wilcox (Oracle) 			references = folio_check_references(folio, sc);
175002c6de8dSMinchan Kim 
1751dfc8d636SJohannes Weiner 		switch (references) {
1752dfc8d636SJohannes Weiner 		case PAGEREF_ACTIVATE:
17531da177e4SLinus Torvalds 			goto activate_locked;
175464574746SJohannes Weiner 		case PAGEREF_KEEP:
175598879b3bSYang Shi 			stat->nr_ref_keep += nr_pages;
175664574746SJohannes Weiner 			goto keep_locked;
1757dfc8d636SJohannes Weiner 		case PAGEREF_RECLAIM:
1758dfc8d636SJohannes Weiner 		case PAGEREF_RECLAIM_CLEAN:
1759c28a0e96SMatthew Wilcox (Oracle) 			; /* try to reclaim the folio below */
1760dfc8d636SJohannes Weiner 		}
17611da177e4SLinus Torvalds 
17621da177e4SLinus Torvalds 		/*
1763c28a0e96SMatthew Wilcox (Oracle) 		 * Before reclaiming the folio, try to relocate
176426aa2d19SDave Hansen 		 * its contents to another node.
176526aa2d19SDave Hansen 		 */
176626aa2d19SDave Hansen 		if (do_demote_pass &&
1767c28a0e96SMatthew Wilcox (Oracle) 		    (thp_migration_supported() || !folio_test_large(folio))) {
1768c28a0e96SMatthew Wilcox (Oracle) 			list_add(&folio->lru, &demote_pages);
1769c28a0e96SMatthew Wilcox (Oracle) 			folio_unlock(folio);
177026aa2d19SDave Hansen 			continue;
177126aa2d19SDave Hansen 		}
177226aa2d19SDave Hansen 
177326aa2d19SDave Hansen 		/*
17741da177e4SLinus Torvalds 		 * Anonymous process memory has backing store?
17751da177e4SLinus Torvalds 		 * Try to allocate it some swap space here.
1776c28a0e96SMatthew Wilcox (Oracle) 		 * Lazyfree folio could be freed directly
17771da177e4SLinus Torvalds 		 */
1778c28a0e96SMatthew Wilcox (Oracle) 		if (folio_test_anon(folio) && folio_test_swapbacked(folio)) {
1779c28a0e96SMatthew Wilcox (Oracle) 			if (!folio_test_swapcache(folio)) {
178063eb6b93SHugh Dickins 				if (!(sc->gfp_mask & __GFP_IO))
178163eb6b93SHugh Dickins 					goto keep_locked;
1782d4b4084aSMatthew Wilcox (Oracle) 				if (folio_maybe_dma_pinned(folio))
1783feb889fbSLinus Torvalds 					goto keep_locked;
1784c28a0e96SMatthew Wilcox (Oracle) 				if (folio_test_large(folio)) {
1785c28a0e96SMatthew Wilcox (Oracle) 					/* cannot split folio, skip it */
1786d4b4084aSMatthew Wilcox (Oracle) 					if (!can_split_folio(folio, NULL))
1787b8f593cdSHuang Ying 						goto activate_locked;
1788747552b1SHuang Ying 					/*
1789c28a0e96SMatthew Wilcox (Oracle) 					 * Split folios without a PMD map right
1790747552b1SHuang Ying 					 * away. Chances are some or all of the
1791747552b1SHuang Ying 					 * tail pages can be freed without IO.
1792747552b1SHuang Ying 					 */
1793d4b4084aSMatthew Wilcox (Oracle) 					if (!folio_entire_mapcount(folio) &&
1794346cf613SMatthew Wilcox (Oracle) 					    split_folio_to_list(folio,
1795bd4c82c2SHuang Ying 								page_list))
1796747552b1SHuang Ying 						goto activate_locked;
1797747552b1SHuang Ying 				}
179809c02e56SMatthew Wilcox (Oracle) 				if (!add_to_swap(folio)) {
179909c02e56SMatthew Wilcox (Oracle) 					if (!folio_test_large(folio))
180098879b3bSYang Shi 						goto activate_locked_split;
1801bd4c82c2SHuang Ying 					/* Fallback to swap normal pages */
1802346cf613SMatthew Wilcox (Oracle) 					if (split_folio_to_list(folio,
1803bd4c82c2SHuang Ying 								page_list))
18040f074658SMinchan Kim 						goto activate_locked;
1805fe490cc0SHuang Ying #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1806fe490cc0SHuang Ying 					count_vm_event(THP_SWPOUT_FALLBACK);
1807fe490cc0SHuang Ying #endif
180809c02e56SMatthew Wilcox (Oracle) 					if (!add_to_swap(folio))
180998879b3bSYang Shi 						goto activate_locked_split;
18100f074658SMinchan Kim 				}
1811bd4c82c2SHuang Ying 			}
1812c28a0e96SMatthew Wilcox (Oracle) 		} else if (folio_test_swapbacked(folio) &&
1813c28a0e96SMatthew Wilcox (Oracle) 			   folio_test_large(folio)) {
1814c28a0e96SMatthew Wilcox (Oracle) 			/* Split shmem folio */
1815346cf613SMatthew Wilcox (Oracle) 			if (split_folio_to_list(folio, page_list))
18167751b2daSKirill A. Shutemov 				goto keep_locked;
1817e2be15f6SMel Gorman 		}
18181da177e4SLinus Torvalds 
18191da177e4SLinus Torvalds 		/*
1820c28a0e96SMatthew Wilcox (Oracle) 		 * If the folio was split above, the tail pages will make
1821c28a0e96SMatthew Wilcox (Oracle) 		 * their own pass through this function and be accounted
1822c28a0e96SMatthew Wilcox (Oracle) 		 * then.
182398879b3bSYang Shi 		 */
1824c28a0e96SMatthew Wilcox (Oracle) 		if ((nr_pages > 1) && !folio_test_large(folio)) {
182598879b3bSYang Shi 			sc->nr_scanned -= (nr_pages - 1);
182698879b3bSYang Shi 			nr_pages = 1;
182798879b3bSYang Shi 		}
182898879b3bSYang Shi 
182998879b3bSYang Shi 		/*
18301bee2c16SMatthew Wilcox (Oracle) 		 * The folio is mapped into the page tables of one or more
18311da177e4SLinus Torvalds 		 * processes. Try to unmap it here.
18321da177e4SLinus Torvalds 		 */
18331bee2c16SMatthew Wilcox (Oracle) 		if (folio_mapped(folio)) {
1834013339dfSShakeel Butt 			enum ttu_flags flags = TTU_BATCH_FLUSH;
18351bee2c16SMatthew Wilcox (Oracle) 			bool was_swapbacked = folio_test_swapbacked(folio);
1836bd4c82c2SHuang Ying 
18371bee2c16SMatthew Wilcox (Oracle) 			if (folio_test_pmd_mappable(folio))
1838bd4c82c2SHuang Ying 				flags |= TTU_SPLIT_HUGE_PMD;
18391f318a9bSJaewon Kim 
1840869f7ee6SMatthew Wilcox (Oracle) 			try_to_unmap(folio, flags);
18411bee2c16SMatthew Wilcox (Oracle) 			if (folio_mapped(folio)) {
184298879b3bSYang Shi 				stat->nr_unmap_fail += nr_pages;
18431bee2c16SMatthew Wilcox (Oracle) 				if (!was_swapbacked &&
18441bee2c16SMatthew Wilcox (Oracle) 				    folio_test_swapbacked(folio))
18451f318a9bSJaewon Kim 					stat->nr_lazyfree_fail += nr_pages;
18461da177e4SLinus Torvalds 				goto activate_locked;
18471da177e4SLinus Torvalds 			}
18481da177e4SLinus Torvalds 		}
18491da177e4SLinus Torvalds 
18505441d490SMatthew Wilcox (Oracle) 		mapping = folio_mapping(folio);
185149bd2bf9SMatthew Wilcox (Oracle) 		if (folio_test_dirty(folio)) {
1852ee72886dSMel Gorman 			/*
185349bd2bf9SMatthew Wilcox (Oracle) 			 * Only kswapd can writeback filesystem folios
18544eda4823SJohannes Weiner 			 * to avoid risk of stack overflow. But avoid
185549bd2bf9SMatthew Wilcox (Oracle) 			 * injecting inefficient single-folio I/O into
18564eda4823SJohannes Weiner 			 * flusher writeback as much as possible: only
185749bd2bf9SMatthew Wilcox (Oracle) 			 * write folios when we've encountered many
185849bd2bf9SMatthew Wilcox (Oracle) 			 * dirty folios, and when we've already scanned
185949bd2bf9SMatthew Wilcox (Oracle) 			 * the rest of the LRU for clean folios and see
186049bd2bf9SMatthew Wilcox (Oracle) 			 * the same dirty folios again (with the reclaim
186149bd2bf9SMatthew Wilcox (Oracle) 			 * flag set).
1862ee72886dSMel Gorman 			 */
186349bd2bf9SMatthew Wilcox (Oracle) 			if (folio_is_file_lru(folio) &&
186449bd2bf9SMatthew Wilcox (Oracle) 			    (!current_is_kswapd() ||
186549bd2bf9SMatthew Wilcox (Oracle) 			     !folio_test_reclaim(folio) ||
1866599d0c95SMel Gorman 			     !test_bit(PGDAT_DIRTY, &pgdat->flags))) {
186749ea7eb6SMel Gorman 				/*
186849ea7eb6SMel Gorman 				 * Immediately reclaim when written back.
186949bd2bf9SMatthew Wilcox (Oracle) 				 * Similar in principle to deactivate_page()
187049bd2bf9SMatthew Wilcox (Oracle) 				 * except we already have the folio isolated
187149ea7eb6SMel Gorman 				 * and know it's dirty
187249ea7eb6SMel Gorman 				 */
187349bd2bf9SMatthew Wilcox (Oracle) 				node_stat_mod_folio(folio, NR_VMSCAN_IMMEDIATE,
187449bd2bf9SMatthew Wilcox (Oracle) 						nr_pages);
187549bd2bf9SMatthew Wilcox (Oracle) 				folio_set_reclaim(folio);
187649ea7eb6SMel Gorman 
1877c55e8d03SJohannes Weiner 				goto activate_locked;
1878ee72886dSMel Gorman 			}
1879ee72886dSMel Gorman 
1880dfc8d636SJohannes Weiner 			if (references == PAGEREF_RECLAIM_CLEAN)
18811da177e4SLinus Torvalds 				goto keep_locked;
1882c28a0e96SMatthew Wilcox (Oracle) 			if (!may_enter_fs(folio, sc->gfp_mask))
18831da177e4SLinus Torvalds 				goto keep_locked;
188452a8363eSChristoph Lameter 			if (!sc->may_writepage)
18851da177e4SLinus Torvalds 				goto keep_locked;
18861da177e4SLinus Torvalds 
1887d950c947SMel Gorman 			/*
188849bd2bf9SMatthew Wilcox (Oracle) 			 * Folio is dirty. Flush the TLB if a writable entry
188949bd2bf9SMatthew Wilcox (Oracle) 			 * potentially exists to avoid CPU writes after I/O
1890d950c947SMel Gorman 			 * starts and then write it out here.
1891d950c947SMel Gorman 			 */
1892d950c947SMel Gorman 			try_to_unmap_flush_dirty();
18932282679fSNeilBrown 			switch (pageout(folio, mapping, &plug)) {
18941da177e4SLinus Torvalds 			case PAGE_KEEP:
18951da177e4SLinus Torvalds 				goto keep_locked;
18961da177e4SLinus Torvalds 			case PAGE_ACTIVATE:
18971da177e4SLinus Torvalds 				goto activate_locked;
18981da177e4SLinus Torvalds 			case PAGE_SUCCESS:
1899c79b7b96SMatthew Wilcox (Oracle) 				stat->nr_pageout += nr_pages;
190096f8bf4fSJohannes Weiner 
190149bd2bf9SMatthew Wilcox (Oracle) 				if (folio_test_writeback(folio))
190241ac1999SMel Gorman 					goto keep;
190349bd2bf9SMatthew Wilcox (Oracle) 				if (folio_test_dirty(folio))
19041da177e4SLinus Torvalds 					goto keep;
19057d3579e8SKOSAKI Motohiro 
19061da177e4SLinus Torvalds 				/*
19071da177e4SLinus Torvalds 				 * A synchronous write - probably a ramdisk.  Go
190849bd2bf9SMatthew Wilcox (Oracle) 				 * ahead and try to reclaim the folio.
19091da177e4SLinus Torvalds 				 */
191049bd2bf9SMatthew Wilcox (Oracle) 				if (!folio_trylock(folio))
19111da177e4SLinus Torvalds 					goto keep;
191249bd2bf9SMatthew Wilcox (Oracle) 				if (folio_test_dirty(folio) ||
191349bd2bf9SMatthew Wilcox (Oracle) 				    folio_test_writeback(folio))
19141da177e4SLinus Torvalds 					goto keep_locked;
191549bd2bf9SMatthew Wilcox (Oracle) 				mapping = folio_mapping(folio);
191601359eb2SGustavo A. R. Silva 				fallthrough;
19171da177e4SLinus Torvalds 			case PAGE_CLEAN:
191849bd2bf9SMatthew Wilcox (Oracle) 				; /* try to free the folio below */
19191da177e4SLinus Torvalds 			}
19201da177e4SLinus Torvalds 		}
19211da177e4SLinus Torvalds 
19221da177e4SLinus Torvalds 		/*
19230a36111cSMatthew Wilcox (Oracle) 		 * If the folio has buffers, try to free the buffer
19240a36111cSMatthew Wilcox (Oracle) 		 * mappings associated with this folio. If we succeed
19250a36111cSMatthew Wilcox (Oracle) 		 * we try to free the folio as well.
19261da177e4SLinus Torvalds 		 *
19270a36111cSMatthew Wilcox (Oracle) 		 * We do this even if the folio is dirty.
19280a36111cSMatthew Wilcox (Oracle) 		 * filemap_release_folio() does not perform I/O, but it
19290a36111cSMatthew Wilcox (Oracle) 		 * is possible for a folio to have the dirty flag set,
19300a36111cSMatthew Wilcox (Oracle) 		 * but it is actually clean (all its buffers are clean).
19310a36111cSMatthew Wilcox (Oracle) 		 * This happens if the buffers were written out directly,
19320a36111cSMatthew Wilcox (Oracle) 		 * with submit_bh(). ext3 will do this, as well as
19330a36111cSMatthew Wilcox (Oracle) 		 * the blockdev mapping.  filemap_release_folio() will
19340a36111cSMatthew Wilcox (Oracle) 		 * discover that cleanness and will drop the buffers
19350a36111cSMatthew Wilcox (Oracle) 		 * and mark the folio clean - it can be freed.
19361da177e4SLinus Torvalds 		 *
19370a36111cSMatthew Wilcox (Oracle) 		 * Rarely, folios can have buffers and no ->mapping.
19380a36111cSMatthew Wilcox (Oracle) 		 * These are the folios which were not successfully
19390a36111cSMatthew Wilcox (Oracle) 		 * invalidated in truncate_cleanup_folio().  We try to
19400a36111cSMatthew Wilcox (Oracle) 		 * drop those buffers here and if that worked, and the
19410a36111cSMatthew Wilcox (Oracle) 		 * folio is no longer mapped into process address space
19420a36111cSMatthew Wilcox (Oracle) 		 * (refcount == 1) it can be freed.  Otherwise, leave
19430a36111cSMatthew Wilcox (Oracle) 		 * the folio on the LRU so it is swappable.
19441da177e4SLinus Torvalds 		 */
19450a36111cSMatthew Wilcox (Oracle) 		if (folio_has_private(folio)) {
19460a36111cSMatthew Wilcox (Oracle) 			if (!filemap_release_folio(folio, sc->gfp_mask))
19471da177e4SLinus Torvalds 				goto activate_locked;
19480a36111cSMatthew Wilcox (Oracle) 			if (!mapping && folio_ref_count(folio) == 1) {
19490a36111cSMatthew Wilcox (Oracle) 				folio_unlock(folio);
19500a36111cSMatthew Wilcox (Oracle) 				if (folio_put_testzero(folio))
19511da177e4SLinus Torvalds 					goto free_it;
1952e286781dSNick Piggin 				else {
1953e286781dSNick Piggin 					/*
1954e286781dSNick Piggin 					 * rare race with speculative reference.
1955e286781dSNick Piggin 					 * the speculative reference will free
19560a36111cSMatthew Wilcox (Oracle) 					 * this folio shortly, so we may
1957e286781dSNick Piggin 					 * increment nr_reclaimed here (and
1958e286781dSNick Piggin 					 * leave it off the LRU).
1959e286781dSNick Piggin 					 */
19609aafcffcSMiaohe Lin 					nr_reclaimed += nr_pages;
1961e286781dSNick Piggin 					continue;
1962e286781dSNick Piggin 				}
1963e286781dSNick Piggin 			}
19641da177e4SLinus Torvalds 		}
19651da177e4SLinus Torvalds 
196664daa5d8SMatthew Wilcox (Oracle) 		if (folio_test_anon(folio) && !folio_test_swapbacked(folio)) {
1967802a3a92SShaohua Li 			/* follow __remove_mapping for reference */
196864daa5d8SMatthew Wilcox (Oracle) 			if (!folio_ref_freeze(folio, 1))
196949d2e9ccSChristoph Lameter 				goto keep_locked;
1970d17be2d9SMiaohe Lin 			/*
197164daa5d8SMatthew Wilcox (Oracle) 			 * The folio has only one reference left, which is
1972d17be2d9SMiaohe Lin 			 * from the isolation. After the caller puts the
197364daa5d8SMatthew Wilcox (Oracle) 			 * folio back on the lru and drops the reference, the
197464daa5d8SMatthew Wilcox (Oracle) 			 * folio will be freed anyway. It doesn't matter
197564daa5d8SMatthew Wilcox (Oracle) 			 * which lru it goes on. So we don't bother checking
197664daa5d8SMatthew Wilcox (Oracle) 			 * the dirty flag here.
1977d17be2d9SMiaohe Lin 			 */
197864daa5d8SMatthew Wilcox (Oracle) 			count_vm_events(PGLAZYFREED, nr_pages);
197964daa5d8SMatthew Wilcox (Oracle) 			count_memcg_folio_events(folio, PGLAZYFREED, nr_pages);
1980be7c07d6SMatthew Wilcox (Oracle) 		} else if (!mapping || !__remove_mapping(mapping, folio, true,
1981b910718aSJohannes Weiner 							 sc->target_mem_cgroup))
1982802a3a92SShaohua Li 			goto keep_locked;
19839a1ea439SHugh Dickins 
1984c28a0e96SMatthew Wilcox (Oracle) 		folio_unlock(folio);
1985e286781dSNick Piggin free_it:
198698879b3bSYang Shi 		/*
1987c28a0e96SMatthew Wilcox (Oracle) 		 * Folio may get swapped out as a whole, need to account
1988c28a0e96SMatthew Wilcox (Oracle) 		 * all pages in it.
198998879b3bSYang Shi 		 */
199098879b3bSYang Shi 		nr_reclaimed += nr_pages;
1991abe4c3b5SMel Gorman 
1992abe4c3b5SMel Gorman 		/*
1993abe4c3b5SMel Gorman 		 * Is there need to periodically free_page_list? It would
1994abe4c3b5SMel Gorman 		 * appear not as the counts should be low
1995abe4c3b5SMel Gorman 		 */
1996c28a0e96SMatthew Wilcox (Oracle) 		if (unlikely(folio_test_large(folio)))
19975375336cSMatthew Wilcox (Oracle) 			destroy_large_folio(folio);
19987ae88534SYang Shi 		else
1999c28a0e96SMatthew Wilcox (Oracle) 			list_add(&folio->lru, &free_pages);
20001da177e4SLinus Torvalds 		continue;
20011da177e4SLinus Torvalds 
200298879b3bSYang Shi activate_locked_split:
200398879b3bSYang Shi 		/*
200498879b3bSYang Shi 		 * The tail pages that are failed to add into swap cache
200598879b3bSYang Shi 		 * reach here.  Fixup nr_scanned and nr_pages.
200698879b3bSYang Shi 		 */
200798879b3bSYang Shi 		if (nr_pages > 1) {
200898879b3bSYang Shi 			sc->nr_scanned -= (nr_pages - 1);
200998879b3bSYang Shi 			nr_pages = 1;
201098879b3bSYang Shi 		}
20111da177e4SLinus Torvalds activate_locked:
201268a22394SRik van Riel 		/* Not a candidate for swapping, so reclaim swap space. */
2013246b6480SMatthew Wilcox (Oracle) 		if (folio_test_swapcache(folio) &&
2014246b6480SMatthew Wilcox (Oracle) 		    (mem_cgroup_swap_full(&folio->page) ||
2015246b6480SMatthew Wilcox (Oracle) 		     folio_test_mlocked(folio)))
2016246b6480SMatthew Wilcox (Oracle) 			try_to_free_swap(&folio->page);
2017246b6480SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(folio_test_active(folio), folio);
2018246b6480SMatthew Wilcox (Oracle) 		if (!folio_test_mlocked(folio)) {
2019246b6480SMatthew Wilcox (Oracle) 			int type = folio_is_file_lru(folio);
2020246b6480SMatthew Wilcox (Oracle) 			folio_set_active(folio);
202198879b3bSYang Shi 			stat->nr_activate[type] += nr_pages;
2022246b6480SMatthew Wilcox (Oracle) 			count_memcg_folio_events(folio, PGACTIVATE, nr_pages);
2023ad6b6704SMinchan Kim 		}
20241da177e4SLinus Torvalds keep_locked:
2025c28a0e96SMatthew Wilcox (Oracle) 		folio_unlock(folio);
20261da177e4SLinus Torvalds keep:
2027c28a0e96SMatthew Wilcox (Oracle) 		list_add(&folio->lru, &ret_pages);
2028c28a0e96SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(folio_test_lru(folio) ||
2029c28a0e96SMatthew Wilcox (Oracle) 				folio_test_unevictable(folio), folio);
20301da177e4SLinus Torvalds 	}
203126aa2d19SDave Hansen 	/* 'page_list' is always empty here */
203226aa2d19SDave Hansen 
2033c28a0e96SMatthew Wilcox (Oracle) 	/* Migrate folios selected for demotion */
203426aa2d19SDave Hansen 	nr_reclaimed += demote_page_list(&demote_pages, pgdat);
2035c28a0e96SMatthew Wilcox (Oracle) 	/* Folios that could not be demoted are still in @demote_pages */
203626aa2d19SDave Hansen 	if (!list_empty(&demote_pages)) {
2037c28a0e96SMatthew Wilcox (Oracle) 		/* Folios which weren't demoted go back on @page_list for retry: */
203826aa2d19SDave Hansen 		list_splice_init(&demote_pages, page_list);
203926aa2d19SDave Hansen 		do_demote_pass = false;
204026aa2d19SDave Hansen 		goto retry;
204126aa2d19SDave Hansen 	}
2042abe4c3b5SMel Gorman 
204398879b3bSYang Shi 	pgactivate = stat->nr_activate[0] + stat->nr_activate[1];
204498879b3bSYang Shi 
2045747db954SJohannes Weiner 	mem_cgroup_uncharge_list(&free_pages);
204672b252aeSMel Gorman 	try_to_unmap_flush();
20472d4894b5SMel Gorman 	free_unref_page_list(&free_pages);
2048abe4c3b5SMel Gorman 
20491da177e4SLinus Torvalds 	list_splice(&ret_pages, page_list);
2050886cf190SKirill Tkhai 	count_vm_events(PGACTIVATE, pgactivate);
20510a31bc97SJohannes Weiner 
20522282679fSNeilBrown 	if (plug)
20532282679fSNeilBrown 		swap_write_unplug(plug);
205405ff5137SAndrew Morton 	return nr_reclaimed;
20551da177e4SLinus Torvalds }
20561da177e4SLinus Torvalds 
2057730ec8c0SManinder Singh unsigned int reclaim_clean_pages_from_list(struct zone *zone,
2058b8cecb93SMatthew Wilcox (Oracle) 					    struct list_head *folio_list)
205902c6de8dSMinchan Kim {
206002c6de8dSMinchan Kim 	struct scan_control sc = {
206102c6de8dSMinchan Kim 		.gfp_mask = GFP_KERNEL,
206202c6de8dSMinchan Kim 		.may_unmap = 1,
206302c6de8dSMinchan Kim 	};
20641f318a9bSJaewon Kim 	struct reclaim_stat stat;
2065730ec8c0SManinder Singh 	unsigned int nr_reclaimed;
2066b8cecb93SMatthew Wilcox (Oracle) 	struct folio *folio, *next;
2067b8cecb93SMatthew Wilcox (Oracle) 	LIST_HEAD(clean_folios);
20682d2b8d2bSYu Zhao 	unsigned int noreclaim_flag;
206902c6de8dSMinchan Kim 
2070b8cecb93SMatthew Wilcox (Oracle) 	list_for_each_entry_safe(folio, next, folio_list, lru) {
2071b8cecb93SMatthew Wilcox (Oracle) 		if (!folio_test_hugetlb(folio) && folio_is_file_lru(folio) &&
2072b8cecb93SMatthew Wilcox (Oracle) 		    !folio_test_dirty(folio) && !__folio_test_movable(folio) &&
2073b8cecb93SMatthew Wilcox (Oracle) 		    !folio_test_unevictable(folio)) {
2074b8cecb93SMatthew Wilcox (Oracle) 			folio_clear_active(folio);
2075b8cecb93SMatthew Wilcox (Oracle) 			list_move(&folio->lru, &clean_folios);
207602c6de8dSMinchan Kim 		}
207702c6de8dSMinchan Kim 	}
207802c6de8dSMinchan Kim 
20792d2b8d2bSYu Zhao 	/*
20802d2b8d2bSYu Zhao 	 * We should be safe here since we are only dealing with file pages and
20812d2b8d2bSYu Zhao 	 * we are not kswapd and therefore cannot write dirty file pages. But
20822d2b8d2bSYu Zhao 	 * call memalloc_noreclaim_save() anyway, just in case these conditions
20832d2b8d2bSYu Zhao 	 * change in the future.
20842d2b8d2bSYu Zhao 	 */
20852d2b8d2bSYu Zhao 	noreclaim_flag = memalloc_noreclaim_save();
2086b8cecb93SMatthew Wilcox (Oracle) 	nr_reclaimed = shrink_page_list(&clean_folios, zone->zone_pgdat, &sc,
2087013339dfSShakeel Butt 					&stat, true);
20882d2b8d2bSYu Zhao 	memalloc_noreclaim_restore(noreclaim_flag);
20892d2b8d2bSYu Zhao 
2090b8cecb93SMatthew Wilcox (Oracle) 	list_splice(&clean_folios, folio_list);
20912da9f630SNicholas Piggin 	mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
20922da9f630SNicholas Piggin 			    -(long)nr_reclaimed);
20931f318a9bSJaewon Kim 	/*
20941f318a9bSJaewon Kim 	 * Since lazyfree pages are isolated from file LRU from the beginning,
20951f318a9bSJaewon Kim 	 * they will rotate back to anonymous LRU in the end if it failed to
20961f318a9bSJaewon Kim 	 * discard so isolated count will be mismatched.
20971f318a9bSJaewon Kim 	 * Compensate the isolated count for both LRU lists.
20981f318a9bSJaewon Kim 	 */
20991f318a9bSJaewon Kim 	mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_ANON,
21001f318a9bSJaewon Kim 			    stat.nr_lazyfree_fail);
21011f318a9bSJaewon Kim 	mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
21022da9f630SNicholas Piggin 			    -(long)stat.nr_lazyfree_fail);
21031f318a9bSJaewon Kim 	return nr_reclaimed;
210402c6de8dSMinchan Kim }
210502c6de8dSMinchan Kim 
21065ad333ebSAndy Whitcroft /*
21077ee36a14SMel Gorman  * Update LRU sizes after isolating pages. The LRU size updates must
210855b65a57SEthon Paul  * be complete before mem_cgroup_update_lru_size due to a sanity check.
21097ee36a14SMel Gorman  */
21107ee36a14SMel Gorman static __always_inline void update_lru_sizes(struct lruvec *lruvec,
2111b4536f0cSMichal Hocko 			enum lru_list lru, unsigned long *nr_zone_taken)
21127ee36a14SMel Gorman {
21137ee36a14SMel Gorman 	int zid;
21147ee36a14SMel Gorman 
21157ee36a14SMel Gorman 	for (zid = 0; zid < MAX_NR_ZONES; zid++) {
21167ee36a14SMel Gorman 		if (!nr_zone_taken[zid])
21177ee36a14SMel Gorman 			continue;
21187ee36a14SMel Gorman 
2119a892cb6bSWei Yang 		update_lru_size(lruvec, lru, zid, -nr_zone_taken[zid]);
21207ee36a14SMel Gorman 	}
21217ee36a14SMel Gorman 
21227ee36a14SMel Gorman }
21237ee36a14SMel Gorman 
2124f611fab7SMel Gorman /*
212515b44736SHugh Dickins  * Isolating page from the lruvec to fill in @dst list by nr_to_scan times.
212615b44736SHugh Dickins  *
212715b44736SHugh Dickins  * lruvec->lru_lock is heavily contended.  Some of the functions that
21281da177e4SLinus Torvalds  * shrink the lists perform better by taking out a batch of pages
21291da177e4SLinus Torvalds  * and working on them outside the LRU lock.
21301da177e4SLinus Torvalds  *
21311da177e4SLinus Torvalds  * For pagecache intensive workloads, this function is the hottest
21321da177e4SLinus Torvalds  * spot in the kernel (apart from copy_*_user functions).
21331da177e4SLinus Torvalds  *
213415b44736SHugh Dickins  * Lru_lock must be held before calling this function.
21351da177e4SLinus Torvalds  *
2136791b48b6SMinchan Kim  * @nr_to_scan:	The number of eligible pages to look through on the list.
21375dc35979SKonstantin Khlebnikov  * @lruvec:	The LRU vector to pull pages from.
21381da177e4SLinus Torvalds  * @dst:	The temp list to put pages on to.
2139f626012dSHugh Dickins  * @nr_scanned:	The number of pages that were scanned.
2140fe2c2a10SRik van Riel  * @sc:		The scan_control struct for this reclaim session
21413cb99451SKonstantin Khlebnikov  * @lru:	LRU list id for isolating
21421da177e4SLinus Torvalds  *
21431da177e4SLinus Torvalds  * returns how many pages were moved onto *@dst.
21441da177e4SLinus Torvalds  */
214569e05944SAndrew Morton static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
21465dc35979SKonstantin Khlebnikov 		struct lruvec *lruvec, struct list_head *dst,
2147fe2c2a10SRik van Riel 		unsigned long *nr_scanned, struct scan_control *sc,
2148a9e7c39fSKirill Tkhai 		enum lru_list lru)
21491da177e4SLinus Torvalds {
215075b00af7SHugh Dickins 	struct list_head *src = &lruvec->lists[lru];
215169e05944SAndrew Morton 	unsigned long nr_taken = 0;
2152599d0c95SMel Gorman 	unsigned long nr_zone_taken[MAX_NR_ZONES] = { 0 };
21537cc30fcfSMel Gorman 	unsigned long nr_skipped[MAX_NR_ZONES] = { 0, };
21543db65812SJohannes Weiner 	unsigned long skipped = 0;
2155791b48b6SMinchan Kim 	unsigned long scan, total_scan, nr_pages;
2156166e3d32SMatthew Wilcox (Oracle) 	LIST_HEAD(folios_skipped);
21571da177e4SLinus Torvalds 
215898879b3bSYang Shi 	total_scan = 0;
2159791b48b6SMinchan Kim 	scan = 0;
216098879b3bSYang Shi 	while (scan < nr_to_scan && !list_empty(src)) {
216189f6c88aSHugh Dickins 		struct list_head *move_to = src;
2162166e3d32SMatthew Wilcox (Oracle) 		struct folio *folio;
21635ad333ebSAndy Whitcroft 
2164166e3d32SMatthew Wilcox (Oracle) 		folio = lru_to_folio(src);
2165166e3d32SMatthew Wilcox (Oracle) 		prefetchw_prev_lru_folio(folio, src, flags);
21661da177e4SLinus Torvalds 
2167166e3d32SMatthew Wilcox (Oracle) 		nr_pages = folio_nr_pages(folio);
216898879b3bSYang Shi 		total_scan += nr_pages;
216998879b3bSYang Shi 
2170166e3d32SMatthew Wilcox (Oracle) 		if (folio_zonenum(folio) > sc->reclaim_idx) {
2171166e3d32SMatthew Wilcox (Oracle) 			nr_skipped[folio_zonenum(folio)] += nr_pages;
2172166e3d32SMatthew Wilcox (Oracle) 			move_to = &folios_skipped;
217389f6c88aSHugh Dickins 			goto move;
2174b2e18757SMel Gorman 		}
2175b2e18757SMel Gorman 
2176791b48b6SMinchan Kim 		/*
2177166e3d32SMatthew Wilcox (Oracle) 		 * Do not count skipped folios because that makes the function
2178166e3d32SMatthew Wilcox (Oracle) 		 * return with no isolated folios if the LRU mostly contains
2179166e3d32SMatthew Wilcox (Oracle) 		 * ineligible folios.  This causes the VM to not reclaim any
2180166e3d32SMatthew Wilcox (Oracle) 		 * folios, triggering a premature OOM.
2181166e3d32SMatthew Wilcox (Oracle) 		 * Account all pages in a folio.
2182791b48b6SMinchan Kim 		 */
218398879b3bSYang Shi 		scan += nr_pages;
218489f6c88aSHugh Dickins 
2185166e3d32SMatthew Wilcox (Oracle) 		if (!folio_test_lru(folio))
218689f6c88aSHugh Dickins 			goto move;
2187166e3d32SMatthew Wilcox (Oracle) 		if (!sc->may_unmap && folio_mapped(folio))
218889f6c88aSHugh Dickins 			goto move;
218989f6c88aSHugh Dickins 
21909df41314SAlex Shi 		/*
2191166e3d32SMatthew Wilcox (Oracle) 		 * Be careful not to clear the lru flag until after we're
2192166e3d32SMatthew Wilcox (Oracle) 		 * sure the folio is not being freed elsewhere -- the
2193166e3d32SMatthew Wilcox (Oracle) 		 * folio release code relies on it.
21949df41314SAlex Shi 		 */
2195166e3d32SMatthew Wilcox (Oracle) 		if (unlikely(!folio_try_get(folio)))
219689f6c88aSHugh Dickins 			goto move;
21979df41314SAlex Shi 
2198166e3d32SMatthew Wilcox (Oracle) 		if (!folio_test_clear_lru(folio)) {
2199166e3d32SMatthew Wilcox (Oracle) 			/* Another thread is already isolating this folio */
2200166e3d32SMatthew Wilcox (Oracle) 			folio_put(folio);
220189f6c88aSHugh Dickins 			goto move;
22029df41314SAlex Shi 		}
22039df41314SAlex Shi 
2204599d0c95SMel Gorman 		nr_taken += nr_pages;
2205166e3d32SMatthew Wilcox (Oracle) 		nr_zone_taken[folio_zonenum(folio)] += nr_pages;
220689f6c88aSHugh Dickins 		move_to = dst;
220789f6c88aSHugh Dickins move:
2208166e3d32SMatthew Wilcox (Oracle) 		list_move(&folio->lru, move_to);
22095ad333ebSAndy Whitcroft 	}
22101da177e4SLinus Torvalds 
2211b2e18757SMel Gorman 	/*
2212166e3d32SMatthew Wilcox (Oracle) 	 * Splice any skipped folios to the start of the LRU list. Note that
2213b2e18757SMel Gorman 	 * this disrupts the LRU order when reclaiming for lower zones but
2214b2e18757SMel Gorman 	 * we cannot splice to the tail. If we did then the SWAP_CLUSTER_MAX
2215166e3d32SMatthew Wilcox (Oracle) 	 * scanning would soon rescan the same folios to skip and waste lots
2216b2cb6826SMiaohe Lin 	 * of cpu cycles.
2217b2e18757SMel Gorman 	 */
2218166e3d32SMatthew Wilcox (Oracle) 	if (!list_empty(&folios_skipped)) {
22197cc30fcfSMel Gorman 		int zid;
22207cc30fcfSMel Gorman 
2221166e3d32SMatthew Wilcox (Oracle) 		list_splice(&folios_skipped, src);
22227cc30fcfSMel Gorman 		for (zid = 0; zid < MAX_NR_ZONES; zid++) {
22237cc30fcfSMel Gorman 			if (!nr_skipped[zid])
22247cc30fcfSMel Gorman 				continue;
22257cc30fcfSMel Gorman 
22267cc30fcfSMel Gorman 			__count_zid_vm_events(PGSCAN_SKIP, zid, nr_skipped[zid]);
22271265e3a6SMichal Hocko 			skipped += nr_skipped[zid];
22287cc30fcfSMel Gorman 		}
22297cc30fcfSMel Gorman 	}
2230791b48b6SMinchan Kim 	*nr_scanned = total_scan;
22311265e3a6SMichal Hocko 	trace_mm_vmscan_lru_isolate(sc->reclaim_idx, sc->order, nr_to_scan,
223289f6c88aSHugh Dickins 				    total_scan, skipped, nr_taken,
223389f6c88aSHugh Dickins 				    sc->may_unmap ? 0 : ISOLATE_UNMAPPED, lru);
2234b4536f0cSMichal Hocko 	update_lru_sizes(lruvec, lru, nr_zone_taken);
22351da177e4SLinus Torvalds 	return nr_taken;
22361da177e4SLinus Torvalds }
22371da177e4SLinus Torvalds 
223862695a84SNick Piggin /**
2239d1d8a3b4SMatthew Wilcox (Oracle)  * folio_isolate_lru() - Try to isolate a folio from its LRU list.
2240d1d8a3b4SMatthew Wilcox (Oracle)  * @folio: Folio to isolate from its LRU list.
224162695a84SNick Piggin  *
2242d1d8a3b4SMatthew Wilcox (Oracle)  * Isolate a @folio from an LRU list and adjust the vmstat statistic
2243d1d8a3b4SMatthew Wilcox (Oracle)  * corresponding to whatever LRU list the folio was on.
224462695a84SNick Piggin  *
2245d1d8a3b4SMatthew Wilcox (Oracle)  * The folio will have its LRU flag cleared.  If it was found on the
2246d1d8a3b4SMatthew Wilcox (Oracle)  * active list, it will have the Active flag set.  If it was found on the
2247d1d8a3b4SMatthew Wilcox (Oracle)  * unevictable list, it will have the Unevictable flag set.  These flags
2248894bc310SLee Schermerhorn  * may need to be cleared by the caller before letting the page go.
224962695a84SNick Piggin  *
2250d1d8a3b4SMatthew Wilcox (Oracle)  * Context:
2251a5d09bedSMike Rapoport  *
225262695a84SNick Piggin  * (1) Must be called with an elevated refcount on the page. This is a
2253d1d8a3b4SMatthew Wilcox (Oracle)  *     fundamental difference from isolate_lru_pages() (which is called
225462695a84SNick Piggin  *     without a stable reference).
2255d1d8a3b4SMatthew Wilcox (Oracle)  * (2) The lru_lock must not be held.
2256d1d8a3b4SMatthew Wilcox (Oracle)  * (3) Interrupts must be enabled.
2257d1d8a3b4SMatthew Wilcox (Oracle)  *
2258d1d8a3b4SMatthew Wilcox (Oracle)  * Return: 0 if the folio was removed from an LRU list.
2259d1d8a3b4SMatthew Wilcox (Oracle)  * -EBUSY if the folio was not on an LRU list.
226062695a84SNick Piggin  */
2261d1d8a3b4SMatthew Wilcox (Oracle) int folio_isolate_lru(struct folio *folio)
226262695a84SNick Piggin {
226362695a84SNick Piggin 	int ret = -EBUSY;
226462695a84SNick Piggin 
2265d1d8a3b4SMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(!folio_ref_count(folio), folio);
22660c917313SKonstantin Khlebnikov 
2267d1d8a3b4SMatthew Wilcox (Oracle) 	if (folio_test_clear_lru(folio)) {
2268fa9add64SHugh Dickins 		struct lruvec *lruvec;
226962695a84SNick Piggin 
2270d1d8a3b4SMatthew Wilcox (Oracle) 		folio_get(folio);
2271e809c3feSMatthew Wilcox (Oracle) 		lruvec = folio_lruvec_lock_irq(folio);
2272d1d8a3b4SMatthew Wilcox (Oracle) 		lruvec_del_folio(lruvec, folio);
22736168d0daSAlex Shi 		unlock_page_lruvec_irq(lruvec);
2274fa9add64SHugh Dickins 		ret = 0;
227562695a84SNick Piggin 	}
2276d25b5bd8SAlex Shi 
227762695a84SNick Piggin 	return ret;
227862695a84SNick Piggin }
227962695a84SNick Piggin 
22805ad333ebSAndy Whitcroft /*
2281d37dd5dcSFengguang Wu  * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
2282178821b8SXianting Tian  * then get rescheduled. When there are massive number of tasks doing page
2283d37dd5dcSFengguang Wu  * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
2284d37dd5dcSFengguang Wu  * the LRU list will go small and be scanned faster than necessary, leading to
2285d37dd5dcSFengguang Wu  * unnecessary swapping, thrashing and OOM.
228635cd7815SRik van Riel  */
2287599d0c95SMel Gorman static int too_many_isolated(struct pglist_data *pgdat, int file,
228835cd7815SRik van Riel 		struct scan_control *sc)
228935cd7815SRik van Riel {
229035cd7815SRik van Riel 	unsigned long inactive, isolated;
2291d818fca1SMel Gorman 	bool too_many;
229235cd7815SRik van Riel 
229335cd7815SRik van Riel 	if (current_is_kswapd())
229435cd7815SRik van Riel 		return 0;
229535cd7815SRik van Riel 
2296b5ead35eSJohannes Weiner 	if (!writeback_throttling_sane(sc))
229735cd7815SRik van Riel 		return 0;
229835cd7815SRik van Riel 
229935cd7815SRik van Riel 	if (file) {
2300599d0c95SMel Gorman 		inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
2301599d0c95SMel Gorman 		isolated = node_page_state(pgdat, NR_ISOLATED_FILE);
230235cd7815SRik van Riel 	} else {
2303599d0c95SMel Gorman 		inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
2304599d0c95SMel Gorman 		isolated = node_page_state(pgdat, NR_ISOLATED_ANON);
230535cd7815SRik van Riel 	}
230635cd7815SRik van Riel 
23073cf23841SFengguang Wu 	/*
23083cf23841SFengguang Wu 	 * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
23093cf23841SFengguang Wu 	 * won't get blocked by normal direct-reclaimers, forming a circular
23103cf23841SFengguang Wu 	 * deadlock.
23113cf23841SFengguang Wu 	 */
2312d0164adcSMel Gorman 	if ((sc->gfp_mask & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS))
23133cf23841SFengguang Wu 		inactive >>= 3;
23143cf23841SFengguang Wu 
2315d818fca1SMel Gorman 	too_many = isolated > inactive;
2316d818fca1SMel Gorman 
2317d818fca1SMel Gorman 	/* Wake up tasks throttled due to too_many_isolated. */
2318d818fca1SMel Gorman 	if (!too_many)
2319d818fca1SMel Gorman 		wake_throttle_isolated(pgdat);
2320d818fca1SMel Gorman 
2321d818fca1SMel Gorman 	return too_many;
232235cd7815SRik van Riel }
232335cd7815SRik van Riel 
2324a222f341SKirill Tkhai /*
2325ff00a170SMatthew Wilcox (Oracle)  * move_pages_to_lru() moves folios from private @list to appropriate LRU list.
2326ff00a170SMatthew Wilcox (Oracle)  * On return, @list is reused as a list of folios to be freed by the caller.
2327a222f341SKirill Tkhai  *
2328a222f341SKirill Tkhai  * Returns the number of pages moved to the given lruvec.
2329a222f341SKirill Tkhai  */
23309ef56b78SMuchun Song static unsigned int move_pages_to_lru(struct lruvec *lruvec,
2331a222f341SKirill Tkhai 				      struct list_head *list)
233266635629SMel Gorman {
2333a222f341SKirill Tkhai 	int nr_pages, nr_moved = 0;
2334ff00a170SMatthew Wilcox (Oracle) 	LIST_HEAD(folios_to_free);
233566635629SMel Gorman 
2336a222f341SKirill Tkhai 	while (!list_empty(list)) {
2337ff00a170SMatthew Wilcox (Oracle) 		struct folio *folio = lru_to_folio(list);
2338ff00a170SMatthew Wilcox (Oracle) 
2339ff00a170SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
2340ff00a170SMatthew Wilcox (Oracle) 		list_del(&folio->lru);
2341ff00a170SMatthew Wilcox (Oracle) 		if (unlikely(!folio_evictable(folio))) {
23426168d0daSAlex Shi 			spin_unlock_irq(&lruvec->lru_lock);
2343ff00a170SMatthew Wilcox (Oracle) 			folio_putback_lru(folio);
23446168d0daSAlex Shi 			spin_lock_irq(&lruvec->lru_lock);
234566635629SMel Gorman 			continue;
234666635629SMel Gorman 		}
2347fa9add64SHugh Dickins 
23483d06afabSAlex Shi 		/*
2349ff00a170SMatthew Wilcox (Oracle) 		 * The folio_set_lru needs to be kept here for list integrity.
23503d06afabSAlex Shi 		 * Otherwise:
23513d06afabSAlex Shi 		 *   #0 move_pages_to_lru             #1 release_pages
2352ff00a170SMatthew Wilcox (Oracle) 		 *   if (!folio_put_testzero())
2353ff00a170SMatthew Wilcox (Oracle) 		 *				      if (folio_put_testzero())
2354ff00a170SMatthew Wilcox (Oracle) 		 *				        !lru //skip lru_lock
2355ff00a170SMatthew Wilcox (Oracle) 		 *     folio_set_lru()
2356ff00a170SMatthew Wilcox (Oracle) 		 *     list_add(&folio->lru,)
2357ff00a170SMatthew Wilcox (Oracle) 		 *                                        list_add(&folio->lru,)
23583d06afabSAlex Shi 		 */
2359ff00a170SMatthew Wilcox (Oracle) 		folio_set_lru(folio);
2360a222f341SKirill Tkhai 
2361ff00a170SMatthew Wilcox (Oracle) 		if (unlikely(folio_put_testzero(folio))) {
2362ff00a170SMatthew Wilcox (Oracle) 			__folio_clear_lru_flags(folio);
23632bcf8879SHugh Dickins 
2364ff00a170SMatthew Wilcox (Oracle) 			if (unlikely(folio_test_large(folio))) {
23656168d0daSAlex Shi 				spin_unlock_irq(&lruvec->lru_lock);
23665375336cSMatthew Wilcox (Oracle) 				destroy_large_folio(folio);
23676168d0daSAlex Shi 				spin_lock_irq(&lruvec->lru_lock);
23682bcf8879SHugh Dickins 			} else
2369ff00a170SMatthew Wilcox (Oracle) 				list_add(&folio->lru, &folios_to_free);
23703d06afabSAlex Shi 
23713d06afabSAlex Shi 			continue;
23723d06afabSAlex Shi 		}
23733d06afabSAlex Shi 
2374afca9157SAlex Shi 		/*
2375afca9157SAlex Shi 		 * All pages were isolated from the same lruvec (and isolation
2376afca9157SAlex Shi 		 * inhibits memcg migration).
2377afca9157SAlex Shi 		 */
2378ff00a170SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(!folio_matches_lruvec(folio, lruvec), folio);
2379ff00a170SMatthew Wilcox (Oracle) 		lruvec_add_folio(lruvec, folio);
2380ff00a170SMatthew Wilcox (Oracle) 		nr_pages = folio_nr_pages(folio);
2381a222f341SKirill Tkhai 		nr_moved += nr_pages;
2382ff00a170SMatthew Wilcox (Oracle) 		if (folio_test_active(folio))
238331d8fcacSJohannes Weiner 			workingset_age_nonresident(lruvec, nr_pages);
238466635629SMel Gorman 	}
238566635629SMel Gorman 
23863f79768fSHugh Dickins 	/*
23873f79768fSHugh Dickins 	 * To save our caller's stack, now use input list for pages to free.
23883f79768fSHugh Dickins 	 */
2389ff00a170SMatthew Wilcox (Oracle) 	list_splice(&folios_to_free, list);
2390a222f341SKirill Tkhai 
2391a222f341SKirill Tkhai 	return nr_moved;
239266635629SMel Gorman }
239366635629SMel Gorman 
239466635629SMel Gorman /*
23955829f7dbSMiaohe Lin  * If a kernel thread (such as nfsd for loop-back mounts) services a backing
23965829f7dbSMiaohe Lin  * device by writing to the page cache it sets PF_LOCAL_THROTTLE. In this case
23975829f7dbSMiaohe Lin  * we should not throttle.  Otherwise it is safe to do so.
2398399ba0b9SNeilBrown  */
2399399ba0b9SNeilBrown static int current_may_throttle(void)
2400399ba0b9SNeilBrown {
2401b9b1335eSNeilBrown 	return !(current->flags & PF_LOCAL_THROTTLE);
2402399ba0b9SNeilBrown }
2403399ba0b9SNeilBrown 
2404399ba0b9SNeilBrown /*
2405b2e18757SMel Gorman  * shrink_inactive_list() is a helper for shrink_node().  It returns the number
24061742f19fSAndrew Morton  * of reclaimed pages
24071da177e4SLinus Torvalds  */
24089ef56b78SMuchun Song static unsigned long
24091a93be0eSKonstantin Khlebnikov shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
24109e3b2f8cSKonstantin Khlebnikov 		     struct scan_control *sc, enum lru_list lru)
24111da177e4SLinus Torvalds {
24121da177e4SLinus Torvalds 	LIST_HEAD(page_list);
2413e247dbceSKOSAKI Motohiro 	unsigned long nr_scanned;
2414730ec8c0SManinder Singh 	unsigned int nr_reclaimed = 0;
2415e247dbceSKOSAKI Motohiro 	unsigned long nr_taken;
2416060f005fSKirill Tkhai 	struct reclaim_stat stat;
2417497a6c1bSJohannes Weiner 	bool file = is_file_lru(lru);
2418f46b7912SKirill Tkhai 	enum vm_event_item item;
2419599d0c95SMel Gorman 	struct pglist_data *pgdat = lruvec_pgdat(lruvec);
2420db73ee0dSMichal Hocko 	bool stalled = false;
242178dc583dSKOSAKI Motohiro 
2422599d0c95SMel Gorman 	while (unlikely(too_many_isolated(pgdat, file, sc))) {
2423db73ee0dSMichal Hocko 		if (stalled)
2424db73ee0dSMichal Hocko 			return 0;
2425db73ee0dSMichal Hocko 
2426db73ee0dSMichal Hocko 		/* wait a bit for the reclaimer. */
2427db73ee0dSMichal Hocko 		stalled = true;
2428c3f4a9a2SMel Gorman 		reclaim_throttle(pgdat, VMSCAN_THROTTLE_ISOLATED);
242935cd7815SRik van Riel 
243035cd7815SRik van Riel 		/* We are about to die and free our memory. Return now. */
243135cd7815SRik van Riel 		if (fatal_signal_pending(current))
243235cd7815SRik van Riel 			return SWAP_CLUSTER_MAX;
243335cd7815SRik van Riel 	}
243435cd7815SRik van Riel 
24351da177e4SLinus Torvalds 	lru_add_drain();
2436f80c0673SMinchan Kim 
24376168d0daSAlex Shi 	spin_lock_irq(&lruvec->lru_lock);
24381da177e4SLinus Torvalds 
24395dc35979SKonstantin Khlebnikov 	nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list,
2440a9e7c39fSKirill Tkhai 				     &nr_scanned, sc, lru);
244195d918fcSKonstantin Khlebnikov 
2442599d0c95SMel Gorman 	__mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
2443f46b7912SKirill Tkhai 	item = current_is_kswapd() ? PGSCAN_KSWAPD : PGSCAN_DIRECT;
2444b5ead35eSJohannes Weiner 	if (!cgroup_reclaim(sc))
2445f46b7912SKirill Tkhai 		__count_vm_events(item, nr_scanned);
2446f46b7912SKirill Tkhai 	__count_memcg_events(lruvec_memcg(lruvec), item, nr_scanned);
2447497a6c1bSJohannes Weiner 	__count_vm_events(PGSCAN_ANON + file, nr_scanned);
2448497a6c1bSJohannes Weiner 
24496168d0daSAlex Shi 	spin_unlock_irq(&lruvec->lru_lock);
2450d563c050SHillf Danton 
2451d563c050SHillf Danton 	if (nr_taken == 0)
245266635629SMel Gorman 		return 0;
2453b35ea17bSKOSAKI Motohiro 
2454013339dfSShakeel Butt 	nr_reclaimed = shrink_page_list(&page_list, pgdat, sc, &stat, false);
2455c661b078SAndy Whitcroft 
24566168d0daSAlex Shi 	spin_lock_irq(&lruvec->lru_lock);
2457497a6c1bSJohannes Weiner 	move_pages_to_lru(lruvec, &page_list);
2458497a6c1bSJohannes Weiner 
2459497a6c1bSJohannes Weiner 	__mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
2460f46b7912SKirill Tkhai 	item = current_is_kswapd() ? PGSTEAL_KSWAPD : PGSTEAL_DIRECT;
2461b5ead35eSJohannes Weiner 	if (!cgroup_reclaim(sc))
2462f46b7912SKirill Tkhai 		__count_vm_events(item, nr_reclaimed);
2463f46b7912SKirill Tkhai 	__count_memcg_events(lruvec_memcg(lruvec), item, nr_reclaimed);
2464497a6c1bSJohannes Weiner 	__count_vm_events(PGSTEAL_ANON + file, nr_reclaimed);
24656168d0daSAlex Shi 	spin_unlock_irq(&lruvec->lru_lock);
24663f79768fSHugh Dickins 
246775cc3c91SAlex Shi 	lru_note_cost(lruvec, file, stat.nr_pageout);
2468747db954SJohannes Weiner 	mem_cgroup_uncharge_list(&page_list);
24692d4894b5SMel Gorman 	free_unref_page_list(&page_list);
2470e11da5b4SMel Gorman 
247192df3a72SMel Gorman 	/*
24721c610d5fSAndrey Ryabinin 	 * If dirty pages are scanned that are not queued for IO, it
24731c610d5fSAndrey Ryabinin 	 * implies that flushers are not doing their job. This can
24741c610d5fSAndrey Ryabinin 	 * happen when memory pressure pushes dirty pages to the end of
24751c610d5fSAndrey Ryabinin 	 * the LRU before the dirty limits are breached and the dirty
24761c610d5fSAndrey Ryabinin 	 * data has expired. It can also happen when the proportion of
24771c610d5fSAndrey Ryabinin 	 * dirty pages grows not through writes but through memory
24781c610d5fSAndrey Ryabinin 	 * pressure reclaiming all the clean cache. And in some cases,
24791c610d5fSAndrey Ryabinin 	 * the flushers simply cannot keep up with the allocation
24801c610d5fSAndrey Ryabinin 	 * rate. Nudge the flusher threads in case they are asleep.
24811c610d5fSAndrey Ryabinin 	 */
24821c610d5fSAndrey Ryabinin 	if (stat.nr_unqueued_dirty == nr_taken)
24831c610d5fSAndrey Ryabinin 		wakeup_flusher_threads(WB_REASON_VMSCAN);
24841c610d5fSAndrey Ryabinin 
2485d108c772SAndrey Ryabinin 	sc->nr.dirty += stat.nr_dirty;
2486d108c772SAndrey Ryabinin 	sc->nr.congested += stat.nr_congested;
2487d108c772SAndrey Ryabinin 	sc->nr.unqueued_dirty += stat.nr_unqueued_dirty;
2488d108c772SAndrey Ryabinin 	sc->nr.writeback += stat.nr_writeback;
2489d108c772SAndrey Ryabinin 	sc->nr.immediate += stat.nr_immediate;
2490d108c772SAndrey Ryabinin 	sc->nr.taken += nr_taken;
2491d108c772SAndrey Ryabinin 	if (file)
2492d108c772SAndrey Ryabinin 		sc->nr.file_taken += nr_taken;
24938e950282SMel Gorman 
2494599d0c95SMel Gorman 	trace_mm_vmscan_lru_shrink_inactive(pgdat->node_id,
2495d51d1e64SSteven Rostedt 			nr_scanned, nr_reclaimed, &stat, sc->priority, file);
249605ff5137SAndrew Morton 	return nr_reclaimed;
24971da177e4SLinus Torvalds }
24981da177e4SLinus Torvalds 
249915b44736SHugh Dickins /*
250007f67a8dSMatthew Wilcox (Oracle)  * shrink_active_list() moves folios from the active LRU to the inactive LRU.
250115b44736SHugh Dickins  *
250207f67a8dSMatthew Wilcox (Oracle)  * We move them the other way if the folio is referenced by one or more
250315b44736SHugh Dickins  * processes.
250415b44736SHugh Dickins  *
250507f67a8dSMatthew Wilcox (Oracle)  * If the folios are mostly unmapped, the processing is fast and it is
250615b44736SHugh Dickins  * appropriate to hold lru_lock across the whole operation.  But if
250707f67a8dSMatthew Wilcox (Oracle)  * the folios are mapped, the processing is slow (folio_referenced()), so
250807f67a8dSMatthew Wilcox (Oracle)  * we should drop lru_lock around each folio.  It's impossible to balance
250907f67a8dSMatthew Wilcox (Oracle)  * this, so instead we remove the folios from the LRU while processing them.
251007f67a8dSMatthew Wilcox (Oracle)  * It is safe to rely on the active flag against the non-LRU folios in here
251107f67a8dSMatthew Wilcox (Oracle)  * because nobody will play with that bit on a non-LRU folio.
251215b44736SHugh Dickins  *
251307f67a8dSMatthew Wilcox (Oracle)  * The downside is that we have to touch folio->_refcount against each folio.
251407f67a8dSMatthew Wilcox (Oracle)  * But we had to alter folio->flags anyway.
251515b44736SHugh Dickins  */
2516f626012dSHugh Dickins static void shrink_active_list(unsigned long nr_to_scan,
25171a93be0eSKonstantin Khlebnikov 			       struct lruvec *lruvec,
2518f16015fbSJohannes Weiner 			       struct scan_control *sc,
25199e3b2f8cSKonstantin Khlebnikov 			       enum lru_list lru)
25201cfb419bSKAMEZAWA Hiroyuki {
252144c241f1SKOSAKI Motohiro 	unsigned long nr_taken;
2522f626012dSHugh Dickins 	unsigned long nr_scanned;
25236fe6b7e3SWu Fengguang 	unsigned long vm_flags;
252407f67a8dSMatthew Wilcox (Oracle) 	LIST_HEAD(l_hold);	/* The folios which were snipped off */
25258cab4754SWu Fengguang 	LIST_HEAD(l_active);
2526b69408e8SChristoph Lameter 	LIST_HEAD(l_inactive);
25279d998b4fSMichal Hocko 	unsigned nr_deactivate, nr_activate;
25289d998b4fSMichal Hocko 	unsigned nr_rotated = 0;
25293cb99451SKonstantin Khlebnikov 	int file = is_file_lru(lru);
2530599d0c95SMel Gorman 	struct pglist_data *pgdat = lruvec_pgdat(lruvec);
25311cfb419bSKAMEZAWA Hiroyuki 
25321da177e4SLinus Torvalds 	lru_add_drain();
2533f80c0673SMinchan Kim 
25346168d0daSAlex Shi 	spin_lock_irq(&lruvec->lru_lock);
2535925b7673SJohannes Weiner 
25365dc35979SKonstantin Khlebnikov 	nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold,
2537a9e7c39fSKirill Tkhai 				     &nr_scanned, sc, lru);
253889b5fae5SJohannes Weiner 
2539599d0c95SMel Gorman 	__mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
25401cfb419bSKAMEZAWA Hiroyuki 
2541912c0572SShakeel Butt 	if (!cgroup_reclaim(sc))
2542599d0c95SMel Gorman 		__count_vm_events(PGREFILL, nr_scanned);
25432fa2690cSYafang Shao 	__count_memcg_events(lruvec_memcg(lruvec), PGREFILL, nr_scanned);
25449d5e6a9fSHugh Dickins 
25456168d0daSAlex Shi 	spin_unlock_irq(&lruvec->lru_lock);
25461da177e4SLinus Torvalds 
25471da177e4SLinus Torvalds 	while (!list_empty(&l_hold)) {
2548b3ac0413SMatthew Wilcox (Oracle) 		struct folio *folio;
2549b3ac0413SMatthew Wilcox (Oracle) 
25501da177e4SLinus Torvalds 		cond_resched();
2551b3ac0413SMatthew Wilcox (Oracle) 		folio = lru_to_folio(&l_hold);
2552b3ac0413SMatthew Wilcox (Oracle) 		list_del(&folio->lru);
25537e9cd484SRik van Riel 
255407f67a8dSMatthew Wilcox (Oracle) 		if (unlikely(!folio_evictable(folio))) {
255507f67a8dSMatthew Wilcox (Oracle) 			folio_putback_lru(folio);
2556894bc310SLee Schermerhorn 			continue;
2557894bc310SLee Schermerhorn 		}
2558894bc310SLee Schermerhorn 
2559cc715d99SMel Gorman 		if (unlikely(buffer_heads_over_limit)) {
256036a3b14bSMatthew Wilcox (Oracle) 			if (folio_test_private(folio) && folio_trylock(folio)) {
256136a3b14bSMatthew Wilcox (Oracle) 				if (folio_test_private(folio))
256207f67a8dSMatthew Wilcox (Oracle) 					filemap_release_folio(folio, 0);
256307f67a8dSMatthew Wilcox (Oracle) 				folio_unlock(folio);
2564cc715d99SMel Gorman 			}
2565cc715d99SMel Gorman 		}
2566cc715d99SMel Gorman 
25676d4675e6SMinchan Kim 		/* Referenced or rmap lock contention: rotate */
2568b3ac0413SMatthew Wilcox (Oracle) 		if (folio_referenced(folio, 0, sc->target_mem_cgroup,
25696d4675e6SMinchan Kim 				     &vm_flags) != 0) {
25708cab4754SWu Fengguang 			/*
257107f67a8dSMatthew Wilcox (Oracle) 			 * Identify referenced, file-backed active folios and
25728cab4754SWu Fengguang 			 * give them one more trip around the active list. So
25738cab4754SWu Fengguang 			 * that executable code get better chances to stay in
257407f67a8dSMatthew Wilcox (Oracle) 			 * memory under moderate memory pressure.  Anon folios
25758cab4754SWu Fengguang 			 * are not likely to be evicted by use-once streaming
257607f67a8dSMatthew Wilcox (Oracle) 			 * IO, plus JVM can create lots of anon VM_EXEC folios,
25778cab4754SWu Fengguang 			 * so we ignore them here.
25788cab4754SWu Fengguang 			 */
257907f67a8dSMatthew Wilcox (Oracle) 			if ((vm_flags & VM_EXEC) && folio_is_file_lru(folio)) {
258007f67a8dSMatthew Wilcox (Oracle) 				nr_rotated += folio_nr_pages(folio);
258107f67a8dSMatthew Wilcox (Oracle) 				list_add(&folio->lru, &l_active);
25828cab4754SWu Fengguang 				continue;
25838cab4754SWu Fengguang 			}
25848cab4754SWu Fengguang 		}
25857e9cd484SRik van Riel 
258607f67a8dSMatthew Wilcox (Oracle) 		folio_clear_active(folio);	/* we are de-activating */
258707f67a8dSMatthew Wilcox (Oracle) 		folio_set_workingset(folio);
258807f67a8dSMatthew Wilcox (Oracle) 		list_add(&folio->lru, &l_inactive);
25891da177e4SLinus Torvalds 	}
25901da177e4SLinus Torvalds 
2591b555749aSAndrew Morton 	/*
259207f67a8dSMatthew Wilcox (Oracle) 	 * Move folios back to the lru list.
2593b555749aSAndrew Morton 	 */
25946168d0daSAlex Shi 	spin_lock_irq(&lruvec->lru_lock);
2595556adecbSRik van Riel 
2596a222f341SKirill Tkhai 	nr_activate = move_pages_to_lru(lruvec, &l_active);
2597a222f341SKirill Tkhai 	nr_deactivate = move_pages_to_lru(lruvec, &l_inactive);
259807f67a8dSMatthew Wilcox (Oracle) 	/* Keep all free folios in l_active list */
2599f372d89eSKirill Tkhai 	list_splice(&l_inactive, &l_active);
26009851ac13SKirill Tkhai 
26019851ac13SKirill Tkhai 	__count_vm_events(PGDEACTIVATE, nr_deactivate);
26029851ac13SKirill Tkhai 	__count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, nr_deactivate);
26039851ac13SKirill Tkhai 
2604599d0c95SMel Gorman 	__mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
26056168d0daSAlex Shi 	spin_unlock_irq(&lruvec->lru_lock);
26062bcf8879SHugh Dickins 
2607f372d89eSKirill Tkhai 	mem_cgroup_uncharge_list(&l_active);
2608f372d89eSKirill Tkhai 	free_unref_page_list(&l_active);
26099d998b4fSMichal Hocko 	trace_mm_vmscan_lru_shrink_active(pgdat->node_id, nr_taken, nr_activate,
26109d998b4fSMichal Hocko 			nr_deactivate, nr_rotated, sc->priority, file);
26111da177e4SLinus Torvalds }
26121da177e4SLinus Torvalds 
26131fe47c0bSMiaohe Lin static unsigned int reclaim_page_list(struct list_head *page_list,
26141fe47c0bSMiaohe Lin 				      struct pglist_data *pgdat)
26151a4e58ccSMinchan Kim {
26161a4e58ccSMinchan Kim 	struct reclaim_stat dummy_stat;
26171fe47c0bSMiaohe Lin 	unsigned int nr_reclaimed;
26181fe47c0bSMiaohe Lin 	struct folio *folio;
26191a4e58ccSMinchan Kim 	struct scan_control sc = {
26201a4e58ccSMinchan Kim 		.gfp_mask = GFP_KERNEL,
26211a4e58ccSMinchan Kim 		.may_writepage = 1,
26221a4e58ccSMinchan Kim 		.may_unmap = 1,
26231a4e58ccSMinchan Kim 		.may_swap = 1,
262426aa2d19SDave Hansen 		.no_demotion = 1,
26251a4e58ccSMinchan Kim 	};
26261a4e58ccSMinchan Kim 
26271fe47c0bSMiaohe Lin 	nr_reclaimed = shrink_page_list(page_list, pgdat, &sc, &dummy_stat, false);
26281fe47c0bSMiaohe Lin 	while (!list_empty(page_list)) {
26291fe47c0bSMiaohe Lin 		folio = lru_to_folio(page_list);
26301fe47c0bSMiaohe Lin 		list_del(&folio->lru);
26311fe47c0bSMiaohe Lin 		folio_putback_lru(folio);
26321fe47c0bSMiaohe Lin 	}
26331fe47c0bSMiaohe Lin 
26341fe47c0bSMiaohe Lin 	return nr_reclaimed;
26351fe47c0bSMiaohe Lin }
26361fe47c0bSMiaohe Lin 
2637a83f0551SMatthew Wilcox (Oracle) unsigned long reclaim_pages(struct list_head *folio_list)
26381fe47c0bSMiaohe Lin {
2639ed657e55SWei Yang 	int nid;
26401fe47c0bSMiaohe Lin 	unsigned int nr_reclaimed = 0;
2641a83f0551SMatthew Wilcox (Oracle) 	LIST_HEAD(node_folio_list);
26421fe47c0bSMiaohe Lin 	unsigned int noreclaim_flag;
26431fe47c0bSMiaohe Lin 
2644a83f0551SMatthew Wilcox (Oracle) 	if (list_empty(folio_list))
26451ae65e27SWei Yang 		return nr_reclaimed;
26461ae65e27SWei Yang 
26472d2b8d2bSYu Zhao 	noreclaim_flag = memalloc_noreclaim_save();
26482d2b8d2bSYu Zhao 
2649a83f0551SMatthew Wilcox (Oracle) 	nid = folio_nid(lru_to_folio(folio_list));
26501ae65e27SWei Yang 	do {
2651a83f0551SMatthew Wilcox (Oracle) 		struct folio *folio = lru_to_folio(folio_list);
26521a4e58ccSMinchan Kim 
2653a83f0551SMatthew Wilcox (Oracle) 		if (nid == folio_nid(folio)) {
2654a83f0551SMatthew Wilcox (Oracle) 			folio_clear_active(folio);
2655a83f0551SMatthew Wilcox (Oracle) 			list_move(&folio->lru, &node_folio_list);
26561a4e58ccSMinchan Kim 			continue;
26571a4e58ccSMinchan Kim 		}
26581a4e58ccSMinchan Kim 
2659a83f0551SMatthew Wilcox (Oracle) 		nr_reclaimed += reclaim_page_list(&node_folio_list, NODE_DATA(nid));
2660a83f0551SMatthew Wilcox (Oracle) 		nid = folio_nid(lru_to_folio(folio_list));
2661a83f0551SMatthew Wilcox (Oracle) 	} while (!list_empty(folio_list));
26621a4e58ccSMinchan Kim 
2663a83f0551SMatthew Wilcox (Oracle) 	nr_reclaimed += reclaim_page_list(&node_folio_list, NODE_DATA(nid));
26641a4e58ccSMinchan Kim 
26652d2b8d2bSYu Zhao 	memalloc_noreclaim_restore(noreclaim_flag);
26662d2b8d2bSYu Zhao 
26671a4e58ccSMinchan Kim 	return nr_reclaimed;
26681a4e58ccSMinchan Kim }
26691a4e58ccSMinchan Kim 
2670b91ac374SJohannes Weiner static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
2671b91ac374SJohannes Weiner 				 struct lruvec *lruvec, struct scan_control *sc)
2672b91ac374SJohannes Weiner {
2673b91ac374SJohannes Weiner 	if (is_active_lru(lru)) {
2674b91ac374SJohannes Weiner 		if (sc->may_deactivate & (1 << is_file_lru(lru)))
2675b91ac374SJohannes Weiner 			shrink_active_list(nr_to_scan, lruvec, sc, lru);
2676b91ac374SJohannes Weiner 		else
2677b91ac374SJohannes Weiner 			sc->skipped_deactivate = 1;
2678b91ac374SJohannes Weiner 		return 0;
2679b91ac374SJohannes Weiner 	}
2680b91ac374SJohannes Weiner 
2681b91ac374SJohannes Weiner 	return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
2682b91ac374SJohannes Weiner }
2683b91ac374SJohannes Weiner 
268459dc76b0SRik van Riel /*
268559dc76b0SRik van Riel  * The inactive anon list should be small enough that the VM never has
268659dc76b0SRik van Riel  * to do too much work.
268714797e23SKOSAKI Motohiro  *
268859dc76b0SRik van Riel  * The inactive file list should be small enough to leave most memory
268959dc76b0SRik van Riel  * to the established workingset on the scan-resistant active list,
269059dc76b0SRik van Riel  * but large enough to avoid thrashing the aggregate readahead window.
269159dc76b0SRik van Riel  *
269259dc76b0SRik van Riel  * Both inactive lists should also be large enough that each inactive
269359dc76b0SRik van Riel  * page has a chance to be referenced again before it is reclaimed.
269459dc76b0SRik van Riel  *
26952a2e4885SJohannes Weiner  * If that fails and refaulting is observed, the inactive list grows.
26962a2e4885SJohannes Weiner  *
269759dc76b0SRik van Riel  * The inactive_ratio is the target ratio of ACTIVE to INACTIVE pages
26983a50d14dSAndrey Ryabinin  * on this LRU, maintained by the pageout code. An inactive_ratio
269959dc76b0SRik van Riel  * of 3 means 3:1 or 25% of the pages are kept on the inactive list.
270059dc76b0SRik van Riel  *
270159dc76b0SRik van Riel  * total     target    max
270259dc76b0SRik van Riel  * memory    ratio     inactive
270359dc76b0SRik van Riel  * -------------------------------------
270459dc76b0SRik van Riel  *   10MB       1         5MB
270559dc76b0SRik van Riel  *  100MB       1        50MB
270659dc76b0SRik van Riel  *    1GB       3       250MB
270759dc76b0SRik van Riel  *   10GB      10       0.9GB
270859dc76b0SRik van Riel  *  100GB      31         3GB
270959dc76b0SRik van Riel  *    1TB     101        10GB
271059dc76b0SRik van Riel  *   10TB     320        32GB
271114797e23SKOSAKI Motohiro  */
2712b91ac374SJohannes Weiner static bool inactive_is_low(struct lruvec *lruvec, enum lru_list inactive_lru)
271314797e23SKOSAKI Motohiro {
2714b91ac374SJohannes Weiner 	enum lru_list active_lru = inactive_lru + LRU_ACTIVE;
27152a2e4885SJohannes Weiner 	unsigned long inactive, active;
27162a2e4885SJohannes Weiner 	unsigned long inactive_ratio;
271759dc76b0SRik van Riel 	unsigned long gb;
271859dc76b0SRik van Riel 
2719b91ac374SJohannes Weiner 	inactive = lruvec_page_state(lruvec, NR_LRU_BASE + inactive_lru);
2720b91ac374SJohannes Weiner 	active = lruvec_page_state(lruvec, NR_LRU_BASE + active_lru);
2721f8d1a311SMel Gorman 
272259dc76b0SRik van Riel 	gb = (inactive + active) >> (30 - PAGE_SHIFT);
27234002570cSJoonsoo Kim 	if (gb)
272459dc76b0SRik van Riel 		inactive_ratio = int_sqrt(10 * gb);
2725b39415b2SRik van Riel 	else
272659dc76b0SRik van Riel 		inactive_ratio = 1;
2727fd538803SMichal Hocko 
272859dc76b0SRik van Riel 	return inactive * inactive_ratio < active;
2729b39415b2SRik van Riel }
2730b39415b2SRik van Riel 
27319a265114SJohannes Weiner enum scan_balance {
27329a265114SJohannes Weiner 	SCAN_EQUAL,
27339a265114SJohannes Weiner 	SCAN_FRACT,
27349a265114SJohannes Weiner 	SCAN_ANON,
27359a265114SJohannes Weiner 	SCAN_FILE,
27369a265114SJohannes Weiner };
27379a265114SJohannes Weiner 
2738f1e1a7beSYu Zhao static void prepare_scan_count(pg_data_t *pgdat, struct scan_control *sc)
2739f1e1a7beSYu Zhao {
2740f1e1a7beSYu Zhao 	unsigned long file;
2741f1e1a7beSYu Zhao 	struct lruvec *target_lruvec;
2742f1e1a7beSYu Zhao 
2743ac35a490SYu Zhao 	if (lru_gen_enabled())
2744ac35a490SYu Zhao 		return;
2745ac35a490SYu Zhao 
2746f1e1a7beSYu Zhao 	target_lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup, pgdat);
2747f1e1a7beSYu Zhao 
2748f1e1a7beSYu Zhao 	/*
2749f1e1a7beSYu Zhao 	 * Flush the memory cgroup stats, so that we read accurate per-memcg
2750f1e1a7beSYu Zhao 	 * lruvec stats for heuristics.
2751f1e1a7beSYu Zhao 	 */
2752f1e1a7beSYu Zhao 	mem_cgroup_flush_stats();
2753f1e1a7beSYu Zhao 
2754f1e1a7beSYu Zhao 	/*
2755f1e1a7beSYu Zhao 	 * Determine the scan balance between anon and file LRUs.
2756f1e1a7beSYu Zhao 	 */
2757f1e1a7beSYu Zhao 	spin_lock_irq(&target_lruvec->lru_lock);
2758f1e1a7beSYu Zhao 	sc->anon_cost = target_lruvec->anon_cost;
2759f1e1a7beSYu Zhao 	sc->file_cost = target_lruvec->file_cost;
2760f1e1a7beSYu Zhao 	spin_unlock_irq(&target_lruvec->lru_lock);
2761f1e1a7beSYu Zhao 
2762f1e1a7beSYu Zhao 	/*
2763f1e1a7beSYu Zhao 	 * Target desirable inactive:active list ratios for the anon
2764f1e1a7beSYu Zhao 	 * and file LRU lists.
2765f1e1a7beSYu Zhao 	 */
2766f1e1a7beSYu Zhao 	if (!sc->force_deactivate) {
2767f1e1a7beSYu Zhao 		unsigned long refaults;
2768f1e1a7beSYu Zhao 
2769f1e1a7beSYu Zhao 		/*
2770f1e1a7beSYu Zhao 		 * When refaults are being observed, it means a new
2771f1e1a7beSYu Zhao 		 * workingset is being established. Deactivate to get
2772f1e1a7beSYu Zhao 		 * rid of any stale active pages quickly.
2773f1e1a7beSYu Zhao 		 */
2774f1e1a7beSYu Zhao 		refaults = lruvec_page_state(target_lruvec,
2775f1e1a7beSYu Zhao 				WORKINGSET_ACTIVATE_ANON);
2776f1e1a7beSYu Zhao 		if (refaults != target_lruvec->refaults[WORKINGSET_ANON] ||
2777f1e1a7beSYu Zhao 			inactive_is_low(target_lruvec, LRU_INACTIVE_ANON))
2778f1e1a7beSYu Zhao 			sc->may_deactivate |= DEACTIVATE_ANON;
2779f1e1a7beSYu Zhao 		else
2780f1e1a7beSYu Zhao 			sc->may_deactivate &= ~DEACTIVATE_ANON;
2781f1e1a7beSYu Zhao 
2782f1e1a7beSYu Zhao 		refaults = lruvec_page_state(target_lruvec,
2783f1e1a7beSYu Zhao 				WORKINGSET_ACTIVATE_FILE);
2784f1e1a7beSYu Zhao 		if (refaults != target_lruvec->refaults[WORKINGSET_FILE] ||
2785f1e1a7beSYu Zhao 		    inactive_is_low(target_lruvec, LRU_INACTIVE_FILE))
2786f1e1a7beSYu Zhao 			sc->may_deactivate |= DEACTIVATE_FILE;
2787f1e1a7beSYu Zhao 		else
2788f1e1a7beSYu Zhao 			sc->may_deactivate &= ~DEACTIVATE_FILE;
2789f1e1a7beSYu Zhao 	} else
2790f1e1a7beSYu Zhao 		sc->may_deactivate = DEACTIVATE_ANON | DEACTIVATE_FILE;
2791f1e1a7beSYu Zhao 
2792f1e1a7beSYu Zhao 	/*
2793f1e1a7beSYu Zhao 	 * If we have plenty of inactive file pages that aren't
2794f1e1a7beSYu Zhao 	 * thrashing, try to reclaim those first before touching
2795f1e1a7beSYu Zhao 	 * anonymous pages.
2796f1e1a7beSYu Zhao 	 */
2797f1e1a7beSYu Zhao 	file = lruvec_page_state(target_lruvec, NR_INACTIVE_FILE);
2798f1e1a7beSYu Zhao 	if (file >> sc->priority && !(sc->may_deactivate & DEACTIVATE_FILE))
2799f1e1a7beSYu Zhao 		sc->cache_trim_mode = 1;
2800f1e1a7beSYu Zhao 	else
2801f1e1a7beSYu Zhao 		sc->cache_trim_mode = 0;
2802f1e1a7beSYu Zhao 
2803f1e1a7beSYu Zhao 	/*
2804f1e1a7beSYu Zhao 	 * Prevent the reclaimer from falling into the cache trap: as
2805f1e1a7beSYu Zhao 	 * cache pages start out inactive, every cache fault will tip
2806f1e1a7beSYu Zhao 	 * the scan balance towards the file LRU.  And as the file LRU
2807f1e1a7beSYu Zhao 	 * shrinks, so does the window for rotation from references.
2808f1e1a7beSYu Zhao 	 * This means we have a runaway feedback loop where a tiny
2809f1e1a7beSYu Zhao 	 * thrashing file LRU becomes infinitely more attractive than
2810f1e1a7beSYu Zhao 	 * anon pages.  Try to detect this based on file LRU size.
2811f1e1a7beSYu Zhao 	 */
2812f1e1a7beSYu Zhao 	if (!cgroup_reclaim(sc)) {
2813f1e1a7beSYu Zhao 		unsigned long total_high_wmark = 0;
2814f1e1a7beSYu Zhao 		unsigned long free, anon;
2815f1e1a7beSYu Zhao 		int z;
2816f1e1a7beSYu Zhao 
2817f1e1a7beSYu Zhao 		free = sum_zone_node_page_state(pgdat->node_id, NR_FREE_PAGES);
2818f1e1a7beSYu Zhao 		file = node_page_state(pgdat, NR_ACTIVE_FILE) +
2819f1e1a7beSYu Zhao 			   node_page_state(pgdat, NR_INACTIVE_FILE);
2820f1e1a7beSYu Zhao 
2821f1e1a7beSYu Zhao 		for (z = 0; z < MAX_NR_ZONES; z++) {
2822f1e1a7beSYu Zhao 			struct zone *zone = &pgdat->node_zones[z];
2823f1e1a7beSYu Zhao 
2824f1e1a7beSYu Zhao 			if (!managed_zone(zone))
2825f1e1a7beSYu Zhao 				continue;
2826f1e1a7beSYu Zhao 
2827f1e1a7beSYu Zhao 			total_high_wmark += high_wmark_pages(zone);
2828f1e1a7beSYu Zhao 		}
2829f1e1a7beSYu Zhao 
2830f1e1a7beSYu Zhao 		/*
2831f1e1a7beSYu Zhao 		 * Consider anon: if that's low too, this isn't a
2832f1e1a7beSYu Zhao 		 * runaway file reclaim problem, but rather just
2833f1e1a7beSYu Zhao 		 * extreme pressure. Reclaim as per usual then.
2834f1e1a7beSYu Zhao 		 */
2835f1e1a7beSYu Zhao 		anon = node_page_state(pgdat, NR_INACTIVE_ANON);
2836f1e1a7beSYu Zhao 
2837f1e1a7beSYu Zhao 		sc->file_is_tiny =
2838f1e1a7beSYu Zhao 			file + free <= total_high_wmark &&
2839f1e1a7beSYu Zhao 			!(sc->may_deactivate & DEACTIVATE_ANON) &&
2840f1e1a7beSYu Zhao 			anon >> sc->priority;
2841f1e1a7beSYu Zhao 	}
2842f1e1a7beSYu Zhao }
2843f1e1a7beSYu Zhao 
28441da177e4SLinus Torvalds /*
28454f98a2feSRik van Riel  * Determine how aggressively the anon and file LRU lists should be
284602e458d8SMiaohe Lin  * scanned.
28474f98a2feSRik van Riel  *
2848be7bd59dSWanpeng Li  * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
2849be7bd59dSWanpeng Li  * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
28504f98a2feSRik van Riel  */
2851afaf07a6SJohannes Weiner static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
2852afaf07a6SJohannes Weiner 			   unsigned long *nr)
28534f98a2feSRik van Riel {
2854a2a36488SKeith Busch 	struct pglist_data *pgdat = lruvec_pgdat(lruvec);
2855afaf07a6SJohannes Weiner 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
2856d483a5ddSJohannes Weiner 	unsigned long anon_cost, file_cost, total_cost;
285733377678SVladimir Davydov 	int swappiness = mem_cgroup_swappiness(memcg);
2858ed017373SYu Zhao 	u64 fraction[ANON_AND_FILE];
28599a265114SJohannes Weiner 	u64 denominator = 0;	/* gcc */
28609a265114SJohannes Weiner 	enum scan_balance scan_balance;
28619a265114SJohannes Weiner 	unsigned long ap, fp;
28629a265114SJohannes Weiner 	enum lru_list lru;
286376a33fc3SShaohua Li 
286476a33fc3SShaohua Li 	/* If we have no swap space, do not bother scanning anon pages. */
2865a2a36488SKeith Busch 	if (!sc->may_swap || !can_reclaim_anon_pages(memcg, pgdat->node_id, sc)) {
28669a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
286776a33fc3SShaohua Li 		goto out;
286876a33fc3SShaohua Li 	}
28694f98a2feSRik van Riel 
287010316b31SJohannes Weiner 	/*
287110316b31SJohannes Weiner 	 * Global reclaim will swap to prevent OOM even with no
287210316b31SJohannes Weiner 	 * swappiness, but memcg users want to use this knob to
287310316b31SJohannes Weiner 	 * disable swapping for individual groups completely when
287410316b31SJohannes Weiner 	 * using the memory controller's swap limit feature would be
287510316b31SJohannes Weiner 	 * too expensive.
287610316b31SJohannes Weiner 	 */
2877b5ead35eSJohannes Weiner 	if (cgroup_reclaim(sc) && !swappiness) {
28789a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
287910316b31SJohannes Weiner 		goto out;
288010316b31SJohannes Weiner 	}
288110316b31SJohannes Weiner 
288210316b31SJohannes Weiner 	/*
288310316b31SJohannes Weiner 	 * Do not apply any pressure balancing cleverness when the
288410316b31SJohannes Weiner 	 * system is close to OOM, scan both anon and file equally
288510316b31SJohannes Weiner 	 * (unless the swappiness setting disagrees with swapping).
288610316b31SJohannes Weiner 	 */
288702695175SJohannes Weiner 	if (!sc->priority && swappiness) {
28889a265114SJohannes Weiner 		scan_balance = SCAN_EQUAL;
288910316b31SJohannes Weiner 		goto out;
289010316b31SJohannes Weiner 	}
289110316b31SJohannes Weiner 
289211d16c25SJohannes Weiner 	/*
289353138ceaSJohannes Weiner 	 * If the system is almost out of file pages, force-scan anon.
289462376251SJohannes Weiner 	 */
2895b91ac374SJohannes Weiner 	if (sc->file_is_tiny) {
289662376251SJohannes Weiner 		scan_balance = SCAN_ANON;
289762376251SJohannes Weiner 		goto out;
289862376251SJohannes Weiner 	}
289962376251SJohannes Weiner 
290062376251SJohannes Weiner 	/*
2901b91ac374SJohannes Weiner 	 * If there is enough inactive page cache, we do not reclaim
2902b91ac374SJohannes Weiner 	 * anything from the anonymous working right now.
2903e9868505SRik van Riel 	 */
2904b91ac374SJohannes Weiner 	if (sc->cache_trim_mode) {
29059a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
2906e9868505SRik van Riel 		goto out;
29074f98a2feSRik van Riel 	}
29084f98a2feSRik van Riel 
29099a265114SJohannes Weiner 	scan_balance = SCAN_FRACT;
29104f98a2feSRik van Riel 	/*
2911314b57fbSJohannes Weiner 	 * Calculate the pressure balance between anon and file pages.
2912314b57fbSJohannes Weiner 	 *
2913314b57fbSJohannes Weiner 	 * The amount of pressure we put on each LRU is inversely
2914314b57fbSJohannes Weiner 	 * proportional to the cost of reclaiming each list, as
2915314b57fbSJohannes Weiner 	 * determined by the share of pages that are refaulting, times
2916314b57fbSJohannes Weiner 	 * the relative IO cost of bringing back a swapped out
2917314b57fbSJohannes Weiner 	 * anonymous page vs reloading a filesystem page (swappiness).
2918314b57fbSJohannes Weiner 	 *
2919d483a5ddSJohannes Weiner 	 * Although we limit that influence to ensure no list gets
2920d483a5ddSJohannes Weiner 	 * left behind completely: at least a third of the pressure is
2921d483a5ddSJohannes Weiner 	 * applied, before swappiness.
2922d483a5ddSJohannes Weiner 	 *
2923314b57fbSJohannes Weiner 	 * With swappiness at 100, anon and file have equal IO cost.
292458c37f6eSKOSAKI Motohiro 	 */
2925d483a5ddSJohannes Weiner 	total_cost = sc->anon_cost + sc->file_cost;
2926d483a5ddSJohannes Weiner 	anon_cost = total_cost + sc->anon_cost;
2927d483a5ddSJohannes Weiner 	file_cost = total_cost + sc->file_cost;
2928d483a5ddSJohannes Weiner 	total_cost = anon_cost + file_cost;
292958c37f6eSKOSAKI Motohiro 
2930d483a5ddSJohannes Weiner 	ap = swappiness * (total_cost + 1);
2931d483a5ddSJohannes Weiner 	ap /= anon_cost + 1;
29324f98a2feSRik van Riel 
2933d483a5ddSJohannes Weiner 	fp = (200 - swappiness) * (total_cost + 1);
2934d483a5ddSJohannes Weiner 	fp /= file_cost + 1;
29354f98a2feSRik van Riel 
293676a33fc3SShaohua Li 	fraction[0] = ap;
293776a33fc3SShaohua Li 	fraction[1] = fp;
2938a4fe1631SJohannes Weiner 	denominator = ap + fp;
293976a33fc3SShaohua Li out:
29404111304dSHugh Dickins 	for_each_evictable_lru(lru) {
29414111304dSHugh Dickins 		int file = is_file_lru(lru);
29429783aa99SChris Down 		unsigned long lruvec_size;
2943f56ce412SJohannes Weiner 		unsigned long low, min;
294476a33fc3SShaohua Li 		unsigned long scan;
294576a33fc3SShaohua Li 
29469783aa99SChris Down 		lruvec_size = lruvec_lru_size(lruvec, lru, sc->reclaim_idx);
2947f56ce412SJohannes Weiner 		mem_cgroup_protection(sc->target_mem_cgroup, memcg,
2948f56ce412SJohannes Weiner 				      &min, &low);
29499783aa99SChris Down 
2950f56ce412SJohannes Weiner 		if (min || low) {
29519783aa99SChris Down 			/*
29529783aa99SChris Down 			 * Scale a cgroup's reclaim pressure by proportioning
29539783aa99SChris Down 			 * its current usage to its memory.low or memory.min
29549783aa99SChris Down 			 * setting.
29559783aa99SChris Down 			 *
29569783aa99SChris Down 			 * This is important, as otherwise scanning aggression
29579783aa99SChris Down 			 * becomes extremely binary -- from nothing as we
29589783aa99SChris Down 			 * approach the memory protection threshold, to totally
29599783aa99SChris Down 			 * nominal as we exceed it.  This results in requiring
29609783aa99SChris Down 			 * setting extremely liberal protection thresholds. It
29619783aa99SChris Down 			 * also means we simply get no protection at all if we
29629783aa99SChris Down 			 * set it too low, which is not ideal.
29631bc63fb1SChris Down 			 *
29641bc63fb1SChris Down 			 * If there is any protection in place, we reduce scan
29651bc63fb1SChris Down 			 * pressure by how much of the total memory used is
29661bc63fb1SChris Down 			 * within protection thresholds.
29679783aa99SChris Down 			 *
29689de7ca46SChris Down 			 * There is one special case: in the first reclaim pass,
29699de7ca46SChris Down 			 * we skip over all groups that are within their low
29709de7ca46SChris Down 			 * protection. If that fails to reclaim enough pages to
29719de7ca46SChris Down 			 * satisfy the reclaim goal, we come back and override
29729de7ca46SChris Down 			 * the best-effort low protection. However, we still
29739de7ca46SChris Down 			 * ideally want to honor how well-behaved groups are in
29749de7ca46SChris Down 			 * that case instead of simply punishing them all
29759de7ca46SChris Down 			 * equally. As such, we reclaim them based on how much
29761bc63fb1SChris Down 			 * memory they are using, reducing the scan pressure
29771bc63fb1SChris Down 			 * again by how much of the total memory used is under
29781bc63fb1SChris Down 			 * hard protection.
29799783aa99SChris Down 			 */
29801bc63fb1SChris Down 			unsigned long cgroup_size = mem_cgroup_size(memcg);
2981f56ce412SJohannes Weiner 			unsigned long protection;
2982f56ce412SJohannes Weiner 
2983f56ce412SJohannes Weiner 			/* memory.low scaling, make sure we retry before OOM */
2984f56ce412SJohannes Weiner 			if (!sc->memcg_low_reclaim && low > min) {
2985f56ce412SJohannes Weiner 				protection = low;
2986f56ce412SJohannes Weiner 				sc->memcg_low_skipped = 1;
2987f56ce412SJohannes Weiner 			} else {
2988f56ce412SJohannes Weiner 				protection = min;
2989f56ce412SJohannes Weiner 			}
29901bc63fb1SChris Down 
29911bc63fb1SChris Down 			/* Avoid TOCTOU with earlier protection check */
29921bc63fb1SChris Down 			cgroup_size = max(cgroup_size, protection);
29931bc63fb1SChris Down 
29941bc63fb1SChris Down 			scan = lruvec_size - lruvec_size * protection /
299532d4f4b7SRik van Riel 				(cgroup_size + 1);
29969783aa99SChris Down 
29979783aa99SChris Down 			/*
29981bc63fb1SChris Down 			 * Minimally target SWAP_CLUSTER_MAX pages to keep
299955b65a57SEthon Paul 			 * reclaim moving forwards, avoiding decrementing
30009de7ca46SChris Down 			 * sc->priority further than desirable.
30019783aa99SChris Down 			 */
30021bc63fb1SChris Down 			scan = max(scan, SWAP_CLUSTER_MAX);
30039783aa99SChris Down 		} else {
30049783aa99SChris Down 			scan = lruvec_size;
30059783aa99SChris Down 		}
30069783aa99SChris Down 
30079783aa99SChris Down 		scan >>= sc->priority;
30089783aa99SChris Down 
3009688035f7SJohannes Weiner 		/*
3010688035f7SJohannes Weiner 		 * If the cgroup's already been deleted, make sure to
3011688035f7SJohannes Weiner 		 * scrape out the remaining cache.
3012688035f7SJohannes Weiner 		 */
3013688035f7SJohannes Weiner 		if (!scan && !mem_cgroup_online(memcg))
30149783aa99SChris Down 			scan = min(lruvec_size, SWAP_CLUSTER_MAX);
30159a265114SJohannes Weiner 
30169a265114SJohannes Weiner 		switch (scan_balance) {
30179a265114SJohannes Weiner 		case SCAN_EQUAL:
30189a265114SJohannes Weiner 			/* Scan lists relative to size */
30199a265114SJohannes Weiner 			break;
30209a265114SJohannes Weiner 		case SCAN_FRACT:
30219a265114SJohannes Weiner 			/*
30229a265114SJohannes Weiner 			 * Scan types proportional to swappiness and
30239a265114SJohannes Weiner 			 * their relative recent reclaim efficiency.
302476073c64SGavin Shan 			 * Make sure we don't miss the last page on
302576073c64SGavin Shan 			 * the offlined memory cgroups because of a
302676073c64SGavin Shan 			 * round-off error.
30279a265114SJohannes Weiner 			 */
302876073c64SGavin Shan 			scan = mem_cgroup_online(memcg) ?
302976073c64SGavin Shan 			       div64_u64(scan * fraction[file], denominator) :
303076073c64SGavin Shan 			       DIV64_U64_ROUND_UP(scan * fraction[file],
30316f04f48dSSuleiman Souhlal 						  denominator);
30329a265114SJohannes Weiner 			break;
30339a265114SJohannes Weiner 		case SCAN_FILE:
30349a265114SJohannes Weiner 		case SCAN_ANON:
30359a265114SJohannes Weiner 			/* Scan one type exclusively */
3036e072bff6SMateusz Nosek 			if ((scan_balance == SCAN_FILE) != file)
30379a265114SJohannes Weiner 				scan = 0;
30389a265114SJohannes Weiner 			break;
30399a265114SJohannes Weiner 		default:
30409a265114SJohannes Weiner 			/* Look ma, no brain */
30419a265114SJohannes Weiner 			BUG();
30429a265114SJohannes Weiner 		}
30436b4f7799SJohannes Weiner 
30444111304dSHugh Dickins 		nr[lru] = scan;
304576a33fc3SShaohua Li 	}
30466e08a369SWu Fengguang }
30474f98a2feSRik van Riel 
30482f368a9fSDave Hansen /*
30492f368a9fSDave Hansen  * Anonymous LRU management is a waste if there is
30502f368a9fSDave Hansen  * ultimately no way to reclaim the memory.
30512f368a9fSDave Hansen  */
30522f368a9fSDave Hansen static bool can_age_anon_pages(struct pglist_data *pgdat,
30532f368a9fSDave Hansen 			       struct scan_control *sc)
30542f368a9fSDave Hansen {
30552f368a9fSDave Hansen 	/* Aging the anon LRU is valuable if swap is present: */
30562f368a9fSDave Hansen 	if (total_swap_pages > 0)
30572f368a9fSDave Hansen 		return true;
30582f368a9fSDave Hansen 
30592f368a9fSDave Hansen 	/* Also valuable if anon pages can be demoted: */
30602f368a9fSDave Hansen 	return can_demote(pgdat->node_id, sc);
30612f368a9fSDave Hansen }
30622f368a9fSDave Hansen 
3063ec1c86b2SYu Zhao #ifdef CONFIG_LRU_GEN
3064ec1c86b2SYu Zhao 
3065ec1c86b2SYu Zhao /******************************************************************************
3066ec1c86b2SYu Zhao  *                          shorthand helpers
3067ec1c86b2SYu Zhao  ******************************************************************************/
3068ec1c86b2SYu Zhao 
3069ac35a490SYu Zhao #define LRU_REFS_FLAGS	(BIT(PG_referenced) | BIT(PG_workingset))
3070ac35a490SYu Zhao 
3071ac35a490SYu Zhao #define DEFINE_MAX_SEQ(lruvec)						\
3072ac35a490SYu Zhao 	unsigned long max_seq = READ_ONCE((lruvec)->lrugen.max_seq)
3073ac35a490SYu Zhao 
3074ac35a490SYu Zhao #define DEFINE_MIN_SEQ(lruvec)						\
3075ac35a490SYu Zhao 	unsigned long min_seq[ANON_AND_FILE] = {			\
3076ac35a490SYu Zhao 		READ_ONCE((lruvec)->lrugen.min_seq[LRU_GEN_ANON]),	\
3077ac35a490SYu Zhao 		READ_ONCE((lruvec)->lrugen.min_seq[LRU_GEN_FILE]),	\
3078ac35a490SYu Zhao 	}
3079ac35a490SYu Zhao 
3080ec1c86b2SYu Zhao #define for_each_gen_type_zone(gen, type, zone)				\
3081ec1c86b2SYu Zhao 	for ((gen) = 0; (gen) < MAX_NR_GENS; (gen)++)			\
3082ec1c86b2SYu Zhao 		for ((type) = 0; (type) < ANON_AND_FILE; (type)++)	\
3083ec1c86b2SYu Zhao 			for ((zone) = 0; (zone) < MAX_NR_ZONES; (zone)++)
3084ec1c86b2SYu Zhao 
3085ec1c86b2SYu Zhao static struct lruvec __maybe_unused *get_lruvec(struct mem_cgroup *memcg, int nid)
3086ec1c86b2SYu Zhao {
3087ec1c86b2SYu Zhao 	struct pglist_data *pgdat = NODE_DATA(nid);
3088ec1c86b2SYu Zhao 
3089ec1c86b2SYu Zhao #ifdef CONFIG_MEMCG
3090ec1c86b2SYu Zhao 	if (memcg) {
3091ec1c86b2SYu Zhao 		struct lruvec *lruvec = &memcg->nodeinfo[nid]->lruvec;
3092ec1c86b2SYu Zhao 
3093ec1c86b2SYu Zhao 		/* for hotadd_new_pgdat() */
3094ec1c86b2SYu Zhao 		if (!lruvec->pgdat)
3095ec1c86b2SYu Zhao 			lruvec->pgdat = pgdat;
3096ec1c86b2SYu Zhao 
3097ec1c86b2SYu Zhao 		return lruvec;
3098ec1c86b2SYu Zhao 	}
3099ec1c86b2SYu Zhao #endif
3100ec1c86b2SYu Zhao 	VM_WARN_ON_ONCE(!mem_cgroup_disabled());
3101ec1c86b2SYu Zhao 
3102ec1c86b2SYu Zhao 	return pgdat ? &pgdat->__lruvec : NULL;
3103ec1c86b2SYu Zhao }
3104ec1c86b2SYu Zhao 
3105ac35a490SYu Zhao static int get_swappiness(struct lruvec *lruvec, struct scan_control *sc)
3106ac35a490SYu Zhao {
3107ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3108ac35a490SYu Zhao 	struct pglist_data *pgdat = lruvec_pgdat(lruvec);
3109ac35a490SYu Zhao 
3110ac35a490SYu Zhao 	if (!can_demote(pgdat->node_id, sc) &&
3111ac35a490SYu Zhao 	    mem_cgroup_get_nr_swap_pages(memcg) < MIN_LRU_BATCH)
3112ac35a490SYu Zhao 		return 0;
3113ac35a490SYu Zhao 
3114ac35a490SYu Zhao 	return mem_cgroup_swappiness(memcg);
3115ac35a490SYu Zhao }
3116ac35a490SYu Zhao 
3117ac35a490SYu Zhao static int get_nr_gens(struct lruvec *lruvec, int type)
3118ac35a490SYu Zhao {
3119ac35a490SYu Zhao 	return lruvec->lrugen.max_seq - lruvec->lrugen.min_seq[type] + 1;
3120ac35a490SYu Zhao }
3121ac35a490SYu Zhao 
3122ac35a490SYu Zhao static bool __maybe_unused seq_is_valid(struct lruvec *lruvec)
3123ac35a490SYu Zhao {
3124ac35a490SYu Zhao 	/* see the comment on lru_gen_struct */
3125ac35a490SYu Zhao 	return get_nr_gens(lruvec, LRU_GEN_FILE) >= MIN_NR_GENS &&
3126ac35a490SYu Zhao 	       get_nr_gens(lruvec, LRU_GEN_FILE) <= get_nr_gens(lruvec, LRU_GEN_ANON) &&
3127ac35a490SYu Zhao 	       get_nr_gens(lruvec, LRU_GEN_ANON) <= MAX_NR_GENS;
3128ac35a490SYu Zhao }
3129ac35a490SYu Zhao 
3130ac35a490SYu Zhao /******************************************************************************
3131ac35a490SYu Zhao  *                          refault feedback loop
3132ac35a490SYu Zhao  ******************************************************************************/
3133ac35a490SYu Zhao 
3134ac35a490SYu Zhao /*
3135ac35a490SYu Zhao  * A feedback loop based on Proportional-Integral-Derivative (PID) controller.
3136ac35a490SYu Zhao  *
3137ac35a490SYu Zhao  * The P term is refaulted/(evicted+protected) from a tier in the generation
3138ac35a490SYu Zhao  * currently being evicted; the I term is the exponential moving average of the
3139ac35a490SYu Zhao  * P term over the generations previously evicted, using the smoothing factor
3140ac35a490SYu Zhao  * 1/2; the D term isn't supported.
3141ac35a490SYu Zhao  *
3142ac35a490SYu Zhao  * The setpoint (SP) is always the first tier of one type; the process variable
3143ac35a490SYu Zhao  * (PV) is either any tier of the other type or any other tier of the same
3144ac35a490SYu Zhao  * type.
3145ac35a490SYu Zhao  *
3146ac35a490SYu Zhao  * The error is the difference between the SP and the PV; the correction is to
3147ac35a490SYu Zhao  * turn off protection when SP>PV or turn on protection when SP<PV.
3148ac35a490SYu Zhao  *
3149ac35a490SYu Zhao  * For future optimizations:
3150ac35a490SYu Zhao  * 1. The D term may discount the other two terms over time so that long-lived
3151ac35a490SYu Zhao  *    generations can resist stale information.
3152ac35a490SYu Zhao  */
3153ac35a490SYu Zhao struct ctrl_pos {
3154ac35a490SYu Zhao 	unsigned long refaulted;
3155ac35a490SYu Zhao 	unsigned long total;
3156ac35a490SYu Zhao 	int gain;
3157ac35a490SYu Zhao };
3158ac35a490SYu Zhao 
3159ac35a490SYu Zhao static void read_ctrl_pos(struct lruvec *lruvec, int type, int tier, int gain,
3160ac35a490SYu Zhao 			  struct ctrl_pos *pos)
3161ac35a490SYu Zhao {
3162ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3163ac35a490SYu Zhao 	int hist = lru_hist_from_seq(lrugen->min_seq[type]);
3164ac35a490SYu Zhao 
3165ac35a490SYu Zhao 	pos->refaulted = lrugen->avg_refaulted[type][tier] +
3166ac35a490SYu Zhao 			 atomic_long_read(&lrugen->refaulted[hist][type][tier]);
3167ac35a490SYu Zhao 	pos->total = lrugen->avg_total[type][tier] +
3168ac35a490SYu Zhao 		     atomic_long_read(&lrugen->evicted[hist][type][tier]);
3169ac35a490SYu Zhao 	if (tier)
3170ac35a490SYu Zhao 		pos->total += lrugen->protected[hist][type][tier - 1];
3171ac35a490SYu Zhao 	pos->gain = gain;
3172ac35a490SYu Zhao }
3173ac35a490SYu Zhao 
3174ac35a490SYu Zhao static void reset_ctrl_pos(struct lruvec *lruvec, int type, bool carryover)
3175ac35a490SYu Zhao {
3176ac35a490SYu Zhao 	int hist, tier;
3177ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3178ac35a490SYu Zhao 	bool clear = carryover ? NR_HIST_GENS == 1 : NR_HIST_GENS > 1;
3179ac35a490SYu Zhao 	unsigned long seq = carryover ? lrugen->min_seq[type] : lrugen->max_seq + 1;
3180ac35a490SYu Zhao 
3181ac35a490SYu Zhao 	lockdep_assert_held(&lruvec->lru_lock);
3182ac35a490SYu Zhao 
3183ac35a490SYu Zhao 	if (!carryover && !clear)
3184ac35a490SYu Zhao 		return;
3185ac35a490SYu Zhao 
3186ac35a490SYu Zhao 	hist = lru_hist_from_seq(seq);
3187ac35a490SYu Zhao 
3188ac35a490SYu Zhao 	for (tier = 0; tier < MAX_NR_TIERS; tier++) {
3189ac35a490SYu Zhao 		if (carryover) {
3190ac35a490SYu Zhao 			unsigned long sum;
3191ac35a490SYu Zhao 
3192ac35a490SYu Zhao 			sum = lrugen->avg_refaulted[type][tier] +
3193ac35a490SYu Zhao 			      atomic_long_read(&lrugen->refaulted[hist][type][tier]);
3194ac35a490SYu Zhao 			WRITE_ONCE(lrugen->avg_refaulted[type][tier], sum / 2);
3195ac35a490SYu Zhao 
3196ac35a490SYu Zhao 			sum = lrugen->avg_total[type][tier] +
3197ac35a490SYu Zhao 			      atomic_long_read(&lrugen->evicted[hist][type][tier]);
3198ac35a490SYu Zhao 			if (tier)
3199ac35a490SYu Zhao 				sum += lrugen->protected[hist][type][tier - 1];
3200ac35a490SYu Zhao 			WRITE_ONCE(lrugen->avg_total[type][tier], sum / 2);
3201ac35a490SYu Zhao 		}
3202ac35a490SYu Zhao 
3203ac35a490SYu Zhao 		if (clear) {
3204ac35a490SYu Zhao 			atomic_long_set(&lrugen->refaulted[hist][type][tier], 0);
3205ac35a490SYu Zhao 			atomic_long_set(&lrugen->evicted[hist][type][tier], 0);
3206ac35a490SYu Zhao 			if (tier)
3207ac35a490SYu Zhao 				WRITE_ONCE(lrugen->protected[hist][type][tier - 1], 0);
3208ac35a490SYu Zhao 		}
3209ac35a490SYu Zhao 	}
3210ac35a490SYu Zhao }
3211ac35a490SYu Zhao 
3212ac35a490SYu Zhao static bool positive_ctrl_err(struct ctrl_pos *sp, struct ctrl_pos *pv)
3213ac35a490SYu Zhao {
3214ac35a490SYu Zhao 	/*
3215ac35a490SYu Zhao 	 * Return true if the PV has a limited number of refaults or a lower
3216ac35a490SYu Zhao 	 * refaulted/total than the SP.
3217ac35a490SYu Zhao 	 */
3218ac35a490SYu Zhao 	return pv->refaulted < MIN_LRU_BATCH ||
3219ac35a490SYu Zhao 	       pv->refaulted * (sp->total + MIN_LRU_BATCH) * sp->gain <=
3220ac35a490SYu Zhao 	       (sp->refaulted + 1) * pv->total * pv->gain;
3221ac35a490SYu Zhao }
3222ac35a490SYu Zhao 
3223ac35a490SYu Zhao /******************************************************************************
3224ac35a490SYu Zhao  *                          the aging
3225ac35a490SYu Zhao  ******************************************************************************/
3226ac35a490SYu Zhao 
3227*018ee47fSYu Zhao /* promote pages accessed through page tables */
3228*018ee47fSYu Zhao static int folio_update_gen(struct folio *folio, int gen)
3229*018ee47fSYu Zhao {
3230*018ee47fSYu Zhao 	unsigned long new_flags, old_flags = READ_ONCE(folio->flags);
3231*018ee47fSYu Zhao 
3232*018ee47fSYu Zhao 	VM_WARN_ON_ONCE(gen >= MAX_NR_GENS);
3233*018ee47fSYu Zhao 	VM_WARN_ON_ONCE(!rcu_read_lock_held());
3234*018ee47fSYu Zhao 
3235*018ee47fSYu Zhao 	do {
3236*018ee47fSYu Zhao 		/* lru_gen_del_folio() has isolated this page? */
3237*018ee47fSYu Zhao 		if (!(old_flags & LRU_GEN_MASK)) {
3238*018ee47fSYu Zhao 			/* for shrink_page_list() */
3239*018ee47fSYu Zhao 			new_flags = old_flags | BIT(PG_referenced);
3240*018ee47fSYu Zhao 			continue;
3241*018ee47fSYu Zhao 		}
3242*018ee47fSYu Zhao 
3243*018ee47fSYu Zhao 		new_flags = old_flags & ~(LRU_GEN_MASK | LRU_REFS_MASK | LRU_REFS_FLAGS);
3244*018ee47fSYu Zhao 		new_flags |= (gen + 1UL) << LRU_GEN_PGOFF;
3245*018ee47fSYu Zhao 	} while (!try_cmpxchg(&folio->flags, &old_flags, new_flags));
3246*018ee47fSYu Zhao 
3247*018ee47fSYu Zhao 	return ((old_flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1;
3248*018ee47fSYu Zhao }
3249*018ee47fSYu Zhao 
3250ac35a490SYu Zhao /* protect pages accessed multiple times through file descriptors */
3251ac35a490SYu Zhao static int folio_inc_gen(struct lruvec *lruvec, struct folio *folio, bool reclaiming)
3252ac35a490SYu Zhao {
3253ac35a490SYu Zhao 	int type = folio_is_file_lru(folio);
3254ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3255ac35a490SYu Zhao 	int new_gen, old_gen = lru_gen_from_seq(lrugen->min_seq[type]);
3256ac35a490SYu Zhao 	unsigned long new_flags, old_flags = READ_ONCE(folio->flags);
3257ac35a490SYu Zhao 
3258ac35a490SYu Zhao 	VM_WARN_ON_ONCE_FOLIO(!(old_flags & LRU_GEN_MASK), folio);
3259ac35a490SYu Zhao 
3260ac35a490SYu Zhao 	do {
3261*018ee47fSYu Zhao 		new_gen = ((old_flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1;
3262*018ee47fSYu Zhao 		/* folio_update_gen() has promoted this page? */
3263*018ee47fSYu Zhao 		if (new_gen >= 0 && new_gen != old_gen)
3264*018ee47fSYu Zhao 			return new_gen;
3265*018ee47fSYu Zhao 
3266ac35a490SYu Zhao 		new_gen = (old_gen + 1) % MAX_NR_GENS;
3267ac35a490SYu Zhao 
3268ac35a490SYu Zhao 		new_flags = old_flags & ~(LRU_GEN_MASK | LRU_REFS_MASK | LRU_REFS_FLAGS);
3269ac35a490SYu Zhao 		new_flags |= (new_gen + 1UL) << LRU_GEN_PGOFF;
3270ac35a490SYu Zhao 		/* for folio_end_writeback() */
3271ac35a490SYu Zhao 		if (reclaiming)
3272ac35a490SYu Zhao 			new_flags |= BIT(PG_reclaim);
3273ac35a490SYu Zhao 	} while (!try_cmpxchg(&folio->flags, &old_flags, new_flags));
3274ac35a490SYu Zhao 
3275ac35a490SYu Zhao 	lru_gen_update_size(lruvec, folio, old_gen, new_gen);
3276ac35a490SYu Zhao 
3277ac35a490SYu Zhao 	return new_gen;
3278ac35a490SYu Zhao }
3279ac35a490SYu Zhao 
3280*018ee47fSYu Zhao static unsigned long get_pte_pfn(pte_t pte, struct vm_area_struct *vma, unsigned long addr)
3281*018ee47fSYu Zhao {
3282*018ee47fSYu Zhao 	unsigned long pfn = pte_pfn(pte);
3283*018ee47fSYu Zhao 
3284*018ee47fSYu Zhao 	VM_WARN_ON_ONCE(addr < vma->vm_start || addr >= vma->vm_end);
3285*018ee47fSYu Zhao 
3286*018ee47fSYu Zhao 	if (!pte_present(pte) || is_zero_pfn(pfn))
3287*018ee47fSYu Zhao 		return -1;
3288*018ee47fSYu Zhao 
3289*018ee47fSYu Zhao 	if (WARN_ON_ONCE(pte_devmap(pte) || pte_special(pte)))
3290*018ee47fSYu Zhao 		return -1;
3291*018ee47fSYu Zhao 
3292*018ee47fSYu Zhao 	if (WARN_ON_ONCE(!pfn_valid(pfn)))
3293*018ee47fSYu Zhao 		return -1;
3294*018ee47fSYu Zhao 
3295*018ee47fSYu Zhao 	return pfn;
3296*018ee47fSYu Zhao }
3297*018ee47fSYu Zhao 
3298*018ee47fSYu Zhao static struct folio *get_pfn_folio(unsigned long pfn, struct mem_cgroup *memcg,
3299*018ee47fSYu Zhao 				   struct pglist_data *pgdat)
3300*018ee47fSYu Zhao {
3301*018ee47fSYu Zhao 	struct folio *folio;
3302*018ee47fSYu Zhao 
3303*018ee47fSYu Zhao 	/* try to avoid unnecessary memory loads */
3304*018ee47fSYu Zhao 	if (pfn < pgdat->node_start_pfn || pfn >= pgdat_end_pfn(pgdat))
3305*018ee47fSYu Zhao 		return NULL;
3306*018ee47fSYu Zhao 
3307*018ee47fSYu Zhao 	folio = pfn_folio(pfn);
3308*018ee47fSYu Zhao 	if (folio_nid(folio) != pgdat->node_id)
3309*018ee47fSYu Zhao 		return NULL;
3310*018ee47fSYu Zhao 
3311*018ee47fSYu Zhao 	if (folio_memcg_rcu(folio) != memcg)
3312*018ee47fSYu Zhao 		return NULL;
3313*018ee47fSYu Zhao 
3314*018ee47fSYu Zhao 	return folio;
3315*018ee47fSYu Zhao }
3316*018ee47fSYu Zhao 
3317ac35a490SYu Zhao static void inc_min_seq(struct lruvec *lruvec, int type)
3318ac35a490SYu Zhao {
3319ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3320ac35a490SYu Zhao 
3321ac35a490SYu Zhao 	reset_ctrl_pos(lruvec, type, true);
3322ac35a490SYu Zhao 	WRITE_ONCE(lrugen->min_seq[type], lrugen->min_seq[type] + 1);
3323ac35a490SYu Zhao }
3324ac35a490SYu Zhao 
3325ac35a490SYu Zhao static bool try_to_inc_min_seq(struct lruvec *lruvec, bool can_swap)
3326ac35a490SYu Zhao {
3327ac35a490SYu Zhao 	int gen, type, zone;
3328ac35a490SYu Zhao 	bool success = false;
3329ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3330ac35a490SYu Zhao 	DEFINE_MIN_SEQ(lruvec);
3331ac35a490SYu Zhao 
3332ac35a490SYu Zhao 	VM_WARN_ON_ONCE(!seq_is_valid(lruvec));
3333ac35a490SYu Zhao 
3334ac35a490SYu Zhao 	/* find the oldest populated generation */
3335ac35a490SYu Zhao 	for (type = !can_swap; type < ANON_AND_FILE; type++) {
3336ac35a490SYu Zhao 		while (min_seq[type] + MIN_NR_GENS <= lrugen->max_seq) {
3337ac35a490SYu Zhao 			gen = lru_gen_from_seq(min_seq[type]);
3338ac35a490SYu Zhao 
3339ac35a490SYu Zhao 			for (zone = 0; zone < MAX_NR_ZONES; zone++) {
3340ac35a490SYu Zhao 				if (!list_empty(&lrugen->lists[gen][type][zone]))
3341ac35a490SYu Zhao 					goto next;
3342ac35a490SYu Zhao 			}
3343ac35a490SYu Zhao 
3344ac35a490SYu Zhao 			min_seq[type]++;
3345ac35a490SYu Zhao 		}
3346ac35a490SYu Zhao next:
3347ac35a490SYu Zhao 		;
3348ac35a490SYu Zhao 	}
3349ac35a490SYu Zhao 
3350ac35a490SYu Zhao 	/* see the comment on lru_gen_struct */
3351ac35a490SYu Zhao 	if (can_swap) {
3352ac35a490SYu Zhao 		min_seq[LRU_GEN_ANON] = min(min_seq[LRU_GEN_ANON], min_seq[LRU_GEN_FILE]);
3353ac35a490SYu Zhao 		min_seq[LRU_GEN_FILE] = max(min_seq[LRU_GEN_ANON], lrugen->min_seq[LRU_GEN_FILE]);
3354ac35a490SYu Zhao 	}
3355ac35a490SYu Zhao 
3356ac35a490SYu Zhao 	for (type = !can_swap; type < ANON_AND_FILE; type++) {
3357ac35a490SYu Zhao 		if (min_seq[type] == lrugen->min_seq[type])
3358ac35a490SYu Zhao 			continue;
3359ac35a490SYu Zhao 
3360ac35a490SYu Zhao 		reset_ctrl_pos(lruvec, type, true);
3361ac35a490SYu Zhao 		WRITE_ONCE(lrugen->min_seq[type], min_seq[type]);
3362ac35a490SYu Zhao 		success = true;
3363ac35a490SYu Zhao 	}
3364ac35a490SYu Zhao 
3365ac35a490SYu Zhao 	return success;
3366ac35a490SYu Zhao }
3367ac35a490SYu Zhao 
3368ac35a490SYu Zhao static void inc_max_seq(struct lruvec *lruvec, unsigned long max_seq, bool can_swap)
3369ac35a490SYu Zhao {
3370ac35a490SYu Zhao 	int prev, next;
3371ac35a490SYu Zhao 	int type, zone;
3372ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3373ac35a490SYu Zhao 
3374ac35a490SYu Zhao 	spin_lock_irq(&lruvec->lru_lock);
3375ac35a490SYu Zhao 
3376ac35a490SYu Zhao 	VM_WARN_ON_ONCE(!seq_is_valid(lruvec));
3377ac35a490SYu Zhao 
3378ac35a490SYu Zhao 	if (max_seq != lrugen->max_seq)
3379ac35a490SYu Zhao 		goto unlock;
3380ac35a490SYu Zhao 
3381ac35a490SYu Zhao 	for (type = ANON_AND_FILE - 1; type >= 0; type--) {
3382ac35a490SYu Zhao 		if (get_nr_gens(lruvec, type) != MAX_NR_GENS)
3383ac35a490SYu Zhao 			continue;
3384ac35a490SYu Zhao 
3385ac35a490SYu Zhao 		VM_WARN_ON_ONCE(type == LRU_GEN_FILE || can_swap);
3386ac35a490SYu Zhao 
3387ac35a490SYu Zhao 		inc_min_seq(lruvec, type);
3388ac35a490SYu Zhao 	}
3389ac35a490SYu Zhao 
3390ac35a490SYu Zhao 	/*
3391ac35a490SYu Zhao 	 * Update the active/inactive LRU sizes for compatibility. Both sides of
3392ac35a490SYu Zhao 	 * the current max_seq need to be covered, since max_seq+1 can overlap
3393ac35a490SYu Zhao 	 * with min_seq[LRU_GEN_ANON] if swapping is constrained. And if they do
3394ac35a490SYu Zhao 	 * overlap, cold/hot inversion happens.
3395ac35a490SYu Zhao 	 */
3396ac35a490SYu Zhao 	prev = lru_gen_from_seq(lrugen->max_seq - 1);
3397ac35a490SYu Zhao 	next = lru_gen_from_seq(lrugen->max_seq + 1);
3398ac35a490SYu Zhao 
3399ac35a490SYu Zhao 	for (type = 0; type < ANON_AND_FILE; type++) {
3400ac35a490SYu Zhao 		for (zone = 0; zone < MAX_NR_ZONES; zone++) {
3401ac35a490SYu Zhao 			enum lru_list lru = type * LRU_INACTIVE_FILE;
3402ac35a490SYu Zhao 			long delta = lrugen->nr_pages[prev][type][zone] -
3403ac35a490SYu Zhao 				     lrugen->nr_pages[next][type][zone];
3404ac35a490SYu Zhao 
3405ac35a490SYu Zhao 			if (!delta)
3406ac35a490SYu Zhao 				continue;
3407ac35a490SYu Zhao 
3408ac35a490SYu Zhao 			__update_lru_size(lruvec, lru, zone, delta);
3409ac35a490SYu Zhao 			__update_lru_size(lruvec, lru + LRU_ACTIVE, zone, -delta);
3410ac35a490SYu Zhao 		}
3411ac35a490SYu Zhao 	}
3412ac35a490SYu Zhao 
3413ac35a490SYu Zhao 	for (type = 0; type < ANON_AND_FILE; type++)
3414ac35a490SYu Zhao 		reset_ctrl_pos(lruvec, type, false);
3415ac35a490SYu Zhao 
3416ac35a490SYu Zhao 	/* make sure preceding modifications appear */
3417ac35a490SYu Zhao 	smp_store_release(&lrugen->max_seq, lrugen->max_seq + 1);
3418ac35a490SYu Zhao unlock:
3419ac35a490SYu Zhao 	spin_unlock_irq(&lruvec->lru_lock);
3420ac35a490SYu Zhao }
3421ac35a490SYu Zhao 
3422ac35a490SYu Zhao static bool should_run_aging(struct lruvec *lruvec, unsigned long max_seq, unsigned long *min_seq,
3423ac35a490SYu Zhao 			     struct scan_control *sc, bool can_swap, unsigned long *nr_to_scan)
3424ac35a490SYu Zhao {
3425ac35a490SYu Zhao 	int gen, type, zone;
3426ac35a490SYu Zhao 	unsigned long old = 0;
3427ac35a490SYu Zhao 	unsigned long young = 0;
3428ac35a490SYu Zhao 	unsigned long total = 0;
3429ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3430ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3431ac35a490SYu Zhao 
3432ac35a490SYu Zhao 	for (type = !can_swap; type < ANON_AND_FILE; type++) {
3433ac35a490SYu Zhao 		unsigned long seq;
3434ac35a490SYu Zhao 
3435ac35a490SYu Zhao 		for (seq = min_seq[type]; seq <= max_seq; seq++) {
3436ac35a490SYu Zhao 			unsigned long size = 0;
3437ac35a490SYu Zhao 
3438ac35a490SYu Zhao 			gen = lru_gen_from_seq(seq);
3439ac35a490SYu Zhao 
3440ac35a490SYu Zhao 			for (zone = 0; zone < MAX_NR_ZONES; zone++)
3441ac35a490SYu Zhao 				size += max(READ_ONCE(lrugen->nr_pages[gen][type][zone]), 0L);
3442ac35a490SYu Zhao 
3443ac35a490SYu Zhao 			total += size;
3444ac35a490SYu Zhao 			if (seq == max_seq)
3445ac35a490SYu Zhao 				young += size;
3446ac35a490SYu Zhao 			else if (seq + MIN_NR_GENS == max_seq)
3447ac35a490SYu Zhao 				old += size;
3448ac35a490SYu Zhao 		}
3449ac35a490SYu Zhao 	}
3450ac35a490SYu Zhao 
3451ac35a490SYu Zhao 	/* try to scrape all its memory if this memcg was deleted */
3452ac35a490SYu Zhao 	*nr_to_scan = mem_cgroup_online(memcg) ? (total >> sc->priority) : total;
3453ac35a490SYu Zhao 
3454ac35a490SYu Zhao 	/*
3455ac35a490SYu Zhao 	 * The aging tries to be lazy to reduce the overhead, while the eviction
3456ac35a490SYu Zhao 	 * stalls when the number of generations reaches MIN_NR_GENS. Hence, the
3457ac35a490SYu Zhao 	 * ideal number of generations is MIN_NR_GENS+1.
3458ac35a490SYu Zhao 	 */
3459ac35a490SYu Zhao 	if (min_seq[!can_swap] + MIN_NR_GENS > max_seq)
3460ac35a490SYu Zhao 		return true;
3461ac35a490SYu Zhao 	if (min_seq[!can_swap] + MIN_NR_GENS < max_seq)
3462ac35a490SYu Zhao 		return false;
3463ac35a490SYu Zhao 
3464ac35a490SYu Zhao 	/*
3465ac35a490SYu Zhao 	 * It's also ideal to spread pages out evenly, i.e., 1/(MIN_NR_GENS+1)
3466ac35a490SYu Zhao 	 * of the total number of pages for each generation. A reasonable range
3467ac35a490SYu Zhao 	 * for this average portion is [1/MIN_NR_GENS, 1/(MIN_NR_GENS+2)]. The
3468ac35a490SYu Zhao 	 * aging cares about the upper bound of hot pages, while the eviction
3469ac35a490SYu Zhao 	 * cares about the lower bound of cold pages.
3470ac35a490SYu Zhao 	 */
3471ac35a490SYu Zhao 	if (young * MIN_NR_GENS > total)
3472ac35a490SYu Zhao 		return true;
3473ac35a490SYu Zhao 	if (old * (MIN_NR_GENS + 2) < total)
3474ac35a490SYu Zhao 		return true;
3475ac35a490SYu Zhao 
3476ac35a490SYu Zhao 	return false;
3477ac35a490SYu Zhao }
3478ac35a490SYu Zhao 
3479ac35a490SYu Zhao static void age_lruvec(struct lruvec *lruvec, struct scan_control *sc)
3480ac35a490SYu Zhao {
3481ac35a490SYu Zhao 	bool need_aging;
3482ac35a490SYu Zhao 	unsigned long nr_to_scan;
3483ac35a490SYu Zhao 	int swappiness = get_swappiness(lruvec, sc);
3484ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3485ac35a490SYu Zhao 	DEFINE_MAX_SEQ(lruvec);
3486ac35a490SYu Zhao 	DEFINE_MIN_SEQ(lruvec);
3487ac35a490SYu Zhao 
3488ac35a490SYu Zhao 	VM_WARN_ON_ONCE(sc->memcg_low_reclaim);
3489ac35a490SYu Zhao 
3490ac35a490SYu Zhao 	mem_cgroup_calculate_protection(NULL, memcg);
3491ac35a490SYu Zhao 
3492ac35a490SYu Zhao 	if (mem_cgroup_below_min(memcg))
3493ac35a490SYu Zhao 		return;
3494ac35a490SYu Zhao 
3495ac35a490SYu Zhao 	need_aging = should_run_aging(lruvec, max_seq, min_seq, sc, swappiness, &nr_to_scan);
3496ac35a490SYu Zhao 	if (need_aging)
3497ac35a490SYu Zhao 		inc_max_seq(lruvec, max_seq, swappiness);
3498ac35a490SYu Zhao }
3499ac35a490SYu Zhao 
3500ac35a490SYu Zhao static void lru_gen_age_node(struct pglist_data *pgdat, struct scan_control *sc)
3501ac35a490SYu Zhao {
3502ac35a490SYu Zhao 	struct mem_cgroup *memcg;
3503ac35a490SYu Zhao 
3504ac35a490SYu Zhao 	VM_WARN_ON_ONCE(!current_is_kswapd());
3505ac35a490SYu Zhao 
3506ac35a490SYu Zhao 	memcg = mem_cgroup_iter(NULL, NULL, NULL);
3507ac35a490SYu Zhao 	do {
3508ac35a490SYu Zhao 		struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
3509ac35a490SYu Zhao 
3510ac35a490SYu Zhao 		age_lruvec(lruvec, sc);
3511ac35a490SYu Zhao 
3512ac35a490SYu Zhao 		cond_resched();
3513ac35a490SYu Zhao 	} while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)));
3514ac35a490SYu Zhao }
3515ac35a490SYu Zhao 
3516*018ee47fSYu Zhao /*
3517*018ee47fSYu Zhao  * This function exploits spatial locality when shrink_page_list() walks the
3518*018ee47fSYu Zhao  * rmap. It scans the adjacent PTEs of a young PTE and promotes hot pages.
3519*018ee47fSYu Zhao  */
3520*018ee47fSYu Zhao void lru_gen_look_around(struct page_vma_mapped_walk *pvmw)
3521*018ee47fSYu Zhao {
3522*018ee47fSYu Zhao 	int i;
3523*018ee47fSYu Zhao 	pte_t *pte;
3524*018ee47fSYu Zhao 	unsigned long start;
3525*018ee47fSYu Zhao 	unsigned long end;
3526*018ee47fSYu Zhao 	unsigned long addr;
3527*018ee47fSYu Zhao 	unsigned long bitmap[BITS_TO_LONGS(MIN_LRU_BATCH)] = {};
3528*018ee47fSYu Zhao 	struct folio *folio = pfn_folio(pvmw->pfn);
3529*018ee47fSYu Zhao 	struct mem_cgroup *memcg = folio_memcg(folio);
3530*018ee47fSYu Zhao 	struct pglist_data *pgdat = folio_pgdat(folio);
3531*018ee47fSYu Zhao 	struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
3532*018ee47fSYu Zhao 	DEFINE_MAX_SEQ(lruvec);
3533*018ee47fSYu Zhao 	int old_gen, new_gen = lru_gen_from_seq(max_seq);
3534*018ee47fSYu Zhao 
3535*018ee47fSYu Zhao 	lockdep_assert_held(pvmw->ptl);
3536*018ee47fSYu Zhao 	VM_WARN_ON_ONCE_FOLIO(folio_test_lru(folio), folio);
3537*018ee47fSYu Zhao 
3538*018ee47fSYu Zhao 	if (spin_is_contended(pvmw->ptl))
3539*018ee47fSYu Zhao 		return;
3540*018ee47fSYu Zhao 
3541*018ee47fSYu Zhao 	start = max(pvmw->address & PMD_MASK, pvmw->vma->vm_start);
3542*018ee47fSYu Zhao 	end = min(pvmw->address | ~PMD_MASK, pvmw->vma->vm_end - 1) + 1;
3543*018ee47fSYu Zhao 
3544*018ee47fSYu Zhao 	if (end - start > MIN_LRU_BATCH * PAGE_SIZE) {
3545*018ee47fSYu Zhao 		if (pvmw->address - start < MIN_LRU_BATCH * PAGE_SIZE / 2)
3546*018ee47fSYu Zhao 			end = start + MIN_LRU_BATCH * PAGE_SIZE;
3547*018ee47fSYu Zhao 		else if (end - pvmw->address < MIN_LRU_BATCH * PAGE_SIZE / 2)
3548*018ee47fSYu Zhao 			start = end - MIN_LRU_BATCH * PAGE_SIZE;
3549*018ee47fSYu Zhao 		else {
3550*018ee47fSYu Zhao 			start = pvmw->address - MIN_LRU_BATCH * PAGE_SIZE / 2;
3551*018ee47fSYu Zhao 			end = pvmw->address + MIN_LRU_BATCH * PAGE_SIZE / 2;
3552*018ee47fSYu Zhao 		}
3553*018ee47fSYu Zhao 	}
3554*018ee47fSYu Zhao 
3555*018ee47fSYu Zhao 	pte = pvmw->pte - (pvmw->address - start) / PAGE_SIZE;
3556*018ee47fSYu Zhao 
3557*018ee47fSYu Zhao 	rcu_read_lock();
3558*018ee47fSYu Zhao 	arch_enter_lazy_mmu_mode();
3559*018ee47fSYu Zhao 
3560*018ee47fSYu Zhao 	for (i = 0, addr = start; addr != end; i++, addr += PAGE_SIZE) {
3561*018ee47fSYu Zhao 		unsigned long pfn;
3562*018ee47fSYu Zhao 
3563*018ee47fSYu Zhao 		pfn = get_pte_pfn(pte[i], pvmw->vma, addr);
3564*018ee47fSYu Zhao 		if (pfn == -1)
3565*018ee47fSYu Zhao 			continue;
3566*018ee47fSYu Zhao 
3567*018ee47fSYu Zhao 		if (!pte_young(pte[i]))
3568*018ee47fSYu Zhao 			continue;
3569*018ee47fSYu Zhao 
3570*018ee47fSYu Zhao 		folio = get_pfn_folio(pfn, memcg, pgdat);
3571*018ee47fSYu Zhao 		if (!folio)
3572*018ee47fSYu Zhao 			continue;
3573*018ee47fSYu Zhao 
3574*018ee47fSYu Zhao 		if (!ptep_test_and_clear_young(pvmw->vma, addr, pte + i))
3575*018ee47fSYu Zhao 			VM_WARN_ON_ONCE(true);
3576*018ee47fSYu Zhao 
3577*018ee47fSYu Zhao 		if (pte_dirty(pte[i]) && !folio_test_dirty(folio) &&
3578*018ee47fSYu Zhao 		    !(folio_test_anon(folio) && folio_test_swapbacked(folio) &&
3579*018ee47fSYu Zhao 		      !folio_test_swapcache(folio)))
3580*018ee47fSYu Zhao 			folio_mark_dirty(folio);
3581*018ee47fSYu Zhao 
3582*018ee47fSYu Zhao 		old_gen = folio_lru_gen(folio);
3583*018ee47fSYu Zhao 		if (old_gen < 0)
3584*018ee47fSYu Zhao 			folio_set_referenced(folio);
3585*018ee47fSYu Zhao 		else if (old_gen != new_gen)
3586*018ee47fSYu Zhao 			__set_bit(i, bitmap);
3587*018ee47fSYu Zhao 	}
3588*018ee47fSYu Zhao 
3589*018ee47fSYu Zhao 	arch_leave_lazy_mmu_mode();
3590*018ee47fSYu Zhao 	rcu_read_unlock();
3591*018ee47fSYu Zhao 
3592*018ee47fSYu Zhao 	if (bitmap_weight(bitmap, MIN_LRU_BATCH) < PAGEVEC_SIZE) {
3593*018ee47fSYu Zhao 		for_each_set_bit(i, bitmap, MIN_LRU_BATCH) {
3594*018ee47fSYu Zhao 			folio = pfn_folio(pte_pfn(pte[i]));
3595*018ee47fSYu Zhao 			folio_activate(folio);
3596*018ee47fSYu Zhao 		}
3597*018ee47fSYu Zhao 		return;
3598*018ee47fSYu Zhao 	}
3599*018ee47fSYu Zhao 
3600*018ee47fSYu Zhao 	/* folio_update_gen() requires stable folio_memcg() */
3601*018ee47fSYu Zhao 	if (!mem_cgroup_trylock_pages(memcg))
3602*018ee47fSYu Zhao 		return;
3603*018ee47fSYu Zhao 
3604*018ee47fSYu Zhao 	spin_lock_irq(&lruvec->lru_lock);
3605*018ee47fSYu Zhao 	new_gen = lru_gen_from_seq(lruvec->lrugen.max_seq);
3606*018ee47fSYu Zhao 
3607*018ee47fSYu Zhao 	for_each_set_bit(i, bitmap, MIN_LRU_BATCH) {
3608*018ee47fSYu Zhao 		folio = pfn_folio(pte_pfn(pte[i]));
3609*018ee47fSYu Zhao 		if (folio_memcg_rcu(folio) != memcg)
3610*018ee47fSYu Zhao 			continue;
3611*018ee47fSYu Zhao 
3612*018ee47fSYu Zhao 		old_gen = folio_update_gen(folio, new_gen);
3613*018ee47fSYu Zhao 		if (old_gen < 0 || old_gen == new_gen)
3614*018ee47fSYu Zhao 			continue;
3615*018ee47fSYu Zhao 
3616*018ee47fSYu Zhao 		lru_gen_update_size(lruvec, folio, old_gen, new_gen);
3617*018ee47fSYu Zhao 	}
3618*018ee47fSYu Zhao 
3619*018ee47fSYu Zhao 	spin_unlock_irq(&lruvec->lru_lock);
3620*018ee47fSYu Zhao 
3621*018ee47fSYu Zhao 	mem_cgroup_unlock_pages();
3622*018ee47fSYu Zhao }
3623*018ee47fSYu Zhao 
3624ac35a490SYu Zhao /******************************************************************************
3625ac35a490SYu Zhao  *                          the eviction
3626ac35a490SYu Zhao  ******************************************************************************/
3627ac35a490SYu Zhao 
3628ac35a490SYu Zhao static bool sort_folio(struct lruvec *lruvec, struct folio *folio, int tier_idx)
3629ac35a490SYu Zhao {
3630ac35a490SYu Zhao 	bool success;
3631ac35a490SYu Zhao 	int gen = folio_lru_gen(folio);
3632ac35a490SYu Zhao 	int type = folio_is_file_lru(folio);
3633ac35a490SYu Zhao 	int zone = folio_zonenum(folio);
3634ac35a490SYu Zhao 	int delta = folio_nr_pages(folio);
3635ac35a490SYu Zhao 	int refs = folio_lru_refs(folio);
3636ac35a490SYu Zhao 	int tier = lru_tier_from_refs(refs);
3637ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3638ac35a490SYu Zhao 
3639ac35a490SYu Zhao 	VM_WARN_ON_ONCE_FOLIO(gen >= MAX_NR_GENS, folio);
3640ac35a490SYu Zhao 
3641ac35a490SYu Zhao 	/* unevictable */
3642ac35a490SYu Zhao 	if (!folio_evictable(folio)) {
3643ac35a490SYu Zhao 		success = lru_gen_del_folio(lruvec, folio, true);
3644ac35a490SYu Zhao 		VM_WARN_ON_ONCE_FOLIO(!success, folio);
3645ac35a490SYu Zhao 		folio_set_unevictable(folio);
3646ac35a490SYu Zhao 		lruvec_add_folio(lruvec, folio);
3647ac35a490SYu Zhao 		__count_vm_events(UNEVICTABLE_PGCULLED, delta);
3648ac35a490SYu Zhao 		return true;
3649ac35a490SYu Zhao 	}
3650ac35a490SYu Zhao 
3651ac35a490SYu Zhao 	/* dirty lazyfree */
3652ac35a490SYu Zhao 	if (type == LRU_GEN_FILE && folio_test_anon(folio) && folio_test_dirty(folio)) {
3653ac35a490SYu Zhao 		success = lru_gen_del_folio(lruvec, folio, true);
3654ac35a490SYu Zhao 		VM_WARN_ON_ONCE_FOLIO(!success, folio);
3655ac35a490SYu Zhao 		folio_set_swapbacked(folio);
3656ac35a490SYu Zhao 		lruvec_add_folio_tail(lruvec, folio);
3657ac35a490SYu Zhao 		return true;
3658ac35a490SYu Zhao 	}
3659ac35a490SYu Zhao 
3660*018ee47fSYu Zhao 	/* promoted */
3661*018ee47fSYu Zhao 	if (gen != lru_gen_from_seq(lrugen->min_seq[type])) {
3662*018ee47fSYu Zhao 		list_move(&folio->lru, &lrugen->lists[gen][type][zone]);
3663*018ee47fSYu Zhao 		return true;
3664*018ee47fSYu Zhao 	}
3665*018ee47fSYu Zhao 
3666ac35a490SYu Zhao 	/* protected */
3667ac35a490SYu Zhao 	if (tier > tier_idx) {
3668ac35a490SYu Zhao 		int hist = lru_hist_from_seq(lrugen->min_seq[type]);
3669ac35a490SYu Zhao 
3670ac35a490SYu Zhao 		gen = folio_inc_gen(lruvec, folio, false);
3671ac35a490SYu Zhao 		list_move_tail(&folio->lru, &lrugen->lists[gen][type][zone]);
3672ac35a490SYu Zhao 
3673ac35a490SYu Zhao 		WRITE_ONCE(lrugen->protected[hist][type][tier - 1],
3674ac35a490SYu Zhao 			   lrugen->protected[hist][type][tier - 1] + delta);
3675ac35a490SYu Zhao 		__mod_lruvec_state(lruvec, WORKINGSET_ACTIVATE_BASE + type, delta);
3676ac35a490SYu Zhao 		return true;
3677ac35a490SYu Zhao 	}
3678ac35a490SYu Zhao 
3679ac35a490SYu Zhao 	/* waiting for writeback */
3680ac35a490SYu Zhao 	if (folio_test_locked(folio) || folio_test_writeback(folio) ||
3681ac35a490SYu Zhao 	    (type == LRU_GEN_FILE && folio_test_dirty(folio))) {
3682ac35a490SYu Zhao 		gen = folio_inc_gen(lruvec, folio, true);
3683ac35a490SYu Zhao 		list_move(&folio->lru, &lrugen->lists[gen][type][zone]);
3684ac35a490SYu Zhao 		return true;
3685ac35a490SYu Zhao 	}
3686ac35a490SYu Zhao 
3687ac35a490SYu Zhao 	return false;
3688ac35a490SYu Zhao }
3689ac35a490SYu Zhao 
3690ac35a490SYu Zhao static bool isolate_folio(struct lruvec *lruvec, struct folio *folio, struct scan_control *sc)
3691ac35a490SYu Zhao {
3692ac35a490SYu Zhao 	bool success;
3693ac35a490SYu Zhao 
3694ac35a490SYu Zhao 	/* unmapping inhibited */
3695ac35a490SYu Zhao 	if (!sc->may_unmap && folio_mapped(folio))
3696ac35a490SYu Zhao 		return false;
3697ac35a490SYu Zhao 
3698ac35a490SYu Zhao 	/* swapping inhibited */
3699ac35a490SYu Zhao 	if (!(sc->may_writepage && (sc->gfp_mask & __GFP_IO)) &&
3700ac35a490SYu Zhao 	    (folio_test_dirty(folio) ||
3701ac35a490SYu Zhao 	     (folio_test_anon(folio) && !folio_test_swapcache(folio))))
3702ac35a490SYu Zhao 		return false;
3703ac35a490SYu Zhao 
3704ac35a490SYu Zhao 	/* raced with release_pages() */
3705ac35a490SYu Zhao 	if (!folio_try_get(folio))
3706ac35a490SYu Zhao 		return false;
3707ac35a490SYu Zhao 
3708ac35a490SYu Zhao 	/* raced with another isolation */
3709ac35a490SYu Zhao 	if (!folio_test_clear_lru(folio)) {
3710ac35a490SYu Zhao 		folio_put(folio);
3711ac35a490SYu Zhao 		return false;
3712ac35a490SYu Zhao 	}
3713ac35a490SYu Zhao 
3714ac35a490SYu Zhao 	/* see the comment on MAX_NR_TIERS */
3715ac35a490SYu Zhao 	if (!folio_test_referenced(folio))
3716ac35a490SYu Zhao 		set_mask_bits(&folio->flags, LRU_REFS_MASK | LRU_REFS_FLAGS, 0);
3717ac35a490SYu Zhao 
3718ac35a490SYu Zhao 	/* for shrink_page_list() */
3719ac35a490SYu Zhao 	folio_clear_reclaim(folio);
3720ac35a490SYu Zhao 	folio_clear_referenced(folio);
3721ac35a490SYu Zhao 
3722ac35a490SYu Zhao 	success = lru_gen_del_folio(lruvec, folio, true);
3723ac35a490SYu Zhao 	VM_WARN_ON_ONCE_FOLIO(!success, folio);
3724ac35a490SYu Zhao 
3725ac35a490SYu Zhao 	return true;
3726ac35a490SYu Zhao }
3727ac35a490SYu Zhao 
3728ac35a490SYu Zhao static int scan_folios(struct lruvec *lruvec, struct scan_control *sc,
3729ac35a490SYu Zhao 		       int type, int tier, struct list_head *list)
3730ac35a490SYu Zhao {
3731ac35a490SYu Zhao 	int gen, zone;
3732ac35a490SYu Zhao 	enum vm_event_item item;
3733ac35a490SYu Zhao 	int sorted = 0;
3734ac35a490SYu Zhao 	int scanned = 0;
3735ac35a490SYu Zhao 	int isolated = 0;
3736ac35a490SYu Zhao 	int remaining = MAX_LRU_BATCH;
3737ac35a490SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
3738ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3739ac35a490SYu Zhao 
3740ac35a490SYu Zhao 	VM_WARN_ON_ONCE(!list_empty(list));
3741ac35a490SYu Zhao 
3742ac35a490SYu Zhao 	if (get_nr_gens(lruvec, type) == MIN_NR_GENS)
3743ac35a490SYu Zhao 		return 0;
3744ac35a490SYu Zhao 
3745ac35a490SYu Zhao 	gen = lru_gen_from_seq(lrugen->min_seq[type]);
3746ac35a490SYu Zhao 
3747ac35a490SYu Zhao 	for (zone = sc->reclaim_idx; zone >= 0; zone--) {
3748ac35a490SYu Zhao 		LIST_HEAD(moved);
3749ac35a490SYu Zhao 		int skipped = 0;
3750ac35a490SYu Zhao 		struct list_head *head = &lrugen->lists[gen][type][zone];
3751ac35a490SYu Zhao 
3752ac35a490SYu Zhao 		while (!list_empty(head)) {
3753ac35a490SYu Zhao 			struct folio *folio = lru_to_folio(head);
3754ac35a490SYu Zhao 			int delta = folio_nr_pages(folio);
3755ac35a490SYu Zhao 
3756ac35a490SYu Zhao 			VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio);
3757ac35a490SYu Zhao 			VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio), folio);
3758ac35a490SYu Zhao 			VM_WARN_ON_ONCE_FOLIO(folio_is_file_lru(folio) != type, folio);
3759ac35a490SYu Zhao 			VM_WARN_ON_ONCE_FOLIO(folio_zonenum(folio) != zone, folio);
3760ac35a490SYu Zhao 
3761ac35a490SYu Zhao 			scanned += delta;
3762ac35a490SYu Zhao 
3763ac35a490SYu Zhao 			if (sort_folio(lruvec, folio, tier))
3764ac35a490SYu Zhao 				sorted += delta;
3765ac35a490SYu Zhao 			else if (isolate_folio(lruvec, folio, sc)) {
3766ac35a490SYu Zhao 				list_add(&folio->lru, list);
3767ac35a490SYu Zhao 				isolated += delta;
3768ac35a490SYu Zhao 			} else {
3769ac35a490SYu Zhao 				list_move(&folio->lru, &moved);
3770ac35a490SYu Zhao 				skipped += delta;
3771ac35a490SYu Zhao 			}
3772ac35a490SYu Zhao 
3773ac35a490SYu Zhao 			if (!--remaining || max(isolated, skipped) >= MIN_LRU_BATCH)
3774ac35a490SYu Zhao 				break;
3775ac35a490SYu Zhao 		}
3776ac35a490SYu Zhao 
3777ac35a490SYu Zhao 		if (skipped) {
3778ac35a490SYu Zhao 			list_splice(&moved, head);
3779ac35a490SYu Zhao 			__count_zid_vm_events(PGSCAN_SKIP, zone, skipped);
3780ac35a490SYu Zhao 		}
3781ac35a490SYu Zhao 
3782ac35a490SYu Zhao 		if (!remaining || isolated >= MIN_LRU_BATCH)
3783ac35a490SYu Zhao 			break;
3784ac35a490SYu Zhao 	}
3785ac35a490SYu Zhao 
3786ac35a490SYu Zhao 	item = current_is_kswapd() ? PGSCAN_KSWAPD : PGSCAN_DIRECT;
3787ac35a490SYu Zhao 	if (!cgroup_reclaim(sc)) {
3788ac35a490SYu Zhao 		__count_vm_events(item, isolated);
3789ac35a490SYu Zhao 		__count_vm_events(PGREFILL, sorted);
3790ac35a490SYu Zhao 	}
3791ac35a490SYu Zhao 	__count_memcg_events(memcg, item, isolated);
3792ac35a490SYu Zhao 	__count_memcg_events(memcg, PGREFILL, sorted);
3793ac35a490SYu Zhao 	__count_vm_events(PGSCAN_ANON + type, isolated);
3794ac35a490SYu Zhao 
3795ac35a490SYu Zhao 	/*
3796ac35a490SYu Zhao 	 * There might not be eligible pages due to reclaim_idx, may_unmap and
3797ac35a490SYu Zhao 	 * may_writepage. Check the remaining to prevent livelock if it's not
3798ac35a490SYu Zhao 	 * making progress.
3799ac35a490SYu Zhao 	 */
3800ac35a490SYu Zhao 	return isolated || !remaining ? scanned : 0;
3801ac35a490SYu Zhao }
3802ac35a490SYu Zhao 
3803ac35a490SYu Zhao static int get_tier_idx(struct lruvec *lruvec, int type)
3804ac35a490SYu Zhao {
3805ac35a490SYu Zhao 	int tier;
3806ac35a490SYu Zhao 	struct ctrl_pos sp, pv;
3807ac35a490SYu Zhao 
3808ac35a490SYu Zhao 	/*
3809ac35a490SYu Zhao 	 * To leave a margin for fluctuations, use a larger gain factor (1:2).
3810ac35a490SYu Zhao 	 * This value is chosen because any other tier would have at least twice
3811ac35a490SYu Zhao 	 * as many refaults as the first tier.
3812ac35a490SYu Zhao 	 */
3813ac35a490SYu Zhao 	read_ctrl_pos(lruvec, type, 0, 1, &sp);
3814ac35a490SYu Zhao 	for (tier = 1; tier < MAX_NR_TIERS; tier++) {
3815ac35a490SYu Zhao 		read_ctrl_pos(lruvec, type, tier, 2, &pv);
3816ac35a490SYu Zhao 		if (!positive_ctrl_err(&sp, &pv))
3817ac35a490SYu Zhao 			break;
3818ac35a490SYu Zhao 	}
3819ac35a490SYu Zhao 
3820ac35a490SYu Zhao 	return tier - 1;
3821ac35a490SYu Zhao }
3822ac35a490SYu Zhao 
3823ac35a490SYu Zhao static int get_type_to_scan(struct lruvec *lruvec, int swappiness, int *tier_idx)
3824ac35a490SYu Zhao {
3825ac35a490SYu Zhao 	int type, tier;
3826ac35a490SYu Zhao 	struct ctrl_pos sp, pv;
3827ac35a490SYu Zhao 	int gain[ANON_AND_FILE] = { swappiness, 200 - swappiness };
3828ac35a490SYu Zhao 
3829ac35a490SYu Zhao 	/*
3830ac35a490SYu Zhao 	 * Compare the first tier of anon with that of file to determine which
3831ac35a490SYu Zhao 	 * type to scan. Also need to compare other tiers of the selected type
3832ac35a490SYu Zhao 	 * with the first tier of the other type to determine the last tier (of
3833ac35a490SYu Zhao 	 * the selected type) to evict.
3834ac35a490SYu Zhao 	 */
3835ac35a490SYu Zhao 	read_ctrl_pos(lruvec, LRU_GEN_ANON, 0, gain[LRU_GEN_ANON], &sp);
3836ac35a490SYu Zhao 	read_ctrl_pos(lruvec, LRU_GEN_FILE, 0, gain[LRU_GEN_FILE], &pv);
3837ac35a490SYu Zhao 	type = positive_ctrl_err(&sp, &pv);
3838ac35a490SYu Zhao 
3839ac35a490SYu Zhao 	read_ctrl_pos(lruvec, !type, 0, gain[!type], &sp);
3840ac35a490SYu Zhao 	for (tier = 1; tier < MAX_NR_TIERS; tier++) {
3841ac35a490SYu Zhao 		read_ctrl_pos(lruvec, type, tier, gain[type], &pv);
3842ac35a490SYu Zhao 		if (!positive_ctrl_err(&sp, &pv))
3843ac35a490SYu Zhao 			break;
3844ac35a490SYu Zhao 	}
3845ac35a490SYu Zhao 
3846ac35a490SYu Zhao 	*tier_idx = tier - 1;
3847ac35a490SYu Zhao 
3848ac35a490SYu Zhao 	return type;
3849ac35a490SYu Zhao }
3850ac35a490SYu Zhao 
3851ac35a490SYu Zhao static int isolate_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness,
3852ac35a490SYu Zhao 			  int *type_scanned, struct list_head *list)
3853ac35a490SYu Zhao {
3854ac35a490SYu Zhao 	int i;
3855ac35a490SYu Zhao 	int type;
3856ac35a490SYu Zhao 	int scanned;
3857ac35a490SYu Zhao 	int tier = -1;
3858ac35a490SYu Zhao 	DEFINE_MIN_SEQ(lruvec);
3859ac35a490SYu Zhao 
3860ac35a490SYu Zhao 	/*
3861ac35a490SYu Zhao 	 * Try to make the obvious choice first. When anon and file are both
3862ac35a490SYu Zhao 	 * available from the same generation, interpret swappiness 1 as file
3863ac35a490SYu Zhao 	 * first and 200 as anon first.
3864ac35a490SYu Zhao 	 */
3865ac35a490SYu Zhao 	if (!swappiness)
3866ac35a490SYu Zhao 		type = LRU_GEN_FILE;
3867ac35a490SYu Zhao 	else if (min_seq[LRU_GEN_ANON] < min_seq[LRU_GEN_FILE])
3868ac35a490SYu Zhao 		type = LRU_GEN_ANON;
3869ac35a490SYu Zhao 	else if (swappiness == 1)
3870ac35a490SYu Zhao 		type = LRU_GEN_FILE;
3871ac35a490SYu Zhao 	else if (swappiness == 200)
3872ac35a490SYu Zhao 		type = LRU_GEN_ANON;
3873ac35a490SYu Zhao 	else
3874ac35a490SYu Zhao 		type = get_type_to_scan(lruvec, swappiness, &tier);
3875ac35a490SYu Zhao 
3876ac35a490SYu Zhao 	for (i = !swappiness; i < ANON_AND_FILE; i++) {
3877ac35a490SYu Zhao 		if (tier < 0)
3878ac35a490SYu Zhao 			tier = get_tier_idx(lruvec, type);
3879ac35a490SYu Zhao 
3880ac35a490SYu Zhao 		scanned = scan_folios(lruvec, sc, type, tier, list);
3881ac35a490SYu Zhao 		if (scanned)
3882ac35a490SYu Zhao 			break;
3883ac35a490SYu Zhao 
3884ac35a490SYu Zhao 		type = !type;
3885ac35a490SYu Zhao 		tier = -1;
3886ac35a490SYu Zhao 	}
3887ac35a490SYu Zhao 
3888ac35a490SYu Zhao 	*type_scanned = type;
3889ac35a490SYu Zhao 
3890ac35a490SYu Zhao 	return scanned;
3891ac35a490SYu Zhao }
3892ac35a490SYu Zhao 
3893ac35a490SYu Zhao static int evict_folios(struct lruvec *lruvec, struct scan_control *sc, int swappiness)
3894ac35a490SYu Zhao {
3895ac35a490SYu Zhao 	int type;
3896ac35a490SYu Zhao 	int scanned;
3897ac35a490SYu Zhao 	int reclaimed;
3898ac35a490SYu Zhao 	LIST_HEAD(list);
3899ac35a490SYu Zhao 	struct folio *folio;
3900ac35a490SYu Zhao 	enum vm_event_item item;
3901ac35a490SYu Zhao 	struct reclaim_stat stat;
3902ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3903ac35a490SYu Zhao 	struct pglist_data *pgdat = lruvec_pgdat(lruvec);
3904ac35a490SYu Zhao 
3905ac35a490SYu Zhao 	spin_lock_irq(&lruvec->lru_lock);
3906ac35a490SYu Zhao 
3907ac35a490SYu Zhao 	scanned = isolate_folios(lruvec, sc, swappiness, &type, &list);
3908ac35a490SYu Zhao 
3909ac35a490SYu Zhao 	scanned += try_to_inc_min_seq(lruvec, swappiness);
3910ac35a490SYu Zhao 
3911ac35a490SYu Zhao 	if (get_nr_gens(lruvec, !swappiness) == MIN_NR_GENS)
3912ac35a490SYu Zhao 		scanned = 0;
3913ac35a490SYu Zhao 
3914ac35a490SYu Zhao 	spin_unlock_irq(&lruvec->lru_lock);
3915ac35a490SYu Zhao 
3916ac35a490SYu Zhao 	if (list_empty(&list))
3917ac35a490SYu Zhao 		return scanned;
3918ac35a490SYu Zhao 
3919ac35a490SYu Zhao 	reclaimed = shrink_page_list(&list, pgdat, sc, &stat, false);
3920ac35a490SYu Zhao 
3921ac35a490SYu Zhao 	list_for_each_entry(folio, &list, lru) {
3922ac35a490SYu Zhao 		/* restore LRU_REFS_FLAGS cleared by isolate_folio() */
3923ac35a490SYu Zhao 		if (folio_test_workingset(folio))
3924ac35a490SYu Zhao 			folio_set_referenced(folio);
3925ac35a490SYu Zhao 
3926ac35a490SYu Zhao 		/* don't add rejected pages to the oldest generation */
3927ac35a490SYu Zhao 		if (folio_test_reclaim(folio) &&
3928ac35a490SYu Zhao 		    (folio_test_dirty(folio) || folio_test_writeback(folio)))
3929ac35a490SYu Zhao 			folio_clear_active(folio);
3930ac35a490SYu Zhao 		else
3931ac35a490SYu Zhao 			folio_set_active(folio);
3932ac35a490SYu Zhao 	}
3933ac35a490SYu Zhao 
3934ac35a490SYu Zhao 	spin_lock_irq(&lruvec->lru_lock);
3935ac35a490SYu Zhao 
3936ac35a490SYu Zhao 	move_pages_to_lru(lruvec, &list);
3937ac35a490SYu Zhao 
3938ac35a490SYu Zhao 	item = current_is_kswapd() ? PGSTEAL_KSWAPD : PGSTEAL_DIRECT;
3939ac35a490SYu Zhao 	if (!cgroup_reclaim(sc))
3940ac35a490SYu Zhao 		__count_vm_events(item, reclaimed);
3941ac35a490SYu Zhao 	__count_memcg_events(memcg, item, reclaimed);
3942ac35a490SYu Zhao 	__count_vm_events(PGSTEAL_ANON + type, reclaimed);
3943ac35a490SYu Zhao 
3944ac35a490SYu Zhao 	spin_unlock_irq(&lruvec->lru_lock);
3945ac35a490SYu Zhao 
3946ac35a490SYu Zhao 	mem_cgroup_uncharge_list(&list);
3947ac35a490SYu Zhao 	free_unref_page_list(&list);
3948ac35a490SYu Zhao 
3949ac35a490SYu Zhao 	sc->nr_reclaimed += reclaimed;
3950ac35a490SYu Zhao 
3951ac35a490SYu Zhao 	return scanned;
3952ac35a490SYu Zhao }
3953ac35a490SYu Zhao 
3954ac35a490SYu Zhao static unsigned long get_nr_to_scan(struct lruvec *lruvec, struct scan_control *sc,
3955ac35a490SYu Zhao 				    bool can_swap)
3956ac35a490SYu Zhao {
3957ac35a490SYu Zhao 	bool need_aging;
3958ac35a490SYu Zhao 	unsigned long nr_to_scan;
3959ac35a490SYu Zhao 	struct mem_cgroup *memcg = lruvec_memcg(lruvec);
3960ac35a490SYu Zhao 	DEFINE_MAX_SEQ(lruvec);
3961ac35a490SYu Zhao 	DEFINE_MIN_SEQ(lruvec);
3962ac35a490SYu Zhao 
3963ac35a490SYu Zhao 	if (mem_cgroup_below_min(memcg) ||
3964ac35a490SYu Zhao 	    (mem_cgroup_below_low(memcg) && !sc->memcg_low_reclaim))
3965ac35a490SYu Zhao 		return 0;
3966ac35a490SYu Zhao 
3967ac35a490SYu Zhao 	need_aging = should_run_aging(lruvec, max_seq, min_seq, sc, can_swap, &nr_to_scan);
3968ac35a490SYu Zhao 	if (!need_aging)
3969ac35a490SYu Zhao 		return nr_to_scan;
3970ac35a490SYu Zhao 
3971ac35a490SYu Zhao 	/* skip the aging path at the default priority */
3972ac35a490SYu Zhao 	if (sc->priority == DEF_PRIORITY)
3973ac35a490SYu Zhao 		goto done;
3974ac35a490SYu Zhao 
3975ac35a490SYu Zhao 	/* leave the work to lru_gen_age_node() */
3976ac35a490SYu Zhao 	if (current_is_kswapd())
3977ac35a490SYu Zhao 		return 0;
3978ac35a490SYu Zhao 
3979ac35a490SYu Zhao 	inc_max_seq(lruvec, max_seq, can_swap);
3980ac35a490SYu Zhao done:
3981ac35a490SYu Zhao 	return min_seq[!can_swap] + MIN_NR_GENS <= max_seq ? nr_to_scan : 0;
3982ac35a490SYu Zhao }
3983ac35a490SYu Zhao 
3984ac35a490SYu Zhao static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
3985ac35a490SYu Zhao {
3986ac35a490SYu Zhao 	struct blk_plug plug;
3987ac35a490SYu Zhao 	unsigned long scanned = 0;
3988ac35a490SYu Zhao 
3989ac35a490SYu Zhao 	lru_add_drain();
3990ac35a490SYu Zhao 
3991ac35a490SYu Zhao 	blk_start_plug(&plug);
3992ac35a490SYu Zhao 
3993ac35a490SYu Zhao 	while (true) {
3994ac35a490SYu Zhao 		int delta;
3995ac35a490SYu Zhao 		int swappiness;
3996ac35a490SYu Zhao 		unsigned long nr_to_scan;
3997ac35a490SYu Zhao 
3998ac35a490SYu Zhao 		if (sc->may_swap)
3999ac35a490SYu Zhao 			swappiness = get_swappiness(lruvec, sc);
4000ac35a490SYu Zhao 		else if (!cgroup_reclaim(sc) && get_swappiness(lruvec, sc))
4001ac35a490SYu Zhao 			swappiness = 1;
4002ac35a490SYu Zhao 		else
4003ac35a490SYu Zhao 			swappiness = 0;
4004ac35a490SYu Zhao 
4005ac35a490SYu Zhao 		nr_to_scan = get_nr_to_scan(lruvec, sc, swappiness);
4006ac35a490SYu Zhao 		if (!nr_to_scan)
4007ac35a490SYu Zhao 			break;
4008ac35a490SYu Zhao 
4009ac35a490SYu Zhao 		delta = evict_folios(lruvec, sc, swappiness);
4010ac35a490SYu Zhao 		if (!delta)
4011ac35a490SYu Zhao 			break;
4012ac35a490SYu Zhao 
4013ac35a490SYu Zhao 		scanned += delta;
4014ac35a490SYu Zhao 		if (scanned >= nr_to_scan)
4015ac35a490SYu Zhao 			break;
4016ac35a490SYu Zhao 
4017ac35a490SYu Zhao 		cond_resched();
4018ac35a490SYu Zhao 	}
4019ac35a490SYu Zhao 
4020ac35a490SYu Zhao 	blk_finish_plug(&plug);
4021ac35a490SYu Zhao }
4022ac35a490SYu Zhao 
4023ec1c86b2SYu Zhao /******************************************************************************
4024ec1c86b2SYu Zhao  *                          initialization
4025ec1c86b2SYu Zhao  ******************************************************************************/
4026ec1c86b2SYu Zhao 
4027ec1c86b2SYu Zhao void lru_gen_init_lruvec(struct lruvec *lruvec)
4028ec1c86b2SYu Zhao {
4029ec1c86b2SYu Zhao 	int gen, type, zone;
4030ec1c86b2SYu Zhao 	struct lru_gen_struct *lrugen = &lruvec->lrugen;
4031ec1c86b2SYu Zhao 
4032ec1c86b2SYu Zhao 	lrugen->max_seq = MIN_NR_GENS + 1;
4033ec1c86b2SYu Zhao 
4034ec1c86b2SYu Zhao 	for_each_gen_type_zone(gen, type, zone)
4035ec1c86b2SYu Zhao 		INIT_LIST_HEAD(&lrugen->lists[gen][type][zone]);
4036ec1c86b2SYu Zhao }
4037ec1c86b2SYu Zhao 
4038ec1c86b2SYu Zhao #ifdef CONFIG_MEMCG
4039ec1c86b2SYu Zhao void lru_gen_init_memcg(struct mem_cgroup *memcg)
4040ec1c86b2SYu Zhao {
4041ec1c86b2SYu Zhao }
4042ec1c86b2SYu Zhao 
4043ec1c86b2SYu Zhao void lru_gen_exit_memcg(struct mem_cgroup *memcg)
4044ec1c86b2SYu Zhao {
4045ec1c86b2SYu Zhao 	int nid;
4046ec1c86b2SYu Zhao 
4047ec1c86b2SYu Zhao 	for_each_node(nid) {
4048ec1c86b2SYu Zhao 		struct lruvec *lruvec = get_lruvec(memcg, nid);
4049ec1c86b2SYu Zhao 
4050ec1c86b2SYu Zhao 		VM_WARN_ON_ONCE(memchr_inv(lruvec->lrugen.nr_pages, 0,
4051ec1c86b2SYu Zhao 					   sizeof(lruvec->lrugen.nr_pages)));
4052ec1c86b2SYu Zhao 	}
4053ec1c86b2SYu Zhao }
4054ec1c86b2SYu Zhao #endif
4055ec1c86b2SYu Zhao 
4056ec1c86b2SYu Zhao static int __init init_lru_gen(void)
4057ec1c86b2SYu Zhao {
4058ec1c86b2SYu Zhao 	BUILD_BUG_ON(MIN_NR_GENS + 1 >= MAX_NR_GENS);
4059ec1c86b2SYu Zhao 	BUILD_BUG_ON(BIT(LRU_GEN_WIDTH) <= MAX_NR_GENS);
4060ec1c86b2SYu Zhao 
4061ec1c86b2SYu Zhao 	return 0;
4062ec1c86b2SYu Zhao };
4063ec1c86b2SYu Zhao late_initcall(init_lru_gen);
4064ec1c86b2SYu Zhao 
4065ac35a490SYu Zhao #else /* !CONFIG_LRU_GEN */
4066ac35a490SYu Zhao 
4067ac35a490SYu Zhao static void lru_gen_age_node(struct pglist_data *pgdat, struct scan_control *sc)
4068ac35a490SYu Zhao {
4069ac35a490SYu Zhao }
4070ac35a490SYu Zhao 
4071ac35a490SYu Zhao static void lru_gen_shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
4072ac35a490SYu Zhao {
4073ac35a490SYu Zhao }
4074ac35a490SYu Zhao 
4075ec1c86b2SYu Zhao #endif /* CONFIG_LRU_GEN */
4076ec1c86b2SYu Zhao 
4077afaf07a6SJohannes Weiner static void shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
40789b4f98cdSJohannes Weiner {
40799b4f98cdSJohannes Weiner 	unsigned long nr[NR_LRU_LISTS];
4080e82e0561SMel Gorman 	unsigned long targets[NR_LRU_LISTS];
40819b4f98cdSJohannes Weiner 	unsigned long nr_to_scan;
40829b4f98cdSJohannes Weiner 	enum lru_list lru;
40839b4f98cdSJohannes Weiner 	unsigned long nr_reclaimed = 0;
40849b4f98cdSJohannes Weiner 	unsigned long nr_to_reclaim = sc->nr_to_reclaim;
40859b4f98cdSJohannes Weiner 	struct blk_plug plug;
40861a501907SMel Gorman 	bool scan_adjusted;
40879b4f98cdSJohannes Weiner 
4088ac35a490SYu Zhao 	if (lru_gen_enabled()) {
4089ac35a490SYu Zhao 		lru_gen_shrink_lruvec(lruvec, sc);
4090ac35a490SYu Zhao 		return;
4091ac35a490SYu Zhao 	}
4092ac35a490SYu Zhao 
4093afaf07a6SJohannes Weiner 	get_scan_count(lruvec, sc, nr);
40949b4f98cdSJohannes Weiner 
4095e82e0561SMel Gorman 	/* Record the original scan target for proportional adjustments later */
4096e82e0561SMel Gorman 	memcpy(targets, nr, sizeof(nr));
4097e82e0561SMel Gorman 
40981a501907SMel Gorman 	/*
40991a501907SMel Gorman 	 * Global reclaiming within direct reclaim at DEF_PRIORITY is a normal
41001a501907SMel Gorman 	 * event that can occur when there is little memory pressure e.g.
41011a501907SMel Gorman 	 * multiple streaming readers/writers. Hence, we do not abort scanning
41021a501907SMel Gorman 	 * when the requested number of pages are reclaimed when scanning at
41031a501907SMel Gorman 	 * DEF_PRIORITY on the assumption that the fact we are direct
41041a501907SMel Gorman 	 * reclaiming implies that kswapd is not keeping up and it is best to
41051a501907SMel Gorman 	 * do a batch of work at once. For memcg reclaim one check is made to
41061a501907SMel Gorman 	 * abort proportional reclaim if either the file or anon lru has already
41071a501907SMel Gorman 	 * dropped to zero at the first pass.
41081a501907SMel Gorman 	 */
4109b5ead35eSJohannes Weiner 	scan_adjusted = (!cgroup_reclaim(sc) && !current_is_kswapd() &&
41101a501907SMel Gorman 			 sc->priority == DEF_PRIORITY);
41111a501907SMel Gorman 
41129b4f98cdSJohannes Weiner 	blk_start_plug(&plug);
41139b4f98cdSJohannes Weiner 	while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
41149b4f98cdSJohannes Weiner 					nr[LRU_INACTIVE_FILE]) {
4115e82e0561SMel Gorman 		unsigned long nr_anon, nr_file, percentage;
4116e82e0561SMel Gorman 		unsigned long nr_scanned;
4117e82e0561SMel Gorman 
41189b4f98cdSJohannes Weiner 		for_each_evictable_lru(lru) {
41199b4f98cdSJohannes Weiner 			if (nr[lru]) {
41209b4f98cdSJohannes Weiner 				nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
41219b4f98cdSJohannes Weiner 				nr[lru] -= nr_to_scan;
41229b4f98cdSJohannes Weiner 
41239b4f98cdSJohannes Weiner 				nr_reclaimed += shrink_list(lru, nr_to_scan,
41243b991208SJohannes Weiner 							    lruvec, sc);
41259b4f98cdSJohannes Weiner 			}
41269b4f98cdSJohannes Weiner 		}
4127e82e0561SMel Gorman 
4128bd041733SMichal Hocko 		cond_resched();
4129bd041733SMichal Hocko 
4130e82e0561SMel Gorman 		if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
4131e82e0561SMel Gorman 			continue;
4132e82e0561SMel Gorman 
41339b4f98cdSJohannes Weiner 		/*
4134e82e0561SMel Gorman 		 * For kswapd and memcg, reclaim at least the number of pages
41351a501907SMel Gorman 		 * requested. Ensure that the anon and file LRUs are scanned
4136e82e0561SMel Gorman 		 * proportionally what was requested by get_scan_count(). We
4137e82e0561SMel Gorman 		 * stop reclaiming one LRU and reduce the amount scanning
4138e82e0561SMel Gorman 		 * proportional to the original scan target.
4139e82e0561SMel Gorman 		 */
4140e82e0561SMel Gorman 		nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
4141e82e0561SMel Gorman 		nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
4142e82e0561SMel Gorman 
41431a501907SMel Gorman 		/*
41441a501907SMel Gorman 		 * It's just vindictive to attack the larger once the smaller
41451a501907SMel Gorman 		 * has gone to zero.  And given the way we stop scanning the
41461a501907SMel Gorman 		 * smaller below, this makes sure that we only make one nudge
41471a501907SMel Gorman 		 * towards proportionality once we've got nr_to_reclaim.
41481a501907SMel Gorman 		 */
41491a501907SMel Gorman 		if (!nr_file || !nr_anon)
41501a501907SMel Gorman 			break;
41511a501907SMel Gorman 
4152e82e0561SMel Gorman 		if (nr_file > nr_anon) {
4153e82e0561SMel Gorman 			unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
4154e82e0561SMel Gorman 						targets[LRU_ACTIVE_ANON] + 1;
4155e82e0561SMel Gorman 			lru = LRU_BASE;
4156e82e0561SMel Gorman 			percentage = nr_anon * 100 / scan_target;
4157e82e0561SMel Gorman 		} else {
4158e82e0561SMel Gorman 			unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
4159e82e0561SMel Gorman 						targets[LRU_ACTIVE_FILE] + 1;
4160e82e0561SMel Gorman 			lru = LRU_FILE;
4161e82e0561SMel Gorman 			percentage = nr_file * 100 / scan_target;
4162e82e0561SMel Gorman 		}
4163e82e0561SMel Gorman 
4164e82e0561SMel Gorman 		/* Stop scanning the smaller of the LRU */
4165e82e0561SMel Gorman 		nr[lru] = 0;
4166e82e0561SMel Gorman 		nr[lru + LRU_ACTIVE] = 0;
4167e82e0561SMel Gorman 
4168e82e0561SMel Gorman 		/*
4169e82e0561SMel Gorman 		 * Recalculate the other LRU scan count based on its original
4170e82e0561SMel Gorman 		 * scan target and the percentage scanning already complete
4171e82e0561SMel Gorman 		 */
4172e82e0561SMel Gorman 		lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
4173e82e0561SMel Gorman 		nr_scanned = targets[lru] - nr[lru];
4174e82e0561SMel Gorman 		nr[lru] = targets[lru] * (100 - percentage) / 100;
4175e82e0561SMel Gorman 		nr[lru] -= min(nr[lru], nr_scanned);
4176e82e0561SMel Gorman 
4177e82e0561SMel Gorman 		lru += LRU_ACTIVE;
4178e82e0561SMel Gorman 		nr_scanned = targets[lru] - nr[lru];
4179e82e0561SMel Gorman 		nr[lru] = targets[lru] * (100 - percentage) / 100;
4180e82e0561SMel Gorman 		nr[lru] -= min(nr[lru], nr_scanned);
4181e82e0561SMel Gorman 
4182e82e0561SMel Gorman 		scan_adjusted = true;
41839b4f98cdSJohannes Weiner 	}
41849b4f98cdSJohannes Weiner 	blk_finish_plug(&plug);
41859b4f98cdSJohannes Weiner 	sc->nr_reclaimed += nr_reclaimed;
41869b4f98cdSJohannes Weiner 
41879b4f98cdSJohannes Weiner 	/*
41889b4f98cdSJohannes Weiner 	 * Even if we did not try to evict anon pages at all, we want to
41899b4f98cdSJohannes Weiner 	 * rebalance the anon lru active/inactive ratio.
41909b4f98cdSJohannes Weiner 	 */
41912f368a9fSDave Hansen 	if (can_age_anon_pages(lruvec_pgdat(lruvec), sc) &&
41922f368a9fSDave Hansen 	    inactive_is_low(lruvec, LRU_INACTIVE_ANON))
41939b4f98cdSJohannes Weiner 		shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
41949b4f98cdSJohannes Weiner 				   sc, LRU_ACTIVE_ANON);
41959b4f98cdSJohannes Weiner }
41969b4f98cdSJohannes Weiner 
419723b9da55SMel Gorman /* Use reclaim/compaction for costly allocs or under memory pressure */
41989e3b2f8cSKonstantin Khlebnikov static bool in_reclaim_compaction(struct scan_control *sc)
419923b9da55SMel Gorman {
4200d84da3f9SKirill A. Shutemov 	if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
420123b9da55SMel Gorman 			(sc->order > PAGE_ALLOC_COSTLY_ORDER ||
42029e3b2f8cSKonstantin Khlebnikov 			 sc->priority < DEF_PRIORITY - 2))
420323b9da55SMel Gorman 		return true;
420423b9da55SMel Gorman 
420523b9da55SMel Gorman 	return false;
420623b9da55SMel Gorman }
420723b9da55SMel Gorman 
42084f98a2feSRik van Riel /*
420923b9da55SMel Gorman  * Reclaim/compaction is used for high-order allocation requests. It reclaims
421023b9da55SMel Gorman  * order-0 pages before compacting the zone. should_continue_reclaim() returns
421123b9da55SMel Gorman  * true if more pages should be reclaimed such that when the page allocator
4212df3a45f9SQiwu Chen  * calls try_to_compact_pages() that it will have enough free pages to succeed.
421323b9da55SMel Gorman  * It will give up earlier than that if there is difficulty reclaiming pages.
42143e7d3449SMel Gorman  */
4215a9dd0a83SMel Gorman static inline bool should_continue_reclaim(struct pglist_data *pgdat,
42163e7d3449SMel Gorman 					unsigned long nr_reclaimed,
42173e7d3449SMel Gorman 					struct scan_control *sc)
42183e7d3449SMel Gorman {
42193e7d3449SMel Gorman 	unsigned long pages_for_compaction;
42203e7d3449SMel Gorman 	unsigned long inactive_lru_pages;
4221a9dd0a83SMel Gorman 	int z;
42223e7d3449SMel Gorman 
42233e7d3449SMel Gorman 	/* If not in reclaim/compaction mode, stop */
42249e3b2f8cSKonstantin Khlebnikov 	if (!in_reclaim_compaction(sc))
42253e7d3449SMel Gorman 		return false;
42263e7d3449SMel Gorman 
42273e7d3449SMel Gorman 	/*
42285ee04716SVlastimil Babka 	 * Stop if we failed to reclaim any pages from the last SWAP_CLUSTER_MAX
42295ee04716SVlastimil Babka 	 * number of pages that were scanned. This will return to the caller
42305ee04716SVlastimil Babka 	 * with the risk reclaim/compaction and the resulting allocation attempt
42315ee04716SVlastimil Babka 	 * fails. In the past we have tried harder for __GFP_RETRY_MAYFAIL
42325ee04716SVlastimil Babka 	 * allocations through requiring that the full LRU list has been scanned
42335ee04716SVlastimil Babka 	 * first, by assuming that zero delta of sc->nr_scanned means full LRU
42345ee04716SVlastimil Babka 	 * scan, but that approximation was wrong, and there were corner cases
42355ee04716SVlastimil Babka 	 * where always a non-zero amount of pages were scanned.
42362876592fSMel Gorman 	 */
42372876592fSMel Gorman 	if (!nr_reclaimed)
42382876592fSMel Gorman 		return false;
42393e7d3449SMel Gorman 
42403e7d3449SMel Gorman 	/* If compaction would go ahead or the allocation would succeed, stop */
4241a9dd0a83SMel Gorman 	for (z = 0; z <= sc->reclaim_idx; z++) {
4242a9dd0a83SMel Gorman 		struct zone *zone = &pgdat->node_zones[z];
42436aa303deSMel Gorman 		if (!managed_zone(zone))
4244a9dd0a83SMel Gorman 			continue;
4245a9dd0a83SMel Gorman 
4246a9dd0a83SMel Gorman 		switch (compaction_suitable(zone, sc->order, 0, sc->reclaim_idx)) {
4247cf378319SVlastimil Babka 		case COMPACT_SUCCESS:
42483e7d3449SMel Gorman 		case COMPACT_CONTINUE:
42493e7d3449SMel Gorman 			return false;
42503e7d3449SMel Gorman 		default:
4251a9dd0a83SMel Gorman 			/* check next zone */
4252a9dd0a83SMel Gorman 			;
42533e7d3449SMel Gorman 		}
42543e7d3449SMel Gorman 	}
42551c6c1597SHillf Danton 
42561c6c1597SHillf Danton 	/*
42571c6c1597SHillf Danton 	 * If we have not reclaimed enough pages for compaction and the
42581c6c1597SHillf Danton 	 * inactive lists are large enough, continue reclaiming
42591c6c1597SHillf Danton 	 */
42601c6c1597SHillf Danton 	pages_for_compaction = compact_gap(sc->order);
42611c6c1597SHillf Danton 	inactive_lru_pages = node_page_state(pgdat, NR_INACTIVE_FILE);
4262a2a36488SKeith Busch 	if (can_reclaim_anon_pages(NULL, pgdat->node_id, sc))
42631c6c1597SHillf Danton 		inactive_lru_pages += node_page_state(pgdat, NR_INACTIVE_ANON);
42641c6c1597SHillf Danton 
42655ee04716SVlastimil Babka 	return inactive_lru_pages > pages_for_compaction;
4266a9dd0a83SMel Gorman }
42673e7d3449SMel Gorman 
42680f6a5cffSJohannes Weiner static void shrink_node_memcgs(pg_data_t *pgdat, struct scan_control *sc)
4269f16015fbSJohannes Weiner {
42700f6a5cffSJohannes Weiner 	struct mem_cgroup *target_memcg = sc->target_mem_cgroup;
4271694fbc0fSAndrew Morton 	struct mem_cgroup *memcg;
4272d108c772SAndrey Ryabinin 
42730f6a5cffSJohannes Weiner 	memcg = mem_cgroup_iter(target_memcg, NULL, NULL);
4274694fbc0fSAndrew Morton 	do {
4275afaf07a6SJohannes Weiner 		struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
42768e8ae645SJohannes Weiner 		unsigned long reclaimed;
4277cb731d6cSVladimir Davydov 		unsigned long scanned;
42789b4f98cdSJohannes Weiner 
4279e3336cabSXunlei Pang 		/*
4280e3336cabSXunlei Pang 		 * This loop can become CPU-bound when target memcgs
4281e3336cabSXunlei Pang 		 * aren't eligible for reclaim - either because they
4282e3336cabSXunlei Pang 		 * don't have any reclaimable pages, or because their
4283e3336cabSXunlei Pang 		 * memory is explicitly protected. Avoid soft lockups.
4284e3336cabSXunlei Pang 		 */
4285e3336cabSXunlei Pang 		cond_resched();
4286e3336cabSXunlei Pang 
428745c7f7e1SChris Down 		mem_cgroup_calculate_protection(target_memcg, memcg);
428845c7f7e1SChris Down 
428945c7f7e1SChris Down 		if (mem_cgroup_below_min(memcg)) {
4290bf8d5d52SRoman Gushchin 			/*
4291bf8d5d52SRoman Gushchin 			 * Hard protection.
4292bf8d5d52SRoman Gushchin 			 * If there is no reclaimable memory, OOM.
4293bf8d5d52SRoman Gushchin 			 */
4294bf8d5d52SRoman Gushchin 			continue;
429545c7f7e1SChris Down 		} else if (mem_cgroup_below_low(memcg)) {
4296bf8d5d52SRoman Gushchin 			/*
4297bf8d5d52SRoman Gushchin 			 * Soft protection.
4298bf8d5d52SRoman Gushchin 			 * Respect the protection only as long as
4299bf8d5d52SRoman Gushchin 			 * there is an unprotected supply
4300bf8d5d52SRoman Gushchin 			 * of reclaimable memory from other cgroups.
4301bf8d5d52SRoman Gushchin 			 */
4302d6622f63SYisheng Xie 			if (!sc->memcg_low_reclaim) {
4303d6622f63SYisheng Xie 				sc->memcg_low_skipped = 1;
4304241994edSJohannes Weiner 				continue;
4305d6622f63SYisheng Xie 			}
4306e27be240SJohannes Weiner 			memcg_memory_event(memcg, MEMCG_LOW);
4307241994edSJohannes Weiner 		}
4308241994edSJohannes Weiner 
43098e8ae645SJohannes Weiner 		reclaimed = sc->nr_reclaimed;
4310cb731d6cSVladimir Davydov 		scanned = sc->nr_scanned;
4311afaf07a6SJohannes Weiner 
4312afaf07a6SJohannes Weiner 		shrink_lruvec(lruvec, sc);
4313f9be23d6SKonstantin Khlebnikov 
431428360f39SMel Gorman 		shrink_slab(sc->gfp_mask, pgdat->node_id, memcg,
431528360f39SMel Gorman 			    sc->priority);
4316cb731d6cSVladimir Davydov 
43178e8ae645SJohannes Weiner 		/* Record the group's reclaim efficiency */
431873b73bacSYosry Ahmed 		if (!sc->proactive)
43198e8ae645SJohannes Weiner 			vmpressure(sc->gfp_mask, memcg, false,
43208e8ae645SJohannes Weiner 				   sc->nr_scanned - scanned,
43218e8ae645SJohannes Weiner 				   sc->nr_reclaimed - reclaimed);
43228e8ae645SJohannes Weiner 
43230f6a5cffSJohannes Weiner 	} while ((memcg = mem_cgroup_iter(target_memcg, memcg, NULL)));
43240f6a5cffSJohannes Weiner }
43250f6a5cffSJohannes Weiner 
43266c9e0907SLiu Song static void shrink_node(pg_data_t *pgdat, struct scan_control *sc)
43270f6a5cffSJohannes Weiner {
43280f6a5cffSJohannes Weiner 	struct reclaim_state *reclaim_state = current->reclaim_state;
43290f6a5cffSJohannes Weiner 	unsigned long nr_reclaimed, nr_scanned;
43301b05117dSJohannes Weiner 	struct lruvec *target_lruvec;
43310f6a5cffSJohannes Weiner 	bool reclaimable = false;
43320f6a5cffSJohannes Weiner 
43331b05117dSJohannes Weiner 	target_lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup, pgdat);
43341b05117dSJohannes Weiner 
43350f6a5cffSJohannes Weiner again:
43360f6a5cffSJohannes Weiner 	memset(&sc->nr, 0, sizeof(sc->nr));
43370f6a5cffSJohannes Weiner 
43380f6a5cffSJohannes Weiner 	nr_reclaimed = sc->nr_reclaimed;
43390f6a5cffSJohannes Weiner 	nr_scanned = sc->nr_scanned;
43400f6a5cffSJohannes Weiner 
4341f1e1a7beSYu Zhao 	prepare_scan_count(pgdat, sc);
434253138ceaSJohannes Weiner 
43430f6a5cffSJohannes Weiner 	shrink_node_memcgs(pgdat, sc);
434470ddf637SAnton Vorontsov 
43456b4f7799SJohannes Weiner 	if (reclaim_state) {
4346cb731d6cSVladimir Davydov 		sc->nr_reclaimed += reclaim_state->reclaimed_slab;
43476b4f7799SJohannes Weiner 		reclaim_state->reclaimed_slab = 0;
43486b4f7799SJohannes Weiner 	}
43496b4f7799SJohannes Weiner 
43508e8ae645SJohannes Weiner 	/* Record the subtree's reclaim efficiency */
435173b73bacSYosry Ahmed 	if (!sc->proactive)
43521b05117dSJohannes Weiner 		vmpressure(sc->gfp_mask, sc->target_mem_cgroup, true,
435370ddf637SAnton Vorontsov 			   sc->nr_scanned - nr_scanned,
435470ddf637SAnton Vorontsov 			   sc->nr_reclaimed - nr_reclaimed);
435570ddf637SAnton Vorontsov 
43562344d7e4SJohannes Weiner 	if (sc->nr_reclaimed - nr_reclaimed)
43572344d7e4SJohannes Weiner 		reclaimable = true;
43582344d7e4SJohannes Weiner 
4359e3c1ac58SAndrey Ryabinin 	if (current_is_kswapd()) {
4360d108c772SAndrey Ryabinin 		/*
4361e3c1ac58SAndrey Ryabinin 		 * If reclaim is isolating dirty pages under writeback,
4362e3c1ac58SAndrey Ryabinin 		 * it implies that the long-lived page allocation rate
4363e3c1ac58SAndrey Ryabinin 		 * is exceeding the page laundering rate. Either the
4364e3c1ac58SAndrey Ryabinin 		 * global limits are not being effective at throttling
4365e3c1ac58SAndrey Ryabinin 		 * processes due to the page distribution throughout
4366e3c1ac58SAndrey Ryabinin 		 * zones or there is heavy usage of a slow backing
4367e3c1ac58SAndrey Ryabinin 		 * device. The only option is to throttle from reclaim
4368e3c1ac58SAndrey Ryabinin 		 * context which is not ideal as there is no guarantee
4369d108c772SAndrey Ryabinin 		 * the dirtying process is throttled in the same way
4370d108c772SAndrey Ryabinin 		 * balance_dirty_pages() manages.
4371d108c772SAndrey Ryabinin 		 *
4372e3c1ac58SAndrey Ryabinin 		 * Once a node is flagged PGDAT_WRITEBACK, kswapd will
4373e3c1ac58SAndrey Ryabinin 		 * count the number of pages under pages flagged for
4374e3c1ac58SAndrey Ryabinin 		 * immediate reclaim and stall if any are encountered
4375e3c1ac58SAndrey Ryabinin 		 * in the nr_immediate check below.
4376d108c772SAndrey Ryabinin 		 */
4377d108c772SAndrey Ryabinin 		if (sc->nr.writeback && sc->nr.writeback == sc->nr.taken)
4378d108c772SAndrey Ryabinin 			set_bit(PGDAT_WRITEBACK, &pgdat->flags);
4379d108c772SAndrey Ryabinin 
4380d108c772SAndrey Ryabinin 		/* Allow kswapd to start writing pages during reclaim.*/
4381d108c772SAndrey Ryabinin 		if (sc->nr.unqueued_dirty == sc->nr.file_taken)
4382d108c772SAndrey Ryabinin 			set_bit(PGDAT_DIRTY, &pgdat->flags);
4383d108c772SAndrey Ryabinin 
4384d108c772SAndrey Ryabinin 		/*
43851eba09c1SRandy Dunlap 		 * If kswapd scans pages marked for immediate
4386d108c772SAndrey Ryabinin 		 * reclaim and under writeback (nr_immediate), it
4387d108c772SAndrey Ryabinin 		 * implies that pages are cycling through the LRU
43888cd7c588SMel Gorman 		 * faster than they are written so forcibly stall
43898cd7c588SMel Gorman 		 * until some pages complete writeback.
4390d108c772SAndrey Ryabinin 		 */
4391d108c772SAndrey Ryabinin 		if (sc->nr.immediate)
4392c3f4a9a2SMel Gorman 			reclaim_throttle(pgdat, VMSCAN_THROTTLE_WRITEBACK);
4393d108c772SAndrey Ryabinin 	}
4394d108c772SAndrey Ryabinin 
4395d108c772SAndrey Ryabinin 	/*
43968cd7c588SMel Gorman 	 * Tag a node/memcg as congested if all the dirty pages were marked
43978cd7c588SMel Gorman 	 * for writeback and immediate reclaim (counted in nr.congested).
43981b05117dSJohannes Weiner 	 *
4399e3c1ac58SAndrey Ryabinin 	 * Legacy memcg will stall in page writeback so avoid forcibly
44008cd7c588SMel Gorman 	 * stalling in reclaim_throttle().
4401e3c1ac58SAndrey Ryabinin 	 */
44021b05117dSJohannes Weiner 	if ((current_is_kswapd() ||
44031b05117dSJohannes Weiner 	     (cgroup_reclaim(sc) && writeback_throttling_sane(sc))) &&
4404e3c1ac58SAndrey Ryabinin 	    sc->nr.dirty && sc->nr.dirty == sc->nr.congested)
44051b05117dSJohannes Weiner 		set_bit(LRUVEC_CONGESTED, &target_lruvec->flags);
4406e3c1ac58SAndrey Ryabinin 
4407e3c1ac58SAndrey Ryabinin 	/*
44088cd7c588SMel Gorman 	 * Stall direct reclaim for IO completions if the lruvec is
44098cd7c588SMel Gorman 	 * node is congested. Allow kswapd to continue until it
4410d108c772SAndrey Ryabinin 	 * starts encountering unqueued dirty pages or cycling through
4411d108c772SAndrey Ryabinin 	 * the LRU too quickly.
4412d108c772SAndrey Ryabinin 	 */
44131b05117dSJohannes Weiner 	if (!current_is_kswapd() && current_may_throttle() &&
44141b05117dSJohannes Weiner 	    !sc->hibernation_mode &&
44151b05117dSJohannes Weiner 	    test_bit(LRUVEC_CONGESTED, &target_lruvec->flags))
44161b4e3f26SMel Gorman 		reclaim_throttle(pgdat, VMSCAN_THROTTLE_CONGESTED);
4417d108c772SAndrey Ryabinin 
4418d2af3397SJohannes Weiner 	if (should_continue_reclaim(pgdat, sc->nr_reclaimed - nr_reclaimed,
4419d2af3397SJohannes Weiner 				    sc))
4420d2af3397SJohannes Weiner 		goto again;
44212344d7e4SJohannes Weiner 
4422c73322d0SJohannes Weiner 	/*
4423c73322d0SJohannes Weiner 	 * Kswapd gives up on balancing particular nodes after too
4424c73322d0SJohannes Weiner 	 * many failures to reclaim anything from them and goes to
4425c73322d0SJohannes Weiner 	 * sleep. On reclaim progress, reset the failure counter. A
4426c73322d0SJohannes Weiner 	 * successful direct reclaim run will revive a dormant kswapd.
4427c73322d0SJohannes Weiner 	 */
4428c73322d0SJohannes Weiner 	if (reclaimable)
4429c73322d0SJohannes Weiner 		pgdat->kswapd_failures = 0;
4430f16015fbSJohannes Weiner }
4431f16015fbSJohannes Weiner 
443253853e2dSVlastimil Babka /*
4433fdd4c614SVlastimil Babka  * Returns true if compaction should go ahead for a costly-order request, or
4434fdd4c614SVlastimil Babka  * the allocation would already succeed without compaction. Return false if we
4435fdd4c614SVlastimil Babka  * should reclaim first.
443653853e2dSVlastimil Babka  */
44374f588331SMel Gorman static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
4438fe4b1b24SMel Gorman {
443931483b6aSMel Gorman 	unsigned long watermark;
4440fdd4c614SVlastimil Babka 	enum compact_result suitable;
4441fe4b1b24SMel Gorman 
4442fdd4c614SVlastimil Babka 	suitable = compaction_suitable(zone, sc->order, 0, sc->reclaim_idx);
4443fdd4c614SVlastimil Babka 	if (suitable == COMPACT_SUCCESS)
4444fdd4c614SVlastimil Babka 		/* Allocation should succeed already. Don't reclaim. */
4445fdd4c614SVlastimil Babka 		return true;
4446fdd4c614SVlastimil Babka 	if (suitable == COMPACT_SKIPPED)
4447fdd4c614SVlastimil Babka 		/* Compaction cannot yet proceed. Do reclaim. */
4448fe4b1b24SMel Gorman 		return false;
4449fe4b1b24SMel Gorman 
4450fdd4c614SVlastimil Babka 	/*
4451fdd4c614SVlastimil Babka 	 * Compaction is already possible, but it takes time to run and there
4452fdd4c614SVlastimil Babka 	 * are potentially other callers using the pages just freed. So proceed
4453fdd4c614SVlastimil Babka 	 * with reclaim to make a buffer of free pages available to give
4454fdd4c614SVlastimil Babka 	 * compaction a reasonable chance of completing and allocating the page.
4455fdd4c614SVlastimil Babka 	 * Note that we won't actually reclaim the whole buffer in one attempt
4456fdd4c614SVlastimil Babka 	 * as the target watermark in should_continue_reclaim() is lower. But if
4457fdd4c614SVlastimil Babka 	 * we are already above the high+gap watermark, don't reclaim at all.
4458fdd4c614SVlastimil Babka 	 */
4459fdd4c614SVlastimil Babka 	watermark = high_wmark_pages(zone) + compact_gap(sc->order);
4460fdd4c614SVlastimil Babka 
4461fdd4c614SVlastimil Babka 	return zone_watermark_ok_safe(zone, 0, watermark, sc->reclaim_idx);
4462fe4b1b24SMel Gorman }
4463fe4b1b24SMel Gorman 
446469392a40SMel Gorman static void consider_reclaim_throttle(pg_data_t *pgdat, struct scan_control *sc)
446569392a40SMel Gorman {
446666ce520bSMel Gorman 	/*
446766ce520bSMel Gorman 	 * If reclaim is making progress greater than 12% efficiency then
446866ce520bSMel Gorman 	 * wake all the NOPROGRESS throttled tasks.
446966ce520bSMel Gorman 	 */
447066ce520bSMel Gorman 	if (sc->nr_reclaimed > (sc->nr_scanned >> 3)) {
447169392a40SMel Gorman 		wait_queue_head_t *wqh;
447269392a40SMel Gorman 
447369392a40SMel Gorman 		wqh = &pgdat->reclaim_wait[VMSCAN_THROTTLE_NOPROGRESS];
447469392a40SMel Gorman 		if (waitqueue_active(wqh))
447569392a40SMel Gorman 			wake_up(wqh);
447669392a40SMel Gorman 
447769392a40SMel Gorman 		return;
447869392a40SMel Gorman 	}
447969392a40SMel Gorman 
448069392a40SMel Gorman 	/*
44811b4e3f26SMel Gorman 	 * Do not throttle kswapd or cgroup reclaim on NOPROGRESS as it will
44821b4e3f26SMel Gorman 	 * throttle on VMSCAN_THROTTLE_WRITEBACK if there are too many pages
44831b4e3f26SMel Gorman 	 * under writeback and marked for immediate reclaim at the tail of the
44841b4e3f26SMel Gorman 	 * LRU.
448569392a40SMel Gorman 	 */
44861b4e3f26SMel Gorman 	if (current_is_kswapd() || cgroup_reclaim(sc))
448769392a40SMel Gorman 		return;
448869392a40SMel Gorman 
448969392a40SMel Gorman 	/* Throttle if making no progress at high prioities. */
44901b4e3f26SMel Gorman 	if (sc->priority == 1 && !sc->nr_reclaimed)
4491c3f4a9a2SMel Gorman 		reclaim_throttle(pgdat, VMSCAN_THROTTLE_NOPROGRESS);
449269392a40SMel Gorman }
449369392a40SMel Gorman 
44941da177e4SLinus Torvalds /*
44951da177e4SLinus Torvalds  * This is the direct reclaim path, for page-allocating processes.  We only
44961da177e4SLinus Torvalds  * try to reclaim pages from zones which will satisfy the caller's allocation
44971da177e4SLinus Torvalds  * request.
44981da177e4SLinus Torvalds  *
44991da177e4SLinus Torvalds  * If a zone is deemed to be full of pinned pages then just give it a light
45001da177e4SLinus Torvalds  * scan then give up on it.
45011da177e4SLinus Torvalds  */
45020a0337e0SMichal Hocko static void shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
45031da177e4SLinus Torvalds {
4504dd1a239fSMel Gorman 	struct zoneref *z;
450554a6eb5cSMel Gorman 	struct zone *zone;
45060608f43dSAndrew Morton 	unsigned long nr_soft_reclaimed;
45070608f43dSAndrew Morton 	unsigned long nr_soft_scanned;
4508619d0d76SWeijie Yang 	gfp_t orig_mask;
450979dafcdcSMel Gorman 	pg_data_t *last_pgdat = NULL;
45101b4e3f26SMel Gorman 	pg_data_t *first_pgdat = NULL;
45111cfb419bSKAMEZAWA Hiroyuki 
4512cc715d99SMel Gorman 	/*
4513cc715d99SMel Gorman 	 * If the number of buffer_heads in the machine exceeds the maximum
4514cc715d99SMel Gorman 	 * allowed level, force direct reclaim to scan the highmem zone as
4515cc715d99SMel Gorman 	 * highmem pages could be pinning lowmem pages storing buffer_heads
4516cc715d99SMel Gorman 	 */
4517619d0d76SWeijie Yang 	orig_mask = sc->gfp_mask;
4518b2e18757SMel Gorman 	if (buffer_heads_over_limit) {
4519cc715d99SMel Gorman 		sc->gfp_mask |= __GFP_HIGHMEM;
45204f588331SMel Gorman 		sc->reclaim_idx = gfp_zone(sc->gfp_mask);
4521b2e18757SMel Gorman 	}
4522cc715d99SMel Gorman 
4523d4debc66SMel Gorman 	for_each_zone_zonelist_nodemask(zone, z, zonelist,
4524b2e18757SMel Gorman 					sc->reclaim_idx, sc->nodemask) {
4525b2e18757SMel Gorman 		/*
45261cfb419bSKAMEZAWA Hiroyuki 		 * Take care memory controller reclaiming has small influence
45271cfb419bSKAMEZAWA Hiroyuki 		 * to global LRU.
45281cfb419bSKAMEZAWA Hiroyuki 		 */
4529b5ead35eSJohannes Weiner 		if (!cgroup_reclaim(sc)) {
4530344736f2SVladimir Davydov 			if (!cpuset_zone_allowed(zone,
4531344736f2SVladimir Davydov 						 GFP_KERNEL | __GFP_HARDWALL))
45321da177e4SLinus Torvalds 				continue;
453365ec02cbSVladimir Davydov 
4534e0887c19SRik van Riel 			/*
4535e0c23279SMel Gorman 			 * If we already have plenty of memory free for
4536e0c23279SMel Gorman 			 * compaction in this zone, don't free any more.
4537e0c23279SMel Gorman 			 * Even though compaction is invoked for any
4538e0c23279SMel Gorman 			 * non-zero order, only frequent costly order
4539e0c23279SMel Gorman 			 * reclamation is disruptive enough to become a
4540c7cfa37bSCopot Alexandru 			 * noticeable problem, like transparent huge
4541c7cfa37bSCopot Alexandru 			 * page allocations.
4542e0887c19SRik van Riel 			 */
45430b06496aSJohannes Weiner 			if (IS_ENABLED(CONFIG_COMPACTION) &&
45440b06496aSJohannes Weiner 			    sc->order > PAGE_ALLOC_COSTLY_ORDER &&
45454f588331SMel Gorman 			    compaction_ready(zone, sc)) {
45460b06496aSJohannes Weiner 				sc->compaction_ready = true;
4547e0887c19SRik van Riel 				continue;
4548e0887c19SRik van Riel 			}
45490b06496aSJohannes Weiner 
45500608f43dSAndrew Morton 			/*
455179dafcdcSMel Gorman 			 * Shrink each node in the zonelist once. If the
455279dafcdcSMel Gorman 			 * zonelist is ordered by zone (not the default) then a
455379dafcdcSMel Gorman 			 * node may be shrunk multiple times but in that case
455479dafcdcSMel Gorman 			 * the user prefers lower zones being preserved.
455579dafcdcSMel Gorman 			 */
455679dafcdcSMel Gorman 			if (zone->zone_pgdat == last_pgdat)
455779dafcdcSMel Gorman 				continue;
455879dafcdcSMel Gorman 
455979dafcdcSMel Gorman 			/*
45600608f43dSAndrew Morton 			 * This steals pages from memory cgroups over softlimit
45610608f43dSAndrew Morton 			 * and returns the number of reclaimed pages and
45620608f43dSAndrew Morton 			 * scanned pages. This works for global memory pressure
45630608f43dSAndrew Morton 			 * and balancing, not for a memcg's limit.
45640608f43dSAndrew Morton 			 */
45650608f43dSAndrew Morton 			nr_soft_scanned = 0;
4566ef8f2327SMel Gorman 			nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone->zone_pgdat,
45670608f43dSAndrew Morton 						sc->order, sc->gfp_mask,
45680608f43dSAndrew Morton 						&nr_soft_scanned);
45690608f43dSAndrew Morton 			sc->nr_reclaimed += nr_soft_reclaimed;
45700608f43dSAndrew Morton 			sc->nr_scanned += nr_soft_scanned;
4571ac34a1a3SKAMEZAWA Hiroyuki 			/* need some check for avoid more shrink_zone() */
4572ac34a1a3SKAMEZAWA Hiroyuki 		}
4573d149e3b2SYing Han 
45741b4e3f26SMel Gorman 		if (!first_pgdat)
45751b4e3f26SMel Gorman 			first_pgdat = zone->zone_pgdat;
45761b4e3f26SMel Gorman 
457779dafcdcSMel Gorman 		/* See comment about same check for global reclaim above */
457879dafcdcSMel Gorman 		if (zone->zone_pgdat == last_pgdat)
457979dafcdcSMel Gorman 			continue;
458079dafcdcSMel Gorman 		last_pgdat = zone->zone_pgdat;
4581970a39a3SMel Gorman 		shrink_node(zone->zone_pgdat, sc);
45821da177e4SLinus Torvalds 	}
4583e0c23279SMel Gorman 
458480082938SMel Gorman 	if (first_pgdat)
45851b4e3f26SMel Gorman 		consider_reclaim_throttle(first_pgdat, sc);
45861b4e3f26SMel Gorman 
458765ec02cbSVladimir Davydov 	/*
4588619d0d76SWeijie Yang 	 * Restore to original mask to avoid the impact on the caller if we
4589619d0d76SWeijie Yang 	 * promoted it to __GFP_HIGHMEM.
4590619d0d76SWeijie Yang 	 */
4591619d0d76SWeijie Yang 	sc->gfp_mask = orig_mask;
45921da177e4SLinus Torvalds }
45931da177e4SLinus Torvalds 
4594b910718aSJohannes Weiner static void snapshot_refaults(struct mem_cgroup *target_memcg, pg_data_t *pgdat)
45952a2e4885SJohannes Weiner {
4596b910718aSJohannes Weiner 	struct lruvec *target_lruvec;
45972a2e4885SJohannes Weiner 	unsigned long refaults;
45982a2e4885SJohannes Weiner 
4599ac35a490SYu Zhao 	if (lru_gen_enabled())
4600ac35a490SYu Zhao 		return;
4601ac35a490SYu Zhao 
4602b910718aSJohannes Weiner 	target_lruvec = mem_cgroup_lruvec(target_memcg, pgdat);
4603170b04b7SJoonsoo Kim 	refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_ANON);
4604e9c2dbc8SYang Yang 	target_lruvec->refaults[WORKINGSET_ANON] = refaults;
4605170b04b7SJoonsoo Kim 	refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_FILE);
4606e9c2dbc8SYang Yang 	target_lruvec->refaults[WORKINGSET_FILE] = refaults;
46072a2e4885SJohannes Weiner }
46082a2e4885SJohannes Weiner 
46091da177e4SLinus Torvalds /*
46101da177e4SLinus Torvalds  * This is the main entry point to direct page reclaim.
46111da177e4SLinus Torvalds  *
46121da177e4SLinus Torvalds  * If a full scan of the inactive list fails to free enough memory then we
46131da177e4SLinus Torvalds  * are "out of memory" and something needs to be killed.
46141da177e4SLinus Torvalds  *
46151da177e4SLinus Torvalds  * If the caller is !__GFP_FS then the probability of a failure is reasonably
46161da177e4SLinus Torvalds  * high - the zone may be full of dirty or under-writeback pages, which this
46175b0830cbSJens Axboe  * caller can't do much about.  We kick the writeback threads and take explicit
46185b0830cbSJens Axboe  * naps in the hope that some of these pages can be written.  But if the
46195b0830cbSJens Axboe  * allocating task holds filesystem locks which prevent writeout this might not
46205b0830cbSJens Axboe  * work, and the allocation attempt will fail.
4621a41f24eaSNishanth Aravamudan  *
4622a41f24eaSNishanth Aravamudan  * returns:	0, if no pages reclaimed
4623a41f24eaSNishanth Aravamudan  * 		else, the number of pages reclaimed
46241da177e4SLinus Torvalds  */
4625dac1d27bSMel Gorman static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
46263115cd91SVladimir Davydov 					  struct scan_control *sc)
46271da177e4SLinus Torvalds {
4628241994edSJohannes Weiner 	int initial_priority = sc->priority;
46292a2e4885SJohannes Weiner 	pg_data_t *last_pgdat;
46302a2e4885SJohannes Weiner 	struct zoneref *z;
46312a2e4885SJohannes Weiner 	struct zone *zone;
4632241994edSJohannes Weiner retry:
4633873b4771SKeika Kobayashi 	delayacct_freepages_start();
4634873b4771SKeika Kobayashi 
4635b5ead35eSJohannes Weiner 	if (!cgroup_reclaim(sc))
46367cc30fcfSMel Gorman 		__count_zid_vm_events(ALLOCSTALL, sc->reclaim_idx, 1);
46371da177e4SLinus Torvalds 
46389e3b2f8cSKonstantin Khlebnikov 	do {
463973b73bacSYosry Ahmed 		if (!sc->proactive)
464070ddf637SAnton Vorontsov 			vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
464170ddf637SAnton Vorontsov 					sc->priority);
464266e1707bSBalbir Singh 		sc->nr_scanned = 0;
46430a0337e0SMichal Hocko 		shrink_zones(zonelist, sc);
4644e0c23279SMel Gorman 
4645bb21c7ceSKOSAKI Motohiro 		if (sc->nr_reclaimed >= sc->nr_to_reclaim)
46460b06496aSJohannes Weiner 			break;
46470b06496aSJohannes Weiner 
46480b06496aSJohannes Weiner 		if (sc->compaction_ready)
46490b06496aSJohannes Weiner 			break;
46501da177e4SLinus Torvalds 
46511da177e4SLinus Torvalds 		/*
46520e50ce3bSMinchan Kim 		 * If we're getting trouble reclaiming, start doing
46530e50ce3bSMinchan Kim 		 * writepage even in laptop mode.
46540e50ce3bSMinchan Kim 		 */
46550e50ce3bSMinchan Kim 		if (sc->priority < DEF_PRIORITY - 2)
46560e50ce3bSMinchan Kim 			sc->may_writepage = 1;
46570b06496aSJohannes Weiner 	} while (--sc->priority >= 0);
4658bb21c7ceSKOSAKI Motohiro 
46592a2e4885SJohannes Weiner 	last_pgdat = NULL;
46602a2e4885SJohannes Weiner 	for_each_zone_zonelist_nodemask(zone, z, zonelist, sc->reclaim_idx,
46612a2e4885SJohannes Weiner 					sc->nodemask) {
46622a2e4885SJohannes Weiner 		if (zone->zone_pgdat == last_pgdat)
46632a2e4885SJohannes Weiner 			continue;
46642a2e4885SJohannes Weiner 		last_pgdat = zone->zone_pgdat;
46651b05117dSJohannes Weiner 
46662a2e4885SJohannes Weiner 		snapshot_refaults(sc->target_mem_cgroup, zone->zone_pgdat);
46671b05117dSJohannes Weiner 
46681b05117dSJohannes Weiner 		if (cgroup_reclaim(sc)) {
46691b05117dSJohannes Weiner 			struct lruvec *lruvec;
46701b05117dSJohannes Weiner 
46711b05117dSJohannes Weiner 			lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup,
46721b05117dSJohannes Weiner 						   zone->zone_pgdat);
46731b05117dSJohannes Weiner 			clear_bit(LRUVEC_CONGESTED, &lruvec->flags);
46741b05117dSJohannes Weiner 		}
46752a2e4885SJohannes Weiner 	}
46762a2e4885SJohannes Weiner 
4677873b4771SKeika Kobayashi 	delayacct_freepages_end();
4678873b4771SKeika Kobayashi 
4679bb21c7ceSKOSAKI Motohiro 	if (sc->nr_reclaimed)
4680bb21c7ceSKOSAKI Motohiro 		return sc->nr_reclaimed;
4681bb21c7ceSKOSAKI Motohiro 
46820cee34fdSMel Gorman 	/* Aborted reclaim to try compaction? don't OOM, then */
46830b06496aSJohannes Weiner 	if (sc->compaction_ready)
46847335084dSMel Gorman 		return 1;
46857335084dSMel Gorman 
4686b91ac374SJohannes Weiner 	/*
4687b91ac374SJohannes Weiner 	 * We make inactive:active ratio decisions based on the node's
4688b91ac374SJohannes Weiner 	 * composition of memory, but a restrictive reclaim_idx or a
4689b91ac374SJohannes Weiner 	 * memory.low cgroup setting can exempt large amounts of
4690b91ac374SJohannes Weiner 	 * memory from reclaim. Neither of which are very common, so
4691b91ac374SJohannes Weiner 	 * instead of doing costly eligibility calculations of the
4692b91ac374SJohannes Weiner 	 * entire cgroup subtree up front, we assume the estimates are
4693b91ac374SJohannes Weiner 	 * good, and retry with forcible deactivation if that fails.
4694b91ac374SJohannes Weiner 	 */
4695b91ac374SJohannes Weiner 	if (sc->skipped_deactivate) {
4696b91ac374SJohannes Weiner 		sc->priority = initial_priority;
4697b91ac374SJohannes Weiner 		sc->force_deactivate = 1;
4698b91ac374SJohannes Weiner 		sc->skipped_deactivate = 0;
4699b91ac374SJohannes Weiner 		goto retry;
4700b91ac374SJohannes Weiner 	}
4701b91ac374SJohannes Weiner 
4702241994edSJohannes Weiner 	/* Untapped cgroup reserves?  Don't OOM, retry. */
4703d6622f63SYisheng Xie 	if (sc->memcg_low_skipped) {
4704241994edSJohannes Weiner 		sc->priority = initial_priority;
4705b91ac374SJohannes Weiner 		sc->force_deactivate = 0;
4706d6622f63SYisheng Xie 		sc->memcg_low_reclaim = 1;
4707d6622f63SYisheng Xie 		sc->memcg_low_skipped = 0;
4708241994edSJohannes Weiner 		goto retry;
4709241994edSJohannes Weiner 	}
4710241994edSJohannes Weiner 
4711bb21c7ceSKOSAKI Motohiro 	return 0;
47121da177e4SLinus Torvalds }
47131da177e4SLinus Torvalds 
4714c73322d0SJohannes Weiner static bool allow_direct_reclaim(pg_data_t *pgdat)
47155515061dSMel Gorman {
47165515061dSMel Gorman 	struct zone *zone;
47175515061dSMel Gorman 	unsigned long pfmemalloc_reserve = 0;
47185515061dSMel Gorman 	unsigned long free_pages = 0;
47195515061dSMel Gorman 	int i;
47205515061dSMel Gorman 	bool wmark_ok;
47215515061dSMel Gorman 
4722c73322d0SJohannes Weiner 	if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
4723c73322d0SJohannes Weiner 		return true;
4724c73322d0SJohannes Weiner 
47255515061dSMel Gorman 	for (i = 0; i <= ZONE_NORMAL; i++) {
47265515061dSMel Gorman 		zone = &pgdat->node_zones[i];
4727d450abd8SJohannes Weiner 		if (!managed_zone(zone))
4728d450abd8SJohannes Weiner 			continue;
4729d450abd8SJohannes Weiner 
4730d450abd8SJohannes Weiner 		if (!zone_reclaimable_pages(zone))
4731675becceSMel Gorman 			continue;
4732675becceSMel Gorman 
47335515061dSMel Gorman 		pfmemalloc_reserve += min_wmark_pages(zone);
47345515061dSMel Gorman 		free_pages += zone_page_state(zone, NR_FREE_PAGES);
47355515061dSMel Gorman 	}
47365515061dSMel Gorman 
4737675becceSMel Gorman 	/* If there are no reserves (unexpected config) then do not throttle */
4738675becceSMel Gorman 	if (!pfmemalloc_reserve)
4739675becceSMel Gorman 		return true;
4740675becceSMel Gorman 
47415515061dSMel Gorman 	wmark_ok = free_pages > pfmemalloc_reserve / 2;
47425515061dSMel Gorman 
47435515061dSMel Gorman 	/* kswapd must be awake if processes are being throttled */
47445515061dSMel Gorman 	if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
474597a225e6SJoonsoo Kim 		if (READ_ONCE(pgdat->kswapd_highest_zoneidx) > ZONE_NORMAL)
474697a225e6SJoonsoo Kim 			WRITE_ONCE(pgdat->kswapd_highest_zoneidx, ZONE_NORMAL);
47475644e1fbSQian Cai 
47485515061dSMel Gorman 		wake_up_interruptible(&pgdat->kswapd_wait);
47495515061dSMel Gorman 	}
47505515061dSMel Gorman 
47515515061dSMel Gorman 	return wmark_ok;
47525515061dSMel Gorman }
47535515061dSMel Gorman 
47545515061dSMel Gorman /*
47555515061dSMel Gorman  * Throttle direct reclaimers if backing storage is backed by the network
47565515061dSMel Gorman  * and the PFMEMALLOC reserve for the preferred node is getting dangerously
47575515061dSMel Gorman  * depleted. kswapd will continue to make progress and wake the processes
475850694c28SMel Gorman  * when the low watermark is reached.
475950694c28SMel Gorman  *
476050694c28SMel Gorman  * Returns true if a fatal signal was delivered during throttling. If this
476150694c28SMel Gorman  * happens, the page allocator should not consider triggering the OOM killer.
47625515061dSMel Gorman  */
476350694c28SMel Gorman static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
47645515061dSMel Gorman 					nodemask_t *nodemask)
47655515061dSMel Gorman {
4766675becceSMel Gorman 	struct zoneref *z;
47675515061dSMel Gorman 	struct zone *zone;
4768675becceSMel Gorman 	pg_data_t *pgdat = NULL;
47695515061dSMel Gorman 
47705515061dSMel Gorman 	/*
47715515061dSMel Gorman 	 * Kernel threads should not be throttled as they may be indirectly
47725515061dSMel Gorman 	 * responsible for cleaning pages necessary for reclaim to make forward
47735515061dSMel Gorman 	 * progress. kjournald for example may enter direct reclaim while
47745515061dSMel Gorman 	 * committing a transaction where throttling it could forcing other
47755515061dSMel Gorman 	 * processes to block on log_wait_commit().
47765515061dSMel Gorman 	 */
47775515061dSMel Gorman 	if (current->flags & PF_KTHREAD)
477850694c28SMel Gorman 		goto out;
477950694c28SMel Gorman 
478050694c28SMel Gorman 	/*
478150694c28SMel Gorman 	 * If a fatal signal is pending, this process should not throttle.
478250694c28SMel Gorman 	 * It should return quickly so it can exit and free its memory
478350694c28SMel Gorman 	 */
478450694c28SMel Gorman 	if (fatal_signal_pending(current))
478550694c28SMel Gorman 		goto out;
47865515061dSMel Gorman 
4787675becceSMel Gorman 	/*
4788675becceSMel Gorman 	 * Check if the pfmemalloc reserves are ok by finding the first node
4789675becceSMel Gorman 	 * with a usable ZONE_NORMAL or lower zone. The expectation is that
4790675becceSMel Gorman 	 * GFP_KERNEL will be required for allocating network buffers when
4791675becceSMel Gorman 	 * swapping over the network so ZONE_HIGHMEM is unusable.
4792675becceSMel Gorman 	 *
4793675becceSMel Gorman 	 * Throttling is based on the first usable node and throttled processes
4794675becceSMel Gorman 	 * wait on a queue until kswapd makes progress and wakes them. There
4795675becceSMel Gorman 	 * is an affinity then between processes waking up and where reclaim
4796675becceSMel Gorman 	 * progress has been made assuming the process wakes on the same node.
4797675becceSMel Gorman 	 * More importantly, processes running on remote nodes will not compete
4798675becceSMel Gorman 	 * for remote pfmemalloc reserves and processes on different nodes
4799675becceSMel Gorman 	 * should make reasonable progress.
4800675becceSMel Gorman 	 */
4801675becceSMel Gorman 	for_each_zone_zonelist_nodemask(zone, z, zonelist,
480217636faaSMichael S. Tsirkin 					gfp_zone(gfp_mask), nodemask) {
4803675becceSMel Gorman 		if (zone_idx(zone) > ZONE_NORMAL)
4804675becceSMel Gorman 			continue;
4805675becceSMel Gorman 
4806675becceSMel Gorman 		/* Throttle based on the first usable node */
48075515061dSMel Gorman 		pgdat = zone->zone_pgdat;
4808c73322d0SJohannes Weiner 		if (allow_direct_reclaim(pgdat))
480950694c28SMel Gorman 			goto out;
4810675becceSMel Gorman 		break;
4811675becceSMel Gorman 	}
4812675becceSMel Gorman 
4813675becceSMel Gorman 	/* If no zone was usable by the allocation flags then do not throttle */
4814675becceSMel Gorman 	if (!pgdat)
4815675becceSMel Gorman 		goto out;
48165515061dSMel Gorman 
481768243e76SMel Gorman 	/* Account for the throttling */
481868243e76SMel Gorman 	count_vm_event(PGSCAN_DIRECT_THROTTLE);
481968243e76SMel Gorman 
48205515061dSMel Gorman 	/*
48215515061dSMel Gorman 	 * If the caller cannot enter the filesystem, it's possible that it
48225515061dSMel Gorman 	 * is due to the caller holding an FS lock or performing a journal
48235515061dSMel Gorman 	 * transaction in the case of a filesystem like ext[3|4]. In this case,
48245515061dSMel Gorman 	 * it is not safe to block on pfmemalloc_wait as kswapd could be
48255515061dSMel Gorman 	 * blocked waiting on the same lock. Instead, throttle for up to a
48265515061dSMel Gorman 	 * second before continuing.
48275515061dSMel Gorman 	 */
48282e786d9eSMiaohe Lin 	if (!(gfp_mask & __GFP_FS))
48295515061dSMel Gorman 		wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
4830c73322d0SJohannes Weiner 			allow_direct_reclaim(pgdat), HZ);
48312e786d9eSMiaohe Lin 	else
48325515061dSMel Gorman 		/* Throttle until kswapd wakes the process */
48335515061dSMel Gorman 		wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
4834c73322d0SJohannes Weiner 			allow_direct_reclaim(pgdat));
483550694c28SMel Gorman 
483650694c28SMel Gorman 	if (fatal_signal_pending(current))
483750694c28SMel Gorman 		return true;
483850694c28SMel Gorman 
483950694c28SMel Gorman out:
484050694c28SMel Gorman 	return false;
48415515061dSMel Gorman }
48425515061dSMel Gorman 
4843dac1d27bSMel Gorman unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
4844327c0e96SKAMEZAWA Hiroyuki 				gfp_t gfp_mask, nodemask_t *nodemask)
484566e1707bSBalbir Singh {
484633906bc5SMel Gorman 	unsigned long nr_reclaimed;
484766e1707bSBalbir Singh 	struct scan_control sc = {
484822fba335SKOSAKI Motohiro 		.nr_to_reclaim = SWAP_CLUSTER_MAX,
4849f2f43e56SNick Desaulniers 		.gfp_mask = current_gfp_context(gfp_mask),
4850b2e18757SMel Gorman 		.reclaim_idx = gfp_zone(gfp_mask),
4851ee814fe2SJohannes Weiner 		.order = order,
4852ee814fe2SJohannes Weiner 		.nodemask = nodemask,
4853ee814fe2SJohannes Weiner 		.priority = DEF_PRIORITY,
4854ee814fe2SJohannes Weiner 		.may_writepage = !laptop_mode,
4855a6dc60f8SJohannes Weiner 		.may_unmap = 1,
48562e2e4259SKOSAKI Motohiro 		.may_swap = 1,
485766e1707bSBalbir Singh 	};
485866e1707bSBalbir Singh 
48595515061dSMel Gorman 	/*
4860bb451fdfSGreg Thelen 	 * scan_control uses s8 fields for order, priority, and reclaim_idx.
4861bb451fdfSGreg Thelen 	 * Confirm they are large enough for max values.
4862bb451fdfSGreg Thelen 	 */
4863bb451fdfSGreg Thelen 	BUILD_BUG_ON(MAX_ORDER > S8_MAX);
4864bb451fdfSGreg Thelen 	BUILD_BUG_ON(DEF_PRIORITY > S8_MAX);
4865bb451fdfSGreg Thelen 	BUILD_BUG_ON(MAX_NR_ZONES > S8_MAX);
4866bb451fdfSGreg Thelen 
4867bb451fdfSGreg Thelen 	/*
486850694c28SMel Gorman 	 * Do not enter reclaim if fatal signal was delivered while throttled.
486950694c28SMel Gorman 	 * 1 is returned so that the page allocator does not OOM kill at this
487050694c28SMel Gorman 	 * point.
48715515061dSMel Gorman 	 */
4872f2f43e56SNick Desaulniers 	if (throttle_direct_reclaim(sc.gfp_mask, zonelist, nodemask))
48735515061dSMel Gorman 		return 1;
48745515061dSMel Gorman 
48751732d2b0SAndrew Morton 	set_task_reclaim_state(current, &sc.reclaim_state);
48763481c37fSYafang Shao 	trace_mm_vmscan_direct_reclaim_begin(order, sc.gfp_mask);
487733906bc5SMel Gorman 
48783115cd91SVladimir Davydov 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
487933906bc5SMel Gorman 
488033906bc5SMel Gorman 	trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
48811732d2b0SAndrew Morton 	set_task_reclaim_state(current, NULL);
488233906bc5SMel Gorman 
488333906bc5SMel Gorman 	return nr_reclaimed;
488466e1707bSBalbir Singh }
488566e1707bSBalbir Singh 
4886c255a458SAndrew Morton #ifdef CONFIG_MEMCG
488766e1707bSBalbir Singh 
4888d2e5fb92SMichal Hocko /* Only used by soft limit reclaim. Do not reuse for anything else. */
4889a9dd0a83SMel Gorman unsigned long mem_cgroup_shrink_node(struct mem_cgroup *memcg,
48904e416953SBalbir Singh 						gfp_t gfp_mask, bool noswap,
4891ef8f2327SMel Gorman 						pg_data_t *pgdat,
48920ae5e89cSYing Han 						unsigned long *nr_scanned)
48934e416953SBalbir Singh {
4894afaf07a6SJohannes Weiner 	struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
48954e416953SBalbir Singh 	struct scan_control sc = {
4896b8f5c566SKOSAKI Motohiro 		.nr_to_reclaim = SWAP_CLUSTER_MAX,
4897ee814fe2SJohannes Weiner 		.target_mem_cgroup = memcg,
48984e416953SBalbir Singh 		.may_writepage = !laptop_mode,
48994e416953SBalbir Singh 		.may_unmap = 1,
4900b2e18757SMel Gorman 		.reclaim_idx = MAX_NR_ZONES - 1,
49014e416953SBalbir Singh 		.may_swap = !noswap,
49024e416953SBalbir Singh 	};
49030ae5e89cSYing Han 
4904d2e5fb92SMichal Hocko 	WARN_ON_ONCE(!current->reclaim_state);
4905d2e5fb92SMichal Hocko 
49064e416953SBalbir Singh 	sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
49074e416953SBalbir Singh 			(GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
4908bdce6d9eSKOSAKI Motohiro 
49099e3b2f8cSKonstantin Khlebnikov 	trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
49103481c37fSYafang Shao 						      sc.gfp_mask);
4911bdce6d9eSKOSAKI Motohiro 
49124e416953SBalbir Singh 	/*
49134e416953SBalbir Singh 	 * NOTE: Although we can get the priority field, using it
49144e416953SBalbir Singh 	 * here is not a good idea, since it limits the pages we can scan.
4915a9dd0a83SMel Gorman 	 * if we don't reclaim here, the shrink_node from balance_pgdat
49164e416953SBalbir Singh 	 * will pick up pages from other mem cgroup's as well. We hack
49174e416953SBalbir Singh 	 * the priority and make it zero.
49184e416953SBalbir Singh 	 */
4919afaf07a6SJohannes Weiner 	shrink_lruvec(lruvec, &sc);
4920bdce6d9eSKOSAKI Motohiro 
4921bdce6d9eSKOSAKI Motohiro 	trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
4922bdce6d9eSKOSAKI Motohiro 
49230ae5e89cSYing Han 	*nr_scanned = sc.nr_scanned;
49240308f7cfSYafang Shao 
49254e416953SBalbir Singh 	return sc.nr_reclaimed;
49264e416953SBalbir Singh }
49274e416953SBalbir Singh 
492872835c86SJohannes Weiner unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
4929b70a2a21SJohannes Weiner 					   unsigned long nr_pages,
49308c7c6e34SKAMEZAWA Hiroyuki 					   gfp_t gfp_mask,
493173b73bacSYosry Ahmed 					   unsigned int reclaim_options)
493266e1707bSBalbir Singh {
4933bdce6d9eSKOSAKI Motohiro 	unsigned long nr_reclaimed;
4934499118e9SVlastimil Babka 	unsigned int noreclaim_flag;
493566e1707bSBalbir Singh 	struct scan_control sc = {
4936b70a2a21SJohannes Weiner 		.nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
49377dea19f9SMichal Hocko 		.gfp_mask = (current_gfp_context(gfp_mask) & GFP_RECLAIM_MASK) |
4938ee814fe2SJohannes Weiner 				(GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
4939b2e18757SMel Gorman 		.reclaim_idx = MAX_NR_ZONES - 1,
4940ee814fe2SJohannes Weiner 		.target_mem_cgroup = memcg,
4941ee814fe2SJohannes Weiner 		.priority = DEF_PRIORITY,
494266e1707bSBalbir Singh 		.may_writepage = !laptop_mode,
4943a6dc60f8SJohannes Weiner 		.may_unmap = 1,
494473b73bacSYosry Ahmed 		.may_swap = !!(reclaim_options & MEMCG_RECLAIM_MAY_SWAP),
494573b73bacSYosry Ahmed 		.proactive = !!(reclaim_options & MEMCG_RECLAIM_PROACTIVE),
4946a09ed5e0SYing Han 	};
4947fa40d1eeSShakeel Butt 	/*
4948fa40d1eeSShakeel Butt 	 * Traverse the ZONELIST_FALLBACK zonelist of the current node to put
4949fa40d1eeSShakeel Butt 	 * equal pressure on all the nodes. This is based on the assumption that
4950fa40d1eeSShakeel Butt 	 * the reclaim does not bail out early.
4951fa40d1eeSShakeel Butt 	 */
4952fa40d1eeSShakeel Butt 	struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
495366e1707bSBalbir Singh 
49541732d2b0SAndrew Morton 	set_task_reclaim_state(current, &sc.reclaim_state);
49553481c37fSYafang Shao 	trace_mm_vmscan_memcg_reclaim_begin(0, sc.gfp_mask);
4956499118e9SVlastimil Babka 	noreclaim_flag = memalloc_noreclaim_save();
4957eb414681SJohannes Weiner 
49583115cd91SVladimir Davydov 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
4959eb414681SJohannes Weiner 
4960499118e9SVlastimil Babka 	memalloc_noreclaim_restore(noreclaim_flag);
4961bdce6d9eSKOSAKI Motohiro 	trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
49621732d2b0SAndrew Morton 	set_task_reclaim_state(current, NULL);
4963bdce6d9eSKOSAKI Motohiro 
4964bdce6d9eSKOSAKI Motohiro 	return nr_reclaimed;
496566e1707bSBalbir Singh }
496666e1707bSBalbir Singh #endif
496766e1707bSBalbir Singh 
4968ac35a490SYu Zhao static void kswapd_age_node(struct pglist_data *pgdat, struct scan_control *sc)
4969f16015fbSJohannes Weiner {
4970b95a2f2dSJohannes Weiner 	struct mem_cgroup *memcg;
4971b91ac374SJohannes Weiner 	struct lruvec *lruvec;
4972b95a2f2dSJohannes Weiner 
4973ac35a490SYu Zhao 	if (lru_gen_enabled()) {
4974ac35a490SYu Zhao 		lru_gen_age_node(pgdat, sc);
4975ac35a490SYu Zhao 		return;
4976ac35a490SYu Zhao 	}
4977ac35a490SYu Zhao 
49782f368a9fSDave Hansen 	if (!can_age_anon_pages(pgdat, sc))
4979b95a2f2dSJohannes Weiner 		return;
4980b95a2f2dSJohannes Weiner 
4981b91ac374SJohannes Weiner 	lruvec = mem_cgroup_lruvec(NULL, pgdat);
4982b91ac374SJohannes Weiner 	if (!inactive_is_low(lruvec, LRU_INACTIVE_ANON))
4983b91ac374SJohannes Weiner 		return;
4984b91ac374SJohannes Weiner 
4985b95a2f2dSJohannes Weiner 	memcg = mem_cgroup_iter(NULL, NULL, NULL);
4986b95a2f2dSJohannes Weiner 	do {
4987b91ac374SJohannes Weiner 		lruvec = mem_cgroup_lruvec(memcg, pgdat);
49881a93be0eSKonstantin Khlebnikov 		shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
49899e3b2f8cSKonstantin Khlebnikov 				   sc, LRU_ACTIVE_ANON);
4990b95a2f2dSJohannes Weiner 		memcg = mem_cgroup_iter(NULL, memcg, NULL);
4991b95a2f2dSJohannes Weiner 	} while (memcg);
4992f16015fbSJohannes Weiner }
4993f16015fbSJohannes Weiner 
499497a225e6SJoonsoo Kim static bool pgdat_watermark_boosted(pg_data_t *pgdat, int highest_zoneidx)
49951c30844dSMel Gorman {
49961c30844dSMel Gorman 	int i;
49971c30844dSMel Gorman 	struct zone *zone;
49981c30844dSMel Gorman 
49991c30844dSMel Gorman 	/*
50001c30844dSMel Gorman 	 * Check for watermark boosts top-down as the higher zones
50011c30844dSMel Gorman 	 * are more likely to be boosted. Both watermarks and boosts
50021eba09c1SRandy Dunlap 	 * should not be checked at the same time as reclaim would
50031c30844dSMel Gorman 	 * start prematurely when there is no boosting and a lower
50041c30844dSMel Gorman 	 * zone is balanced.
50051c30844dSMel Gorman 	 */
500697a225e6SJoonsoo Kim 	for (i = highest_zoneidx; i >= 0; i--) {
50071c30844dSMel Gorman 		zone = pgdat->node_zones + i;
50081c30844dSMel Gorman 		if (!managed_zone(zone))
50091c30844dSMel Gorman 			continue;
50101c30844dSMel Gorman 
50111c30844dSMel Gorman 		if (zone->watermark_boost)
50121c30844dSMel Gorman 			return true;
50131c30844dSMel Gorman 	}
50141c30844dSMel Gorman 
50151c30844dSMel Gorman 	return false;
50161c30844dSMel Gorman }
50171c30844dSMel Gorman 
5018e716f2ebSMel Gorman /*
5019e716f2ebSMel Gorman  * Returns true if there is an eligible zone balanced for the request order
502097a225e6SJoonsoo Kim  * and highest_zoneidx
5021e716f2ebSMel Gorman  */
502297a225e6SJoonsoo Kim static bool pgdat_balanced(pg_data_t *pgdat, int order, int highest_zoneidx)
502360cefed4SJohannes Weiner {
5024e716f2ebSMel Gorman 	int i;
5025e716f2ebSMel Gorman 	unsigned long mark = -1;
5026e716f2ebSMel Gorman 	struct zone *zone;
502760cefed4SJohannes Weiner 
50281c30844dSMel Gorman 	/*
50291c30844dSMel Gorman 	 * Check watermarks bottom-up as lower zones are more likely to
50301c30844dSMel Gorman 	 * meet watermarks.
50311c30844dSMel Gorman 	 */
503297a225e6SJoonsoo Kim 	for (i = 0; i <= highest_zoneidx; i++) {
5033e716f2ebSMel Gorman 		zone = pgdat->node_zones + i;
50346256c6b4SMel Gorman 
5035e716f2ebSMel Gorman 		if (!managed_zone(zone))
5036e716f2ebSMel Gorman 			continue;
5037e716f2ebSMel Gorman 
5038c574bbe9SHuang Ying 		if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING)
5039c574bbe9SHuang Ying 			mark = wmark_pages(zone, WMARK_PROMO);
5040c574bbe9SHuang Ying 		else
5041e716f2ebSMel Gorman 			mark = high_wmark_pages(zone);
504297a225e6SJoonsoo Kim 		if (zone_watermark_ok_safe(zone, order, mark, highest_zoneidx))
50436256c6b4SMel Gorman 			return true;
504460cefed4SJohannes Weiner 	}
504560cefed4SJohannes Weiner 
5046e716f2ebSMel Gorman 	/*
504736c26128SWei Yang 	 * If a node has no managed zone within highest_zoneidx, it does not
5048e716f2ebSMel Gorman 	 * need balancing by definition. This can happen if a zone-restricted
5049e716f2ebSMel Gorman 	 * allocation tries to wake a remote kswapd.
5050e716f2ebSMel Gorman 	 */
5051e716f2ebSMel Gorman 	if (mark == -1)
5052e716f2ebSMel Gorman 		return true;
5053e716f2ebSMel Gorman 
5054e716f2ebSMel Gorman 	return false;
5055e716f2ebSMel Gorman }
5056e716f2ebSMel Gorman 
5057631b6e08SMel Gorman /* Clear pgdat state for congested, dirty or under writeback. */
5058631b6e08SMel Gorman static void clear_pgdat_congested(pg_data_t *pgdat)
5059631b6e08SMel Gorman {
50601b05117dSJohannes Weiner 	struct lruvec *lruvec = mem_cgroup_lruvec(NULL, pgdat);
50611b05117dSJohannes Weiner 
50621b05117dSJohannes Weiner 	clear_bit(LRUVEC_CONGESTED, &lruvec->flags);
5063631b6e08SMel Gorman 	clear_bit(PGDAT_DIRTY, &pgdat->flags);
5064631b6e08SMel Gorman 	clear_bit(PGDAT_WRITEBACK, &pgdat->flags);
5065631b6e08SMel Gorman }
5066631b6e08SMel Gorman 
50671741c877SMel Gorman /*
50685515061dSMel Gorman  * Prepare kswapd for sleeping. This verifies that there are no processes
50695515061dSMel Gorman  * waiting in throttle_direct_reclaim() and that watermarks have been met.
50705515061dSMel Gorman  *
50715515061dSMel Gorman  * Returns true if kswapd is ready to sleep
50725515061dSMel Gorman  */
507397a225e6SJoonsoo Kim static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order,
507497a225e6SJoonsoo Kim 				int highest_zoneidx)
5075f50de2d3SMel Gorman {
50765515061dSMel Gorman 	/*
50779e5e3661SVlastimil Babka 	 * The throttled processes are normally woken up in balance_pgdat() as
5078c73322d0SJohannes Weiner 	 * soon as allow_direct_reclaim() is true. But there is a potential
50799e5e3661SVlastimil Babka 	 * race between when kswapd checks the watermarks and a process gets
50809e5e3661SVlastimil Babka 	 * throttled. There is also a potential race if processes get
50819e5e3661SVlastimil Babka 	 * throttled, kswapd wakes, a large process exits thereby balancing the
50829e5e3661SVlastimil Babka 	 * zones, which causes kswapd to exit balance_pgdat() before reaching
50839e5e3661SVlastimil Babka 	 * the wake up checks. If kswapd is going to sleep, no process should
50849e5e3661SVlastimil Babka 	 * be sleeping on pfmemalloc_wait, so wake them now if necessary. If
50859e5e3661SVlastimil Babka 	 * the wake up is premature, processes will wake kswapd and get
50869e5e3661SVlastimil Babka 	 * throttled again. The difference from wake ups in balance_pgdat() is
50879e5e3661SVlastimil Babka 	 * that here we are under prepare_to_wait().
50885515061dSMel Gorman 	 */
50899e5e3661SVlastimil Babka 	if (waitqueue_active(&pgdat->pfmemalloc_wait))
50909e5e3661SVlastimil Babka 		wake_up_all(&pgdat->pfmemalloc_wait);
5091f50de2d3SMel Gorman 
5092c73322d0SJohannes Weiner 	/* Hopeless node, leave it to direct reclaim */
5093c73322d0SJohannes Weiner 	if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
5094c73322d0SJohannes Weiner 		return true;
5095c73322d0SJohannes Weiner 
509697a225e6SJoonsoo Kim 	if (pgdat_balanced(pgdat, order, highest_zoneidx)) {
5097631b6e08SMel Gorman 		clear_pgdat_congested(pgdat);
5098333b0a45SShantanu Goel 		return true;
50991d82de61SMel Gorman 	}
51001d82de61SMel Gorman 
5101333b0a45SShantanu Goel 	return false;
5102f50de2d3SMel Gorman }
5103f50de2d3SMel Gorman 
51041da177e4SLinus Torvalds /*
51051d82de61SMel Gorman  * kswapd shrinks a node of pages that are at or below the highest usable
51061d82de61SMel Gorman  * zone that is currently unbalanced.
5107b8e83b94SMel Gorman  *
5108b8e83b94SMel Gorman  * Returns true if kswapd scanned at least the requested number of pages to
5109283aba9fSMel Gorman  * reclaim or if the lack of progress was due to pages under writeback.
5110283aba9fSMel Gorman  * This is used to determine if the scanning priority needs to be raised.
511175485363SMel Gorman  */
51121d82de61SMel Gorman static bool kswapd_shrink_node(pg_data_t *pgdat,
5113accf6242SVlastimil Babka 			       struct scan_control *sc)
511475485363SMel Gorman {
51151d82de61SMel Gorman 	struct zone *zone;
51161d82de61SMel Gorman 	int z;
511775485363SMel Gorman 
51181d82de61SMel Gorman 	/* Reclaim a number of pages proportional to the number of zones */
51191d82de61SMel Gorman 	sc->nr_to_reclaim = 0;
5120970a39a3SMel Gorman 	for (z = 0; z <= sc->reclaim_idx; z++) {
51211d82de61SMel Gorman 		zone = pgdat->node_zones + z;
51226aa303deSMel Gorman 		if (!managed_zone(zone))
51231d82de61SMel Gorman 			continue;
51247c954f6dSMel Gorman 
51251d82de61SMel Gorman 		sc->nr_to_reclaim += max(high_wmark_pages(zone), SWAP_CLUSTER_MAX);
51267c954f6dSMel Gorman 	}
51277c954f6dSMel Gorman 
51281d82de61SMel Gorman 	/*
51291d82de61SMel Gorman 	 * Historically care was taken to put equal pressure on all zones but
51301d82de61SMel Gorman 	 * now pressure is applied based on node LRU order.
51311d82de61SMel Gorman 	 */
5132970a39a3SMel Gorman 	shrink_node(pgdat, sc);
51331d82de61SMel Gorman 
51341d82de61SMel Gorman 	/*
51351d82de61SMel Gorman 	 * Fragmentation may mean that the system cannot be rebalanced for
51361d82de61SMel Gorman 	 * high-order allocations. If twice the allocation size has been
51371d82de61SMel Gorman 	 * reclaimed then recheck watermarks only at order-0 to prevent
51381d82de61SMel Gorman 	 * excessive reclaim. Assume that a process requested a high-order
51391d82de61SMel Gorman 	 * can direct reclaim/compact.
51401d82de61SMel Gorman 	 */
51419861a62cSVlastimil Babka 	if (sc->order && sc->nr_reclaimed >= compact_gap(sc->order))
51421d82de61SMel Gorman 		sc->order = 0;
51431d82de61SMel Gorman 
5144b8e83b94SMel Gorman 	return sc->nr_scanned >= sc->nr_to_reclaim;
514575485363SMel Gorman }
514675485363SMel Gorman 
5147c49c2c47SMel Gorman /* Page allocator PCP high watermark is lowered if reclaim is active. */
5148c49c2c47SMel Gorman static inline void
5149c49c2c47SMel Gorman update_reclaim_active(pg_data_t *pgdat, int highest_zoneidx, bool active)
5150c49c2c47SMel Gorman {
5151c49c2c47SMel Gorman 	int i;
5152c49c2c47SMel Gorman 	struct zone *zone;
5153c49c2c47SMel Gorman 
5154c49c2c47SMel Gorman 	for (i = 0; i <= highest_zoneidx; i++) {
5155c49c2c47SMel Gorman 		zone = pgdat->node_zones + i;
5156c49c2c47SMel Gorman 
5157c49c2c47SMel Gorman 		if (!managed_zone(zone))
5158c49c2c47SMel Gorman 			continue;
5159c49c2c47SMel Gorman 
5160c49c2c47SMel Gorman 		if (active)
5161c49c2c47SMel Gorman 			set_bit(ZONE_RECLAIM_ACTIVE, &zone->flags);
5162c49c2c47SMel Gorman 		else
5163c49c2c47SMel Gorman 			clear_bit(ZONE_RECLAIM_ACTIVE, &zone->flags);
5164c49c2c47SMel Gorman 	}
5165c49c2c47SMel Gorman }
5166c49c2c47SMel Gorman 
5167c49c2c47SMel Gorman static inline void
5168c49c2c47SMel Gorman set_reclaim_active(pg_data_t *pgdat, int highest_zoneidx)
5169c49c2c47SMel Gorman {
5170c49c2c47SMel Gorman 	update_reclaim_active(pgdat, highest_zoneidx, true);
5171c49c2c47SMel Gorman }
5172c49c2c47SMel Gorman 
5173c49c2c47SMel Gorman static inline void
5174c49c2c47SMel Gorman clear_reclaim_active(pg_data_t *pgdat, int highest_zoneidx)
5175c49c2c47SMel Gorman {
5176c49c2c47SMel Gorman 	update_reclaim_active(pgdat, highest_zoneidx, false);
5177c49c2c47SMel Gorman }
5178c49c2c47SMel Gorman 
517975485363SMel Gorman /*
51801d82de61SMel Gorman  * For kswapd, balance_pgdat() will reclaim pages across a node from zones
51811d82de61SMel Gorman  * that are eligible for use by the caller until at least one zone is
51821d82de61SMel Gorman  * balanced.
51831da177e4SLinus Torvalds  *
51841d82de61SMel Gorman  * Returns the order kswapd finished reclaiming at.
51851da177e4SLinus Torvalds  *
51861da177e4SLinus Torvalds  * kswapd scans the zones in the highmem->normal->dma direction.  It skips
518741858966SMel Gorman  * zones which have free_pages > high_wmark_pages(zone), but once a zone is
51888bb4e7a2SWei Yang  * found to have free_pages <= high_wmark_pages(zone), any page in that zone
51891d82de61SMel Gorman  * or lower is eligible for reclaim until at least one usable zone is
51901d82de61SMel Gorman  * balanced.
51911da177e4SLinus Torvalds  */
519297a225e6SJoonsoo Kim static int balance_pgdat(pg_data_t *pgdat, int order, int highest_zoneidx)
51931da177e4SLinus Torvalds {
51941da177e4SLinus Torvalds 	int i;
51950608f43dSAndrew Morton 	unsigned long nr_soft_reclaimed;
51960608f43dSAndrew Morton 	unsigned long nr_soft_scanned;
5197eb414681SJohannes Weiner 	unsigned long pflags;
51981c30844dSMel Gorman 	unsigned long nr_boost_reclaim;
51991c30844dSMel Gorman 	unsigned long zone_boosts[MAX_NR_ZONES] = { 0, };
52001c30844dSMel Gorman 	bool boosted;
52011d82de61SMel Gorman 	struct zone *zone;
5202179e9639SAndrew Morton 	struct scan_control sc = {
5203179e9639SAndrew Morton 		.gfp_mask = GFP_KERNEL,
5204ee814fe2SJohannes Weiner 		.order = order,
5205a6dc60f8SJohannes Weiner 		.may_unmap = 1,
5206179e9639SAndrew Morton 	};
520793781325SOmar Sandoval 
52081732d2b0SAndrew Morton 	set_task_reclaim_state(current, &sc.reclaim_state);
5209eb414681SJohannes Weiner 	psi_memstall_enter(&pflags);
52104f3eaf45SMatthew Wilcox (Oracle) 	__fs_reclaim_acquire(_THIS_IP_);
521193781325SOmar Sandoval 
5212f8891e5eSChristoph Lameter 	count_vm_event(PAGEOUTRUN);
52131da177e4SLinus Torvalds 
52141c30844dSMel Gorman 	/*
52151c30844dSMel Gorman 	 * Account for the reclaim boost. Note that the zone boost is left in
52161c30844dSMel Gorman 	 * place so that parallel allocations that are near the watermark will
52171c30844dSMel Gorman 	 * stall or direct reclaim until kswapd is finished.
52181c30844dSMel Gorman 	 */
52191c30844dSMel Gorman 	nr_boost_reclaim = 0;
522097a225e6SJoonsoo Kim 	for (i = 0; i <= highest_zoneidx; i++) {
52211c30844dSMel Gorman 		zone = pgdat->node_zones + i;
52221c30844dSMel Gorman 		if (!managed_zone(zone))
52231c30844dSMel Gorman 			continue;
52241c30844dSMel Gorman 
52251c30844dSMel Gorman 		nr_boost_reclaim += zone->watermark_boost;
52261c30844dSMel Gorman 		zone_boosts[i] = zone->watermark_boost;
52271c30844dSMel Gorman 	}
52281c30844dSMel Gorman 	boosted = nr_boost_reclaim;
52291c30844dSMel Gorman 
52301c30844dSMel Gorman restart:
5231c49c2c47SMel Gorman 	set_reclaim_active(pgdat, highest_zoneidx);
52321c30844dSMel Gorman 	sc.priority = DEF_PRIORITY;
52339e3b2f8cSKonstantin Khlebnikov 	do {
5234c73322d0SJohannes Weiner 		unsigned long nr_reclaimed = sc.nr_reclaimed;
5235b8e83b94SMel Gorman 		bool raise_priority = true;
52361c30844dSMel Gorman 		bool balanced;
523793781325SOmar Sandoval 		bool ret;
5238b8e83b94SMel Gorman 
523997a225e6SJoonsoo Kim 		sc.reclaim_idx = highest_zoneidx;
52401da177e4SLinus Torvalds 
524186c79f6bSMel Gorman 		/*
524284c7a777SMel Gorman 		 * If the number of buffer_heads exceeds the maximum allowed
524384c7a777SMel Gorman 		 * then consider reclaiming from all zones. This has a dual
524484c7a777SMel Gorman 		 * purpose -- on 64-bit systems it is expected that
524584c7a777SMel Gorman 		 * buffer_heads are stripped during active rotation. On 32-bit
524684c7a777SMel Gorman 		 * systems, highmem pages can pin lowmem memory and shrinking
524784c7a777SMel Gorman 		 * buffers can relieve lowmem pressure. Reclaim may still not
524884c7a777SMel Gorman 		 * go ahead if all eligible zones for the original allocation
524984c7a777SMel Gorman 		 * request are balanced to avoid excessive reclaim from kswapd.
525086c79f6bSMel Gorman 		 */
525186c79f6bSMel Gorman 		if (buffer_heads_over_limit) {
525286c79f6bSMel Gorman 			for (i = MAX_NR_ZONES - 1; i >= 0; i--) {
525386c79f6bSMel Gorman 				zone = pgdat->node_zones + i;
52546aa303deSMel Gorman 				if (!managed_zone(zone))
525586c79f6bSMel Gorman 					continue;
525686c79f6bSMel Gorman 
5257970a39a3SMel Gorman 				sc.reclaim_idx = i;
525886c79f6bSMel Gorman 				break;
525986c79f6bSMel Gorman 			}
526086c79f6bSMel Gorman 		}
526186c79f6bSMel Gorman 
526286c79f6bSMel Gorman 		/*
52631c30844dSMel Gorman 		 * If the pgdat is imbalanced then ignore boosting and preserve
52641c30844dSMel Gorman 		 * the watermarks for a later time and restart. Note that the
52651c30844dSMel Gorman 		 * zone watermarks will be still reset at the end of balancing
52661c30844dSMel Gorman 		 * on the grounds that the normal reclaim should be enough to
52671c30844dSMel Gorman 		 * re-evaluate if boosting is required when kswapd next wakes.
526886c79f6bSMel Gorman 		 */
526997a225e6SJoonsoo Kim 		balanced = pgdat_balanced(pgdat, sc.order, highest_zoneidx);
52701c30844dSMel Gorman 		if (!balanced && nr_boost_reclaim) {
52711c30844dSMel Gorman 			nr_boost_reclaim = 0;
52721c30844dSMel Gorman 			goto restart;
52731c30844dSMel Gorman 		}
52741c30844dSMel Gorman 
52751c30844dSMel Gorman 		/*
52761c30844dSMel Gorman 		 * If boosting is not active then only reclaim if there are no
52771c30844dSMel Gorman 		 * eligible zones. Note that sc.reclaim_idx is not used as
52781c30844dSMel Gorman 		 * buffer_heads_over_limit may have adjusted it.
52791c30844dSMel Gorman 		 */
52801c30844dSMel Gorman 		if (!nr_boost_reclaim && balanced)
52811da177e4SLinus Torvalds 			goto out;
5282e1dbeda6SAndrew Morton 
52831c30844dSMel Gorman 		/* Limit the priority of boosting to avoid reclaim writeback */
52841c30844dSMel Gorman 		if (nr_boost_reclaim && sc.priority == DEF_PRIORITY - 2)
52851c30844dSMel Gorman 			raise_priority = false;
52861c30844dSMel Gorman 
52871c30844dSMel Gorman 		/*
52881c30844dSMel Gorman 		 * Do not writeback or swap pages for boosted reclaim. The
52891c30844dSMel Gorman 		 * intent is to relieve pressure not issue sub-optimal IO
52901c30844dSMel Gorman 		 * from reclaim context. If no pages are reclaimed, the
52911c30844dSMel Gorman 		 * reclaim will be aborted.
52921c30844dSMel Gorman 		 */
52931c30844dSMel Gorman 		sc.may_writepage = !laptop_mode && !nr_boost_reclaim;
52941c30844dSMel Gorman 		sc.may_swap = !nr_boost_reclaim;
52951c30844dSMel Gorman 
52961da177e4SLinus Torvalds 		/*
5297ac35a490SYu Zhao 		 * Do some background aging, to give pages a chance to be
5298ac35a490SYu Zhao 		 * referenced before reclaiming. All pages are rotated
5299ac35a490SYu Zhao 		 * regardless of classzone as this is about consistent aging.
53001d82de61SMel Gorman 		 */
5301ac35a490SYu Zhao 		kswapd_age_node(pgdat, &sc);
53021d82de61SMel Gorman 
53031d82de61SMel Gorman 		/*
5304b7ea3c41SMel Gorman 		 * If we're getting trouble reclaiming, start doing writepage
5305b7ea3c41SMel Gorman 		 * even in laptop mode.
5306b7ea3c41SMel Gorman 		 */
5307047d72c3SJohannes Weiner 		if (sc.priority < DEF_PRIORITY - 2)
5308b7ea3c41SMel Gorman 			sc.may_writepage = 1;
5309b7ea3c41SMel Gorman 
53101d82de61SMel Gorman 		/* Call soft limit reclaim before calling shrink_node. */
53111da177e4SLinus Torvalds 		sc.nr_scanned = 0;
53120608f43dSAndrew Morton 		nr_soft_scanned = 0;
5313ef8f2327SMel Gorman 		nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(pgdat, sc.order,
53141d82de61SMel Gorman 						sc.gfp_mask, &nr_soft_scanned);
53150608f43dSAndrew Morton 		sc.nr_reclaimed += nr_soft_reclaimed;
53160608f43dSAndrew Morton 
531732a4330dSRik van Riel 		/*
53181d82de61SMel Gorman 		 * There should be no need to raise the scanning priority if
53191d82de61SMel Gorman 		 * enough pages are already being scanned that that high
53201d82de61SMel Gorman 		 * watermark would be met at 100% efficiency.
532132a4330dSRik van Riel 		 */
5322970a39a3SMel Gorman 		if (kswapd_shrink_node(pgdat, &sc))
5323b8e83b94SMel Gorman 			raise_priority = false;
5324d7868daeSMel Gorman 
53255515061dSMel Gorman 		/*
53265515061dSMel Gorman 		 * If the low watermark is met there is no need for processes
53275515061dSMel Gorman 		 * to be throttled on pfmemalloc_wait as they should not be
53285515061dSMel Gorman 		 * able to safely make forward progress. Wake them
53295515061dSMel Gorman 		 */
53305515061dSMel Gorman 		if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
5331c73322d0SJohannes Weiner 				allow_direct_reclaim(pgdat))
5332cfc51155SVlastimil Babka 			wake_up_all(&pgdat->pfmemalloc_wait);
53335515061dSMel Gorman 
5334b8e83b94SMel Gorman 		/* Check if kswapd should be suspending */
53354f3eaf45SMatthew Wilcox (Oracle) 		__fs_reclaim_release(_THIS_IP_);
533693781325SOmar Sandoval 		ret = try_to_freeze();
53374f3eaf45SMatthew Wilcox (Oracle) 		__fs_reclaim_acquire(_THIS_IP_);
533893781325SOmar Sandoval 		if (ret || kthread_should_stop())
5339b8e83b94SMel Gorman 			break;
5340b8e83b94SMel Gorman 
5341b8e83b94SMel Gorman 		/*
5342b8e83b94SMel Gorman 		 * Raise priority if scanning rate is too low or there was no
5343b8e83b94SMel Gorman 		 * progress in reclaiming pages
5344b8e83b94SMel Gorman 		 */
5345c73322d0SJohannes Weiner 		nr_reclaimed = sc.nr_reclaimed - nr_reclaimed;
53461c30844dSMel Gorman 		nr_boost_reclaim -= min(nr_boost_reclaim, nr_reclaimed);
53471c30844dSMel Gorman 
53481c30844dSMel Gorman 		/*
53491c30844dSMel Gorman 		 * If reclaim made no progress for a boost, stop reclaim as
53501c30844dSMel Gorman 		 * IO cannot be queued and it could be an infinite loop in
53511c30844dSMel Gorman 		 * extreme circumstances.
53521c30844dSMel Gorman 		 */
53531c30844dSMel Gorman 		if (nr_boost_reclaim && !nr_reclaimed)
53541c30844dSMel Gorman 			break;
53551c30844dSMel Gorman 
5356c73322d0SJohannes Weiner 		if (raise_priority || !nr_reclaimed)
5357b8e83b94SMel Gorman 			sc.priority--;
53581d82de61SMel Gorman 	} while (sc.priority >= 1);
53591da177e4SLinus Torvalds 
5360c73322d0SJohannes Weiner 	if (!sc.nr_reclaimed)
5361c73322d0SJohannes Weiner 		pgdat->kswapd_failures++;
5362c73322d0SJohannes Weiner 
5363b8e83b94SMel Gorman out:
5364c49c2c47SMel Gorman 	clear_reclaim_active(pgdat, highest_zoneidx);
5365c49c2c47SMel Gorman 
53661c30844dSMel Gorman 	/* If reclaim was boosted, account for the reclaim done in this pass */
53671c30844dSMel Gorman 	if (boosted) {
53681c30844dSMel Gorman 		unsigned long flags;
53691c30844dSMel Gorman 
537097a225e6SJoonsoo Kim 		for (i = 0; i <= highest_zoneidx; i++) {
53711c30844dSMel Gorman 			if (!zone_boosts[i])
53721c30844dSMel Gorman 				continue;
53731c30844dSMel Gorman 
53741c30844dSMel Gorman 			/* Increments are under the zone lock */
53751c30844dSMel Gorman 			zone = pgdat->node_zones + i;
53761c30844dSMel Gorman 			spin_lock_irqsave(&zone->lock, flags);
53771c30844dSMel Gorman 			zone->watermark_boost -= min(zone->watermark_boost, zone_boosts[i]);
53781c30844dSMel Gorman 			spin_unlock_irqrestore(&zone->lock, flags);
53791c30844dSMel Gorman 		}
53801c30844dSMel Gorman 
53811c30844dSMel Gorman 		/*
53821c30844dSMel Gorman 		 * As there is now likely space, wakeup kcompact to defragment
53831c30844dSMel Gorman 		 * pageblocks.
53841c30844dSMel Gorman 		 */
538597a225e6SJoonsoo Kim 		wakeup_kcompactd(pgdat, pageblock_order, highest_zoneidx);
53861c30844dSMel Gorman 	}
53871c30844dSMel Gorman 
53882a2e4885SJohannes Weiner 	snapshot_refaults(NULL, pgdat);
53894f3eaf45SMatthew Wilcox (Oracle) 	__fs_reclaim_release(_THIS_IP_);
5390eb414681SJohannes Weiner 	psi_memstall_leave(&pflags);
53911732d2b0SAndrew Morton 	set_task_reclaim_state(current, NULL);
5392e5ca8071SYafang Shao 
53930abdee2bSMel Gorman 	/*
53941d82de61SMel Gorman 	 * Return the order kswapd stopped reclaiming at as
53951d82de61SMel Gorman 	 * prepare_kswapd_sleep() takes it into account. If another caller
53961d82de61SMel Gorman 	 * entered the allocator slow path while kswapd was awake, order will
53971d82de61SMel Gorman 	 * remain at the higher level.
53980abdee2bSMel Gorman 	 */
53991d82de61SMel Gorman 	return sc.order;
54001da177e4SLinus Torvalds }
54011da177e4SLinus Torvalds 
5402e716f2ebSMel Gorman /*
540397a225e6SJoonsoo Kim  * The pgdat->kswapd_highest_zoneidx is used to pass the highest zone index to
540497a225e6SJoonsoo Kim  * be reclaimed by kswapd from the waker. If the value is MAX_NR_ZONES which is
540597a225e6SJoonsoo Kim  * not a valid index then either kswapd runs for first time or kswapd couldn't
540697a225e6SJoonsoo Kim  * sleep after previous reclaim attempt (node is still unbalanced). In that
540797a225e6SJoonsoo Kim  * case return the zone index of the previous kswapd reclaim cycle.
5408e716f2ebSMel Gorman  */
540997a225e6SJoonsoo Kim static enum zone_type kswapd_highest_zoneidx(pg_data_t *pgdat,
541097a225e6SJoonsoo Kim 					   enum zone_type prev_highest_zoneidx)
5411e716f2ebSMel Gorman {
541297a225e6SJoonsoo Kim 	enum zone_type curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
54135644e1fbSQian Cai 
541497a225e6SJoonsoo Kim 	return curr_idx == MAX_NR_ZONES ? prev_highest_zoneidx : curr_idx;
5415e716f2ebSMel Gorman }
5416e716f2ebSMel Gorman 
541738087d9bSMel Gorman static void kswapd_try_to_sleep(pg_data_t *pgdat, int alloc_order, int reclaim_order,
541897a225e6SJoonsoo Kim 				unsigned int highest_zoneidx)
5419f0bc0a60SKOSAKI Motohiro {
5420f0bc0a60SKOSAKI Motohiro 	long remaining = 0;
5421f0bc0a60SKOSAKI Motohiro 	DEFINE_WAIT(wait);
5422f0bc0a60SKOSAKI Motohiro 
5423f0bc0a60SKOSAKI Motohiro 	if (freezing(current) || kthread_should_stop())
5424f0bc0a60SKOSAKI Motohiro 		return;
5425f0bc0a60SKOSAKI Motohiro 
5426f0bc0a60SKOSAKI Motohiro 	prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
5427f0bc0a60SKOSAKI Motohiro 
5428333b0a45SShantanu Goel 	/*
5429333b0a45SShantanu Goel 	 * Try to sleep for a short interval. Note that kcompactd will only be
5430333b0a45SShantanu Goel 	 * woken if it is possible to sleep for a short interval. This is
5431333b0a45SShantanu Goel 	 * deliberate on the assumption that if reclaim cannot keep an
5432333b0a45SShantanu Goel 	 * eligible zone balanced that it's also unlikely that compaction will
5433333b0a45SShantanu Goel 	 * succeed.
5434333b0a45SShantanu Goel 	 */
543597a225e6SJoonsoo Kim 	if (prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
5436fd901c95SVlastimil Babka 		/*
5437fd901c95SVlastimil Babka 		 * Compaction records what page blocks it recently failed to
5438fd901c95SVlastimil Babka 		 * isolate pages from and skips them in the future scanning.
5439fd901c95SVlastimil Babka 		 * When kswapd is going to sleep, it is reasonable to assume
5440fd901c95SVlastimil Babka 		 * that pages and compaction may succeed so reset the cache.
5441fd901c95SVlastimil Babka 		 */
5442fd901c95SVlastimil Babka 		reset_isolation_suitable(pgdat);
5443fd901c95SVlastimil Babka 
5444fd901c95SVlastimil Babka 		/*
5445fd901c95SVlastimil Babka 		 * We have freed the memory, now we should compact it to make
5446fd901c95SVlastimil Babka 		 * allocation of the requested order possible.
5447fd901c95SVlastimil Babka 		 */
544897a225e6SJoonsoo Kim 		wakeup_kcompactd(pgdat, alloc_order, highest_zoneidx);
5449fd901c95SVlastimil Babka 
5450f0bc0a60SKOSAKI Motohiro 		remaining = schedule_timeout(HZ/10);
545138087d9bSMel Gorman 
545238087d9bSMel Gorman 		/*
545397a225e6SJoonsoo Kim 		 * If woken prematurely then reset kswapd_highest_zoneidx and
545438087d9bSMel Gorman 		 * order. The values will either be from a wakeup request or
545538087d9bSMel Gorman 		 * the previous request that slept prematurely.
545638087d9bSMel Gorman 		 */
545738087d9bSMel Gorman 		if (remaining) {
545897a225e6SJoonsoo Kim 			WRITE_ONCE(pgdat->kswapd_highest_zoneidx,
545997a225e6SJoonsoo Kim 					kswapd_highest_zoneidx(pgdat,
546097a225e6SJoonsoo Kim 							highest_zoneidx));
54615644e1fbSQian Cai 
54625644e1fbSQian Cai 			if (READ_ONCE(pgdat->kswapd_order) < reclaim_order)
54635644e1fbSQian Cai 				WRITE_ONCE(pgdat->kswapd_order, reclaim_order);
546438087d9bSMel Gorman 		}
546538087d9bSMel Gorman 
5466f0bc0a60SKOSAKI Motohiro 		finish_wait(&pgdat->kswapd_wait, &wait);
5467f0bc0a60SKOSAKI Motohiro 		prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
5468f0bc0a60SKOSAKI Motohiro 	}
5469f0bc0a60SKOSAKI Motohiro 
5470f0bc0a60SKOSAKI Motohiro 	/*
5471f0bc0a60SKOSAKI Motohiro 	 * After a short sleep, check if it was a premature sleep. If not, then
5472f0bc0a60SKOSAKI Motohiro 	 * go fully to sleep until explicitly woken up.
5473f0bc0a60SKOSAKI Motohiro 	 */
5474d9f21d42SMel Gorman 	if (!remaining &&
547597a225e6SJoonsoo Kim 	    prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
5476f0bc0a60SKOSAKI Motohiro 		trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
5477f0bc0a60SKOSAKI Motohiro 
5478f0bc0a60SKOSAKI Motohiro 		/*
5479f0bc0a60SKOSAKI Motohiro 		 * vmstat counters are not perfectly accurate and the estimated
5480f0bc0a60SKOSAKI Motohiro 		 * value for counters such as NR_FREE_PAGES can deviate from the
5481f0bc0a60SKOSAKI Motohiro 		 * true value by nr_online_cpus * threshold. To avoid the zone
5482f0bc0a60SKOSAKI Motohiro 		 * watermarks being breached while under pressure, we reduce the
5483f0bc0a60SKOSAKI Motohiro 		 * per-cpu vmstat threshold while kswapd is awake and restore
5484f0bc0a60SKOSAKI Motohiro 		 * them before going back to sleep.
5485f0bc0a60SKOSAKI Motohiro 		 */
5486f0bc0a60SKOSAKI Motohiro 		set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
54871c7e7f6cSAaditya Kumar 
54881c7e7f6cSAaditya Kumar 		if (!kthread_should_stop())
5489f0bc0a60SKOSAKI Motohiro 			schedule();
54901c7e7f6cSAaditya Kumar 
5491f0bc0a60SKOSAKI Motohiro 		set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
5492f0bc0a60SKOSAKI Motohiro 	} else {
5493f0bc0a60SKOSAKI Motohiro 		if (remaining)
5494f0bc0a60SKOSAKI Motohiro 			count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
5495f0bc0a60SKOSAKI Motohiro 		else
5496f0bc0a60SKOSAKI Motohiro 			count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
5497f0bc0a60SKOSAKI Motohiro 	}
5498f0bc0a60SKOSAKI Motohiro 	finish_wait(&pgdat->kswapd_wait, &wait);
5499f0bc0a60SKOSAKI Motohiro }
5500f0bc0a60SKOSAKI Motohiro 
55011da177e4SLinus Torvalds /*
55021da177e4SLinus Torvalds  * The background pageout daemon, started as a kernel thread
55031da177e4SLinus Torvalds  * from the init process.
55041da177e4SLinus Torvalds  *
55051da177e4SLinus Torvalds  * This basically trickles out pages so that we have _some_
55061da177e4SLinus Torvalds  * free memory available even if there is no other activity
55071da177e4SLinus Torvalds  * that frees anything up. This is needed for things like routing
55081da177e4SLinus Torvalds  * etc, where we otherwise might have all activity going on in
55091da177e4SLinus Torvalds  * asynchronous contexts that cannot page things out.
55101da177e4SLinus Torvalds  *
55111da177e4SLinus Torvalds  * If there are applications that are active memory-allocators
55121da177e4SLinus Torvalds  * (most normal use), this basically shouldn't matter.
55131da177e4SLinus Torvalds  */
55141da177e4SLinus Torvalds static int kswapd(void *p)
55151da177e4SLinus Torvalds {
5516e716f2ebSMel Gorman 	unsigned int alloc_order, reclaim_order;
551797a225e6SJoonsoo Kim 	unsigned int highest_zoneidx = MAX_NR_ZONES - 1;
55181da177e4SLinus Torvalds 	pg_data_t *pgdat = (pg_data_t *)p;
55191da177e4SLinus Torvalds 	struct task_struct *tsk = current;
5520a70f7302SRusty Russell 	const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
55211da177e4SLinus Torvalds 
5522174596a0SRusty Russell 	if (!cpumask_empty(cpumask))
5523c5f59f08SMike Travis 		set_cpus_allowed_ptr(tsk, cpumask);
55241da177e4SLinus Torvalds 
55251da177e4SLinus Torvalds 	/*
55261da177e4SLinus Torvalds 	 * Tell the memory management that we're a "memory allocator",
55271da177e4SLinus Torvalds 	 * and that if we need more memory we should get access to it
55281da177e4SLinus Torvalds 	 * regardless (see "__alloc_pages()"). "kswapd" should
55291da177e4SLinus Torvalds 	 * never get caught in the normal page freeing logic.
55301da177e4SLinus Torvalds 	 *
55311da177e4SLinus Torvalds 	 * (Kswapd normally doesn't need memory anyway, but sometimes
55321da177e4SLinus Torvalds 	 * you need a small amount of memory in order to be able to
55331da177e4SLinus Torvalds 	 * page out something else, and this flag essentially protects
55341da177e4SLinus Torvalds 	 * us from recursively trying to free more memory as we're
55351da177e4SLinus Torvalds 	 * trying to free the first piece of memory in the first place).
55361da177e4SLinus Torvalds 	 */
5537b698f0a1SHugh Dickins 	tsk->flags |= PF_MEMALLOC | PF_KSWAPD;
553883144186SRafael J. Wysocki 	set_freezable();
55391da177e4SLinus Torvalds 
55405644e1fbSQian Cai 	WRITE_ONCE(pgdat->kswapd_order, 0);
554197a225e6SJoonsoo Kim 	WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
55428cd7c588SMel Gorman 	atomic_set(&pgdat->nr_writeback_throttled, 0);
55431da177e4SLinus Torvalds 	for ( ; ; ) {
55446f6313d4SJeff Liu 		bool ret;
55453e1d1d28SChristoph Lameter 
55465644e1fbSQian Cai 		alloc_order = reclaim_order = READ_ONCE(pgdat->kswapd_order);
554797a225e6SJoonsoo Kim 		highest_zoneidx = kswapd_highest_zoneidx(pgdat,
554897a225e6SJoonsoo Kim 							highest_zoneidx);
5549e716f2ebSMel Gorman 
555038087d9bSMel Gorman kswapd_try_sleep:
555138087d9bSMel Gorman 		kswapd_try_to_sleep(pgdat, alloc_order, reclaim_order,
555297a225e6SJoonsoo Kim 					highest_zoneidx);
5553215ddd66SMel Gorman 
555497a225e6SJoonsoo Kim 		/* Read the new order and highest_zoneidx */
55552b47a24cSLukas Bulwahn 		alloc_order = READ_ONCE(pgdat->kswapd_order);
555697a225e6SJoonsoo Kim 		highest_zoneidx = kswapd_highest_zoneidx(pgdat,
555797a225e6SJoonsoo Kim 							highest_zoneidx);
55585644e1fbSQian Cai 		WRITE_ONCE(pgdat->kswapd_order, 0);
555997a225e6SJoonsoo Kim 		WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
55601da177e4SLinus Torvalds 
55618fe23e05SDavid Rientjes 		ret = try_to_freeze();
55628fe23e05SDavid Rientjes 		if (kthread_should_stop())
55638fe23e05SDavid Rientjes 			break;
55648fe23e05SDavid Rientjes 
55658fe23e05SDavid Rientjes 		/*
55668fe23e05SDavid Rientjes 		 * We can speed up thawing tasks if we don't call balance_pgdat
55678fe23e05SDavid Rientjes 		 * after returning from the refrigerator
5568b1296cc4SRafael J. Wysocki 		 */
556938087d9bSMel Gorman 		if (ret)
557038087d9bSMel Gorman 			continue;
55711d82de61SMel Gorman 
557238087d9bSMel Gorman 		/*
557338087d9bSMel Gorman 		 * Reclaim begins at the requested order but if a high-order
557438087d9bSMel Gorman 		 * reclaim fails then kswapd falls back to reclaiming for
557538087d9bSMel Gorman 		 * order-0. If that happens, kswapd will consider sleeping
557638087d9bSMel Gorman 		 * for the order it finished reclaiming at (reclaim_order)
557738087d9bSMel Gorman 		 * but kcompactd is woken to compact for the original
557838087d9bSMel Gorman 		 * request (alloc_order).
557938087d9bSMel Gorman 		 */
558097a225e6SJoonsoo Kim 		trace_mm_vmscan_kswapd_wake(pgdat->node_id, highest_zoneidx,
5581e5146b12SMel Gorman 						alloc_order);
558297a225e6SJoonsoo Kim 		reclaim_order = balance_pgdat(pgdat, alloc_order,
558397a225e6SJoonsoo Kim 						highest_zoneidx);
558438087d9bSMel Gorman 		if (reclaim_order < alloc_order)
558538087d9bSMel Gorman 			goto kswapd_try_sleep;
558633906bc5SMel Gorman 	}
5587b0a8cc58STakamori Yamaguchi 
5588b698f0a1SHugh Dickins 	tsk->flags &= ~(PF_MEMALLOC | PF_KSWAPD);
558971abdc15SJohannes Weiner 
55901da177e4SLinus Torvalds 	return 0;
55911da177e4SLinus Torvalds }
55921da177e4SLinus Torvalds 
55931da177e4SLinus Torvalds /*
55945ecd9d40SDavid Rientjes  * A zone is low on free memory or too fragmented for high-order memory.  If
55955ecd9d40SDavid Rientjes  * kswapd should reclaim (direct reclaim is deferred), wake it up for the zone's
55965ecd9d40SDavid Rientjes  * pgdat.  It will wake up kcompactd after reclaiming memory.  If kswapd reclaim
55975ecd9d40SDavid Rientjes  * has failed or is not needed, still wake up kcompactd if only compaction is
55985ecd9d40SDavid Rientjes  * needed.
55991da177e4SLinus Torvalds  */
56005ecd9d40SDavid Rientjes void wakeup_kswapd(struct zone *zone, gfp_t gfp_flags, int order,
560197a225e6SJoonsoo Kim 		   enum zone_type highest_zoneidx)
56021da177e4SLinus Torvalds {
56031da177e4SLinus Torvalds 	pg_data_t *pgdat;
56045644e1fbSQian Cai 	enum zone_type curr_idx;
56051da177e4SLinus Torvalds 
56066aa303deSMel Gorman 	if (!managed_zone(zone))
56071da177e4SLinus Torvalds 		return;
56081da177e4SLinus Torvalds 
56095ecd9d40SDavid Rientjes 	if (!cpuset_zone_allowed(zone, gfp_flags))
56101da177e4SLinus Torvalds 		return;
5611dffcac2cSShakeel Butt 
56125644e1fbSQian Cai 	pgdat = zone->zone_pgdat;
561397a225e6SJoonsoo Kim 	curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
56145644e1fbSQian Cai 
561597a225e6SJoonsoo Kim 	if (curr_idx == MAX_NR_ZONES || curr_idx < highest_zoneidx)
561697a225e6SJoonsoo Kim 		WRITE_ONCE(pgdat->kswapd_highest_zoneidx, highest_zoneidx);
56175644e1fbSQian Cai 
56185644e1fbSQian Cai 	if (READ_ONCE(pgdat->kswapd_order) < order)
56195644e1fbSQian Cai 		WRITE_ONCE(pgdat->kswapd_order, order);
56205644e1fbSQian Cai 
56218d0986e2SCon Kolivas 	if (!waitqueue_active(&pgdat->kswapd_wait))
56221da177e4SLinus Torvalds 		return;
5623e1a55637SMel Gorman 
56245ecd9d40SDavid Rientjes 	/* Hopeless node, leave it to direct reclaim if possible */
56255ecd9d40SDavid Rientjes 	if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES ||
562697a225e6SJoonsoo Kim 	    (pgdat_balanced(pgdat, order, highest_zoneidx) &&
562797a225e6SJoonsoo Kim 	     !pgdat_watermark_boosted(pgdat, highest_zoneidx))) {
56285ecd9d40SDavid Rientjes 		/*
56295ecd9d40SDavid Rientjes 		 * There may be plenty of free memory available, but it's too
56305ecd9d40SDavid Rientjes 		 * fragmented for high-order allocations.  Wake up kcompactd
56315ecd9d40SDavid Rientjes 		 * and rely on compaction_suitable() to determine if it's
56325ecd9d40SDavid Rientjes 		 * needed.  If it fails, it will defer subsequent attempts to
56335ecd9d40SDavid Rientjes 		 * ratelimit its work.
56345ecd9d40SDavid Rientjes 		 */
56355ecd9d40SDavid Rientjes 		if (!(gfp_flags & __GFP_DIRECT_RECLAIM))
563697a225e6SJoonsoo Kim 			wakeup_kcompactd(pgdat, order, highest_zoneidx);
5637c73322d0SJohannes Weiner 		return;
56385ecd9d40SDavid Rientjes 	}
5639c73322d0SJohannes Weiner 
564097a225e6SJoonsoo Kim 	trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, highest_zoneidx, order,
56415ecd9d40SDavid Rientjes 				      gfp_flags);
56428d0986e2SCon Kolivas 	wake_up_interruptible(&pgdat->kswapd_wait);
56431da177e4SLinus Torvalds }
56441da177e4SLinus Torvalds 
5645c6f37f12SRafael J. Wysocki #ifdef CONFIG_HIBERNATION
56461da177e4SLinus Torvalds /*
56477b51755cSKOSAKI Motohiro  * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
5648d6277db4SRafael J. Wysocki  * freed pages.
5649d6277db4SRafael J. Wysocki  *
5650d6277db4SRafael J. Wysocki  * Rather than trying to age LRUs the aim is to preserve the overall
5651d6277db4SRafael J. Wysocki  * LRU order by reclaiming preferentially
5652d6277db4SRafael J. Wysocki  * inactive > active > active referenced > active mapped
56531da177e4SLinus Torvalds  */
56547b51755cSKOSAKI Motohiro unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
56551da177e4SLinus Torvalds {
5656d6277db4SRafael J. Wysocki 	struct scan_control sc = {
56577b51755cSKOSAKI Motohiro 		.nr_to_reclaim = nr_to_reclaim,
5658ee814fe2SJohannes Weiner 		.gfp_mask = GFP_HIGHUSER_MOVABLE,
5659b2e18757SMel Gorman 		.reclaim_idx = MAX_NR_ZONES - 1,
56609e3b2f8cSKonstantin Khlebnikov 		.priority = DEF_PRIORITY,
5661ee814fe2SJohannes Weiner 		.may_writepage = 1,
5662ee814fe2SJohannes Weiner 		.may_unmap = 1,
5663ee814fe2SJohannes Weiner 		.may_swap = 1,
5664ee814fe2SJohannes Weiner 		.hibernation_mode = 1,
56651da177e4SLinus Torvalds 	};
56667b51755cSKOSAKI Motohiro 	struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
56677b51755cSKOSAKI Motohiro 	unsigned long nr_reclaimed;
5668499118e9SVlastimil Babka 	unsigned int noreclaim_flag;
56691da177e4SLinus Torvalds 
5670d92a8cfcSPeter Zijlstra 	fs_reclaim_acquire(sc.gfp_mask);
567193781325SOmar Sandoval 	noreclaim_flag = memalloc_noreclaim_save();
56721732d2b0SAndrew Morton 	set_task_reclaim_state(current, &sc.reclaim_state);
5673d6277db4SRafael J. Wysocki 
56743115cd91SVladimir Davydov 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
5675d6277db4SRafael J. Wysocki 
56761732d2b0SAndrew Morton 	set_task_reclaim_state(current, NULL);
5677499118e9SVlastimil Babka 	memalloc_noreclaim_restore(noreclaim_flag);
567893781325SOmar Sandoval 	fs_reclaim_release(sc.gfp_mask);
5679d6277db4SRafael J. Wysocki 
56807b51755cSKOSAKI Motohiro 	return nr_reclaimed;
56811da177e4SLinus Torvalds }
5682c6f37f12SRafael J. Wysocki #endif /* CONFIG_HIBERNATION */
56831da177e4SLinus Torvalds 
56843218ae14SYasunori Goto /*
56853218ae14SYasunori Goto  * This kswapd start function will be called by init and node-hot-add.
56863218ae14SYasunori Goto  */
5687b87c517aSMiaohe Lin void kswapd_run(int nid)
56883218ae14SYasunori Goto {
56893218ae14SYasunori Goto 	pg_data_t *pgdat = NODE_DATA(nid);
56903218ae14SYasunori Goto 
5691b4a0215eSKefeng Wang 	pgdat_kswapd_lock(pgdat);
5692b4a0215eSKefeng Wang 	if (!pgdat->kswapd) {
56933218ae14SYasunori Goto 		pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
56943218ae14SYasunori Goto 		if (IS_ERR(pgdat->kswapd)) {
56953218ae14SYasunori Goto 			/* failure at boot is fatal */
5696c6202adfSThomas Gleixner 			BUG_ON(system_state < SYSTEM_RUNNING);
5697d5dc0ad9SGavin Shan 			pr_err("Failed to start kswapd on node %d\n", nid);
5698d72515b8SXishi Qiu 			pgdat->kswapd = NULL;
56993218ae14SYasunori Goto 		}
57003218ae14SYasunori Goto 	}
5701b4a0215eSKefeng Wang 	pgdat_kswapd_unlock(pgdat);
5702b4a0215eSKefeng Wang }
57033218ae14SYasunori Goto 
57048fe23e05SDavid Rientjes /*
5705d8adde17SJiang Liu  * Called by memory hotplug when all memory in a node is offlined.  Caller must
5706e8da368aSYun-Ze Li  * be holding mem_hotplug_begin/done().
57078fe23e05SDavid Rientjes  */
57088fe23e05SDavid Rientjes void kswapd_stop(int nid)
57098fe23e05SDavid Rientjes {
5710b4a0215eSKefeng Wang 	pg_data_t *pgdat = NODE_DATA(nid);
5711b4a0215eSKefeng Wang 	struct task_struct *kswapd;
57128fe23e05SDavid Rientjes 
5713b4a0215eSKefeng Wang 	pgdat_kswapd_lock(pgdat);
5714b4a0215eSKefeng Wang 	kswapd = pgdat->kswapd;
5715d8adde17SJiang Liu 	if (kswapd) {
57168fe23e05SDavid Rientjes 		kthread_stop(kswapd);
5717b4a0215eSKefeng Wang 		pgdat->kswapd = NULL;
5718d8adde17SJiang Liu 	}
5719b4a0215eSKefeng Wang 	pgdat_kswapd_unlock(pgdat);
57208fe23e05SDavid Rientjes }
57218fe23e05SDavid Rientjes 
57221da177e4SLinus Torvalds static int __init kswapd_init(void)
57231da177e4SLinus Torvalds {
57246b700b5bSWei Yang 	int nid;
572569e05944SAndrew Morton 
57261da177e4SLinus Torvalds 	swap_setup();
572748fb2e24SLai Jiangshan 	for_each_node_state(nid, N_MEMORY)
57283218ae14SYasunori Goto  		kswapd_run(nid);
57291da177e4SLinus Torvalds 	return 0;
57301da177e4SLinus Torvalds }
57311da177e4SLinus Torvalds 
57321da177e4SLinus Torvalds module_init(kswapd_init)
57339eeff239SChristoph Lameter 
57349eeff239SChristoph Lameter #ifdef CONFIG_NUMA
57359eeff239SChristoph Lameter /*
5736a5f5f91dSMel Gorman  * Node reclaim mode
57379eeff239SChristoph Lameter  *
5738a5f5f91dSMel Gorman  * If non-zero call node_reclaim when the number of free pages falls below
57399eeff239SChristoph Lameter  * the watermarks.
57409eeff239SChristoph Lameter  */
5741a5f5f91dSMel Gorman int node_reclaim_mode __read_mostly;
57429eeff239SChristoph Lameter 
574351998364SDave Hansen /*
5744a5f5f91dSMel Gorman  * Priority for NODE_RECLAIM. This determines the fraction of pages
5745a92f7126SChristoph Lameter  * of a node considered for each zone_reclaim. 4 scans 1/16th of
5746a92f7126SChristoph Lameter  * a zone.
5747a92f7126SChristoph Lameter  */
5748a5f5f91dSMel Gorman #define NODE_RECLAIM_PRIORITY 4
5749a92f7126SChristoph Lameter 
57509eeff239SChristoph Lameter /*
5751a5f5f91dSMel Gorman  * Percentage of pages in a zone that must be unmapped for node_reclaim to
57529614634fSChristoph Lameter  * occur.
57539614634fSChristoph Lameter  */
57549614634fSChristoph Lameter int sysctl_min_unmapped_ratio = 1;
57559614634fSChristoph Lameter 
57569614634fSChristoph Lameter /*
57570ff38490SChristoph Lameter  * If the number of slab pages in a zone grows beyond this percentage then
57580ff38490SChristoph Lameter  * slab reclaim needs to occur.
57590ff38490SChristoph Lameter  */
57600ff38490SChristoph Lameter int sysctl_min_slab_ratio = 5;
57610ff38490SChristoph Lameter 
576211fb9989SMel Gorman static inline unsigned long node_unmapped_file_pages(struct pglist_data *pgdat)
576390afa5deSMel Gorman {
576411fb9989SMel Gorman 	unsigned long file_mapped = node_page_state(pgdat, NR_FILE_MAPPED);
576511fb9989SMel Gorman 	unsigned long file_lru = node_page_state(pgdat, NR_INACTIVE_FILE) +
576611fb9989SMel Gorman 		node_page_state(pgdat, NR_ACTIVE_FILE);
576790afa5deSMel Gorman 
576890afa5deSMel Gorman 	/*
576990afa5deSMel Gorman 	 * It's possible for there to be more file mapped pages than
577090afa5deSMel Gorman 	 * accounted for by the pages on the file LRU lists because
577190afa5deSMel Gorman 	 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
577290afa5deSMel Gorman 	 */
577390afa5deSMel Gorman 	return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
577490afa5deSMel Gorman }
577590afa5deSMel Gorman 
577690afa5deSMel Gorman /* Work out how many page cache pages we can reclaim in this reclaim_mode */
5777a5f5f91dSMel Gorman static unsigned long node_pagecache_reclaimable(struct pglist_data *pgdat)
577890afa5deSMel Gorman {
5779d031a157SAlexandru Moise 	unsigned long nr_pagecache_reclaimable;
5780d031a157SAlexandru Moise 	unsigned long delta = 0;
578190afa5deSMel Gorman 
578290afa5deSMel Gorman 	/*
578395bbc0c7SZhihui Zhang 	 * If RECLAIM_UNMAP is set, then all file pages are considered
578490afa5deSMel Gorman 	 * potentially reclaimable. Otherwise, we have to worry about
578511fb9989SMel Gorman 	 * pages like swapcache and node_unmapped_file_pages() provides
578690afa5deSMel Gorman 	 * a better estimate
578790afa5deSMel Gorman 	 */
5788a5f5f91dSMel Gorman 	if (node_reclaim_mode & RECLAIM_UNMAP)
5789a5f5f91dSMel Gorman 		nr_pagecache_reclaimable = node_page_state(pgdat, NR_FILE_PAGES);
579090afa5deSMel Gorman 	else
5791a5f5f91dSMel Gorman 		nr_pagecache_reclaimable = node_unmapped_file_pages(pgdat);
579290afa5deSMel Gorman 
579390afa5deSMel Gorman 	/* If we can't clean pages, remove dirty pages from consideration */
5794a5f5f91dSMel Gorman 	if (!(node_reclaim_mode & RECLAIM_WRITE))
5795a5f5f91dSMel Gorman 		delta += node_page_state(pgdat, NR_FILE_DIRTY);
579690afa5deSMel Gorman 
579790afa5deSMel Gorman 	/* Watch for any possible underflows due to delta */
579890afa5deSMel Gorman 	if (unlikely(delta > nr_pagecache_reclaimable))
579990afa5deSMel Gorman 		delta = nr_pagecache_reclaimable;
580090afa5deSMel Gorman 
580190afa5deSMel Gorman 	return nr_pagecache_reclaimable - delta;
580290afa5deSMel Gorman }
580390afa5deSMel Gorman 
58040ff38490SChristoph Lameter /*
5805a5f5f91dSMel Gorman  * Try to free up some pages from this node through reclaim.
58069eeff239SChristoph Lameter  */
5807a5f5f91dSMel Gorman static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
58089eeff239SChristoph Lameter {
58097fb2d46dSChristoph Lameter 	/* Minimum pages needed in order to stay on node */
581069e05944SAndrew Morton 	const unsigned long nr_pages = 1 << order;
58119eeff239SChristoph Lameter 	struct task_struct *p = current;
5812499118e9SVlastimil Babka 	unsigned int noreclaim_flag;
5813179e9639SAndrew Morton 	struct scan_control sc = {
581462b726c1SAndrew Morton 		.nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
5815f2f43e56SNick Desaulniers 		.gfp_mask = current_gfp_context(gfp_mask),
5816bd2f6199SJohannes Weiner 		.order = order,
5817a5f5f91dSMel Gorman 		.priority = NODE_RECLAIM_PRIORITY,
5818a5f5f91dSMel Gorman 		.may_writepage = !!(node_reclaim_mode & RECLAIM_WRITE),
5819a5f5f91dSMel Gorman 		.may_unmap = !!(node_reclaim_mode & RECLAIM_UNMAP),
5820ee814fe2SJohannes Weiner 		.may_swap = 1,
5821f2f43e56SNick Desaulniers 		.reclaim_idx = gfp_zone(gfp_mask),
5822179e9639SAndrew Morton 	};
582357f29762SJohannes Weiner 	unsigned long pflags;
58249eeff239SChristoph Lameter 
5825132bb8cfSYafang Shao 	trace_mm_vmscan_node_reclaim_begin(pgdat->node_id, order,
5826132bb8cfSYafang Shao 					   sc.gfp_mask);
5827132bb8cfSYafang Shao 
58289eeff239SChristoph Lameter 	cond_resched();
582957f29762SJohannes Weiner 	psi_memstall_enter(&pflags);
583093781325SOmar Sandoval 	fs_reclaim_acquire(sc.gfp_mask);
5831d4f7796eSChristoph Lameter 	/*
583295bbc0c7SZhihui Zhang 	 * We need to be able to allocate from the reserves for RECLAIM_UNMAP
5833d4f7796eSChristoph Lameter 	 */
5834499118e9SVlastimil Babka 	noreclaim_flag = memalloc_noreclaim_save();
58351732d2b0SAndrew Morton 	set_task_reclaim_state(p, &sc.reclaim_state);
5836c84db23cSChristoph Lameter 
5837d8ff6fdeSMiaohe Lin 	if (node_pagecache_reclaimable(pgdat) > pgdat->min_unmapped_pages ||
5838d8ff6fdeSMiaohe Lin 	    node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B) > pgdat->min_slab_pages) {
5839a92f7126SChristoph Lameter 		/*
5840894befecSAndrey Ryabinin 		 * Free memory by calling shrink node with increasing
58410ff38490SChristoph Lameter 		 * priorities until we have enough memory freed.
5842a92f7126SChristoph Lameter 		 */
5843a92f7126SChristoph Lameter 		do {
5844970a39a3SMel Gorman 			shrink_node(pgdat, &sc);
58459e3b2f8cSKonstantin Khlebnikov 		} while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
58460ff38490SChristoph Lameter 	}
5847a92f7126SChristoph Lameter 
58481732d2b0SAndrew Morton 	set_task_reclaim_state(p, NULL);
5849499118e9SVlastimil Babka 	memalloc_noreclaim_restore(noreclaim_flag);
585093781325SOmar Sandoval 	fs_reclaim_release(sc.gfp_mask);
585157f29762SJohannes Weiner 	psi_memstall_leave(&pflags);
5852132bb8cfSYafang Shao 
5853132bb8cfSYafang Shao 	trace_mm_vmscan_node_reclaim_end(sc.nr_reclaimed);
5854132bb8cfSYafang Shao 
5855a79311c1SRik van Riel 	return sc.nr_reclaimed >= nr_pages;
58569eeff239SChristoph Lameter }
5857179e9639SAndrew Morton 
5858a5f5f91dSMel Gorman int node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
5859179e9639SAndrew Morton {
5860d773ed6bSDavid Rientjes 	int ret;
5861179e9639SAndrew Morton 
5862179e9639SAndrew Morton 	/*
5863a5f5f91dSMel Gorman 	 * Node reclaim reclaims unmapped file backed pages and
58640ff38490SChristoph Lameter 	 * slab pages if we are over the defined limits.
586534aa1330SChristoph Lameter 	 *
58669614634fSChristoph Lameter 	 * A small portion of unmapped file backed pages is needed for
58679614634fSChristoph Lameter 	 * file I/O otherwise pages read by file I/O will be immediately
5868a5f5f91dSMel Gorman 	 * thrown out if the node is overallocated. So we do not reclaim
5869a5f5f91dSMel Gorman 	 * if less than a specified percentage of the node is used by
58709614634fSChristoph Lameter 	 * unmapped file backed pages.
5871179e9639SAndrew Morton 	 */
5872a5f5f91dSMel Gorman 	if (node_pagecache_reclaimable(pgdat) <= pgdat->min_unmapped_pages &&
5873d42f3245SRoman Gushchin 	    node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B) <=
5874d42f3245SRoman Gushchin 	    pgdat->min_slab_pages)
5875a5f5f91dSMel Gorman 		return NODE_RECLAIM_FULL;
5876179e9639SAndrew Morton 
5877179e9639SAndrew Morton 	/*
5878d773ed6bSDavid Rientjes 	 * Do not scan if the allocation should not be delayed.
5879179e9639SAndrew Morton 	 */
5880d0164adcSMel Gorman 	if (!gfpflags_allow_blocking(gfp_mask) || (current->flags & PF_MEMALLOC))
5881a5f5f91dSMel Gorman 		return NODE_RECLAIM_NOSCAN;
5882179e9639SAndrew Morton 
5883179e9639SAndrew Morton 	/*
5884a5f5f91dSMel Gorman 	 * Only run node reclaim on the local node or on nodes that do not
5885179e9639SAndrew Morton 	 * have associated processors. This will favor the local processor
5886179e9639SAndrew Morton 	 * over remote processors and spread off node memory allocations
5887179e9639SAndrew Morton 	 * as wide as possible.
5888179e9639SAndrew Morton 	 */
5889a5f5f91dSMel Gorman 	if (node_state(pgdat->node_id, N_CPU) && pgdat->node_id != numa_node_id())
5890a5f5f91dSMel Gorman 		return NODE_RECLAIM_NOSCAN;
5891d773ed6bSDavid Rientjes 
5892a5f5f91dSMel Gorman 	if (test_and_set_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags))
5893a5f5f91dSMel Gorman 		return NODE_RECLAIM_NOSCAN;
5894fa5e084eSMel Gorman 
5895a5f5f91dSMel Gorman 	ret = __node_reclaim(pgdat, gfp_mask, order);
5896a5f5f91dSMel Gorman 	clear_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags);
5897d773ed6bSDavid Rientjes 
589824cf7251SMel Gorman 	if (!ret)
589924cf7251SMel Gorman 		count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
590024cf7251SMel Gorman 
5901d773ed6bSDavid Rientjes 	return ret;
5902179e9639SAndrew Morton }
59039eeff239SChristoph Lameter #endif
5904894bc310SLee Schermerhorn 
590564e3d12fSKuo-Hsin Yang void check_move_unevictable_pages(struct pagevec *pvec)
590689e004eaSLee Schermerhorn {
590777414d19SMatthew Wilcox (Oracle) 	struct folio_batch fbatch;
590877414d19SMatthew Wilcox (Oracle) 	unsigned i;
590977414d19SMatthew Wilcox (Oracle) 
591077414d19SMatthew Wilcox (Oracle) 	folio_batch_init(&fbatch);
591177414d19SMatthew Wilcox (Oracle) 	for (i = 0; i < pvec->nr; i++) {
591277414d19SMatthew Wilcox (Oracle) 		struct page *page = pvec->pages[i];
591377414d19SMatthew Wilcox (Oracle) 
591477414d19SMatthew Wilcox (Oracle) 		if (PageTransTail(page))
591577414d19SMatthew Wilcox (Oracle) 			continue;
591677414d19SMatthew Wilcox (Oracle) 		folio_batch_add(&fbatch, page_folio(page));
591777414d19SMatthew Wilcox (Oracle) 	}
591877414d19SMatthew Wilcox (Oracle) 	check_move_unevictable_folios(&fbatch);
591977414d19SMatthew Wilcox (Oracle) }
592077414d19SMatthew Wilcox (Oracle) EXPORT_SYMBOL_GPL(check_move_unevictable_pages);
592177414d19SMatthew Wilcox (Oracle) 
592277414d19SMatthew Wilcox (Oracle) /**
592377414d19SMatthew Wilcox (Oracle)  * check_move_unevictable_folios - Move evictable folios to appropriate zone
592477414d19SMatthew Wilcox (Oracle)  * lru list
592577414d19SMatthew Wilcox (Oracle)  * @fbatch: Batch of lru folios to check.
592677414d19SMatthew Wilcox (Oracle)  *
592777414d19SMatthew Wilcox (Oracle)  * Checks folios for evictability, if an evictable folio is in the unevictable
592877414d19SMatthew Wilcox (Oracle)  * lru list, moves it to the appropriate evictable lru list. This function
592977414d19SMatthew Wilcox (Oracle)  * should be only used for lru folios.
593077414d19SMatthew Wilcox (Oracle)  */
593177414d19SMatthew Wilcox (Oracle) void check_move_unevictable_folios(struct folio_batch *fbatch)
593277414d19SMatthew Wilcox (Oracle) {
59336168d0daSAlex Shi 	struct lruvec *lruvec = NULL;
593424513264SHugh Dickins 	int pgscanned = 0;
593524513264SHugh Dickins 	int pgrescued = 0;
593689e004eaSLee Schermerhorn 	int i;
593789e004eaSLee Schermerhorn 
593877414d19SMatthew Wilcox (Oracle) 	for (i = 0; i < fbatch->nr; i++) {
593977414d19SMatthew Wilcox (Oracle) 		struct folio *folio = fbatch->folios[i];
594077414d19SMatthew Wilcox (Oracle) 		int nr_pages = folio_nr_pages(folio);
594189e004eaSLee Schermerhorn 
59428d8869caSHugh Dickins 		pgscanned += nr_pages;
59438d8869caSHugh Dickins 
594477414d19SMatthew Wilcox (Oracle) 		/* block memcg migration while the folio moves between lrus */
594577414d19SMatthew Wilcox (Oracle) 		if (!folio_test_clear_lru(folio))
5946d25b5bd8SAlex Shi 			continue;
5947d25b5bd8SAlex Shi 
59480de340cbSMatthew Wilcox (Oracle) 		lruvec = folio_lruvec_relock_irq(folio, lruvec);
594977414d19SMatthew Wilcox (Oracle) 		if (folio_evictable(folio) && folio_test_unevictable(folio)) {
595077414d19SMatthew Wilcox (Oracle) 			lruvec_del_folio(lruvec, folio);
595177414d19SMatthew Wilcox (Oracle) 			folio_clear_unevictable(folio);
595277414d19SMatthew Wilcox (Oracle) 			lruvec_add_folio(lruvec, folio);
59538d8869caSHugh Dickins 			pgrescued += nr_pages;
595489e004eaSLee Schermerhorn 		}
595577414d19SMatthew Wilcox (Oracle) 		folio_set_lru(folio);
595689e004eaSLee Schermerhorn 	}
595724513264SHugh Dickins 
59586168d0daSAlex Shi 	if (lruvec) {
595924513264SHugh Dickins 		__count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
596024513264SHugh Dickins 		__count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
59616168d0daSAlex Shi 		unlock_page_lruvec_irq(lruvec);
5962d25b5bd8SAlex Shi 	} else if (pgscanned) {
5963d25b5bd8SAlex Shi 		count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
596424513264SHugh Dickins 	}
596585046579SHugh Dickins }
596677414d19SMatthew Wilcox (Oracle) EXPORT_SYMBOL_GPL(check_move_unevictable_folios);
5967