xref: /openbmc/linux/mm/vmscan.c (revision ec97097bca147d5718a5d2c024d1ec740b10096d)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/mm/vmscan.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *  Swap reorganised 29.12.95, Stephen Tweedie.
71da177e4SLinus Torvalds  *  kswapd added: 7.1.96  sct
81da177e4SLinus Torvalds  *  Removed kswapd_ctl limits, and swap out as many pages as needed
91da177e4SLinus Torvalds  *  to bring the system back to freepages.high: 2.4.97, Rik van Riel.
101da177e4SLinus Torvalds  *  Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
111da177e4SLinus Torvalds  *  Multiqueue VM started 5.8.00, Rik van Riel.
121da177e4SLinus Torvalds  */
131da177e4SLinus Torvalds 
141da177e4SLinus Torvalds #include <linux/mm.h>
151da177e4SLinus Torvalds #include <linux/module.h>
165a0e3ad6STejun Heo #include <linux/gfp.h>
171da177e4SLinus Torvalds #include <linux/kernel_stat.h>
181da177e4SLinus Torvalds #include <linux/swap.h>
191da177e4SLinus Torvalds #include <linux/pagemap.h>
201da177e4SLinus Torvalds #include <linux/init.h>
211da177e4SLinus Torvalds #include <linux/highmem.h>
2270ddf637SAnton Vorontsov #include <linux/vmpressure.h>
23e129b5c2SAndrew Morton #include <linux/vmstat.h>
241da177e4SLinus Torvalds #include <linux/file.h>
251da177e4SLinus Torvalds #include <linux/writeback.h>
261da177e4SLinus Torvalds #include <linux/blkdev.h>
271da177e4SLinus Torvalds #include <linux/buffer_head.h>	/* for try_to_release_page(),
281da177e4SLinus Torvalds 					buffer_heads_over_limit */
291da177e4SLinus Torvalds #include <linux/mm_inline.h>
301da177e4SLinus Torvalds #include <linux/backing-dev.h>
311da177e4SLinus Torvalds #include <linux/rmap.h>
321da177e4SLinus Torvalds #include <linux/topology.h>
331da177e4SLinus Torvalds #include <linux/cpu.h>
341da177e4SLinus Torvalds #include <linux/cpuset.h>
353e7d3449SMel Gorman #include <linux/compaction.h>
361da177e4SLinus Torvalds #include <linux/notifier.h>
371da177e4SLinus Torvalds #include <linux/rwsem.h>
38248a0301SRafael J. Wysocki #include <linux/delay.h>
393218ae14SYasunori Goto #include <linux/kthread.h>
407dfb7103SNigel Cunningham #include <linux/freezer.h>
4166e1707bSBalbir Singh #include <linux/memcontrol.h>
42873b4771SKeika Kobayashi #include <linux/delayacct.h>
43af936a16SLee Schermerhorn #include <linux/sysctl.h>
44929bea7cSKOSAKI Motohiro #include <linux/oom.h>
45268bb0ceSLinus Torvalds #include <linux/prefetch.h>
461da177e4SLinus Torvalds 
471da177e4SLinus Torvalds #include <asm/tlbflush.h>
481da177e4SLinus Torvalds #include <asm/div64.h>
491da177e4SLinus Torvalds 
501da177e4SLinus Torvalds #include <linux/swapops.h>
51117aad1eSRafael Aquini #include <linux/balloon_compaction.h>
521da177e4SLinus Torvalds 
530f8053a5SNick Piggin #include "internal.h"
540f8053a5SNick Piggin 
5533906bc5SMel Gorman #define CREATE_TRACE_POINTS
5633906bc5SMel Gorman #include <trace/events/vmscan.h>
5733906bc5SMel Gorman 
581da177e4SLinus Torvalds struct scan_control {
591da177e4SLinus Torvalds 	/* Incremented by the number of inactive pages that were scanned */
601da177e4SLinus Torvalds 	unsigned long nr_scanned;
611da177e4SLinus Torvalds 
62a79311c1SRik van Riel 	/* Number of pages freed so far during a call to shrink_zones() */
63a79311c1SRik van Riel 	unsigned long nr_reclaimed;
64a79311c1SRik van Riel 
6522fba335SKOSAKI Motohiro 	/* How many pages shrink_list() should reclaim */
6622fba335SKOSAKI Motohiro 	unsigned long nr_to_reclaim;
6722fba335SKOSAKI Motohiro 
687b51755cSKOSAKI Motohiro 	unsigned long hibernation_mode;
697b51755cSKOSAKI Motohiro 
701da177e4SLinus Torvalds 	/* This context's GFP mask */
716daa0e28SAl Viro 	gfp_t gfp_mask;
721da177e4SLinus Torvalds 
731da177e4SLinus Torvalds 	int may_writepage;
741da177e4SLinus Torvalds 
75a6dc60f8SJohannes Weiner 	/* Can mapped pages be reclaimed? */
76a6dc60f8SJohannes Weiner 	int may_unmap;
77f1fd1067SChristoph Lameter 
782e2e4259SKOSAKI Motohiro 	/* Can pages be swapped as part of reclaim? */
792e2e4259SKOSAKI Motohiro 	int may_swap;
802e2e4259SKOSAKI Motohiro 
815ad333ebSAndy Whitcroft 	int order;
8266e1707bSBalbir Singh 
839e3b2f8cSKonstantin Khlebnikov 	/* Scan (total_size >> priority) pages at once */
849e3b2f8cSKonstantin Khlebnikov 	int priority;
859e3b2f8cSKonstantin Khlebnikov 
865f53e762SKOSAKI Motohiro 	/*
87f16015fbSJohannes Weiner 	 * The memory cgroup that hit its limit and as a result is the
88f16015fbSJohannes Weiner 	 * primary target of this reclaim invocation.
89f16015fbSJohannes Weiner 	 */
90f16015fbSJohannes Weiner 	struct mem_cgroup *target_mem_cgroup;
9166e1707bSBalbir Singh 
92327c0e96SKAMEZAWA Hiroyuki 	/*
93327c0e96SKAMEZAWA Hiroyuki 	 * Nodemask of nodes allowed by the caller. If NULL, all nodes
94327c0e96SKAMEZAWA Hiroyuki 	 * are scanned.
95327c0e96SKAMEZAWA Hiroyuki 	 */
96327c0e96SKAMEZAWA Hiroyuki 	nodemask_t	*nodemask;
971da177e4SLinus Torvalds };
981da177e4SLinus Torvalds 
991da177e4SLinus Torvalds #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
1001da177e4SLinus Torvalds 
1011da177e4SLinus Torvalds #ifdef ARCH_HAS_PREFETCH
1021da177e4SLinus Torvalds #define prefetch_prev_lru_page(_page, _base, _field)			\
1031da177e4SLinus Torvalds 	do {								\
1041da177e4SLinus Torvalds 		if ((_page)->lru.prev != _base) {			\
1051da177e4SLinus Torvalds 			struct page *prev;				\
1061da177e4SLinus Torvalds 									\
1071da177e4SLinus Torvalds 			prev = lru_to_page(&(_page->lru));		\
1081da177e4SLinus Torvalds 			prefetch(&prev->_field);			\
1091da177e4SLinus Torvalds 		}							\
1101da177e4SLinus Torvalds 	} while (0)
1111da177e4SLinus Torvalds #else
1121da177e4SLinus Torvalds #define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
1131da177e4SLinus Torvalds #endif
1141da177e4SLinus Torvalds 
1151da177e4SLinus Torvalds #ifdef ARCH_HAS_PREFETCHW
1161da177e4SLinus Torvalds #define prefetchw_prev_lru_page(_page, _base, _field)			\
1171da177e4SLinus Torvalds 	do {								\
1181da177e4SLinus Torvalds 		if ((_page)->lru.prev != _base) {			\
1191da177e4SLinus Torvalds 			struct page *prev;				\
1201da177e4SLinus Torvalds 									\
1211da177e4SLinus Torvalds 			prev = lru_to_page(&(_page->lru));		\
1221da177e4SLinus Torvalds 			prefetchw(&prev->_field);			\
1231da177e4SLinus Torvalds 		}							\
1241da177e4SLinus Torvalds 	} while (0)
1251da177e4SLinus Torvalds #else
1261da177e4SLinus Torvalds #define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
1271da177e4SLinus Torvalds #endif
1281da177e4SLinus Torvalds 
1291da177e4SLinus Torvalds /*
1301da177e4SLinus Torvalds  * From 0 .. 100.  Higher means more swappy.
1311da177e4SLinus Torvalds  */
1321da177e4SLinus Torvalds int vm_swappiness = 60;
133b21e0b90SZhang Yanfei unsigned long vm_total_pages;	/* The total number of pages which the VM controls */
1341da177e4SLinus Torvalds 
1351da177e4SLinus Torvalds static LIST_HEAD(shrinker_list);
1361da177e4SLinus Torvalds static DECLARE_RWSEM(shrinker_rwsem);
1371da177e4SLinus Torvalds 
138c255a458SAndrew Morton #ifdef CONFIG_MEMCG
13989b5fae5SJohannes Weiner static bool global_reclaim(struct scan_control *sc)
14089b5fae5SJohannes Weiner {
141f16015fbSJohannes Weiner 	return !sc->target_mem_cgroup;
14289b5fae5SJohannes Weiner }
14391a45470SKAMEZAWA Hiroyuki #else
14489b5fae5SJohannes Weiner static bool global_reclaim(struct scan_control *sc)
14589b5fae5SJohannes Weiner {
14689b5fae5SJohannes Weiner 	return true;
14789b5fae5SJohannes Weiner }
14891a45470SKAMEZAWA Hiroyuki #endif
14991a45470SKAMEZAWA Hiroyuki 
1506e543d57SLisa Du unsigned long zone_reclaimable_pages(struct zone *zone)
1516e543d57SLisa Du {
1526e543d57SLisa Du 	int nr;
1536e543d57SLisa Du 
1546e543d57SLisa Du 	nr = zone_page_state(zone, NR_ACTIVE_FILE) +
1556e543d57SLisa Du 	     zone_page_state(zone, NR_INACTIVE_FILE);
1566e543d57SLisa Du 
1576e543d57SLisa Du 	if (get_nr_swap_pages() > 0)
1586e543d57SLisa Du 		nr += zone_page_state(zone, NR_ACTIVE_ANON) +
1596e543d57SLisa Du 		      zone_page_state(zone, NR_INACTIVE_ANON);
1606e543d57SLisa Du 
1616e543d57SLisa Du 	return nr;
1626e543d57SLisa Du }
1636e543d57SLisa Du 
1646e543d57SLisa Du bool zone_reclaimable(struct zone *zone)
1656e543d57SLisa Du {
1666e543d57SLisa Du 	return zone->pages_scanned < zone_reclaimable_pages(zone) * 6;
1676e543d57SLisa Du }
1686e543d57SLisa Du 
1694d7dcca2SHugh Dickins static unsigned long get_lru_size(struct lruvec *lruvec, enum lru_list lru)
170c9f299d9SKOSAKI Motohiro {
171c3c787e8SHugh Dickins 	if (!mem_cgroup_disabled())
1724d7dcca2SHugh Dickins 		return mem_cgroup_get_lru_size(lruvec, lru);
173a3d8e054SKOSAKI Motohiro 
174074291feSKonstantin Khlebnikov 	return zone_page_state(lruvec_zone(lruvec), NR_LRU_BASE + lru);
175c9f299d9SKOSAKI Motohiro }
176c9f299d9SKOSAKI Motohiro 
1771da177e4SLinus Torvalds /*
1781d3d4437SGlauber Costa  * Add a shrinker callback to be called from the vm.
1791da177e4SLinus Torvalds  */
1801d3d4437SGlauber Costa int register_shrinker(struct shrinker *shrinker)
1811da177e4SLinus Torvalds {
1821d3d4437SGlauber Costa 	size_t size = sizeof(*shrinker->nr_deferred);
1831d3d4437SGlauber Costa 
1841d3d4437SGlauber Costa 	/*
1851d3d4437SGlauber Costa 	 * If we only have one possible node in the system anyway, save
1861d3d4437SGlauber Costa 	 * ourselves the trouble and disable NUMA aware behavior. This way we
1871d3d4437SGlauber Costa 	 * will save memory and some small loop time later.
1881d3d4437SGlauber Costa 	 */
1891d3d4437SGlauber Costa 	if (nr_node_ids == 1)
1901d3d4437SGlauber Costa 		shrinker->flags &= ~SHRINKER_NUMA_AWARE;
1911d3d4437SGlauber Costa 
1921d3d4437SGlauber Costa 	if (shrinker->flags & SHRINKER_NUMA_AWARE)
1931d3d4437SGlauber Costa 		size *= nr_node_ids;
1941d3d4437SGlauber Costa 
1951d3d4437SGlauber Costa 	shrinker->nr_deferred = kzalloc(size, GFP_KERNEL);
1961d3d4437SGlauber Costa 	if (!shrinker->nr_deferred)
1971d3d4437SGlauber Costa 		return -ENOMEM;
1981d3d4437SGlauber Costa 
1991da177e4SLinus Torvalds 	down_write(&shrinker_rwsem);
2001da177e4SLinus Torvalds 	list_add_tail(&shrinker->list, &shrinker_list);
2011da177e4SLinus Torvalds 	up_write(&shrinker_rwsem);
2021d3d4437SGlauber Costa 	return 0;
2031da177e4SLinus Torvalds }
2048e1f936bSRusty Russell EXPORT_SYMBOL(register_shrinker);
2051da177e4SLinus Torvalds 
2061da177e4SLinus Torvalds /*
2071da177e4SLinus Torvalds  * Remove one
2081da177e4SLinus Torvalds  */
2098e1f936bSRusty Russell void unregister_shrinker(struct shrinker *shrinker)
2101da177e4SLinus Torvalds {
2111da177e4SLinus Torvalds 	down_write(&shrinker_rwsem);
2121da177e4SLinus Torvalds 	list_del(&shrinker->list);
2131da177e4SLinus Torvalds 	up_write(&shrinker_rwsem);
214ae393321SAndrew Vagin 	kfree(shrinker->nr_deferred);
2151da177e4SLinus Torvalds }
2168e1f936bSRusty Russell EXPORT_SYMBOL(unregister_shrinker);
2171da177e4SLinus Torvalds 
2181da177e4SLinus Torvalds #define SHRINK_BATCH 128
2191d3d4437SGlauber Costa 
2201d3d4437SGlauber Costa static unsigned long
2211d3d4437SGlauber Costa shrink_slab_node(struct shrink_control *shrinkctl, struct shrinker *shrinker,
2221d3d4437SGlauber Costa 		 unsigned long nr_pages_scanned, unsigned long lru_pages)
2231da177e4SLinus Torvalds {
22424f7c6b9SDave Chinner 	unsigned long freed = 0;
2251da177e4SLinus Torvalds 	unsigned long long delta;
226635697c6SKonstantin Khlebnikov 	long total_scan;
227635697c6SKonstantin Khlebnikov 	long max_pass;
228acf92b48SDave Chinner 	long nr;
229acf92b48SDave Chinner 	long new_nr;
2301d3d4437SGlauber Costa 	int nid = shrinkctl->nid;
231e9299f50SDave Chinner 	long batch_size = shrinker->batch ? shrinker->batch
232e9299f50SDave Chinner 					  : SHRINK_BATCH;
2331da177e4SLinus Torvalds 
23424f7c6b9SDave Chinner 	max_pass = shrinker->count_objects(shrinker, shrinkctl);
23524f7c6b9SDave Chinner 	if (max_pass == 0)
2361d3d4437SGlauber Costa 		return 0;
237635697c6SKonstantin Khlebnikov 
238acf92b48SDave Chinner 	/*
239acf92b48SDave Chinner 	 * copy the current shrinker scan count into a local variable
240acf92b48SDave Chinner 	 * and zero it so that other concurrent shrinker invocations
241acf92b48SDave Chinner 	 * don't also do this scanning work.
242acf92b48SDave Chinner 	 */
2431d3d4437SGlauber Costa 	nr = atomic_long_xchg(&shrinker->nr_deferred[nid], 0);
244acf92b48SDave Chinner 
245acf92b48SDave Chinner 	total_scan = nr;
2461495f230SYing Han 	delta = (4 * nr_pages_scanned) / shrinker->seeks;
247ea164d73SAndrea Arcangeli 	delta *= max_pass;
2481da177e4SLinus Torvalds 	do_div(delta, lru_pages + 1);
249acf92b48SDave Chinner 	total_scan += delta;
250acf92b48SDave Chinner 	if (total_scan < 0) {
25124f7c6b9SDave Chinner 		printk(KERN_ERR
25224f7c6b9SDave Chinner 		"shrink_slab: %pF negative objects to delete nr=%ld\n",
253a0b02131SDave Chinner 		       shrinker->scan_objects, total_scan);
254acf92b48SDave Chinner 		total_scan = max_pass;
255ea164d73SAndrea Arcangeli 	}
256ea164d73SAndrea Arcangeli 
257ea164d73SAndrea Arcangeli 	/*
2583567b59aSDave Chinner 	 * We need to avoid excessive windup on filesystem shrinkers
2593567b59aSDave Chinner 	 * due to large numbers of GFP_NOFS allocations causing the
2603567b59aSDave Chinner 	 * shrinkers to return -1 all the time. This results in a large
2613567b59aSDave Chinner 	 * nr being built up so when a shrink that can do some work
2623567b59aSDave Chinner 	 * comes along it empties the entire cache due to nr >>>
2633567b59aSDave Chinner 	 * max_pass.  This is bad for sustaining a working set in
2643567b59aSDave Chinner 	 * memory.
2653567b59aSDave Chinner 	 *
2663567b59aSDave Chinner 	 * Hence only allow the shrinker to scan the entire cache when
2673567b59aSDave Chinner 	 * a large delta change is calculated directly.
2683567b59aSDave Chinner 	 */
2693567b59aSDave Chinner 	if (delta < max_pass / 4)
2703567b59aSDave Chinner 		total_scan = min(total_scan, max_pass / 2);
2713567b59aSDave Chinner 
2723567b59aSDave Chinner 	/*
273ea164d73SAndrea Arcangeli 	 * Avoid risking looping forever due to too large nr value:
274ea164d73SAndrea Arcangeli 	 * never try to free more than twice the estimate number of
275ea164d73SAndrea Arcangeli 	 * freeable entries.
276ea164d73SAndrea Arcangeli 	 */
277acf92b48SDave Chinner 	if (total_scan > max_pass * 2)
278acf92b48SDave Chinner 		total_scan = max_pass * 2;
2791da177e4SLinus Torvalds 
28024f7c6b9SDave Chinner 	trace_mm_shrink_slab_start(shrinker, shrinkctl, nr,
28109576073SDave Chinner 				nr_pages_scanned, lru_pages,
28209576073SDave Chinner 				max_pass, delta, total_scan);
28309576073SDave Chinner 
2840b1fb40aSVladimir Davydov 	/*
2850b1fb40aSVladimir Davydov 	 * Normally, we should not scan less than batch_size objects in one
2860b1fb40aSVladimir Davydov 	 * pass to avoid too frequent shrinker calls, but if the slab has less
2870b1fb40aSVladimir Davydov 	 * than batch_size objects in total and we are really tight on memory,
2880b1fb40aSVladimir Davydov 	 * we will try to reclaim all available objects, otherwise we can end
2890b1fb40aSVladimir Davydov 	 * up failing allocations although there are plenty of reclaimable
2900b1fb40aSVladimir Davydov 	 * objects spread over several slabs with usage less than the
2910b1fb40aSVladimir Davydov 	 * batch_size.
2920b1fb40aSVladimir Davydov 	 *
2930b1fb40aSVladimir Davydov 	 * We detect the "tight on memory" situations by looking at the total
2940b1fb40aSVladimir Davydov 	 * number of objects we want to scan (total_scan). If it is greater
2950b1fb40aSVladimir Davydov 	 * than the total number of objects on slab (max_pass), we must be
2960b1fb40aSVladimir Davydov 	 * scanning at high prio and therefore should try to reclaim as much as
2970b1fb40aSVladimir Davydov 	 * possible.
2980b1fb40aSVladimir Davydov 	 */
2990b1fb40aSVladimir Davydov 	while (total_scan >= batch_size ||
3000b1fb40aSVladimir Davydov 	       total_scan >= max_pass) {
30124f7c6b9SDave Chinner 		unsigned long ret;
3020b1fb40aSVladimir Davydov 		unsigned long nr_to_scan = min(batch_size, total_scan);
3031da177e4SLinus Torvalds 
3040b1fb40aSVladimir Davydov 		shrinkctl->nr_to_scan = nr_to_scan;
30524f7c6b9SDave Chinner 		ret = shrinker->scan_objects(shrinker, shrinkctl);
30624f7c6b9SDave Chinner 		if (ret == SHRINK_STOP)
3071da177e4SLinus Torvalds 			break;
30824f7c6b9SDave Chinner 		freed += ret;
30924f7c6b9SDave Chinner 
3100b1fb40aSVladimir Davydov 		count_vm_events(SLABS_SCANNED, nr_to_scan);
3110b1fb40aSVladimir Davydov 		total_scan -= nr_to_scan;
3121da177e4SLinus Torvalds 
3131da177e4SLinus Torvalds 		cond_resched();
3141da177e4SLinus Torvalds 	}
3151da177e4SLinus Torvalds 
316acf92b48SDave Chinner 	/*
317acf92b48SDave Chinner 	 * move the unused scan count back into the shrinker in a
318acf92b48SDave Chinner 	 * manner that handles concurrent updates. If we exhausted the
319acf92b48SDave Chinner 	 * scan, there is no need to do an update.
320acf92b48SDave Chinner 	 */
32183aeeadaSKonstantin Khlebnikov 	if (total_scan > 0)
32283aeeadaSKonstantin Khlebnikov 		new_nr = atomic_long_add_return(total_scan,
3231d3d4437SGlauber Costa 						&shrinker->nr_deferred[nid]);
32483aeeadaSKonstantin Khlebnikov 	else
3251d3d4437SGlauber Costa 		new_nr = atomic_long_read(&shrinker->nr_deferred[nid]);
326acf92b48SDave Chinner 
32724f7c6b9SDave Chinner 	trace_mm_shrink_slab_end(shrinker, freed, nr, new_nr);
3281d3d4437SGlauber Costa 	return freed;
3291d3d4437SGlauber Costa }
3301d3d4437SGlauber Costa 
3311d3d4437SGlauber Costa /*
3321d3d4437SGlauber Costa  * Call the shrink functions to age shrinkable caches
3331d3d4437SGlauber Costa  *
3341d3d4437SGlauber Costa  * Here we assume it costs one seek to replace a lru page and that it also
3351d3d4437SGlauber Costa  * takes a seek to recreate a cache object.  With this in mind we age equal
3361d3d4437SGlauber Costa  * percentages of the lru and ageable caches.  This should balance the seeks
3371d3d4437SGlauber Costa  * generated by these structures.
3381d3d4437SGlauber Costa  *
3391d3d4437SGlauber Costa  * If the vm encountered mapped pages on the LRU it increase the pressure on
3401d3d4437SGlauber Costa  * slab to avoid swapping.
3411d3d4437SGlauber Costa  *
3421d3d4437SGlauber Costa  * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
3431d3d4437SGlauber Costa  *
3441d3d4437SGlauber Costa  * `lru_pages' represents the number of on-LRU pages in all the zones which
3451d3d4437SGlauber Costa  * are eligible for the caller's allocation attempt.  It is used for balancing
3461d3d4437SGlauber Costa  * slab reclaim versus page reclaim.
3471d3d4437SGlauber Costa  *
3481d3d4437SGlauber Costa  * Returns the number of slab objects which we shrunk.
3491d3d4437SGlauber Costa  */
3501d3d4437SGlauber Costa unsigned long shrink_slab(struct shrink_control *shrinkctl,
3511d3d4437SGlauber Costa 			  unsigned long nr_pages_scanned,
3521d3d4437SGlauber Costa 			  unsigned long lru_pages)
3531d3d4437SGlauber Costa {
3541d3d4437SGlauber Costa 	struct shrinker *shrinker;
3551d3d4437SGlauber Costa 	unsigned long freed = 0;
3561d3d4437SGlauber Costa 
3571d3d4437SGlauber Costa 	if (nr_pages_scanned == 0)
3581d3d4437SGlauber Costa 		nr_pages_scanned = SWAP_CLUSTER_MAX;
3591d3d4437SGlauber Costa 
3601d3d4437SGlauber Costa 	if (!down_read_trylock(&shrinker_rwsem)) {
3611d3d4437SGlauber Costa 		/*
3621d3d4437SGlauber Costa 		 * If we would return 0, our callers would understand that we
3631d3d4437SGlauber Costa 		 * have nothing else to shrink and give up trying. By returning
3641d3d4437SGlauber Costa 		 * 1 we keep it going and assume we'll be able to shrink next
3651d3d4437SGlauber Costa 		 * time.
3661d3d4437SGlauber Costa 		 */
3671d3d4437SGlauber Costa 		freed = 1;
3681d3d4437SGlauber Costa 		goto out;
3691d3d4437SGlauber Costa 	}
3701d3d4437SGlauber Costa 
3711d3d4437SGlauber Costa 	list_for_each_entry(shrinker, &shrinker_list, list) {
372*ec97097bSVladimir Davydov 		if (!(shrinker->flags & SHRINKER_NUMA_AWARE)) {
373*ec97097bSVladimir Davydov 			shrinkctl->nid = 0;
374*ec97097bSVladimir Davydov 			freed += shrink_slab_node(shrinkctl, shrinker,
375*ec97097bSVladimir Davydov 					nr_pages_scanned, lru_pages);
3761d3d4437SGlauber Costa 			continue;
377*ec97097bSVladimir Davydov 		}
3781d3d4437SGlauber Costa 
379*ec97097bSVladimir Davydov 		for_each_node_mask(shrinkctl->nid, shrinkctl->nodes_to_scan) {
380*ec97097bSVladimir Davydov 			if (node_online(shrinkctl->nid))
3811d3d4437SGlauber Costa 				freed += shrink_slab_node(shrinkctl, shrinker,
3821d3d4437SGlauber Costa 						nr_pages_scanned, lru_pages);
3831d3d4437SGlauber Costa 
3841d3d4437SGlauber Costa 		}
3851da177e4SLinus Torvalds 	}
3861da177e4SLinus Torvalds 	up_read(&shrinker_rwsem);
387f06590bdSMinchan Kim out:
388f06590bdSMinchan Kim 	cond_resched();
38924f7c6b9SDave Chinner 	return freed;
3901da177e4SLinus Torvalds }
3911da177e4SLinus Torvalds 
3921da177e4SLinus Torvalds static inline int is_page_cache_freeable(struct page *page)
3931da177e4SLinus Torvalds {
394ceddc3a5SJohannes Weiner 	/*
395ceddc3a5SJohannes Weiner 	 * A freeable page cache page is referenced only by the caller
396ceddc3a5SJohannes Weiner 	 * that isolated the page, the page cache radix tree and
397ceddc3a5SJohannes Weiner 	 * optional buffer heads at page->private.
398ceddc3a5SJohannes Weiner 	 */
399edcf4748SJohannes Weiner 	return page_count(page) - page_has_private(page) == 2;
4001da177e4SLinus Torvalds }
4011da177e4SLinus Torvalds 
4027d3579e8SKOSAKI Motohiro static int may_write_to_queue(struct backing_dev_info *bdi,
4037d3579e8SKOSAKI Motohiro 			      struct scan_control *sc)
4041da177e4SLinus Torvalds {
405930d9152SChristoph Lameter 	if (current->flags & PF_SWAPWRITE)
4061da177e4SLinus Torvalds 		return 1;
4071da177e4SLinus Torvalds 	if (!bdi_write_congested(bdi))
4081da177e4SLinus Torvalds 		return 1;
4091da177e4SLinus Torvalds 	if (bdi == current->backing_dev_info)
4101da177e4SLinus Torvalds 		return 1;
4111da177e4SLinus Torvalds 	return 0;
4121da177e4SLinus Torvalds }
4131da177e4SLinus Torvalds 
4141da177e4SLinus Torvalds /*
4151da177e4SLinus Torvalds  * We detected a synchronous write error writing a page out.  Probably
4161da177e4SLinus Torvalds  * -ENOSPC.  We need to propagate that into the address_space for a subsequent
4171da177e4SLinus Torvalds  * fsync(), msync() or close().
4181da177e4SLinus Torvalds  *
4191da177e4SLinus Torvalds  * The tricky part is that after writepage we cannot touch the mapping: nothing
4201da177e4SLinus Torvalds  * prevents it from being freed up.  But we have a ref on the page and once
4211da177e4SLinus Torvalds  * that page is locked, the mapping is pinned.
4221da177e4SLinus Torvalds  *
4231da177e4SLinus Torvalds  * We're allowed to run sleeping lock_page() here because we know the caller has
4241da177e4SLinus Torvalds  * __GFP_FS.
4251da177e4SLinus Torvalds  */
4261da177e4SLinus Torvalds static void handle_write_error(struct address_space *mapping,
4271da177e4SLinus Torvalds 				struct page *page, int error)
4281da177e4SLinus Torvalds {
4297eaceaccSJens Axboe 	lock_page(page);
4303e9f45bdSGuillaume Chazarain 	if (page_mapping(page) == mapping)
4313e9f45bdSGuillaume Chazarain 		mapping_set_error(mapping, error);
4321da177e4SLinus Torvalds 	unlock_page(page);
4331da177e4SLinus Torvalds }
4341da177e4SLinus Torvalds 
43504e62a29SChristoph Lameter /* possible outcome of pageout() */
43604e62a29SChristoph Lameter typedef enum {
43704e62a29SChristoph Lameter 	/* failed to write page out, page is locked */
43804e62a29SChristoph Lameter 	PAGE_KEEP,
43904e62a29SChristoph Lameter 	/* move page to the active list, page is locked */
44004e62a29SChristoph Lameter 	PAGE_ACTIVATE,
44104e62a29SChristoph Lameter 	/* page has been sent to the disk successfully, page is unlocked */
44204e62a29SChristoph Lameter 	PAGE_SUCCESS,
44304e62a29SChristoph Lameter 	/* page is clean and locked */
44404e62a29SChristoph Lameter 	PAGE_CLEAN,
44504e62a29SChristoph Lameter } pageout_t;
44604e62a29SChristoph Lameter 
4471da177e4SLinus Torvalds /*
4481742f19fSAndrew Morton  * pageout is called by shrink_page_list() for each dirty page.
4491742f19fSAndrew Morton  * Calls ->writepage().
4501da177e4SLinus Torvalds  */
451c661b078SAndy Whitcroft static pageout_t pageout(struct page *page, struct address_space *mapping,
4527d3579e8SKOSAKI Motohiro 			 struct scan_control *sc)
4531da177e4SLinus Torvalds {
4541da177e4SLinus Torvalds 	/*
4551da177e4SLinus Torvalds 	 * If the page is dirty, only perform writeback if that write
4561da177e4SLinus Torvalds 	 * will be non-blocking.  To prevent this allocation from being
4571da177e4SLinus Torvalds 	 * stalled by pagecache activity.  But note that there may be
4581da177e4SLinus Torvalds 	 * stalls if we need to run get_block().  We could test
4591da177e4SLinus Torvalds 	 * PagePrivate for that.
4601da177e4SLinus Torvalds 	 *
4616aceb53bSVincent Li 	 * If this process is currently in __generic_file_aio_write() against
4621da177e4SLinus Torvalds 	 * this page's queue, we can perform writeback even if that
4631da177e4SLinus Torvalds 	 * will block.
4641da177e4SLinus Torvalds 	 *
4651da177e4SLinus Torvalds 	 * If the page is swapcache, write it back even if that would
4661da177e4SLinus Torvalds 	 * block, for some throttling. This happens by accident, because
4671da177e4SLinus Torvalds 	 * swap_backing_dev_info is bust: it doesn't reflect the
4681da177e4SLinus Torvalds 	 * congestion state of the swapdevs.  Easy to fix, if needed.
4691da177e4SLinus Torvalds 	 */
4701da177e4SLinus Torvalds 	if (!is_page_cache_freeable(page))
4711da177e4SLinus Torvalds 		return PAGE_KEEP;
4721da177e4SLinus Torvalds 	if (!mapping) {
4731da177e4SLinus Torvalds 		/*
4741da177e4SLinus Torvalds 		 * Some data journaling orphaned pages can have
4751da177e4SLinus Torvalds 		 * page->mapping == NULL while being dirty with clean buffers.
4761da177e4SLinus Torvalds 		 */
477266cf658SDavid Howells 		if (page_has_private(page)) {
4781da177e4SLinus Torvalds 			if (try_to_free_buffers(page)) {
4791da177e4SLinus Torvalds 				ClearPageDirty(page);
480d40cee24SHarvey Harrison 				printk("%s: orphaned page\n", __func__);
4811da177e4SLinus Torvalds 				return PAGE_CLEAN;
4821da177e4SLinus Torvalds 			}
4831da177e4SLinus Torvalds 		}
4841da177e4SLinus Torvalds 		return PAGE_KEEP;
4851da177e4SLinus Torvalds 	}
4861da177e4SLinus Torvalds 	if (mapping->a_ops->writepage == NULL)
4871da177e4SLinus Torvalds 		return PAGE_ACTIVATE;
4880e093d99SMel Gorman 	if (!may_write_to_queue(mapping->backing_dev_info, sc))
4891da177e4SLinus Torvalds 		return PAGE_KEEP;
4901da177e4SLinus Torvalds 
4911da177e4SLinus Torvalds 	if (clear_page_dirty_for_io(page)) {
4921da177e4SLinus Torvalds 		int res;
4931da177e4SLinus Torvalds 		struct writeback_control wbc = {
4941da177e4SLinus Torvalds 			.sync_mode = WB_SYNC_NONE,
4951da177e4SLinus Torvalds 			.nr_to_write = SWAP_CLUSTER_MAX,
496111ebb6eSOGAWA Hirofumi 			.range_start = 0,
497111ebb6eSOGAWA Hirofumi 			.range_end = LLONG_MAX,
4981da177e4SLinus Torvalds 			.for_reclaim = 1,
4991da177e4SLinus Torvalds 		};
5001da177e4SLinus Torvalds 
5011da177e4SLinus Torvalds 		SetPageReclaim(page);
5021da177e4SLinus Torvalds 		res = mapping->a_ops->writepage(page, &wbc);
5031da177e4SLinus Torvalds 		if (res < 0)
5041da177e4SLinus Torvalds 			handle_write_error(mapping, page, res);
505994fc28cSZach Brown 		if (res == AOP_WRITEPAGE_ACTIVATE) {
5061da177e4SLinus Torvalds 			ClearPageReclaim(page);
5071da177e4SLinus Torvalds 			return PAGE_ACTIVATE;
5081da177e4SLinus Torvalds 		}
509c661b078SAndy Whitcroft 
5101da177e4SLinus Torvalds 		if (!PageWriteback(page)) {
5111da177e4SLinus Torvalds 			/* synchronous write or broken a_ops? */
5121da177e4SLinus Torvalds 			ClearPageReclaim(page);
5131da177e4SLinus Torvalds 		}
51423b9da55SMel Gorman 		trace_mm_vmscan_writepage(page, trace_reclaim_flags(page));
515e129b5c2SAndrew Morton 		inc_zone_page_state(page, NR_VMSCAN_WRITE);
5161da177e4SLinus Torvalds 		return PAGE_SUCCESS;
5171da177e4SLinus Torvalds 	}
5181da177e4SLinus Torvalds 
5191da177e4SLinus Torvalds 	return PAGE_CLEAN;
5201da177e4SLinus Torvalds }
5211da177e4SLinus Torvalds 
522a649fd92SAndrew Morton /*
523e286781dSNick Piggin  * Same as remove_mapping, but if the page is removed from the mapping, it
524e286781dSNick Piggin  * gets returned with a refcount of 0.
525a649fd92SAndrew Morton  */
526e286781dSNick Piggin static int __remove_mapping(struct address_space *mapping, struct page *page)
52749d2e9ccSChristoph Lameter {
52828e4d965SNick Piggin 	BUG_ON(!PageLocked(page));
52928e4d965SNick Piggin 	BUG_ON(mapping != page_mapping(page));
53049d2e9ccSChristoph Lameter 
53119fd6231SNick Piggin 	spin_lock_irq(&mapping->tree_lock);
53249d2e9ccSChristoph Lameter 	/*
5330fd0e6b0SNick Piggin 	 * The non racy check for a busy page.
5340fd0e6b0SNick Piggin 	 *
5350fd0e6b0SNick Piggin 	 * Must be careful with the order of the tests. When someone has
5360fd0e6b0SNick Piggin 	 * a ref to the page, it may be possible that they dirty it then
5370fd0e6b0SNick Piggin 	 * drop the reference. So if PageDirty is tested before page_count
5380fd0e6b0SNick Piggin 	 * here, then the following race may occur:
5390fd0e6b0SNick Piggin 	 *
5400fd0e6b0SNick Piggin 	 * get_user_pages(&page);
5410fd0e6b0SNick Piggin 	 * [user mapping goes away]
5420fd0e6b0SNick Piggin 	 * write_to(page);
5430fd0e6b0SNick Piggin 	 *				!PageDirty(page)    [good]
5440fd0e6b0SNick Piggin 	 * SetPageDirty(page);
5450fd0e6b0SNick Piggin 	 * put_page(page);
5460fd0e6b0SNick Piggin 	 *				!page_count(page)   [good, discard it]
5470fd0e6b0SNick Piggin 	 *
5480fd0e6b0SNick Piggin 	 * [oops, our write_to data is lost]
5490fd0e6b0SNick Piggin 	 *
5500fd0e6b0SNick Piggin 	 * Reversing the order of the tests ensures such a situation cannot
5510fd0e6b0SNick Piggin 	 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
5520fd0e6b0SNick Piggin 	 * load is not satisfied before that of page->_count.
5530fd0e6b0SNick Piggin 	 *
5540fd0e6b0SNick Piggin 	 * Note that if SetPageDirty is always performed via set_page_dirty,
5550fd0e6b0SNick Piggin 	 * and thus under tree_lock, then this ordering is not required.
55649d2e9ccSChristoph Lameter 	 */
557e286781dSNick Piggin 	if (!page_freeze_refs(page, 2))
55849d2e9ccSChristoph Lameter 		goto cannot_free;
559e286781dSNick Piggin 	/* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
560e286781dSNick Piggin 	if (unlikely(PageDirty(page))) {
561e286781dSNick Piggin 		page_unfreeze_refs(page, 2);
56249d2e9ccSChristoph Lameter 		goto cannot_free;
563e286781dSNick Piggin 	}
56449d2e9ccSChristoph Lameter 
56549d2e9ccSChristoph Lameter 	if (PageSwapCache(page)) {
56649d2e9ccSChristoph Lameter 		swp_entry_t swap = { .val = page_private(page) };
56749d2e9ccSChristoph Lameter 		__delete_from_swap_cache(page);
56819fd6231SNick Piggin 		spin_unlock_irq(&mapping->tree_lock);
569cb4b86baSKAMEZAWA Hiroyuki 		swapcache_free(swap, page);
570e286781dSNick Piggin 	} else {
5716072d13cSLinus Torvalds 		void (*freepage)(struct page *);
5726072d13cSLinus Torvalds 
5736072d13cSLinus Torvalds 		freepage = mapping->a_ops->freepage;
5746072d13cSLinus Torvalds 
575e64a782fSMinchan Kim 		__delete_from_page_cache(page);
57619fd6231SNick Piggin 		spin_unlock_irq(&mapping->tree_lock);
577e767e056SDaisuke Nishimura 		mem_cgroup_uncharge_cache_page(page);
5786072d13cSLinus Torvalds 
5796072d13cSLinus Torvalds 		if (freepage != NULL)
5806072d13cSLinus Torvalds 			freepage(page);
581e286781dSNick Piggin 	}
582e286781dSNick Piggin 
58349d2e9ccSChristoph Lameter 	return 1;
58449d2e9ccSChristoph Lameter 
58549d2e9ccSChristoph Lameter cannot_free:
58619fd6231SNick Piggin 	spin_unlock_irq(&mapping->tree_lock);
58749d2e9ccSChristoph Lameter 	return 0;
58849d2e9ccSChristoph Lameter }
58949d2e9ccSChristoph Lameter 
5901da177e4SLinus Torvalds /*
591e286781dSNick Piggin  * Attempt to detach a locked page from its ->mapping.  If it is dirty or if
592e286781dSNick Piggin  * someone else has a ref on the page, abort and return 0.  If it was
593e286781dSNick Piggin  * successfully detached, return 1.  Assumes the caller has a single ref on
594e286781dSNick Piggin  * this page.
595e286781dSNick Piggin  */
596e286781dSNick Piggin int remove_mapping(struct address_space *mapping, struct page *page)
597e286781dSNick Piggin {
598e286781dSNick Piggin 	if (__remove_mapping(mapping, page)) {
599e286781dSNick Piggin 		/*
600e286781dSNick Piggin 		 * Unfreezing the refcount with 1 rather than 2 effectively
601e286781dSNick Piggin 		 * drops the pagecache ref for us without requiring another
602e286781dSNick Piggin 		 * atomic operation.
603e286781dSNick Piggin 		 */
604e286781dSNick Piggin 		page_unfreeze_refs(page, 1);
605e286781dSNick Piggin 		return 1;
606e286781dSNick Piggin 	}
607e286781dSNick Piggin 	return 0;
608e286781dSNick Piggin }
609e286781dSNick Piggin 
610894bc310SLee Schermerhorn /**
611894bc310SLee Schermerhorn  * putback_lru_page - put previously isolated page onto appropriate LRU list
612894bc310SLee Schermerhorn  * @page: page to be put back to appropriate lru list
613894bc310SLee Schermerhorn  *
614894bc310SLee Schermerhorn  * Add previously isolated @page to appropriate LRU list.
615894bc310SLee Schermerhorn  * Page may still be unevictable for other reasons.
616894bc310SLee Schermerhorn  *
617894bc310SLee Schermerhorn  * lru_lock must not be held, interrupts must be enabled.
618894bc310SLee Schermerhorn  */
619894bc310SLee Schermerhorn void putback_lru_page(struct page *page)
620894bc310SLee Schermerhorn {
6210ec3b74cSVlastimil Babka 	bool is_unevictable;
622bbfd28eeSLee Schermerhorn 	int was_unevictable = PageUnevictable(page);
623894bc310SLee Schermerhorn 
624309381feSSasha Levin 	VM_BUG_ON_PAGE(PageLRU(page), page);
625894bc310SLee Schermerhorn 
626894bc310SLee Schermerhorn redo:
627894bc310SLee Schermerhorn 	ClearPageUnevictable(page);
628894bc310SLee Schermerhorn 
62939b5f29aSHugh Dickins 	if (page_evictable(page)) {
630894bc310SLee Schermerhorn 		/*
631894bc310SLee Schermerhorn 		 * For evictable pages, we can use the cache.
632894bc310SLee Schermerhorn 		 * In event of a race, worst case is we end up with an
633894bc310SLee Schermerhorn 		 * unevictable page on [in]active list.
634894bc310SLee Schermerhorn 		 * We know how to handle that.
635894bc310SLee Schermerhorn 		 */
6360ec3b74cSVlastimil Babka 		is_unevictable = false;
637c53954a0SMel Gorman 		lru_cache_add(page);
638894bc310SLee Schermerhorn 	} else {
639894bc310SLee Schermerhorn 		/*
640894bc310SLee Schermerhorn 		 * Put unevictable pages directly on zone's unevictable
641894bc310SLee Schermerhorn 		 * list.
642894bc310SLee Schermerhorn 		 */
6430ec3b74cSVlastimil Babka 		is_unevictable = true;
644894bc310SLee Schermerhorn 		add_page_to_unevictable_list(page);
6456a7b9548SJohannes Weiner 		/*
64621ee9f39SMinchan Kim 		 * When racing with an mlock or AS_UNEVICTABLE clearing
64721ee9f39SMinchan Kim 		 * (page is unlocked) make sure that if the other thread
64821ee9f39SMinchan Kim 		 * does not observe our setting of PG_lru and fails
64924513264SHugh Dickins 		 * isolation/check_move_unevictable_pages,
65021ee9f39SMinchan Kim 		 * we see PG_mlocked/AS_UNEVICTABLE cleared below and move
6516a7b9548SJohannes Weiner 		 * the page back to the evictable list.
6526a7b9548SJohannes Weiner 		 *
65321ee9f39SMinchan Kim 		 * The other side is TestClearPageMlocked() or shmem_lock().
6546a7b9548SJohannes Weiner 		 */
6556a7b9548SJohannes Weiner 		smp_mb();
656894bc310SLee Schermerhorn 	}
657894bc310SLee Schermerhorn 
658894bc310SLee Schermerhorn 	/*
659894bc310SLee Schermerhorn 	 * page's status can change while we move it among lru. If an evictable
660894bc310SLee Schermerhorn 	 * page is on unevictable list, it never be freed. To avoid that,
661894bc310SLee Schermerhorn 	 * check after we added it to the list, again.
662894bc310SLee Schermerhorn 	 */
6630ec3b74cSVlastimil Babka 	if (is_unevictable && page_evictable(page)) {
664894bc310SLee Schermerhorn 		if (!isolate_lru_page(page)) {
665894bc310SLee Schermerhorn 			put_page(page);
666894bc310SLee Schermerhorn 			goto redo;
667894bc310SLee Schermerhorn 		}
668894bc310SLee Schermerhorn 		/* This means someone else dropped this page from LRU
669894bc310SLee Schermerhorn 		 * So, it will be freed or putback to LRU again. There is
670894bc310SLee Schermerhorn 		 * nothing to do here.
671894bc310SLee Schermerhorn 		 */
672894bc310SLee Schermerhorn 	}
673894bc310SLee Schermerhorn 
6740ec3b74cSVlastimil Babka 	if (was_unevictable && !is_unevictable)
675bbfd28eeSLee Schermerhorn 		count_vm_event(UNEVICTABLE_PGRESCUED);
6760ec3b74cSVlastimil Babka 	else if (!was_unevictable && is_unevictable)
677bbfd28eeSLee Schermerhorn 		count_vm_event(UNEVICTABLE_PGCULLED);
678bbfd28eeSLee Schermerhorn 
679894bc310SLee Schermerhorn 	put_page(page);		/* drop ref from isolate */
680894bc310SLee Schermerhorn }
681894bc310SLee Schermerhorn 
682dfc8d636SJohannes Weiner enum page_references {
683dfc8d636SJohannes Weiner 	PAGEREF_RECLAIM,
684dfc8d636SJohannes Weiner 	PAGEREF_RECLAIM_CLEAN,
68564574746SJohannes Weiner 	PAGEREF_KEEP,
686dfc8d636SJohannes Weiner 	PAGEREF_ACTIVATE,
687dfc8d636SJohannes Weiner };
688dfc8d636SJohannes Weiner 
689dfc8d636SJohannes Weiner static enum page_references page_check_references(struct page *page,
690dfc8d636SJohannes Weiner 						  struct scan_control *sc)
691dfc8d636SJohannes Weiner {
69264574746SJohannes Weiner 	int referenced_ptes, referenced_page;
693dfc8d636SJohannes Weiner 	unsigned long vm_flags;
694dfc8d636SJohannes Weiner 
695c3ac9a8aSJohannes Weiner 	referenced_ptes = page_referenced(page, 1, sc->target_mem_cgroup,
696c3ac9a8aSJohannes Weiner 					  &vm_flags);
69764574746SJohannes Weiner 	referenced_page = TestClearPageReferenced(page);
698dfc8d636SJohannes Weiner 
699dfc8d636SJohannes Weiner 	/*
700dfc8d636SJohannes Weiner 	 * Mlock lost the isolation race with us.  Let try_to_unmap()
701dfc8d636SJohannes Weiner 	 * move the page to the unevictable list.
702dfc8d636SJohannes Weiner 	 */
703dfc8d636SJohannes Weiner 	if (vm_flags & VM_LOCKED)
704dfc8d636SJohannes Weiner 		return PAGEREF_RECLAIM;
705dfc8d636SJohannes Weiner 
70664574746SJohannes Weiner 	if (referenced_ptes) {
707e4898273SMichal Hocko 		if (PageSwapBacked(page))
70864574746SJohannes Weiner 			return PAGEREF_ACTIVATE;
70964574746SJohannes Weiner 		/*
71064574746SJohannes Weiner 		 * All mapped pages start out with page table
71164574746SJohannes Weiner 		 * references from the instantiating fault, so we need
71264574746SJohannes Weiner 		 * to look twice if a mapped file page is used more
71364574746SJohannes Weiner 		 * than once.
71464574746SJohannes Weiner 		 *
71564574746SJohannes Weiner 		 * Mark it and spare it for another trip around the
71664574746SJohannes Weiner 		 * inactive list.  Another page table reference will
71764574746SJohannes Weiner 		 * lead to its activation.
71864574746SJohannes Weiner 		 *
71964574746SJohannes Weiner 		 * Note: the mark is set for activated pages as well
72064574746SJohannes Weiner 		 * so that recently deactivated but used pages are
72164574746SJohannes Weiner 		 * quickly recovered.
72264574746SJohannes Weiner 		 */
72364574746SJohannes Weiner 		SetPageReferenced(page);
72464574746SJohannes Weiner 
72534dbc67aSKonstantin Khlebnikov 		if (referenced_page || referenced_ptes > 1)
726dfc8d636SJohannes Weiner 			return PAGEREF_ACTIVATE;
727dfc8d636SJohannes Weiner 
728c909e993SKonstantin Khlebnikov 		/*
729c909e993SKonstantin Khlebnikov 		 * Activate file-backed executable pages after first usage.
730c909e993SKonstantin Khlebnikov 		 */
731c909e993SKonstantin Khlebnikov 		if (vm_flags & VM_EXEC)
732c909e993SKonstantin Khlebnikov 			return PAGEREF_ACTIVATE;
733c909e993SKonstantin Khlebnikov 
73464574746SJohannes Weiner 		return PAGEREF_KEEP;
73564574746SJohannes Weiner 	}
73664574746SJohannes Weiner 
737dfc8d636SJohannes Weiner 	/* Reclaim if clean, defer dirty pages to writeback */
7382e30244aSKOSAKI Motohiro 	if (referenced_page && !PageSwapBacked(page))
739dfc8d636SJohannes Weiner 		return PAGEREF_RECLAIM_CLEAN;
74064574746SJohannes Weiner 
74164574746SJohannes Weiner 	return PAGEREF_RECLAIM;
742dfc8d636SJohannes Weiner }
743dfc8d636SJohannes Weiner 
744e2be15f6SMel Gorman /* Check if a page is dirty or under writeback */
745e2be15f6SMel Gorman static void page_check_dirty_writeback(struct page *page,
746e2be15f6SMel Gorman 				       bool *dirty, bool *writeback)
747e2be15f6SMel Gorman {
748b4597226SMel Gorman 	struct address_space *mapping;
749b4597226SMel Gorman 
750e2be15f6SMel Gorman 	/*
751e2be15f6SMel Gorman 	 * Anonymous pages are not handled by flushers and must be written
752e2be15f6SMel Gorman 	 * from reclaim context. Do not stall reclaim based on them
753e2be15f6SMel Gorman 	 */
754e2be15f6SMel Gorman 	if (!page_is_file_cache(page)) {
755e2be15f6SMel Gorman 		*dirty = false;
756e2be15f6SMel Gorman 		*writeback = false;
757e2be15f6SMel Gorman 		return;
758e2be15f6SMel Gorman 	}
759e2be15f6SMel Gorman 
760e2be15f6SMel Gorman 	/* By default assume that the page flags are accurate */
761e2be15f6SMel Gorman 	*dirty = PageDirty(page);
762e2be15f6SMel Gorman 	*writeback = PageWriteback(page);
763b4597226SMel Gorman 
764b4597226SMel Gorman 	/* Verify dirty/writeback state if the filesystem supports it */
765b4597226SMel Gorman 	if (!page_has_private(page))
766b4597226SMel Gorman 		return;
767b4597226SMel Gorman 
768b4597226SMel Gorman 	mapping = page_mapping(page);
769b4597226SMel Gorman 	if (mapping && mapping->a_ops->is_dirty_writeback)
770b4597226SMel Gorman 		mapping->a_ops->is_dirty_writeback(page, dirty, writeback);
771e2be15f6SMel Gorman }
772e2be15f6SMel Gorman 
773e286781dSNick Piggin /*
7741742f19fSAndrew Morton  * shrink_page_list() returns the number of reclaimed pages
7751da177e4SLinus Torvalds  */
7761742f19fSAndrew Morton static unsigned long shrink_page_list(struct list_head *page_list,
7776a18adb3SKonstantin Khlebnikov 				      struct zone *zone,
778f84f6e2bSMel Gorman 				      struct scan_control *sc,
77902c6de8dSMinchan Kim 				      enum ttu_flags ttu_flags,
7808e950282SMel Gorman 				      unsigned long *ret_nr_dirty,
781d43006d5SMel Gorman 				      unsigned long *ret_nr_unqueued_dirty,
7828e950282SMel Gorman 				      unsigned long *ret_nr_congested,
78302c6de8dSMinchan Kim 				      unsigned long *ret_nr_writeback,
784b1a6f21eSMel Gorman 				      unsigned long *ret_nr_immediate,
78502c6de8dSMinchan Kim 				      bool force_reclaim)
7861da177e4SLinus Torvalds {
7871da177e4SLinus Torvalds 	LIST_HEAD(ret_pages);
788abe4c3b5SMel Gorman 	LIST_HEAD(free_pages);
7891da177e4SLinus Torvalds 	int pgactivate = 0;
790d43006d5SMel Gorman 	unsigned long nr_unqueued_dirty = 0;
7910e093d99SMel Gorman 	unsigned long nr_dirty = 0;
7920e093d99SMel Gorman 	unsigned long nr_congested = 0;
79305ff5137SAndrew Morton 	unsigned long nr_reclaimed = 0;
79492df3a72SMel Gorman 	unsigned long nr_writeback = 0;
795b1a6f21eSMel Gorman 	unsigned long nr_immediate = 0;
7961da177e4SLinus Torvalds 
7971da177e4SLinus Torvalds 	cond_resched();
7981da177e4SLinus Torvalds 
79969980e31STim Chen 	mem_cgroup_uncharge_start();
8001da177e4SLinus Torvalds 	while (!list_empty(page_list)) {
8011da177e4SLinus Torvalds 		struct address_space *mapping;
8021da177e4SLinus Torvalds 		struct page *page;
8031da177e4SLinus Torvalds 		int may_enter_fs;
80402c6de8dSMinchan Kim 		enum page_references references = PAGEREF_RECLAIM_CLEAN;
805e2be15f6SMel Gorman 		bool dirty, writeback;
8061da177e4SLinus Torvalds 
8071da177e4SLinus Torvalds 		cond_resched();
8081da177e4SLinus Torvalds 
8091da177e4SLinus Torvalds 		page = lru_to_page(page_list);
8101da177e4SLinus Torvalds 		list_del(&page->lru);
8111da177e4SLinus Torvalds 
812529ae9aaSNick Piggin 		if (!trylock_page(page))
8131da177e4SLinus Torvalds 			goto keep;
8141da177e4SLinus Torvalds 
815309381feSSasha Levin 		VM_BUG_ON_PAGE(PageActive(page), page);
816309381feSSasha Levin 		VM_BUG_ON_PAGE(page_zone(page) != zone, page);
8171da177e4SLinus Torvalds 
8181da177e4SLinus Torvalds 		sc->nr_scanned++;
81980e43426SChristoph Lameter 
82039b5f29aSHugh Dickins 		if (unlikely(!page_evictable(page)))
821b291f000SNick Piggin 			goto cull_mlocked;
822894bc310SLee Schermerhorn 
823a6dc60f8SJohannes Weiner 		if (!sc->may_unmap && page_mapped(page))
82480e43426SChristoph Lameter 			goto keep_locked;
82580e43426SChristoph Lameter 
8261da177e4SLinus Torvalds 		/* Double the slab pressure for mapped and swapcache pages */
8271da177e4SLinus Torvalds 		if (page_mapped(page) || PageSwapCache(page))
8281da177e4SLinus Torvalds 			sc->nr_scanned++;
8291da177e4SLinus Torvalds 
830c661b078SAndy Whitcroft 		may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
831c661b078SAndy Whitcroft 			(PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
832c661b078SAndy Whitcroft 
833e62e384eSMichal Hocko 		/*
834e2be15f6SMel Gorman 		 * The number of dirty pages determines if a zone is marked
835e2be15f6SMel Gorman 		 * reclaim_congested which affects wait_iff_congested. kswapd
836e2be15f6SMel Gorman 		 * will stall and start writing pages if the tail of the LRU
837e2be15f6SMel Gorman 		 * is all dirty unqueued pages.
838e2be15f6SMel Gorman 		 */
839e2be15f6SMel Gorman 		page_check_dirty_writeback(page, &dirty, &writeback);
840e2be15f6SMel Gorman 		if (dirty || writeback)
841e2be15f6SMel Gorman 			nr_dirty++;
842e2be15f6SMel Gorman 
843e2be15f6SMel Gorman 		if (dirty && !writeback)
844e2be15f6SMel Gorman 			nr_unqueued_dirty++;
845e2be15f6SMel Gorman 
846d04e8acdSMel Gorman 		/*
847d04e8acdSMel Gorman 		 * Treat this page as congested if the underlying BDI is or if
848d04e8acdSMel Gorman 		 * pages are cycling through the LRU so quickly that the
849d04e8acdSMel Gorman 		 * pages marked for immediate reclaim are making it to the
850d04e8acdSMel Gorman 		 * end of the LRU a second time.
851d04e8acdSMel Gorman 		 */
852e2be15f6SMel Gorman 		mapping = page_mapping(page);
853d04e8acdSMel Gorman 		if ((mapping && bdi_write_congested(mapping->backing_dev_info)) ||
854d04e8acdSMel Gorman 		    (writeback && PageReclaim(page)))
855e2be15f6SMel Gorman 			nr_congested++;
856e2be15f6SMel Gorman 
857e2be15f6SMel Gorman 		/*
858283aba9fSMel Gorman 		 * If a page at the tail of the LRU is under writeback, there
859283aba9fSMel Gorman 		 * are three cases to consider.
860e62e384eSMichal Hocko 		 *
861283aba9fSMel Gorman 		 * 1) If reclaim is encountering an excessive number of pages
862283aba9fSMel Gorman 		 *    under writeback and this page is both under writeback and
863283aba9fSMel Gorman 		 *    PageReclaim then it indicates that pages are being queued
864283aba9fSMel Gorman 		 *    for IO but are being recycled through the LRU before the
865283aba9fSMel Gorman 		 *    IO can complete. Waiting on the page itself risks an
866283aba9fSMel Gorman 		 *    indefinite stall if it is impossible to writeback the
867283aba9fSMel Gorman 		 *    page due to IO error or disconnected storage so instead
868b1a6f21eSMel Gorman 		 *    note that the LRU is being scanned too quickly and the
869b1a6f21eSMel Gorman 		 *    caller can stall after page list has been processed.
870c3b94f44SHugh Dickins 		 *
871283aba9fSMel Gorman 		 * 2) Global reclaim encounters a page, memcg encounters a
872283aba9fSMel Gorman 		 *    page that is not marked for immediate reclaim or
873283aba9fSMel Gorman 		 *    the caller does not have __GFP_IO. In this case mark
874283aba9fSMel Gorman 		 *    the page for immediate reclaim and continue scanning.
875283aba9fSMel Gorman 		 *
876283aba9fSMel Gorman 		 *    __GFP_IO is checked  because a loop driver thread might
877283aba9fSMel Gorman 		 *    enter reclaim, and deadlock if it waits on a page for
878283aba9fSMel Gorman 		 *    which it is needed to do the write (loop masks off
879283aba9fSMel Gorman 		 *    __GFP_IO|__GFP_FS for this reason); but more thought
880283aba9fSMel Gorman 		 *    would probably show more reasons.
881283aba9fSMel Gorman 		 *
882283aba9fSMel Gorman 		 *    Don't require __GFP_FS, since we're not going into the
883283aba9fSMel Gorman 		 *    FS, just waiting on its writeback completion. Worryingly,
884283aba9fSMel Gorman 		 *    ext4 gfs2 and xfs allocate pages with
885283aba9fSMel Gorman 		 *    grab_cache_page_write_begin(,,AOP_FLAG_NOFS), so testing
886283aba9fSMel Gorman 		 *    may_enter_fs here is liable to OOM on them.
887283aba9fSMel Gorman 		 *
888283aba9fSMel Gorman 		 * 3) memcg encounters a page that is not already marked
889283aba9fSMel Gorman 		 *    PageReclaim. memcg does not have any dirty pages
890283aba9fSMel Gorman 		 *    throttling so we could easily OOM just because too many
891283aba9fSMel Gorman 		 *    pages are in writeback and there is nothing else to
892283aba9fSMel Gorman 		 *    reclaim. Wait for the writeback to complete.
893e62e384eSMichal Hocko 		 */
894283aba9fSMel Gorman 		if (PageWriteback(page)) {
895283aba9fSMel Gorman 			/* Case 1 above */
896283aba9fSMel Gorman 			if (current_is_kswapd() &&
897283aba9fSMel Gorman 			    PageReclaim(page) &&
898283aba9fSMel Gorman 			    zone_is_reclaim_writeback(zone)) {
899b1a6f21eSMel Gorman 				nr_immediate++;
900b1a6f21eSMel Gorman 				goto keep_locked;
901283aba9fSMel Gorman 
902283aba9fSMel Gorman 			/* Case 2 above */
903283aba9fSMel Gorman 			} else if (global_reclaim(sc) ||
904c3b94f44SHugh Dickins 			    !PageReclaim(page) || !(sc->gfp_mask & __GFP_IO)) {
905c3b94f44SHugh Dickins 				/*
906c3b94f44SHugh Dickins 				 * This is slightly racy - end_page_writeback()
907c3b94f44SHugh Dickins 				 * might have just cleared PageReclaim, then
908c3b94f44SHugh Dickins 				 * setting PageReclaim here end up interpreted
909c3b94f44SHugh Dickins 				 * as PageReadahead - but that does not matter
910c3b94f44SHugh Dickins 				 * enough to care.  What we do want is for this
911c3b94f44SHugh Dickins 				 * page to have PageReclaim set next time memcg
912c3b94f44SHugh Dickins 				 * reclaim reaches the tests above, so it will
913c3b94f44SHugh Dickins 				 * then wait_on_page_writeback() to avoid OOM;
914c3b94f44SHugh Dickins 				 * and it's also appropriate in global reclaim.
915c3b94f44SHugh Dickins 				 */
916c3b94f44SHugh Dickins 				SetPageReclaim(page);
91792df3a72SMel Gorman 				nr_writeback++;
918283aba9fSMel Gorman 
919c3b94f44SHugh Dickins 				goto keep_locked;
920283aba9fSMel Gorman 
921283aba9fSMel Gorman 			/* Case 3 above */
922283aba9fSMel Gorman 			} else {
923c3b94f44SHugh Dickins 				wait_on_page_writeback(page);
924e62e384eSMichal Hocko 			}
925283aba9fSMel Gorman 		}
9261da177e4SLinus Torvalds 
92702c6de8dSMinchan Kim 		if (!force_reclaim)
9286a18adb3SKonstantin Khlebnikov 			references = page_check_references(page, sc);
92902c6de8dSMinchan Kim 
930dfc8d636SJohannes Weiner 		switch (references) {
931dfc8d636SJohannes Weiner 		case PAGEREF_ACTIVATE:
9321da177e4SLinus Torvalds 			goto activate_locked;
93364574746SJohannes Weiner 		case PAGEREF_KEEP:
93464574746SJohannes Weiner 			goto keep_locked;
935dfc8d636SJohannes Weiner 		case PAGEREF_RECLAIM:
936dfc8d636SJohannes Weiner 		case PAGEREF_RECLAIM_CLEAN:
937dfc8d636SJohannes Weiner 			; /* try to reclaim the page below */
938dfc8d636SJohannes Weiner 		}
9391da177e4SLinus Torvalds 
9401da177e4SLinus Torvalds 		/*
9411da177e4SLinus Torvalds 		 * Anonymous process memory has backing store?
9421da177e4SLinus Torvalds 		 * Try to allocate it some swap space here.
9431da177e4SLinus Torvalds 		 */
944b291f000SNick Piggin 		if (PageAnon(page) && !PageSwapCache(page)) {
94563eb6b93SHugh Dickins 			if (!(sc->gfp_mask & __GFP_IO))
94663eb6b93SHugh Dickins 				goto keep_locked;
9475bc7b8acSShaohua Li 			if (!add_to_swap(page, page_list))
9481da177e4SLinus Torvalds 				goto activate_locked;
94963eb6b93SHugh Dickins 			may_enter_fs = 1;
9501da177e4SLinus Torvalds 
951e2be15f6SMel Gorman 			/* Adding to swap updated mapping */
9521da177e4SLinus Torvalds 			mapping = page_mapping(page);
953e2be15f6SMel Gorman 		}
9541da177e4SLinus Torvalds 
9551da177e4SLinus Torvalds 		/*
9561da177e4SLinus Torvalds 		 * The page is mapped into the page tables of one or more
9571da177e4SLinus Torvalds 		 * processes. Try to unmap it here.
9581da177e4SLinus Torvalds 		 */
9591da177e4SLinus Torvalds 		if (page_mapped(page) && mapping) {
96002c6de8dSMinchan Kim 			switch (try_to_unmap(page, ttu_flags)) {
9611da177e4SLinus Torvalds 			case SWAP_FAIL:
9621da177e4SLinus Torvalds 				goto activate_locked;
9631da177e4SLinus Torvalds 			case SWAP_AGAIN:
9641da177e4SLinus Torvalds 				goto keep_locked;
965b291f000SNick Piggin 			case SWAP_MLOCK:
966b291f000SNick Piggin 				goto cull_mlocked;
9671da177e4SLinus Torvalds 			case SWAP_SUCCESS:
9681da177e4SLinus Torvalds 				; /* try to free the page below */
9691da177e4SLinus Torvalds 			}
9701da177e4SLinus Torvalds 		}
9711da177e4SLinus Torvalds 
9721da177e4SLinus Torvalds 		if (PageDirty(page)) {
973ee72886dSMel Gorman 			/*
974ee72886dSMel Gorman 			 * Only kswapd can writeback filesystem pages to
975d43006d5SMel Gorman 			 * avoid risk of stack overflow but only writeback
976d43006d5SMel Gorman 			 * if many dirty pages have been encountered.
977ee72886dSMel Gorman 			 */
978f84f6e2bSMel Gorman 			if (page_is_file_cache(page) &&
9799e3b2f8cSKonstantin Khlebnikov 					(!current_is_kswapd() ||
980d43006d5SMel Gorman 					 !zone_is_reclaim_dirty(zone))) {
98149ea7eb6SMel Gorman 				/*
98249ea7eb6SMel Gorman 				 * Immediately reclaim when written back.
98349ea7eb6SMel Gorman 				 * Similar in principal to deactivate_page()
98449ea7eb6SMel Gorman 				 * except we already have the page isolated
98549ea7eb6SMel Gorman 				 * and know it's dirty
98649ea7eb6SMel Gorman 				 */
98749ea7eb6SMel Gorman 				inc_zone_page_state(page, NR_VMSCAN_IMMEDIATE);
98849ea7eb6SMel Gorman 				SetPageReclaim(page);
98949ea7eb6SMel Gorman 
990ee72886dSMel Gorman 				goto keep_locked;
991ee72886dSMel Gorman 			}
992ee72886dSMel Gorman 
993dfc8d636SJohannes Weiner 			if (references == PAGEREF_RECLAIM_CLEAN)
9941da177e4SLinus Torvalds 				goto keep_locked;
9954dd4b920SAndrew Morton 			if (!may_enter_fs)
9961da177e4SLinus Torvalds 				goto keep_locked;
99752a8363eSChristoph Lameter 			if (!sc->may_writepage)
9981da177e4SLinus Torvalds 				goto keep_locked;
9991da177e4SLinus Torvalds 
10001da177e4SLinus Torvalds 			/* Page is dirty, try to write it out here */
10017d3579e8SKOSAKI Motohiro 			switch (pageout(page, mapping, sc)) {
10021da177e4SLinus Torvalds 			case PAGE_KEEP:
10031da177e4SLinus Torvalds 				goto keep_locked;
10041da177e4SLinus Torvalds 			case PAGE_ACTIVATE:
10051da177e4SLinus Torvalds 				goto activate_locked;
10061da177e4SLinus Torvalds 			case PAGE_SUCCESS:
10077d3579e8SKOSAKI Motohiro 				if (PageWriteback(page))
100841ac1999SMel Gorman 					goto keep;
10097d3579e8SKOSAKI Motohiro 				if (PageDirty(page))
10101da177e4SLinus Torvalds 					goto keep;
10117d3579e8SKOSAKI Motohiro 
10121da177e4SLinus Torvalds 				/*
10131da177e4SLinus Torvalds 				 * A synchronous write - probably a ramdisk.  Go
10141da177e4SLinus Torvalds 				 * ahead and try to reclaim the page.
10151da177e4SLinus Torvalds 				 */
1016529ae9aaSNick Piggin 				if (!trylock_page(page))
10171da177e4SLinus Torvalds 					goto keep;
10181da177e4SLinus Torvalds 				if (PageDirty(page) || PageWriteback(page))
10191da177e4SLinus Torvalds 					goto keep_locked;
10201da177e4SLinus Torvalds 				mapping = page_mapping(page);
10211da177e4SLinus Torvalds 			case PAGE_CLEAN:
10221da177e4SLinus Torvalds 				; /* try to free the page below */
10231da177e4SLinus Torvalds 			}
10241da177e4SLinus Torvalds 		}
10251da177e4SLinus Torvalds 
10261da177e4SLinus Torvalds 		/*
10271da177e4SLinus Torvalds 		 * If the page has buffers, try to free the buffer mappings
10281da177e4SLinus Torvalds 		 * associated with this page. If we succeed we try to free
10291da177e4SLinus Torvalds 		 * the page as well.
10301da177e4SLinus Torvalds 		 *
10311da177e4SLinus Torvalds 		 * We do this even if the page is PageDirty().
10321da177e4SLinus Torvalds 		 * try_to_release_page() does not perform I/O, but it is
10331da177e4SLinus Torvalds 		 * possible for a page to have PageDirty set, but it is actually
10341da177e4SLinus Torvalds 		 * clean (all its buffers are clean).  This happens if the
10351da177e4SLinus Torvalds 		 * buffers were written out directly, with submit_bh(). ext3
10361da177e4SLinus Torvalds 		 * will do this, as well as the blockdev mapping.
10371da177e4SLinus Torvalds 		 * try_to_release_page() will discover that cleanness and will
10381da177e4SLinus Torvalds 		 * drop the buffers and mark the page clean - it can be freed.
10391da177e4SLinus Torvalds 		 *
10401da177e4SLinus Torvalds 		 * Rarely, pages can have buffers and no ->mapping.  These are
10411da177e4SLinus Torvalds 		 * the pages which were not successfully invalidated in
10421da177e4SLinus Torvalds 		 * truncate_complete_page().  We try to drop those buffers here
10431da177e4SLinus Torvalds 		 * and if that worked, and the page is no longer mapped into
10441da177e4SLinus Torvalds 		 * process address space (page_count == 1) it can be freed.
10451da177e4SLinus Torvalds 		 * Otherwise, leave the page on the LRU so it is swappable.
10461da177e4SLinus Torvalds 		 */
1047266cf658SDavid Howells 		if (page_has_private(page)) {
10481da177e4SLinus Torvalds 			if (!try_to_release_page(page, sc->gfp_mask))
10491da177e4SLinus Torvalds 				goto activate_locked;
1050e286781dSNick Piggin 			if (!mapping && page_count(page) == 1) {
1051e286781dSNick Piggin 				unlock_page(page);
1052e286781dSNick Piggin 				if (put_page_testzero(page))
10531da177e4SLinus Torvalds 					goto free_it;
1054e286781dSNick Piggin 				else {
1055e286781dSNick Piggin 					/*
1056e286781dSNick Piggin 					 * rare race with speculative reference.
1057e286781dSNick Piggin 					 * the speculative reference will free
1058e286781dSNick Piggin 					 * this page shortly, so we may
1059e286781dSNick Piggin 					 * increment nr_reclaimed here (and
1060e286781dSNick Piggin 					 * leave it off the LRU).
1061e286781dSNick Piggin 					 */
1062e286781dSNick Piggin 					nr_reclaimed++;
1063e286781dSNick Piggin 					continue;
1064e286781dSNick Piggin 				}
1065e286781dSNick Piggin 			}
10661da177e4SLinus Torvalds 		}
10671da177e4SLinus Torvalds 
1068e286781dSNick Piggin 		if (!mapping || !__remove_mapping(mapping, page))
106949d2e9ccSChristoph Lameter 			goto keep_locked;
10701da177e4SLinus Torvalds 
1071a978d6f5SNick Piggin 		/*
1072a978d6f5SNick Piggin 		 * At this point, we have no other references and there is
1073a978d6f5SNick Piggin 		 * no way to pick any more up (removed from LRU, removed
1074a978d6f5SNick Piggin 		 * from pagecache). Can use non-atomic bitops now (and
1075a978d6f5SNick Piggin 		 * we obviously don't have to worry about waking up a process
1076a978d6f5SNick Piggin 		 * waiting on the page lock, because there are no references.
1077a978d6f5SNick Piggin 		 */
1078a978d6f5SNick Piggin 		__clear_page_locked(page);
1079e286781dSNick Piggin free_it:
108005ff5137SAndrew Morton 		nr_reclaimed++;
1081abe4c3b5SMel Gorman 
1082abe4c3b5SMel Gorman 		/*
1083abe4c3b5SMel Gorman 		 * Is there need to periodically free_page_list? It would
1084abe4c3b5SMel Gorman 		 * appear not as the counts should be low
1085abe4c3b5SMel Gorman 		 */
1086abe4c3b5SMel Gorman 		list_add(&page->lru, &free_pages);
10871da177e4SLinus Torvalds 		continue;
10881da177e4SLinus Torvalds 
1089b291f000SNick Piggin cull_mlocked:
109063d6c5adSHugh Dickins 		if (PageSwapCache(page))
109163d6c5adSHugh Dickins 			try_to_free_swap(page);
1092b291f000SNick Piggin 		unlock_page(page);
1093b291f000SNick Piggin 		putback_lru_page(page);
1094b291f000SNick Piggin 		continue;
1095b291f000SNick Piggin 
10961da177e4SLinus Torvalds activate_locked:
109768a22394SRik van Riel 		/* Not a candidate for swapping, so reclaim swap space. */
109868a22394SRik van Riel 		if (PageSwapCache(page) && vm_swap_full())
1099a2c43eedSHugh Dickins 			try_to_free_swap(page);
1100309381feSSasha Levin 		VM_BUG_ON_PAGE(PageActive(page), page);
11011da177e4SLinus Torvalds 		SetPageActive(page);
11021da177e4SLinus Torvalds 		pgactivate++;
11031da177e4SLinus Torvalds keep_locked:
11041da177e4SLinus Torvalds 		unlock_page(page);
11051da177e4SLinus Torvalds keep:
11061da177e4SLinus Torvalds 		list_add(&page->lru, &ret_pages);
1107309381feSSasha Levin 		VM_BUG_ON_PAGE(PageLRU(page) || PageUnevictable(page), page);
11081da177e4SLinus Torvalds 	}
1109abe4c3b5SMel Gorman 
1110cc59850eSKonstantin Khlebnikov 	free_hot_cold_page_list(&free_pages, 1);
1111abe4c3b5SMel Gorman 
11121da177e4SLinus Torvalds 	list_splice(&ret_pages, page_list);
1113f8891e5eSChristoph Lameter 	count_vm_events(PGACTIVATE, pgactivate);
111469980e31STim Chen 	mem_cgroup_uncharge_end();
11158e950282SMel Gorman 	*ret_nr_dirty += nr_dirty;
11168e950282SMel Gorman 	*ret_nr_congested += nr_congested;
1117d43006d5SMel Gorman 	*ret_nr_unqueued_dirty += nr_unqueued_dirty;
111892df3a72SMel Gorman 	*ret_nr_writeback += nr_writeback;
1119b1a6f21eSMel Gorman 	*ret_nr_immediate += nr_immediate;
112005ff5137SAndrew Morton 	return nr_reclaimed;
11211da177e4SLinus Torvalds }
11221da177e4SLinus Torvalds 
112302c6de8dSMinchan Kim unsigned long reclaim_clean_pages_from_list(struct zone *zone,
112402c6de8dSMinchan Kim 					    struct list_head *page_list)
112502c6de8dSMinchan Kim {
112602c6de8dSMinchan Kim 	struct scan_control sc = {
112702c6de8dSMinchan Kim 		.gfp_mask = GFP_KERNEL,
112802c6de8dSMinchan Kim 		.priority = DEF_PRIORITY,
112902c6de8dSMinchan Kim 		.may_unmap = 1,
113002c6de8dSMinchan Kim 	};
11318e950282SMel Gorman 	unsigned long ret, dummy1, dummy2, dummy3, dummy4, dummy5;
113202c6de8dSMinchan Kim 	struct page *page, *next;
113302c6de8dSMinchan Kim 	LIST_HEAD(clean_pages);
113402c6de8dSMinchan Kim 
113502c6de8dSMinchan Kim 	list_for_each_entry_safe(page, next, page_list, lru) {
1136117aad1eSRafael Aquini 		if (page_is_file_cache(page) && !PageDirty(page) &&
1137117aad1eSRafael Aquini 		    !isolated_balloon_page(page)) {
113802c6de8dSMinchan Kim 			ClearPageActive(page);
113902c6de8dSMinchan Kim 			list_move(&page->lru, &clean_pages);
114002c6de8dSMinchan Kim 		}
114102c6de8dSMinchan Kim 	}
114202c6de8dSMinchan Kim 
114302c6de8dSMinchan Kim 	ret = shrink_page_list(&clean_pages, zone, &sc,
114402c6de8dSMinchan Kim 			TTU_UNMAP|TTU_IGNORE_ACCESS,
11458e950282SMel Gorman 			&dummy1, &dummy2, &dummy3, &dummy4, &dummy5, true);
114602c6de8dSMinchan Kim 	list_splice(&clean_pages, page_list);
114702c6de8dSMinchan Kim 	__mod_zone_page_state(zone, NR_ISOLATED_FILE, -ret);
114802c6de8dSMinchan Kim 	return ret;
114902c6de8dSMinchan Kim }
115002c6de8dSMinchan Kim 
11515ad333ebSAndy Whitcroft /*
11525ad333ebSAndy Whitcroft  * Attempt to remove the specified page from its LRU.  Only take this page
11535ad333ebSAndy Whitcroft  * if it is of the appropriate PageActive status.  Pages which are being
11545ad333ebSAndy Whitcroft  * freed elsewhere are also ignored.
11555ad333ebSAndy Whitcroft  *
11565ad333ebSAndy Whitcroft  * page:	page to consider
11575ad333ebSAndy Whitcroft  * mode:	one of the LRU isolation modes defined above
11585ad333ebSAndy Whitcroft  *
11595ad333ebSAndy Whitcroft  * returns 0 on success, -ve errno on failure.
11605ad333ebSAndy Whitcroft  */
1161f3fd4a61SKonstantin Khlebnikov int __isolate_lru_page(struct page *page, isolate_mode_t mode)
11625ad333ebSAndy Whitcroft {
11635ad333ebSAndy Whitcroft 	int ret = -EINVAL;
11645ad333ebSAndy Whitcroft 
11655ad333ebSAndy Whitcroft 	/* Only take pages on the LRU. */
11665ad333ebSAndy Whitcroft 	if (!PageLRU(page))
11675ad333ebSAndy Whitcroft 		return ret;
11685ad333ebSAndy Whitcroft 
1169e46a2879SMinchan Kim 	/* Compaction should not handle unevictable pages but CMA can do so */
1170e46a2879SMinchan Kim 	if (PageUnevictable(page) && !(mode & ISOLATE_UNEVICTABLE))
1171894bc310SLee Schermerhorn 		return ret;
1172894bc310SLee Schermerhorn 
11735ad333ebSAndy Whitcroft 	ret = -EBUSY;
117408e552c6SKAMEZAWA Hiroyuki 
1175c8244935SMel Gorman 	/*
1176c8244935SMel Gorman 	 * To minimise LRU disruption, the caller can indicate that it only
1177c8244935SMel Gorman 	 * wants to isolate pages it will be able to operate on without
1178c8244935SMel Gorman 	 * blocking - clean pages for the most part.
1179c8244935SMel Gorman 	 *
1180c8244935SMel Gorman 	 * ISOLATE_CLEAN means that only clean pages should be isolated. This
1181c8244935SMel Gorman 	 * is used by reclaim when it is cannot write to backing storage
1182c8244935SMel Gorman 	 *
1183c8244935SMel Gorman 	 * ISOLATE_ASYNC_MIGRATE is used to indicate that it only wants to pages
1184c8244935SMel Gorman 	 * that it is possible to migrate without blocking
1185c8244935SMel Gorman 	 */
1186c8244935SMel Gorman 	if (mode & (ISOLATE_CLEAN|ISOLATE_ASYNC_MIGRATE)) {
1187c8244935SMel Gorman 		/* All the caller can do on PageWriteback is block */
1188c8244935SMel Gorman 		if (PageWriteback(page))
118939deaf85SMinchan Kim 			return ret;
119039deaf85SMinchan Kim 
1191c8244935SMel Gorman 		if (PageDirty(page)) {
1192c8244935SMel Gorman 			struct address_space *mapping;
1193c8244935SMel Gorman 
1194c8244935SMel Gorman 			/* ISOLATE_CLEAN means only clean pages */
1195c8244935SMel Gorman 			if (mode & ISOLATE_CLEAN)
1196c8244935SMel Gorman 				return ret;
1197c8244935SMel Gorman 
1198c8244935SMel Gorman 			/*
1199c8244935SMel Gorman 			 * Only pages without mappings or that have a
1200c8244935SMel Gorman 			 * ->migratepage callback are possible to migrate
1201c8244935SMel Gorman 			 * without blocking
1202c8244935SMel Gorman 			 */
1203c8244935SMel Gorman 			mapping = page_mapping(page);
1204c8244935SMel Gorman 			if (mapping && !mapping->a_ops->migratepage)
1205c8244935SMel Gorman 				return ret;
1206c8244935SMel Gorman 		}
1207c8244935SMel Gorman 	}
1208c8244935SMel Gorman 
1209f80c0673SMinchan Kim 	if ((mode & ISOLATE_UNMAPPED) && page_mapped(page))
1210f80c0673SMinchan Kim 		return ret;
1211f80c0673SMinchan Kim 
12125ad333ebSAndy Whitcroft 	if (likely(get_page_unless_zero(page))) {
12135ad333ebSAndy Whitcroft 		/*
12145ad333ebSAndy Whitcroft 		 * Be careful not to clear PageLRU until after we're
12155ad333ebSAndy Whitcroft 		 * sure the page is not being freed elsewhere -- the
12165ad333ebSAndy Whitcroft 		 * page release code relies on it.
12175ad333ebSAndy Whitcroft 		 */
12185ad333ebSAndy Whitcroft 		ClearPageLRU(page);
12195ad333ebSAndy Whitcroft 		ret = 0;
12205ad333ebSAndy Whitcroft 	}
12215ad333ebSAndy Whitcroft 
12225ad333ebSAndy Whitcroft 	return ret;
12235ad333ebSAndy Whitcroft }
12245ad333ebSAndy Whitcroft 
122549d2e9ccSChristoph Lameter /*
12261da177e4SLinus Torvalds  * zone->lru_lock is heavily contended.  Some of the functions that
12271da177e4SLinus Torvalds  * shrink the lists perform better by taking out a batch of pages
12281da177e4SLinus Torvalds  * and working on them outside the LRU lock.
12291da177e4SLinus Torvalds  *
12301da177e4SLinus Torvalds  * For pagecache intensive workloads, this function is the hottest
12311da177e4SLinus Torvalds  * spot in the kernel (apart from copy_*_user functions).
12321da177e4SLinus Torvalds  *
12331da177e4SLinus Torvalds  * Appropriate locks must be held before calling this function.
12341da177e4SLinus Torvalds  *
12351da177e4SLinus Torvalds  * @nr_to_scan:	The number of pages to look through on the list.
12365dc35979SKonstantin Khlebnikov  * @lruvec:	The LRU vector to pull pages from.
12371da177e4SLinus Torvalds  * @dst:	The temp list to put pages on to.
1238f626012dSHugh Dickins  * @nr_scanned:	The number of pages that were scanned.
1239fe2c2a10SRik van Riel  * @sc:		The scan_control struct for this reclaim session
12405ad333ebSAndy Whitcroft  * @mode:	One of the LRU isolation modes
12413cb99451SKonstantin Khlebnikov  * @lru:	LRU list id for isolating
12421da177e4SLinus Torvalds  *
12431da177e4SLinus Torvalds  * returns how many pages were moved onto *@dst.
12441da177e4SLinus Torvalds  */
124569e05944SAndrew Morton static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
12465dc35979SKonstantin Khlebnikov 		struct lruvec *lruvec, struct list_head *dst,
1247fe2c2a10SRik van Riel 		unsigned long *nr_scanned, struct scan_control *sc,
12483cb99451SKonstantin Khlebnikov 		isolate_mode_t mode, enum lru_list lru)
12491da177e4SLinus Torvalds {
125075b00af7SHugh Dickins 	struct list_head *src = &lruvec->lists[lru];
125169e05944SAndrew Morton 	unsigned long nr_taken = 0;
1252c9b02d97SWu Fengguang 	unsigned long scan;
12531da177e4SLinus Torvalds 
1254c9b02d97SWu Fengguang 	for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
12555ad333ebSAndy Whitcroft 		struct page *page;
1256fa9add64SHugh Dickins 		int nr_pages;
12575ad333ebSAndy Whitcroft 
12581da177e4SLinus Torvalds 		page = lru_to_page(src);
12591da177e4SLinus Torvalds 		prefetchw_prev_lru_page(page, src, flags);
12601da177e4SLinus Torvalds 
1261309381feSSasha Levin 		VM_BUG_ON_PAGE(!PageLRU(page), page);
12628d438f96SNick Piggin 
1263f3fd4a61SKonstantin Khlebnikov 		switch (__isolate_lru_page(page, mode)) {
12645ad333ebSAndy Whitcroft 		case 0:
1265fa9add64SHugh Dickins 			nr_pages = hpage_nr_pages(page);
1266fa9add64SHugh Dickins 			mem_cgroup_update_lru_size(lruvec, lru, -nr_pages);
12675ad333ebSAndy Whitcroft 			list_move(&page->lru, dst);
1268fa9add64SHugh Dickins 			nr_taken += nr_pages;
12695ad333ebSAndy Whitcroft 			break;
12707c8ee9a8SNick Piggin 
12715ad333ebSAndy Whitcroft 		case -EBUSY:
12725ad333ebSAndy Whitcroft 			/* else it is being freed elsewhere */
12735ad333ebSAndy Whitcroft 			list_move(&page->lru, src);
12745ad333ebSAndy Whitcroft 			continue;
12755ad333ebSAndy Whitcroft 
12765ad333ebSAndy Whitcroft 		default:
12775ad333ebSAndy Whitcroft 			BUG();
12785ad333ebSAndy Whitcroft 		}
12795ad333ebSAndy Whitcroft 	}
12801da177e4SLinus Torvalds 
1281f626012dSHugh Dickins 	*nr_scanned = scan;
128275b00af7SHugh Dickins 	trace_mm_vmscan_lru_isolate(sc->order, nr_to_scan, scan,
128375b00af7SHugh Dickins 				    nr_taken, mode, is_file_lru(lru));
12841da177e4SLinus Torvalds 	return nr_taken;
12851da177e4SLinus Torvalds }
12861da177e4SLinus Torvalds 
128762695a84SNick Piggin /**
128862695a84SNick Piggin  * isolate_lru_page - tries to isolate a page from its LRU list
128962695a84SNick Piggin  * @page: page to isolate from its LRU list
129062695a84SNick Piggin  *
129162695a84SNick Piggin  * Isolates a @page from an LRU list, clears PageLRU and adjusts the
129262695a84SNick Piggin  * vmstat statistic corresponding to whatever LRU list the page was on.
129362695a84SNick Piggin  *
129462695a84SNick Piggin  * Returns 0 if the page was removed from an LRU list.
129562695a84SNick Piggin  * Returns -EBUSY if the page was not on an LRU list.
129662695a84SNick Piggin  *
129762695a84SNick Piggin  * The returned page will have PageLRU() cleared.  If it was found on
1298894bc310SLee Schermerhorn  * the active list, it will have PageActive set.  If it was found on
1299894bc310SLee Schermerhorn  * the unevictable list, it will have the PageUnevictable bit set. That flag
1300894bc310SLee Schermerhorn  * may need to be cleared by the caller before letting the page go.
130162695a84SNick Piggin  *
130262695a84SNick Piggin  * The vmstat statistic corresponding to the list on which the page was
130362695a84SNick Piggin  * found will be decremented.
130462695a84SNick Piggin  *
130562695a84SNick Piggin  * Restrictions:
130662695a84SNick Piggin  * (1) Must be called with an elevated refcount on the page. This is a
130762695a84SNick Piggin  *     fundamentnal difference from isolate_lru_pages (which is called
130862695a84SNick Piggin  *     without a stable reference).
130962695a84SNick Piggin  * (2) the lru_lock must not be held.
131062695a84SNick Piggin  * (3) interrupts must be enabled.
131162695a84SNick Piggin  */
131262695a84SNick Piggin int isolate_lru_page(struct page *page)
131362695a84SNick Piggin {
131462695a84SNick Piggin 	int ret = -EBUSY;
131562695a84SNick Piggin 
1316309381feSSasha Levin 	VM_BUG_ON_PAGE(!page_count(page), page);
13170c917313SKonstantin Khlebnikov 
131862695a84SNick Piggin 	if (PageLRU(page)) {
131962695a84SNick Piggin 		struct zone *zone = page_zone(page);
1320fa9add64SHugh Dickins 		struct lruvec *lruvec;
132162695a84SNick Piggin 
132262695a84SNick Piggin 		spin_lock_irq(&zone->lru_lock);
1323fa9add64SHugh Dickins 		lruvec = mem_cgroup_page_lruvec(page, zone);
13240c917313SKonstantin Khlebnikov 		if (PageLRU(page)) {
1325894bc310SLee Schermerhorn 			int lru = page_lru(page);
13260c917313SKonstantin Khlebnikov 			get_page(page);
132762695a84SNick Piggin 			ClearPageLRU(page);
1328fa9add64SHugh Dickins 			del_page_from_lru_list(page, lruvec, lru);
1329fa9add64SHugh Dickins 			ret = 0;
133062695a84SNick Piggin 		}
133162695a84SNick Piggin 		spin_unlock_irq(&zone->lru_lock);
133262695a84SNick Piggin 	}
133362695a84SNick Piggin 	return ret;
133462695a84SNick Piggin }
133562695a84SNick Piggin 
13365ad333ebSAndy Whitcroft /*
1337d37dd5dcSFengguang Wu  * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
1338d37dd5dcSFengguang Wu  * then get resheduled. When there are massive number of tasks doing page
1339d37dd5dcSFengguang Wu  * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
1340d37dd5dcSFengguang Wu  * the LRU list will go small and be scanned faster than necessary, leading to
1341d37dd5dcSFengguang Wu  * unnecessary swapping, thrashing and OOM.
134235cd7815SRik van Riel  */
134335cd7815SRik van Riel static int too_many_isolated(struct zone *zone, int file,
134435cd7815SRik van Riel 		struct scan_control *sc)
134535cd7815SRik van Riel {
134635cd7815SRik van Riel 	unsigned long inactive, isolated;
134735cd7815SRik van Riel 
134835cd7815SRik van Riel 	if (current_is_kswapd())
134935cd7815SRik van Riel 		return 0;
135035cd7815SRik van Riel 
135189b5fae5SJohannes Weiner 	if (!global_reclaim(sc))
135235cd7815SRik van Riel 		return 0;
135335cd7815SRik van Riel 
135435cd7815SRik van Riel 	if (file) {
135535cd7815SRik van Riel 		inactive = zone_page_state(zone, NR_INACTIVE_FILE);
135635cd7815SRik van Riel 		isolated = zone_page_state(zone, NR_ISOLATED_FILE);
135735cd7815SRik van Riel 	} else {
135835cd7815SRik van Riel 		inactive = zone_page_state(zone, NR_INACTIVE_ANON);
135935cd7815SRik van Riel 		isolated = zone_page_state(zone, NR_ISOLATED_ANON);
136035cd7815SRik van Riel 	}
136135cd7815SRik van Riel 
13623cf23841SFengguang Wu 	/*
13633cf23841SFengguang Wu 	 * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
13643cf23841SFengguang Wu 	 * won't get blocked by normal direct-reclaimers, forming a circular
13653cf23841SFengguang Wu 	 * deadlock.
13663cf23841SFengguang Wu 	 */
13673cf23841SFengguang Wu 	if ((sc->gfp_mask & GFP_IOFS) == GFP_IOFS)
13683cf23841SFengguang Wu 		inactive >>= 3;
13693cf23841SFengguang Wu 
137035cd7815SRik van Riel 	return isolated > inactive;
137135cd7815SRik van Riel }
137235cd7815SRik van Riel 
137366635629SMel Gorman static noinline_for_stack void
137475b00af7SHugh Dickins putback_inactive_pages(struct lruvec *lruvec, struct list_head *page_list)
137566635629SMel Gorman {
137627ac81d8SKonstantin Khlebnikov 	struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
137727ac81d8SKonstantin Khlebnikov 	struct zone *zone = lruvec_zone(lruvec);
13783f79768fSHugh Dickins 	LIST_HEAD(pages_to_free);
137966635629SMel Gorman 
138066635629SMel Gorman 	/*
138166635629SMel Gorman 	 * Put back any unfreeable pages.
138266635629SMel Gorman 	 */
138366635629SMel Gorman 	while (!list_empty(page_list)) {
13843f79768fSHugh Dickins 		struct page *page = lru_to_page(page_list);
138566635629SMel Gorman 		int lru;
13863f79768fSHugh Dickins 
1387309381feSSasha Levin 		VM_BUG_ON_PAGE(PageLRU(page), page);
138866635629SMel Gorman 		list_del(&page->lru);
138939b5f29aSHugh Dickins 		if (unlikely(!page_evictable(page))) {
139066635629SMel Gorman 			spin_unlock_irq(&zone->lru_lock);
139166635629SMel Gorman 			putback_lru_page(page);
139266635629SMel Gorman 			spin_lock_irq(&zone->lru_lock);
139366635629SMel Gorman 			continue;
139466635629SMel Gorman 		}
1395fa9add64SHugh Dickins 
1396fa9add64SHugh Dickins 		lruvec = mem_cgroup_page_lruvec(page, zone);
1397fa9add64SHugh Dickins 
13987a608572SLinus Torvalds 		SetPageLRU(page);
139966635629SMel Gorman 		lru = page_lru(page);
1400fa9add64SHugh Dickins 		add_page_to_lru_list(page, lruvec, lru);
1401fa9add64SHugh Dickins 
140266635629SMel Gorman 		if (is_active_lru(lru)) {
140366635629SMel Gorman 			int file = is_file_lru(lru);
14049992af10SRik van Riel 			int numpages = hpage_nr_pages(page);
14059992af10SRik van Riel 			reclaim_stat->recent_rotated[file] += numpages;
140666635629SMel Gorman 		}
14072bcf8879SHugh Dickins 		if (put_page_testzero(page)) {
14082bcf8879SHugh Dickins 			__ClearPageLRU(page);
14092bcf8879SHugh Dickins 			__ClearPageActive(page);
1410fa9add64SHugh Dickins 			del_page_from_lru_list(page, lruvec, lru);
14112bcf8879SHugh Dickins 
14122bcf8879SHugh Dickins 			if (unlikely(PageCompound(page))) {
141366635629SMel Gorman 				spin_unlock_irq(&zone->lru_lock);
14142bcf8879SHugh Dickins 				(*get_compound_page_dtor(page))(page);
141566635629SMel Gorman 				spin_lock_irq(&zone->lru_lock);
14162bcf8879SHugh Dickins 			} else
14172bcf8879SHugh Dickins 				list_add(&page->lru, &pages_to_free);
141866635629SMel Gorman 		}
141966635629SMel Gorman 	}
142066635629SMel Gorman 
14213f79768fSHugh Dickins 	/*
14223f79768fSHugh Dickins 	 * To save our caller's stack, now use input list for pages to free.
14233f79768fSHugh Dickins 	 */
14243f79768fSHugh Dickins 	list_splice(&pages_to_free, page_list);
142566635629SMel Gorman }
142666635629SMel Gorman 
142766635629SMel Gorman /*
14281742f19fSAndrew Morton  * shrink_inactive_list() is a helper for shrink_zone().  It returns the number
14291742f19fSAndrew Morton  * of reclaimed pages
14301da177e4SLinus Torvalds  */
143166635629SMel Gorman static noinline_for_stack unsigned long
14321a93be0eSKonstantin Khlebnikov shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
14339e3b2f8cSKonstantin Khlebnikov 		     struct scan_control *sc, enum lru_list lru)
14341da177e4SLinus Torvalds {
14351da177e4SLinus Torvalds 	LIST_HEAD(page_list);
1436e247dbceSKOSAKI Motohiro 	unsigned long nr_scanned;
143705ff5137SAndrew Morton 	unsigned long nr_reclaimed = 0;
1438e247dbceSKOSAKI Motohiro 	unsigned long nr_taken;
14398e950282SMel Gorman 	unsigned long nr_dirty = 0;
14408e950282SMel Gorman 	unsigned long nr_congested = 0;
1441e2be15f6SMel Gorman 	unsigned long nr_unqueued_dirty = 0;
144292df3a72SMel Gorman 	unsigned long nr_writeback = 0;
1443b1a6f21eSMel Gorman 	unsigned long nr_immediate = 0;
1444f3fd4a61SKonstantin Khlebnikov 	isolate_mode_t isolate_mode = 0;
14453cb99451SKonstantin Khlebnikov 	int file = is_file_lru(lru);
14461a93be0eSKonstantin Khlebnikov 	struct zone *zone = lruvec_zone(lruvec);
14471a93be0eSKonstantin Khlebnikov 	struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
144878dc583dSKOSAKI Motohiro 
144935cd7815SRik van Riel 	while (unlikely(too_many_isolated(zone, file, sc))) {
145058355c78SKOSAKI Motohiro 		congestion_wait(BLK_RW_ASYNC, HZ/10);
145135cd7815SRik van Riel 
145235cd7815SRik van Riel 		/* We are about to die and free our memory. Return now. */
145335cd7815SRik van Riel 		if (fatal_signal_pending(current))
145435cd7815SRik van Riel 			return SWAP_CLUSTER_MAX;
145535cd7815SRik van Riel 	}
145635cd7815SRik van Riel 
14571da177e4SLinus Torvalds 	lru_add_drain();
1458f80c0673SMinchan Kim 
1459f80c0673SMinchan Kim 	if (!sc->may_unmap)
146061317289SHillf Danton 		isolate_mode |= ISOLATE_UNMAPPED;
1461f80c0673SMinchan Kim 	if (!sc->may_writepage)
146261317289SHillf Danton 		isolate_mode |= ISOLATE_CLEAN;
1463f80c0673SMinchan Kim 
14641da177e4SLinus Torvalds 	spin_lock_irq(&zone->lru_lock);
14651da177e4SLinus Torvalds 
14665dc35979SKonstantin Khlebnikov 	nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list,
14675dc35979SKonstantin Khlebnikov 				     &nr_scanned, sc, isolate_mode, lru);
146895d918fcSKonstantin Khlebnikov 
146995d918fcSKonstantin Khlebnikov 	__mod_zone_page_state(zone, NR_LRU_BASE + lru, -nr_taken);
147095d918fcSKonstantin Khlebnikov 	__mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
147195d918fcSKonstantin Khlebnikov 
147289b5fae5SJohannes Weiner 	if (global_reclaim(sc)) {
1473e247dbceSKOSAKI Motohiro 		zone->pages_scanned += nr_scanned;
1474b35ea17bSKOSAKI Motohiro 		if (current_is_kswapd())
147575b00af7SHugh Dickins 			__count_zone_vm_events(PGSCAN_KSWAPD, zone, nr_scanned);
1476b35ea17bSKOSAKI Motohiro 		else
147775b00af7SHugh Dickins 			__count_zone_vm_events(PGSCAN_DIRECT, zone, nr_scanned);
1478b35ea17bSKOSAKI Motohiro 	}
147966635629SMel Gorman 	spin_unlock_irq(&zone->lru_lock);
1480d563c050SHillf Danton 
1481d563c050SHillf Danton 	if (nr_taken == 0)
148266635629SMel Gorman 		return 0;
1483b35ea17bSKOSAKI Motohiro 
148402c6de8dSMinchan Kim 	nr_reclaimed = shrink_page_list(&page_list, zone, sc, TTU_UNMAP,
14858e950282SMel Gorman 				&nr_dirty, &nr_unqueued_dirty, &nr_congested,
14868e950282SMel Gorman 				&nr_writeback, &nr_immediate,
1487b1a6f21eSMel Gorman 				false);
1488c661b078SAndy Whitcroft 
14893f79768fSHugh Dickins 	spin_lock_irq(&zone->lru_lock);
14903f79768fSHugh Dickins 
149195d918fcSKonstantin Khlebnikov 	reclaim_stat->recent_scanned[file] += nr_taken;
1492d563c050SHillf Danton 
1493904249aaSYing Han 	if (global_reclaim(sc)) {
1494b35ea17bSKOSAKI Motohiro 		if (current_is_kswapd())
1495904249aaSYing Han 			__count_zone_vm_events(PGSTEAL_KSWAPD, zone,
1496904249aaSYing Han 					       nr_reclaimed);
1497904249aaSYing Han 		else
1498904249aaSYing Han 			__count_zone_vm_events(PGSTEAL_DIRECT, zone,
1499904249aaSYing Han 					       nr_reclaimed);
1500904249aaSYing Han 	}
1501a74609faSNick Piggin 
150227ac81d8SKonstantin Khlebnikov 	putback_inactive_pages(lruvec, &page_list);
15033f79768fSHugh Dickins 
150495d918fcSKonstantin Khlebnikov 	__mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
15053f79768fSHugh Dickins 
15063f79768fSHugh Dickins 	spin_unlock_irq(&zone->lru_lock);
15073f79768fSHugh Dickins 
15083f79768fSHugh Dickins 	free_hot_cold_page_list(&page_list, 1);
1509e11da5b4SMel Gorman 
151092df3a72SMel Gorman 	/*
151192df3a72SMel Gorman 	 * If reclaim is isolating dirty pages under writeback, it implies
151292df3a72SMel Gorman 	 * that the long-lived page allocation rate is exceeding the page
151392df3a72SMel Gorman 	 * laundering rate. Either the global limits are not being effective
151492df3a72SMel Gorman 	 * at throttling processes due to the page distribution throughout
151592df3a72SMel Gorman 	 * zones or there is heavy usage of a slow backing device. The
151692df3a72SMel Gorman 	 * only option is to throttle from reclaim context which is not ideal
151792df3a72SMel Gorman 	 * as there is no guarantee the dirtying process is throttled in the
151892df3a72SMel Gorman 	 * same way balance_dirty_pages() manages.
151992df3a72SMel Gorman 	 *
15208e950282SMel Gorman 	 * Once a zone is flagged ZONE_WRITEBACK, kswapd will count the number
15218e950282SMel Gorman 	 * of pages under pages flagged for immediate reclaim and stall if any
15228e950282SMel Gorman 	 * are encountered in the nr_immediate check below.
152392df3a72SMel Gorman 	 */
1524918fc718SMel Gorman 	if (nr_writeback && nr_writeback == nr_taken)
1525283aba9fSMel Gorman 		zone_set_flag(zone, ZONE_WRITEBACK);
152692df3a72SMel Gorman 
1527d43006d5SMel Gorman 	/*
1528b1a6f21eSMel Gorman 	 * memcg will stall in page writeback so only consider forcibly
1529b1a6f21eSMel Gorman 	 * stalling for global reclaim
1530d43006d5SMel Gorman 	 */
1531b1a6f21eSMel Gorman 	if (global_reclaim(sc)) {
1532b1a6f21eSMel Gorman 		/*
15338e950282SMel Gorman 		 * Tag a zone as congested if all the dirty pages scanned were
15348e950282SMel Gorman 		 * backed by a congested BDI and wait_iff_congested will stall.
15358e950282SMel Gorman 		 */
15368e950282SMel Gorman 		if (nr_dirty && nr_dirty == nr_congested)
15378e950282SMel Gorman 			zone_set_flag(zone, ZONE_CONGESTED);
15388e950282SMel Gorman 
15398e950282SMel Gorman 		/*
1540b1a6f21eSMel Gorman 		 * If dirty pages are scanned that are not queued for IO, it
1541b1a6f21eSMel Gorman 		 * implies that flushers are not keeping up. In this case, flag
1542b1a6f21eSMel Gorman 		 * the zone ZONE_TAIL_LRU_DIRTY and kswapd will start writing
1543b1a6f21eSMel Gorman 		 * pages from reclaim context. It will forcibly stall in the
1544b1a6f21eSMel Gorman 		 * next check.
1545b1a6f21eSMel Gorman 		 */
1546b1a6f21eSMel Gorman 		if (nr_unqueued_dirty == nr_taken)
1547d43006d5SMel Gorman 			zone_set_flag(zone, ZONE_TAIL_LRU_DIRTY);
1548b1a6f21eSMel Gorman 
1549b1a6f21eSMel Gorman 		/*
1550b1a6f21eSMel Gorman 		 * In addition, if kswapd scans pages marked marked for
1551b1a6f21eSMel Gorman 		 * immediate reclaim and under writeback (nr_immediate), it
1552b1a6f21eSMel Gorman 		 * implies that pages are cycling through the LRU faster than
1553b1a6f21eSMel Gorman 		 * they are written so also forcibly stall.
1554b1a6f21eSMel Gorman 		 */
1555b1a6f21eSMel Gorman 		if (nr_unqueued_dirty == nr_taken || nr_immediate)
1556b1a6f21eSMel Gorman 			congestion_wait(BLK_RW_ASYNC, HZ/10);
1557e2be15f6SMel Gorman 	}
1558d43006d5SMel Gorman 
15598e950282SMel Gorman 	/*
15608e950282SMel Gorman 	 * Stall direct reclaim for IO completions if underlying BDIs or zone
15618e950282SMel Gorman 	 * is congested. Allow kswapd to continue until it starts encountering
15628e950282SMel Gorman 	 * unqueued dirty pages or cycling through the LRU too quickly.
15638e950282SMel Gorman 	 */
15648e950282SMel Gorman 	if (!sc->hibernation_mode && !current_is_kswapd())
15658e950282SMel Gorman 		wait_iff_congested(zone, BLK_RW_ASYNC, HZ/10);
15668e950282SMel Gorman 
1567e11da5b4SMel Gorman 	trace_mm_vmscan_lru_shrink_inactive(zone->zone_pgdat->node_id,
1568e11da5b4SMel Gorman 		zone_idx(zone),
1569e11da5b4SMel Gorman 		nr_scanned, nr_reclaimed,
15709e3b2f8cSKonstantin Khlebnikov 		sc->priority,
157123b9da55SMel Gorman 		trace_shrink_flags(file));
157205ff5137SAndrew Morton 	return nr_reclaimed;
15731da177e4SLinus Torvalds }
15741da177e4SLinus Torvalds 
15753bb1a852SMartin Bligh /*
15761cfb419bSKAMEZAWA Hiroyuki  * This moves pages from the active list to the inactive list.
15771cfb419bSKAMEZAWA Hiroyuki  *
15781cfb419bSKAMEZAWA Hiroyuki  * We move them the other way if the page is referenced by one or more
15791cfb419bSKAMEZAWA Hiroyuki  * processes, from rmap.
15801cfb419bSKAMEZAWA Hiroyuki  *
15811cfb419bSKAMEZAWA Hiroyuki  * If the pages are mostly unmapped, the processing is fast and it is
15821cfb419bSKAMEZAWA Hiroyuki  * appropriate to hold zone->lru_lock across the whole operation.  But if
15831cfb419bSKAMEZAWA Hiroyuki  * the pages are mapped, the processing is slow (page_referenced()) so we
15841cfb419bSKAMEZAWA Hiroyuki  * should drop zone->lru_lock around each page.  It's impossible to balance
15851cfb419bSKAMEZAWA Hiroyuki  * this, so instead we remove the pages from the LRU while processing them.
15861cfb419bSKAMEZAWA Hiroyuki  * It is safe to rely on PG_active against the non-LRU pages in here because
15871cfb419bSKAMEZAWA Hiroyuki  * nobody will play with that bit on a non-LRU page.
15881cfb419bSKAMEZAWA Hiroyuki  *
15891cfb419bSKAMEZAWA Hiroyuki  * The downside is that we have to touch page->_count against each page.
15901cfb419bSKAMEZAWA Hiroyuki  * But we had to alter page->flags anyway.
15911cfb419bSKAMEZAWA Hiroyuki  */
15921cfb419bSKAMEZAWA Hiroyuki 
1593fa9add64SHugh Dickins static void move_active_pages_to_lru(struct lruvec *lruvec,
15943eb4140fSWu Fengguang 				     struct list_head *list,
15952bcf8879SHugh Dickins 				     struct list_head *pages_to_free,
15963eb4140fSWu Fengguang 				     enum lru_list lru)
15973eb4140fSWu Fengguang {
1598fa9add64SHugh Dickins 	struct zone *zone = lruvec_zone(lruvec);
15993eb4140fSWu Fengguang 	unsigned long pgmoved = 0;
16003eb4140fSWu Fengguang 	struct page *page;
1601fa9add64SHugh Dickins 	int nr_pages;
16023eb4140fSWu Fengguang 
16033eb4140fSWu Fengguang 	while (!list_empty(list)) {
16043eb4140fSWu Fengguang 		page = lru_to_page(list);
1605fa9add64SHugh Dickins 		lruvec = mem_cgroup_page_lruvec(page, zone);
16063eb4140fSWu Fengguang 
1607309381feSSasha Levin 		VM_BUG_ON_PAGE(PageLRU(page), page);
16083eb4140fSWu Fengguang 		SetPageLRU(page);
16093eb4140fSWu Fengguang 
1610fa9add64SHugh Dickins 		nr_pages = hpage_nr_pages(page);
1611fa9add64SHugh Dickins 		mem_cgroup_update_lru_size(lruvec, lru, nr_pages);
1612925b7673SJohannes Weiner 		list_move(&page->lru, &lruvec->lists[lru]);
1613fa9add64SHugh Dickins 		pgmoved += nr_pages;
16143eb4140fSWu Fengguang 
16152bcf8879SHugh Dickins 		if (put_page_testzero(page)) {
16162bcf8879SHugh Dickins 			__ClearPageLRU(page);
16172bcf8879SHugh Dickins 			__ClearPageActive(page);
1618fa9add64SHugh Dickins 			del_page_from_lru_list(page, lruvec, lru);
16192bcf8879SHugh Dickins 
16202bcf8879SHugh Dickins 			if (unlikely(PageCompound(page))) {
16213eb4140fSWu Fengguang 				spin_unlock_irq(&zone->lru_lock);
16222bcf8879SHugh Dickins 				(*get_compound_page_dtor(page))(page);
16233eb4140fSWu Fengguang 				spin_lock_irq(&zone->lru_lock);
16242bcf8879SHugh Dickins 			} else
16252bcf8879SHugh Dickins 				list_add(&page->lru, pages_to_free);
16263eb4140fSWu Fengguang 		}
16273eb4140fSWu Fengguang 	}
16283eb4140fSWu Fengguang 	__mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
16293eb4140fSWu Fengguang 	if (!is_active_lru(lru))
16303eb4140fSWu Fengguang 		__count_vm_events(PGDEACTIVATE, pgmoved);
16313eb4140fSWu Fengguang }
16321cfb419bSKAMEZAWA Hiroyuki 
1633f626012dSHugh Dickins static void shrink_active_list(unsigned long nr_to_scan,
16341a93be0eSKonstantin Khlebnikov 			       struct lruvec *lruvec,
1635f16015fbSJohannes Weiner 			       struct scan_control *sc,
16369e3b2f8cSKonstantin Khlebnikov 			       enum lru_list lru)
16371cfb419bSKAMEZAWA Hiroyuki {
163844c241f1SKOSAKI Motohiro 	unsigned long nr_taken;
1639f626012dSHugh Dickins 	unsigned long nr_scanned;
16406fe6b7e3SWu Fengguang 	unsigned long vm_flags;
16411cfb419bSKAMEZAWA Hiroyuki 	LIST_HEAD(l_hold);	/* The pages which were snipped off */
16428cab4754SWu Fengguang 	LIST_HEAD(l_active);
1643b69408e8SChristoph Lameter 	LIST_HEAD(l_inactive);
16441cfb419bSKAMEZAWA Hiroyuki 	struct page *page;
16451a93be0eSKonstantin Khlebnikov 	struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
164644c241f1SKOSAKI Motohiro 	unsigned long nr_rotated = 0;
1647f3fd4a61SKonstantin Khlebnikov 	isolate_mode_t isolate_mode = 0;
16483cb99451SKonstantin Khlebnikov 	int file = is_file_lru(lru);
16491a93be0eSKonstantin Khlebnikov 	struct zone *zone = lruvec_zone(lruvec);
16501cfb419bSKAMEZAWA Hiroyuki 
16511da177e4SLinus Torvalds 	lru_add_drain();
1652f80c0673SMinchan Kim 
1653f80c0673SMinchan Kim 	if (!sc->may_unmap)
165461317289SHillf Danton 		isolate_mode |= ISOLATE_UNMAPPED;
1655f80c0673SMinchan Kim 	if (!sc->may_writepage)
165661317289SHillf Danton 		isolate_mode |= ISOLATE_CLEAN;
1657f80c0673SMinchan Kim 
16581da177e4SLinus Torvalds 	spin_lock_irq(&zone->lru_lock);
1659925b7673SJohannes Weiner 
16605dc35979SKonstantin Khlebnikov 	nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold,
16615dc35979SKonstantin Khlebnikov 				     &nr_scanned, sc, isolate_mode, lru);
166289b5fae5SJohannes Weiner 	if (global_reclaim(sc))
1663f626012dSHugh Dickins 		zone->pages_scanned += nr_scanned;
166489b5fae5SJohannes Weiner 
1665b7c46d15SJohannes Weiner 	reclaim_stat->recent_scanned[file] += nr_taken;
16661cfb419bSKAMEZAWA Hiroyuki 
1667f626012dSHugh Dickins 	__count_zone_vm_events(PGREFILL, zone, nr_scanned);
16683cb99451SKonstantin Khlebnikov 	__mod_zone_page_state(zone, NR_LRU_BASE + lru, -nr_taken);
1669a731286dSKOSAKI Motohiro 	__mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
16701da177e4SLinus Torvalds 	spin_unlock_irq(&zone->lru_lock);
16711da177e4SLinus Torvalds 
16721da177e4SLinus Torvalds 	while (!list_empty(&l_hold)) {
16731da177e4SLinus Torvalds 		cond_resched();
16741da177e4SLinus Torvalds 		page = lru_to_page(&l_hold);
16751da177e4SLinus Torvalds 		list_del(&page->lru);
16767e9cd484SRik van Riel 
167739b5f29aSHugh Dickins 		if (unlikely(!page_evictable(page))) {
1678894bc310SLee Schermerhorn 			putback_lru_page(page);
1679894bc310SLee Schermerhorn 			continue;
1680894bc310SLee Schermerhorn 		}
1681894bc310SLee Schermerhorn 
1682cc715d99SMel Gorman 		if (unlikely(buffer_heads_over_limit)) {
1683cc715d99SMel Gorman 			if (page_has_private(page) && trylock_page(page)) {
1684cc715d99SMel Gorman 				if (page_has_private(page))
1685cc715d99SMel Gorman 					try_to_release_page(page, 0);
1686cc715d99SMel Gorman 				unlock_page(page);
1687cc715d99SMel Gorman 			}
1688cc715d99SMel Gorman 		}
1689cc715d99SMel Gorman 
1690c3ac9a8aSJohannes Weiner 		if (page_referenced(page, 0, sc->target_mem_cgroup,
1691c3ac9a8aSJohannes Weiner 				    &vm_flags)) {
16929992af10SRik van Riel 			nr_rotated += hpage_nr_pages(page);
16938cab4754SWu Fengguang 			/*
16948cab4754SWu Fengguang 			 * Identify referenced, file-backed active pages and
16958cab4754SWu Fengguang 			 * give them one more trip around the active list. So
16968cab4754SWu Fengguang 			 * that executable code get better chances to stay in
16978cab4754SWu Fengguang 			 * memory under moderate memory pressure.  Anon pages
16988cab4754SWu Fengguang 			 * are not likely to be evicted by use-once streaming
16998cab4754SWu Fengguang 			 * IO, plus JVM can create lots of anon VM_EXEC pages,
17008cab4754SWu Fengguang 			 * so we ignore them here.
17018cab4754SWu Fengguang 			 */
170241e20983SWu Fengguang 			if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
17038cab4754SWu Fengguang 				list_add(&page->lru, &l_active);
17048cab4754SWu Fengguang 				continue;
17058cab4754SWu Fengguang 			}
17068cab4754SWu Fengguang 		}
17077e9cd484SRik van Riel 
17085205e56eSKOSAKI Motohiro 		ClearPageActive(page);	/* we are de-activating */
17091da177e4SLinus Torvalds 		list_add(&page->lru, &l_inactive);
17101da177e4SLinus Torvalds 	}
17111da177e4SLinus Torvalds 
1712b555749aSAndrew Morton 	/*
17138cab4754SWu Fengguang 	 * Move pages back to the lru list.
1714b555749aSAndrew Morton 	 */
17152a1dc509SJohannes Weiner 	spin_lock_irq(&zone->lru_lock);
17164f98a2feSRik van Riel 	/*
17178cab4754SWu Fengguang 	 * Count referenced pages from currently used mappings as rotated,
17188cab4754SWu Fengguang 	 * even though only some of them are actually re-activated.  This
17198cab4754SWu Fengguang 	 * helps balance scan pressure between file and anonymous pages in
17208cab4754SWu Fengguang 	 * get_scan_ratio.
1721556adecbSRik van Riel 	 */
1722b7c46d15SJohannes Weiner 	reclaim_stat->recent_rotated[file] += nr_rotated;
1723556adecbSRik van Riel 
1724fa9add64SHugh Dickins 	move_active_pages_to_lru(lruvec, &l_active, &l_hold, lru);
1725fa9add64SHugh Dickins 	move_active_pages_to_lru(lruvec, &l_inactive, &l_hold, lru - LRU_ACTIVE);
1726a731286dSKOSAKI Motohiro 	__mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
1727f8891e5eSChristoph Lameter 	spin_unlock_irq(&zone->lru_lock);
17282bcf8879SHugh Dickins 
17292bcf8879SHugh Dickins 	free_hot_cold_page_list(&l_hold, 1);
17301da177e4SLinus Torvalds }
17311da177e4SLinus Torvalds 
173274e3f3c3SMinchan Kim #ifdef CONFIG_SWAP
173314797e23SKOSAKI Motohiro static int inactive_anon_is_low_global(struct zone *zone)
1734f89eb90eSKOSAKI Motohiro {
1735f89eb90eSKOSAKI Motohiro 	unsigned long active, inactive;
1736f89eb90eSKOSAKI Motohiro 
1737f89eb90eSKOSAKI Motohiro 	active = zone_page_state(zone, NR_ACTIVE_ANON);
1738f89eb90eSKOSAKI Motohiro 	inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1739f89eb90eSKOSAKI Motohiro 
1740f89eb90eSKOSAKI Motohiro 	if (inactive * zone->inactive_ratio < active)
1741f89eb90eSKOSAKI Motohiro 		return 1;
1742f89eb90eSKOSAKI Motohiro 
1743f89eb90eSKOSAKI Motohiro 	return 0;
1744f89eb90eSKOSAKI Motohiro }
1745f89eb90eSKOSAKI Motohiro 
174614797e23SKOSAKI Motohiro /**
174714797e23SKOSAKI Motohiro  * inactive_anon_is_low - check if anonymous pages need to be deactivated
1748c56d5c7dSKonstantin Khlebnikov  * @lruvec: LRU vector to check
174914797e23SKOSAKI Motohiro  *
175014797e23SKOSAKI Motohiro  * Returns true if the zone does not have enough inactive anon pages,
175114797e23SKOSAKI Motohiro  * meaning some active anon pages need to be deactivated.
175214797e23SKOSAKI Motohiro  */
1753c56d5c7dSKonstantin Khlebnikov static int inactive_anon_is_low(struct lruvec *lruvec)
175414797e23SKOSAKI Motohiro {
175574e3f3c3SMinchan Kim 	/*
175674e3f3c3SMinchan Kim 	 * If we don't have swap space, anonymous page deactivation
175774e3f3c3SMinchan Kim 	 * is pointless.
175874e3f3c3SMinchan Kim 	 */
175974e3f3c3SMinchan Kim 	if (!total_swap_pages)
176074e3f3c3SMinchan Kim 		return 0;
176174e3f3c3SMinchan Kim 
1762c3c787e8SHugh Dickins 	if (!mem_cgroup_disabled())
1763c56d5c7dSKonstantin Khlebnikov 		return mem_cgroup_inactive_anon_is_low(lruvec);
1764f16015fbSJohannes Weiner 
1765c56d5c7dSKonstantin Khlebnikov 	return inactive_anon_is_low_global(lruvec_zone(lruvec));
176614797e23SKOSAKI Motohiro }
176774e3f3c3SMinchan Kim #else
1768c56d5c7dSKonstantin Khlebnikov static inline int inactive_anon_is_low(struct lruvec *lruvec)
176974e3f3c3SMinchan Kim {
177074e3f3c3SMinchan Kim 	return 0;
177174e3f3c3SMinchan Kim }
177274e3f3c3SMinchan Kim #endif
177314797e23SKOSAKI Motohiro 
177456e49d21SRik van Riel /**
177556e49d21SRik van Riel  * inactive_file_is_low - check if file pages need to be deactivated
1776c56d5c7dSKonstantin Khlebnikov  * @lruvec: LRU vector to check
177756e49d21SRik van Riel  *
177856e49d21SRik van Riel  * When the system is doing streaming IO, memory pressure here
177956e49d21SRik van Riel  * ensures that active file pages get deactivated, until more
178056e49d21SRik van Riel  * than half of the file pages are on the inactive list.
178156e49d21SRik van Riel  *
178256e49d21SRik van Riel  * Once we get to that situation, protect the system's working
178356e49d21SRik van Riel  * set from being evicted by disabling active file page aging.
178456e49d21SRik van Riel  *
178556e49d21SRik van Riel  * This uses a different ratio than the anonymous pages, because
178656e49d21SRik van Riel  * the page cache uses a use-once replacement algorithm.
178756e49d21SRik van Riel  */
1788c56d5c7dSKonstantin Khlebnikov static int inactive_file_is_low(struct lruvec *lruvec)
178956e49d21SRik van Riel {
1790e3790144SJohannes Weiner 	unsigned long inactive;
1791e3790144SJohannes Weiner 	unsigned long active;
179256e49d21SRik van Riel 
1793e3790144SJohannes Weiner 	inactive = get_lru_size(lruvec, LRU_INACTIVE_FILE);
1794e3790144SJohannes Weiner 	active = get_lru_size(lruvec, LRU_ACTIVE_FILE);
1795e3790144SJohannes Weiner 
1796e3790144SJohannes Weiner 	return active > inactive;
179756e49d21SRik van Riel }
179856e49d21SRik van Riel 
179975b00af7SHugh Dickins static int inactive_list_is_low(struct lruvec *lruvec, enum lru_list lru)
1800b39415b2SRik van Riel {
180175b00af7SHugh Dickins 	if (is_file_lru(lru))
1802c56d5c7dSKonstantin Khlebnikov 		return inactive_file_is_low(lruvec);
1803b39415b2SRik van Riel 	else
1804c56d5c7dSKonstantin Khlebnikov 		return inactive_anon_is_low(lruvec);
1805b39415b2SRik van Riel }
1806b39415b2SRik van Riel 
18074f98a2feSRik van Riel static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
18081a93be0eSKonstantin Khlebnikov 				 struct lruvec *lruvec, struct scan_control *sc)
1809b69408e8SChristoph Lameter {
1810b39415b2SRik van Riel 	if (is_active_lru(lru)) {
181175b00af7SHugh Dickins 		if (inactive_list_is_low(lruvec, lru))
18121a93be0eSKonstantin Khlebnikov 			shrink_active_list(nr_to_scan, lruvec, sc, lru);
1813556adecbSRik van Riel 		return 0;
1814556adecbSRik van Riel 	}
1815556adecbSRik van Riel 
18161a93be0eSKonstantin Khlebnikov 	return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
1817b69408e8SChristoph Lameter }
1818b69408e8SChristoph Lameter 
18193d58ab5cSKonstantin Khlebnikov static int vmscan_swappiness(struct scan_control *sc)
18201f4c025bSKAMEZAWA Hiroyuki {
182189b5fae5SJohannes Weiner 	if (global_reclaim(sc))
18221f4c025bSKAMEZAWA Hiroyuki 		return vm_swappiness;
18233d58ab5cSKonstantin Khlebnikov 	return mem_cgroup_swappiness(sc->target_mem_cgroup);
18241f4c025bSKAMEZAWA Hiroyuki }
18251f4c025bSKAMEZAWA Hiroyuki 
18269a265114SJohannes Weiner enum scan_balance {
18279a265114SJohannes Weiner 	SCAN_EQUAL,
18289a265114SJohannes Weiner 	SCAN_FRACT,
18299a265114SJohannes Weiner 	SCAN_ANON,
18309a265114SJohannes Weiner 	SCAN_FILE,
18319a265114SJohannes Weiner };
18329a265114SJohannes Weiner 
18331da177e4SLinus Torvalds /*
18344f98a2feSRik van Riel  * Determine how aggressively the anon and file LRU lists should be
18354f98a2feSRik van Riel  * scanned.  The relative value of each set of LRU lists is determined
18364f98a2feSRik van Riel  * by looking at the fraction of the pages scanned we did rotate back
18374f98a2feSRik van Riel  * onto the active list instead of evict.
18384f98a2feSRik van Riel  *
1839be7bd59dSWanpeng Li  * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
1840be7bd59dSWanpeng Li  * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
18414f98a2feSRik van Riel  */
184290126375SKonstantin Khlebnikov static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
18439e3b2f8cSKonstantin Khlebnikov 			   unsigned long *nr)
18444f98a2feSRik van Riel {
184590126375SKonstantin Khlebnikov 	struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
18469a265114SJohannes Weiner 	u64 fraction[2];
18479a265114SJohannes Weiner 	u64 denominator = 0;	/* gcc */
184890126375SKonstantin Khlebnikov 	struct zone *zone = lruvec_zone(lruvec);
18499a265114SJohannes Weiner 	unsigned long anon_prio, file_prio;
18509a265114SJohannes Weiner 	enum scan_balance scan_balance;
18519a265114SJohannes Weiner 	unsigned long anon, file, free;
18529a265114SJohannes Weiner 	bool force_scan = false;
18539a265114SJohannes Weiner 	unsigned long ap, fp;
18549a265114SJohannes Weiner 	enum lru_list lru;
1855246e87a9SKAMEZAWA Hiroyuki 
1856f11c0ca5SJohannes Weiner 	/*
1857f11c0ca5SJohannes Weiner 	 * If the zone or memcg is small, nr[l] can be 0.  This
1858f11c0ca5SJohannes Weiner 	 * results in no scanning on this priority and a potential
1859f11c0ca5SJohannes Weiner 	 * priority drop.  Global direct reclaim can go to the next
1860f11c0ca5SJohannes Weiner 	 * zone and tends to have no problems. Global kswapd is for
1861f11c0ca5SJohannes Weiner 	 * zone balancing and it needs to scan a minimum amount. When
1862f11c0ca5SJohannes Weiner 	 * reclaiming for a memcg, a priority drop can cause high
1863f11c0ca5SJohannes Weiner 	 * latencies, so it's better to scan a minimum amount there as
1864f11c0ca5SJohannes Weiner 	 * well.
1865f11c0ca5SJohannes Weiner 	 */
18666e543d57SLisa Du 	if (current_is_kswapd() && !zone_reclaimable(zone))
1867a4d3e9e7SJohannes Weiner 		force_scan = true;
186889b5fae5SJohannes Weiner 	if (!global_reclaim(sc))
1869a4d3e9e7SJohannes Weiner 		force_scan = true;
187076a33fc3SShaohua Li 
187176a33fc3SShaohua Li 	/* If we have no swap space, do not bother scanning anon pages. */
1872ec8acf20SShaohua Li 	if (!sc->may_swap || (get_nr_swap_pages() <= 0)) {
18739a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
187476a33fc3SShaohua Li 		goto out;
187576a33fc3SShaohua Li 	}
18764f98a2feSRik van Riel 
187710316b31SJohannes Weiner 	/*
187810316b31SJohannes Weiner 	 * Global reclaim will swap to prevent OOM even with no
187910316b31SJohannes Weiner 	 * swappiness, but memcg users want to use this knob to
188010316b31SJohannes Weiner 	 * disable swapping for individual groups completely when
188110316b31SJohannes Weiner 	 * using the memory controller's swap limit feature would be
188210316b31SJohannes Weiner 	 * too expensive.
188310316b31SJohannes Weiner 	 */
188410316b31SJohannes Weiner 	if (!global_reclaim(sc) && !vmscan_swappiness(sc)) {
18859a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
188610316b31SJohannes Weiner 		goto out;
188710316b31SJohannes Weiner 	}
188810316b31SJohannes Weiner 
188910316b31SJohannes Weiner 	/*
189010316b31SJohannes Weiner 	 * Do not apply any pressure balancing cleverness when the
189110316b31SJohannes Weiner 	 * system is close to OOM, scan both anon and file equally
189210316b31SJohannes Weiner 	 * (unless the swappiness setting disagrees with swapping).
189310316b31SJohannes Weiner 	 */
189410316b31SJohannes Weiner 	if (!sc->priority && vmscan_swappiness(sc)) {
18959a265114SJohannes Weiner 		scan_balance = SCAN_EQUAL;
189610316b31SJohannes Weiner 		goto out;
189710316b31SJohannes Weiner 	}
189810316b31SJohannes Weiner 
18994d7dcca2SHugh Dickins 	anon  = get_lru_size(lruvec, LRU_ACTIVE_ANON) +
19004d7dcca2SHugh Dickins 		get_lru_size(lruvec, LRU_INACTIVE_ANON);
19014d7dcca2SHugh Dickins 	file  = get_lru_size(lruvec, LRU_ACTIVE_FILE) +
19024d7dcca2SHugh Dickins 		get_lru_size(lruvec, LRU_INACTIVE_FILE);
1903a4d3e9e7SJohannes Weiner 
190411d16c25SJohannes Weiner 	/*
190511d16c25SJohannes Weiner 	 * If it's foreseeable that reclaiming the file cache won't be
190611d16c25SJohannes Weiner 	 * enough to get the zone back into a desirable shape, we have
190711d16c25SJohannes Weiner 	 * to swap.  Better start now and leave the - probably heavily
190811d16c25SJohannes Weiner 	 * thrashing - remaining file pages alone.
190911d16c25SJohannes Weiner 	 */
191089b5fae5SJohannes Weiner 	if (global_reclaim(sc)) {
191190126375SKonstantin Khlebnikov 		free = zone_page_state(zone, NR_FREE_PAGES);
191290126375SKonstantin Khlebnikov 		if (unlikely(file + free <= high_wmark_pages(zone))) {
19139a265114SJohannes Weiner 			scan_balance = SCAN_ANON;
191476a33fc3SShaohua Li 			goto out;
19157c5bd705SJohannes Weiner 		}
19167c5bd705SJohannes Weiner 	}
19177c5bd705SJohannes Weiner 
1918e9868505SRik van Riel 	/*
19197c5bd705SJohannes Weiner 	 * There is enough inactive page cache, do not reclaim
19207c5bd705SJohannes Weiner 	 * anything from the anonymous working set right now.
1921e9868505SRik van Riel 	 */
19227c5bd705SJohannes Weiner 	if (!inactive_file_is_low(lruvec)) {
19239a265114SJohannes Weiner 		scan_balance = SCAN_FILE;
1924e9868505SRik van Riel 		goto out;
19254f98a2feSRik van Riel 	}
19264f98a2feSRik van Riel 
19279a265114SJohannes Weiner 	scan_balance = SCAN_FRACT;
19289a265114SJohannes Weiner 
19294f98a2feSRik van Riel 	/*
193058c37f6eSKOSAKI Motohiro 	 * With swappiness at 100, anonymous and file have the same priority.
193158c37f6eSKOSAKI Motohiro 	 * This scanning priority is essentially the inverse of IO cost.
193258c37f6eSKOSAKI Motohiro 	 */
19333d58ab5cSKonstantin Khlebnikov 	anon_prio = vmscan_swappiness(sc);
193475b00af7SHugh Dickins 	file_prio = 200 - anon_prio;
193558c37f6eSKOSAKI Motohiro 
193658c37f6eSKOSAKI Motohiro 	/*
19374f98a2feSRik van Riel 	 * OK, so we have swap space and a fair amount of page cache
19384f98a2feSRik van Riel 	 * pages.  We use the recently rotated / recently scanned
19394f98a2feSRik van Riel 	 * ratios to determine how valuable each cache is.
19404f98a2feSRik van Riel 	 *
19414f98a2feSRik van Riel 	 * Because workloads change over time (and to avoid overflow)
19424f98a2feSRik van Riel 	 * we keep these statistics as a floating average, which ends
19434f98a2feSRik van Riel 	 * up weighing recent references more than old ones.
19444f98a2feSRik van Riel 	 *
19454f98a2feSRik van Riel 	 * anon in [0], file in [1]
19464f98a2feSRik van Riel 	 */
194790126375SKonstantin Khlebnikov 	spin_lock_irq(&zone->lru_lock);
194858c37f6eSKOSAKI Motohiro 	if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
19496e901571SKOSAKI Motohiro 		reclaim_stat->recent_scanned[0] /= 2;
19506e901571SKOSAKI Motohiro 		reclaim_stat->recent_rotated[0] /= 2;
19514f98a2feSRik van Riel 	}
19524f98a2feSRik van Riel 
19536e901571SKOSAKI Motohiro 	if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
19546e901571SKOSAKI Motohiro 		reclaim_stat->recent_scanned[1] /= 2;
19556e901571SKOSAKI Motohiro 		reclaim_stat->recent_rotated[1] /= 2;
19564f98a2feSRik van Riel 	}
19574f98a2feSRik van Riel 
19584f98a2feSRik van Riel 	/*
195900d8089cSRik van Riel 	 * The amount of pressure on anon vs file pages is inversely
196000d8089cSRik van Riel 	 * proportional to the fraction of recently scanned pages on
196100d8089cSRik van Riel 	 * each list that were recently referenced and in active use.
19624f98a2feSRik van Riel 	 */
1963fe35004fSSatoru Moriya 	ap = anon_prio * (reclaim_stat->recent_scanned[0] + 1);
19646e901571SKOSAKI Motohiro 	ap /= reclaim_stat->recent_rotated[0] + 1;
19654f98a2feSRik van Riel 
1966fe35004fSSatoru Moriya 	fp = file_prio * (reclaim_stat->recent_scanned[1] + 1);
19676e901571SKOSAKI Motohiro 	fp /= reclaim_stat->recent_rotated[1] + 1;
196890126375SKonstantin Khlebnikov 	spin_unlock_irq(&zone->lru_lock);
19694f98a2feSRik van Riel 
197076a33fc3SShaohua Li 	fraction[0] = ap;
197176a33fc3SShaohua Li 	fraction[1] = fp;
197276a33fc3SShaohua Li 	denominator = ap + fp + 1;
197376a33fc3SShaohua Li out:
19744111304dSHugh Dickins 	for_each_evictable_lru(lru) {
19754111304dSHugh Dickins 		int file = is_file_lru(lru);
1976d778df51SJohannes Weiner 		unsigned long size;
197776a33fc3SShaohua Li 		unsigned long scan;
197876a33fc3SShaohua Li 
1979d778df51SJohannes Weiner 		size = get_lru_size(lruvec, lru);
1980d778df51SJohannes Weiner 		scan = size >> sc->priority;
19819a265114SJohannes Weiner 
1982f11c0ca5SJohannes Weiner 		if (!scan && force_scan)
1983d778df51SJohannes Weiner 			scan = min(size, SWAP_CLUSTER_MAX);
19849a265114SJohannes Weiner 
19859a265114SJohannes Weiner 		switch (scan_balance) {
19869a265114SJohannes Weiner 		case SCAN_EQUAL:
19879a265114SJohannes Weiner 			/* Scan lists relative to size */
19889a265114SJohannes Weiner 			break;
19899a265114SJohannes Weiner 		case SCAN_FRACT:
19909a265114SJohannes Weiner 			/*
19919a265114SJohannes Weiner 			 * Scan types proportional to swappiness and
19929a265114SJohannes Weiner 			 * their relative recent reclaim efficiency.
19939a265114SJohannes Weiner 			 */
199476a33fc3SShaohua Li 			scan = div64_u64(scan * fraction[file], denominator);
19959a265114SJohannes Weiner 			break;
19969a265114SJohannes Weiner 		case SCAN_FILE:
19979a265114SJohannes Weiner 		case SCAN_ANON:
19989a265114SJohannes Weiner 			/* Scan one type exclusively */
19999a265114SJohannes Weiner 			if ((scan_balance == SCAN_FILE) != file)
20009a265114SJohannes Weiner 				scan = 0;
20019a265114SJohannes Weiner 			break;
20029a265114SJohannes Weiner 		default:
20039a265114SJohannes Weiner 			/* Look ma, no brain */
20049a265114SJohannes Weiner 			BUG();
20059a265114SJohannes Weiner 		}
20064111304dSHugh Dickins 		nr[lru] = scan;
200776a33fc3SShaohua Li 	}
20086e08a369SWu Fengguang }
20094f98a2feSRik van Riel 
20109b4f98cdSJohannes Weiner /*
20119b4f98cdSJohannes Weiner  * This is a basic per-zone page freer.  Used by both kswapd and direct reclaim.
20129b4f98cdSJohannes Weiner  */
20139b4f98cdSJohannes Weiner static void shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
20149b4f98cdSJohannes Weiner {
20159b4f98cdSJohannes Weiner 	unsigned long nr[NR_LRU_LISTS];
2016e82e0561SMel Gorman 	unsigned long targets[NR_LRU_LISTS];
20179b4f98cdSJohannes Weiner 	unsigned long nr_to_scan;
20189b4f98cdSJohannes Weiner 	enum lru_list lru;
20199b4f98cdSJohannes Weiner 	unsigned long nr_reclaimed = 0;
20209b4f98cdSJohannes Weiner 	unsigned long nr_to_reclaim = sc->nr_to_reclaim;
20219b4f98cdSJohannes Weiner 	struct blk_plug plug;
2022e82e0561SMel Gorman 	bool scan_adjusted = false;
20239b4f98cdSJohannes Weiner 
20249b4f98cdSJohannes Weiner 	get_scan_count(lruvec, sc, nr);
20259b4f98cdSJohannes Weiner 
2026e82e0561SMel Gorman 	/* Record the original scan target for proportional adjustments later */
2027e82e0561SMel Gorman 	memcpy(targets, nr, sizeof(nr));
2028e82e0561SMel Gorman 
20299b4f98cdSJohannes Weiner 	blk_start_plug(&plug);
20309b4f98cdSJohannes Weiner 	while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
20319b4f98cdSJohannes Weiner 					nr[LRU_INACTIVE_FILE]) {
2032e82e0561SMel Gorman 		unsigned long nr_anon, nr_file, percentage;
2033e82e0561SMel Gorman 		unsigned long nr_scanned;
2034e82e0561SMel Gorman 
20359b4f98cdSJohannes Weiner 		for_each_evictable_lru(lru) {
20369b4f98cdSJohannes Weiner 			if (nr[lru]) {
20379b4f98cdSJohannes Weiner 				nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
20389b4f98cdSJohannes Weiner 				nr[lru] -= nr_to_scan;
20399b4f98cdSJohannes Weiner 
20409b4f98cdSJohannes Weiner 				nr_reclaimed += shrink_list(lru, nr_to_scan,
20419b4f98cdSJohannes Weiner 							    lruvec, sc);
20429b4f98cdSJohannes Weiner 			}
20439b4f98cdSJohannes Weiner 		}
2044e82e0561SMel Gorman 
2045e82e0561SMel Gorman 		if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
2046e82e0561SMel Gorman 			continue;
2047e82e0561SMel Gorman 
20489b4f98cdSJohannes Weiner 		/*
2049e82e0561SMel Gorman 		 * For global direct reclaim, reclaim only the number of pages
2050e82e0561SMel Gorman 		 * requested. Less care is taken to scan proportionally as it
2051e82e0561SMel Gorman 		 * is more important to minimise direct reclaim stall latency
2052e82e0561SMel Gorman 		 * than it is to properly age the LRU lists.
20539b4f98cdSJohannes Weiner 		 */
2054e82e0561SMel Gorman 		if (global_reclaim(sc) && !current_is_kswapd())
20559b4f98cdSJohannes Weiner 			break;
2056e82e0561SMel Gorman 
2057e82e0561SMel Gorman 		/*
2058e82e0561SMel Gorman 		 * For kswapd and memcg, reclaim at least the number of pages
2059e82e0561SMel Gorman 		 * requested. Ensure that the anon and file LRUs shrink
2060e82e0561SMel Gorman 		 * proportionally what was requested by get_scan_count(). We
2061e82e0561SMel Gorman 		 * stop reclaiming one LRU and reduce the amount scanning
2062e82e0561SMel Gorman 		 * proportional to the original scan target.
2063e82e0561SMel Gorman 		 */
2064e82e0561SMel Gorman 		nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
2065e82e0561SMel Gorman 		nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
2066e82e0561SMel Gorman 
2067e82e0561SMel Gorman 		if (nr_file > nr_anon) {
2068e82e0561SMel Gorman 			unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
2069e82e0561SMel Gorman 						targets[LRU_ACTIVE_ANON] + 1;
2070e82e0561SMel Gorman 			lru = LRU_BASE;
2071e82e0561SMel Gorman 			percentage = nr_anon * 100 / scan_target;
2072e82e0561SMel Gorman 		} else {
2073e82e0561SMel Gorman 			unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
2074e82e0561SMel Gorman 						targets[LRU_ACTIVE_FILE] + 1;
2075e82e0561SMel Gorman 			lru = LRU_FILE;
2076e82e0561SMel Gorman 			percentage = nr_file * 100 / scan_target;
2077e82e0561SMel Gorman 		}
2078e82e0561SMel Gorman 
2079e82e0561SMel Gorman 		/* Stop scanning the smaller of the LRU */
2080e82e0561SMel Gorman 		nr[lru] = 0;
2081e82e0561SMel Gorman 		nr[lru + LRU_ACTIVE] = 0;
2082e82e0561SMel Gorman 
2083e82e0561SMel Gorman 		/*
2084e82e0561SMel Gorman 		 * Recalculate the other LRU scan count based on its original
2085e82e0561SMel Gorman 		 * scan target and the percentage scanning already complete
2086e82e0561SMel Gorman 		 */
2087e82e0561SMel Gorman 		lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
2088e82e0561SMel Gorman 		nr_scanned = targets[lru] - nr[lru];
2089e82e0561SMel Gorman 		nr[lru] = targets[lru] * (100 - percentage) / 100;
2090e82e0561SMel Gorman 		nr[lru] -= min(nr[lru], nr_scanned);
2091e82e0561SMel Gorman 
2092e82e0561SMel Gorman 		lru += LRU_ACTIVE;
2093e82e0561SMel Gorman 		nr_scanned = targets[lru] - nr[lru];
2094e82e0561SMel Gorman 		nr[lru] = targets[lru] * (100 - percentage) / 100;
2095e82e0561SMel Gorman 		nr[lru] -= min(nr[lru], nr_scanned);
2096e82e0561SMel Gorman 
2097e82e0561SMel Gorman 		scan_adjusted = true;
20989b4f98cdSJohannes Weiner 	}
20999b4f98cdSJohannes Weiner 	blk_finish_plug(&plug);
21009b4f98cdSJohannes Weiner 	sc->nr_reclaimed += nr_reclaimed;
21019b4f98cdSJohannes Weiner 
21029b4f98cdSJohannes Weiner 	/*
21039b4f98cdSJohannes Weiner 	 * Even if we did not try to evict anon pages at all, we want to
21049b4f98cdSJohannes Weiner 	 * rebalance the anon lru active/inactive ratio.
21059b4f98cdSJohannes Weiner 	 */
21069b4f98cdSJohannes Weiner 	if (inactive_anon_is_low(lruvec))
21079b4f98cdSJohannes Weiner 		shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
21089b4f98cdSJohannes Weiner 				   sc, LRU_ACTIVE_ANON);
21099b4f98cdSJohannes Weiner 
21109b4f98cdSJohannes Weiner 	throttle_vm_writeout(sc->gfp_mask);
21119b4f98cdSJohannes Weiner }
21129b4f98cdSJohannes Weiner 
211323b9da55SMel Gorman /* Use reclaim/compaction for costly allocs or under memory pressure */
21149e3b2f8cSKonstantin Khlebnikov static bool in_reclaim_compaction(struct scan_control *sc)
211523b9da55SMel Gorman {
2116d84da3f9SKirill A. Shutemov 	if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
211723b9da55SMel Gorman 			(sc->order > PAGE_ALLOC_COSTLY_ORDER ||
21189e3b2f8cSKonstantin Khlebnikov 			 sc->priority < DEF_PRIORITY - 2))
211923b9da55SMel Gorman 		return true;
212023b9da55SMel Gorman 
212123b9da55SMel Gorman 	return false;
212223b9da55SMel Gorman }
212323b9da55SMel Gorman 
21244f98a2feSRik van Riel /*
212523b9da55SMel Gorman  * Reclaim/compaction is used for high-order allocation requests. It reclaims
212623b9da55SMel Gorman  * order-0 pages before compacting the zone. should_continue_reclaim() returns
212723b9da55SMel Gorman  * true if more pages should be reclaimed such that when the page allocator
212823b9da55SMel Gorman  * calls try_to_compact_zone() that it will have enough free pages to succeed.
212923b9da55SMel Gorman  * It will give up earlier than that if there is difficulty reclaiming pages.
21303e7d3449SMel Gorman  */
21319b4f98cdSJohannes Weiner static inline bool should_continue_reclaim(struct zone *zone,
21323e7d3449SMel Gorman 					unsigned long nr_reclaimed,
21333e7d3449SMel Gorman 					unsigned long nr_scanned,
21343e7d3449SMel Gorman 					struct scan_control *sc)
21353e7d3449SMel Gorman {
21363e7d3449SMel Gorman 	unsigned long pages_for_compaction;
21373e7d3449SMel Gorman 	unsigned long inactive_lru_pages;
21383e7d3449SMel Gorman 
21393e7d3449SMel Gorman 	/* If not in reclaim/compaction mode, stop */
21409e3b2f8cSKonstantin Khlebnikov 	if (!in_reclaim_compaction(sc))
21413e7d3449SMel Gorman 		return false;
21423e7d3449SMel Gorman 
21432876592fSMel Gorman 	/* Consider stopping depending on scan and reclaim activity */
21442876592fSMel Gorman 	if (sc->gfp_mask & __GFP_REPEAT) {
21453e7d3449SMel Gorman 		/*
21462876592fSMel Gorman 		 * For __GFP_REPEAT allocations, stop reclaiming if the
21472876592fSMel Gorman 		 * full LRU list has been scanned and we are still failing
21482876592fSMel Gorman 		 * to reclaim pages. This full LRU scan is potentially
21492876592fSMel Gorman 		 * expensive but a __GFP_REPEAT caller really wants to succeed
21503e7d3449SMel Gorman 		 */
21513e7d3449SMel Gorman 		if (!nr_reclaimed && !nr_scanned)
21523e7d3449SMel Gorman 			return false;
21532876592fSMel Gorman 	} else {
21542876592fSMel Gorman 		/*
21552876592fSMel Gorman 		 * For non-__GFP_REPEAT allocations which can presumably
21562876592fSMel Gorman 		 * fail without consequence, stop if we failed to reclaim
21572876592fSMel Gorman 		 * any pages from the last SWAP_CLUSTER_MAX number of
21582876592fSMel Gorman 		 * pages that were scanned. This will return to the
21592876592fSMel Gorman 		 * caller faster at the risk reclaim/compaction and
21602876592fSMel Gorman 		 * the resulting allocation attempt fails
21612876592fSMel Gorman 		 */
21622876592fSMel Gorman 		if (!nr_reclaimed)
21632876592fSMel Gorman 			return false;
21642876592fSMel Gorman 	}
21653e7d3449SMel Gorman 
21663e7d3449SMel Gorman 	/*
21673e7d3449SMel Gorman 	 * If we have not reclaimed enough pages for compaction and the
21683e7d3449SMel Gorman 	 * inactive lists are large enough, continue reclaiming
21693e7d3449SMel Gorman 	 */
21703e7d3449SMel Gorman 	pages_for_compaction = (2UL << sc->order);
21719b4f98cdSJohannes Weiner 	inactive_lru_pages = zone_page_state(zone, NR_INACTIVE_FILE);
2172ec8acf20SShaohua Li 	if (get_nr_swap_pages() > 0)
21739b4f98cdSJohannes Weiner 		inactive_lru_pages += zone_page_state(zone, NR_INACTIVE_ANON);
21743e7d3449SMel Gorman 	if (sc->nr_reclaimed < pages_for_compaction &&
21753e7d3449SMel Gorman 			inactive_lru_pages > pages_for_compaction)
21763e7d3449SMel Gorman 		return true;
21773e7d3449SMel Gorman 
21783e7d3449SMel Gorman 	/* If compaction would go ahead or the allocation would succeed, stop */
21799b4f98cdSJohannes Weiner 	switch (compaction_suitable(zone, sc->order)) {
21803e7d3449SMel Gorman 	case COMPACT_PARTIAL:
21813e7d3449SMel Gorman 	case COMPACT_CONTINUE:
21823e7d3449SMel Gorman 		return false;
21833e7d3449SMel Gorman 	default:
21843e7d3449SMel Gorman 		return true;
21853e7d3449SMel Gorman 	}
21863e7d3449SMel Gorman }
21873e7d3449SMel Gorman 
21880608f43dSAndrew Morton static void shrink_zone(struct zone *zone, struct scan_control *sc)
2189f16015fbSJohannes Weiner {
21909b4f98cdSJohannes Weiner 	unsigned long nr_reclaimed, nr_scanned;
21919b4f98cdSJohannes Weiner 
21929b4f98cdSJohannes Weiner 	do {
21935660048cSJohannes Weiner 		struct mem_cgroup *root = sc->target_mem_cgroup;
21945660048cSJohannes Weiner 		struct mem_cgroup_reclaim_cookie reclaim = {
21955660048cSJohannes Weiner 			.zone = zone,
21969e3b2f8cSKonstantin Khlebnikov 			.priority = sc->priority,
21975660048cSJohannes Weiner 		};
2198694fbc0fSAndrew Morton 		struct mem_cgroup *memcg;
21995660048cSJohannes Weiner 
22009b4f98cdSJohannes Weiner 		nr_reclaimed = sc->nr_reclaimed;
22019b4f98cdSJohannes Weiner 		nr_scanned = sc->nr_scanned;
22029b4f98cdSJohannes Weiner 
2203694fbc0fSAndrew Morton 		memcg = mem_cgroup_iter(root, NULL, &reclaim);
2204694fbc0fSAndrew Morton 		do {
22059b4f98cdSJohannes Weiner 			struct lruvec *lruvec;
22069b4f98cdSJohannes Weiner 
22079b4f98cdSJohannes Weiner 			lruvec = mem_cgroup_zone_lruvec(zone, memcg);
22085660048cSJohannes Weiner 
2209f9be23d6SKonstantin Khlebnikov 			shrink_lruvec(lruvec, sc);
2210f9be23d6SKonstantin Khlebnikov 
22115660048cSJohannes Weiner 			/*
2212a394cb8eSMichal Hocko 			 * Direct reclaim and kswapd have to scan all memory
2213a394cb8eSMichal Hocko 			 * cgroups to fulfill the overall scan target for the
22149b4f98cdSJohannes Weiner 			 * zone.
2215a394cb8eSMichal Hocko 			 *
2216a394cb8eSMichal Hocko 			 * Limit reclaim, on the other hand, only cares about
2217a394cb8eSMichal Hocko 			 * nr_to_reclaim pages to be reclaimed and it will
2218a394cb8eSMichal Hocko 			 * retry with decreasing priority if one round over the
2219a394cb8eSMichal Hocko 			 * whole hierarchy is not sufficient.
22205660048cSJohannes Weiner 			 */
2221a394cb8eSMichal Hocko 			if (!global_reclaim(sc) &&
2222a394cb8eSMichal Hocko 					sc->nr_reclaimed >= sc->nr_to_reclaim) {
22235660048cSJohannes Weiner 				mem_cgroup_iter_break(root, memcg);
22245660048cSJohannes Weiner 				break;
22255660048cSJohannes Weiner 			}
2226694fbc0fSAndrew Morton 			memcg = mem_cgroup_iter(root, memcg, &reclaim);
2227694fbc0fSAndrew Morton 		} while (memcg);
222870ddf637SAnton Vorontsov 
222970ddf637SAnton Vorontsov 		vmpressure(sc->gfp_mask, sc->target_mem_cgroup,
223070ddf637SAnton Vorontsov 			   sc->nr_scanned - nr_scanned,
223170ddf637SAnton Vorontsov 			   sc->nr_reclaimed - nr_reclaimed);
223270ddf637SAnton Vorontsov 
22339b4f98cdSJohannes Weiner 	} while (should_continue_reclaim(zone, sc->nr_reclaimed - nr_reclaimed,
22349b4f98cdSJohannes Weiner 					 sc->nr_scanned - nr_scanned, sc));
2235f16015fbSJohannes Weiner }
2236f16015fbSJohannes Weiner 
2237fe4b1b24SMel Gorman /* Returns true if compaction should go ahead for a high-order request */
2238fe4b1b24SMel Gorman static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
2239fe4b1b24SMel Gorman {
2240fe4b1b24SMel Gorman 	unsigned long balance_gap, watermark;
2241fe4b1b24SMel Gorman 	bool watermark_ok;
2242fe4b1b24SMel Gorman 
2243fe4b1b24SMel Gorman 	/* Do not consider compaction for orders reclaim is meant to satisfy */
2244fe4b1b24SMel Gorman 	if (sc->order <= PAGE_ALLOC_COSTLY_ORDER)
2245fe4b1b24SMel Gorman 		return false;
2246fe4b1b24SMel Gorman 
2247fe4b1b24SMel Gorman 	/*
2248fe4b1b24SMel Gorman 	 * Compaction takes time to run and there are potentially other
2249fe4b1b24SMel Gorman 	 * callers using the pages just freed. Continue reclaiming until
2250fe4b1b24SMel Gorman 	 * there is a buffer of free pages available to give compaction
2251fe4b1b24SMel Gorman 	 * a reasonable chance of completing and allocating the page
2252fe4b1b24SMel Gorman 	 */
2253fe4b1b24SMel Gorman 	balance_gap = min(low_wmark_pages(zone),
2254b40da049SJiang Liu 		(zone->managed_pages + KSWAPD_ZONE_BALANCE_GAP_RATIO-1) /
2255fe4b1b24SMel Gorman 			KSWAPD_ZONE_BALANCE_GAP_RATIO);
2256fe4b1b24SMel Gorman 	watermark = high_wmark_pages(zone) + balance_gap + (2UL << sc->order);
2257fe4b1b24SMel Gorman 	watermark_ok = zone_watermark_ok_safe(zone, 0, watermark, 0, 0);
2258fe4b1b24SMel Gorman 
2259fe4b1b24SMel Gorman 	/*
2260fe4b1b24SMel Gorman 	 * If compaction is deferred, reclaim up to a point where
2261fe4b1b24SMel Gorman 	 * compaction will have a chance of success when re-enabled
2262fe4b1b24SMel Gorman 	 */
2263aff62249SRik van Riel 	if (compaction_deferred(zone, sc->order))
2264fe4b1b24SMel Gorman 		return watermark_ok;
2265fe4b1b24SMel Gorman 
2266fe4b1b24SMel Gorman 	/* If compaction is not ready to start, keep reclaiming */
2267fe4b1b24SMel Gorman 	if (!compaction_suitable(zone, sc->order))
2268fe4b1b24SMel Gorman 		return false;
2269fe4b1b24SMel Gorman 
2270fe4b1b24SMel Gorman 	return watermark_ok;
2271fe4b1b24SMel Gorman }
2272fe4b1b24SMel Gorman 
22731da177e4SLinus Torvalds /*
22741da177e4SLinus Torvalds  * This is the direct reclaim path, for page-allocating processes.  We only
22751da177e4SLinus Torvalds  * try to reclaim pages from zones which will satisfy the caller's allocation
22761da177e4SLinus Torvalds  * request.
22771da177e4SLinus Torvalds  *
227841858966SMel Gorman  * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
227941858966SMel Gorman  * Because:
22801da177e4SLinus Torvalds  * a) The caller may be trying to free *extra* pages to satisfy a higher-order
22811da177e4SLinus Torvalds  *    allocation or
228241858966SMel Gorman  * b) The target zone may be at high_wmark_pages(zone) but the lower zones
228341858966SMel Gorman  *    must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
228441858966SMel Gorman  *    zone defense algorithm.
22851da177e4SLinus Torvalds  *
22861da177e4SLinus Torvalds  * If a zone is deemed to be full of pinned pages then just give it a light
22871da177e4SLinus Torvalds  * scan then give up on it.
2288e0c23279SMel Gorman  *
2289e0c23279SMel Gorman  * This function returns true if a zone is being reclaimed for a costly
2290fe4b1b24SMel Gorman  * high-order allocation and compaction is ready to begin. This indicates to
22910cee34fdSMel Gorman  * the caller that it should consider retrying the allocation instead of
22920cee34fdSMel Gorman  * further reclaim.
22931da177e4SLinus Torvalds  */
22949e3b2f8cSKonstantin Khlebnikov static bool shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
22951da177e4SLinus Torvalds {
2296dd1a239fSMel Gorman 	struct zoneref *z;
229754a6eb5cSMel Gorman 	struct zone *zone;
22980608f43dSAndrew Morton 	unsigned long nr_soft_reclaimed;
22990608f43dSAndrew Morton 	unsigned long nr_soft_scanned;
23000cee34fdSMel Gorman 	bool aborted_reclaim = false;
23011cfb419bSKAMEZAWA Hiroyuki 
2302cc715d99SMel Gorman 	/*
2303cc715d99SMel Gorman 	 * If the number of buffer_heads in the machine exceeds the maximum
2304cc715d99SMel Gorman 	 * allowed level, force direct reclaim to scan the highmem zone as
2305cc715d99SMel Gorman 	 * highmem pages could be pinning lowmem pages storing buffer_heads
2306cc715d99SMel Gorman 	 */
2307cc715d99SMel Gorman 	if (buffer_heads_over_limit)
2308cc715d99SMel Gorman 		sc->gfp_mask |= __GFP_HIGHMEM;
2309cc715d99SMel Gorman 
2310d4debc66SMel Gorman 	for_each_zone_zonelist_nodemask(zone, z, zonelist,
2311d4debc66SMel Gorman 					gfp_zone(sc->gfp_mask), sc->nodemask) {
2312f3fe6512SCon Kolivas 		if (!populated_zone(zone))
23131da177e4SLinus Torvalds 			continue;
23141cfb419bSKAMEZAWA Hiroyuki 		/*
23151cfb419bSKAMEZAWA Hiroyuki 		 * Take care memory controller reclaiming has small influence
23161cfb419bSKAMEZAWA Hiroyuki 		 * to global LRU.
23171cfb419bSKAMEZAWA Hiroyuki 		 */
231889b5fae5SJohannes Weiner 		if (global_reclaim(sc)) {
231902a0e53dSPaul Jackson 			if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
23201da177e4SLinus Torvalds 				continue;
23216e543d57SLisa Du 			if (sc->priority != DEF_PRIORITY &&
23226e543d57SLisa Du 			    !zone_reclaimable(zone))
23231da177e4SLinus Torvalds 				continue;	/* Let kswapd poll it */
2324d84da3f9SKirill A. Shutemov 			if (IS_ENABLED(CONFIG_COMPACTION)) {
2325e0887c19SRik van Riel 				/*
2326e0c23279SMel Gorman 				 * If we already have plenty of memory free for
2327e0c23279SMel Gorman 				 * compaction in this zone, don't free any more.
2328e0c23279SMel Gorman 				 * Even though compaction is invoked for any
2329e0c23279SMel Gorman 				 * non-zero order, only frequent costly order
2330e0c23279SMel Gorman 				 * reclamation is disruptive enough to become a
2331c7cfa37bSCopot Alexandru 				 * noticeable problem, like transparent huge
2332c7cfa37bSCopot Alexandru 				 * page allocations.
2333e0887c19SRik van Riel 				 */
2334fe4b1b24SMel Gorman 				if (compaction_ready(zone, sc)) {
23350cee34fdSMel Gorman 					aborted_reclaim = true;
2336e0887c19SRik van Riel 					continue;
2337e0887c19SRik van Riel 				}
2338e0c23279SMel Gorman 			}
23390608f43dSAndrew Morton 			/*
23400608f43dSAndrew Morton 			 * This steals pages from memory cgroups over softlimit
23410608f43dSAndrew Morton 			 * and returns the number of reclaimed pages and
23420608f43dSAndrew Morton 			 * scanned pages. This works for global memory pressure
23430608f43dSAndrew Morton 			 * and balancing, not for a memcg's limit.
23440608f43dSAndrew Morton 			 */
23450608f43dSAndrew Morton 			nr_soft_scanned = 0;
23460608f43dSAndrew Morton 			nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone,
23470608f43dSAndrew Morton 						sc->order, sc->gfp_mask,
23480608f43dSAndrew Morton 						&nr_soft_scanned);
23490608f43dSAndrew Morton 			sc->nr_reclaimed += nr_soft_reclaimed;
23500608f43dSAndrew Morton 			sc->nr_scanned += nr_soft_scanned;
2351ac34a1a3SKAMEZAWA Hiroyuki 			/* need some check for avoid more shrink_zone() */
2352ac34a1a3SKAMEZAWA Hiroyuki 		}
2353d149e3b2SYing Han 
23549e3b2f8cSKonstantin Khlebnikov 		shrink_zone(zone, sc);
23551da177e4SLinus Torvalds 	}
2356e0c23279SMel Gorman 
23570cee34fdSMel Gorman 	return aborted_reclaim;
2358d1908362SMinchan Kim }
2359d1908362SMinchan Kim 
2360929bea7cSKOSAKI Motohiro /* All zones in zonelist are unreclaimable? */
2361d1908362SMinchan Kim static bool all_unreclaimable(struct zonelist *zonelist,
2362d1908362SMinchan Kim 		struct scan_control *sc)
2363d1908362SMinchan Kim {
2364d1908362SMinchan Kim 	struct zoneref *z;
2365d1908362SMinchan Kim 	struct zone *zone;
2366d1908362SMinchan Kim 
2367d1908362SMinchan Kim 	for_each_zone_zonelist_nodemask(zone, z, zonelist,
2368d1908362SMinchan Kim 			gfp_zone(sc->gfp_mask), sc->nodemask) {
2369d1908362SMinchan Kim 		if (!populated_zone(zone))
2370d1908362SMinchan Kim 			continue;
2371d1908362SMinchan Kim 		if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
2372d1908362SMinchan Kim 			continue;
23736e543d57SLisa Du 		if (zone_reclaimable(zone))
2374929bea7cSKOSAKI Motohiro 			return false;
2375d1908362SMinchan Kim 	}
2376d1908362SMinchan Kim 
2377929bea7cSKOSAKI Motohiro 	return true;
23781da177e4SLinus Torvalds }
23791da177e4SLinus Torvalds 
23801da177e4SLinus Torvalds /*
23811da177e4SLinus Torvalds  * This is the main entry point to direct page reclaim.
23821da177e4SLinus Torvalds  *
23831da177e4SLinus Torvalds  * If a full scan of the inactive list fails to free enough memory then we
23841da177e4SLinus Torvalds  * are "out of memory" and something needs to be killed.
23851da177e4SLinus Torvalds  *
23861da177e4SLinus Torvalds  * If the caller is !__GFP_FS then the probability of a failure is reasonably
23871da177e4SLinus Torvalds  * high - the zone may be full of dirty or under-writeback pages, which this
23885b0830cbSJens Axboe  * caller can't do much about.  We kick the writeback threads and take explicit
23895b0830cbSJens Axboe  * naps in the hope that some of these pages can be written.  But if the
23905b0830cbSJens Axboe  * allocating task holds filesystem locks which prevent writeout this might not
23915b0830cbSJens Axboe  * work, and the allocation attempt will fail.
2392a41f24eaSNishanth Aravamudan  *
2393a41f24eaSNishanth Aravamudan  * returns:	0, if no pages reclaimed
2394a41f24eaSNishanth Aravamudan  * 		else, the number of pages reclaimed
23951da177e4SLinus Torvalds  */
2396dac1d27bSMel Gorman static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
2397a09ed5e0SYing Han 					struct scan_control *sc,
2398a09ed5e0SYing Han 					struct shrink_control *shrink)
23991da177e4SLinus Torvalds {
240069e05944SAndrew Morton 	unsigned long total_scanned = 0;
24011da177e4SLinus Torvalds 	struct reclaim_state *reclaim_state = current->reclaim_state;
2402dd1a239fSMel Gorman 	struct zoneref *z;
240354a6eb5cSMel Gorman 	struct zone *zone;
240422fba335SKOSAKI Motohiro 	unsigned long writeback_threshold;
24050cee34fdSMel Gorman 	bool aborted_reclaim;
24061da177e4SLinus Torvalds 
2407873b4771SKeika Kobayashi 	delayacct_freepages_start();
2408873b4771SKeika Kobayashi 
240989b5fae5SJohannes Weiner 	if (global_reclaim(sc))
2410f8891e5eSChristoph Lameter 		count_vm_event(ALLOCSTALL);
24111da177e4SLinus Torvalds 
24129e3b2f8cSKonstantin Khlebnikov 	do {
241370ddf637SAnton Vorontsov 		vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
241470ddf637SAnton Vorontsov 				sc->priority);
241566e1707bSBalbir Singh 		sc->nr_scanned = 0;
24169e3b2f8cSKonstantin Khlebnikov 		aborted_reclaim = shrink_zones(zonelist, sc);
2417e0c23279SMel Gorman 
241866e1707bSBalbir Singh 		/*
24195a1c9cbcSMel Gorman 		 * Don't shrink slabs when reclaiming memory from over limit
24205a1c9cbcSMel Gorman 		 * cgroups but do shrink slab at least once when aborting
24215a1c9cbcSMel Gorman 		 * reclaim for compaction to avoid unevenly scanning file/anon
24225a1c9cbcSMel Gorman 		 * LRU pages over slab pages.
242366e1707bSBalbir Singh 		 */
242489b5fae5SJohannes Weiner 		if (global_reclaim(sc)) {
2425c6a8a8c5SKOSAKI Motohiro 			unsigned long lru_pages = 0;
24260ce3d744SDave Chinner 
24270ce3d744SDave Chinner 			nodes_clear(shrink->nodes_to_scan);
2428d4debc66SMel Gorman 			for_each_zone_zonelist(zone, z, zonelist,
2429d4debc66SMel Gorman 					gfp_zone(sc->gfp_mask)) {
2430c6a8a8c5SKOSAKI Motohiro 				if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
2431c6a8a8c5SKOSAKI Motohiro 					continue;
2432c6a8a8c5SKOSAKI Motohiro 
2433c6a8a8c5SKOSAKI Motohiro 				lru_pages += zone_reclaimable_pages(zone);
24340ce3d744SDave Chinner 				node_set(zone_to_nid(zone),
24350ce3d744SDave Chinner 					 shrink->nodes_to_scan);
2436c6a8a8c5SKOSAKI Motohiro 			}
2437c6a8a8c5SKOSAKI Motohiro 
24381495f230SYing Han 			shrink_slab(shrink, sc->nr_scanned, lru_pages);
24391da177e4SLinus Torvalds 			if (reclaim_state) {
2440a79311c1SRik van Riel 				sc->nr_reclaimed += reclaim_state->reclaimed_slab;
24411da177e4SLinus Torvalds 				reclaim_state->reclaimed_slab = 0;
24421da177e4SLinus Torvalds 			}
244391a45470SKAMEZAWA Hiroyuki 		}
244466e1707bSBalbir Singh 		total_scanned += sc->nr_scanned;
2445bb21c7ceSKOSAKI Motohiro 		if (sc->nr_reclaimed >= sc->nr_to_reclaim)
24461da177e4SLinus Torvalds 			goto out;
24471da177e4SLinus Torvalds 
24481da177e4SLinus Torvalds 		/*
24490e50ce3bSMinchan Kim 		 * If we're getting trouble reclaiming, start doing
24500e50ce3bSMinchan Kim 		 * writepage even in laptop mode.
24510e50ce3bSMinchan Kim 		 */
24520e50ce3bSMinchan Kim 		if (sc->priority < DEF_PRIORITY - 2)
24530e50ce3bSMinchan Kim 			sc->may_writepage = 1;
24540e50ce3bSMinchan Kim 
24550e50ce3bSMinchan Kim 		/*
24561da177e4SLinus Torvalds 		 * Try to write back as many pages as we just scanned.  This
24571da177e4SLinus Torvalds 		 * tends to cause slow streaming writers to write data to the
24581da177e4SLinus Torvalds 		 * disk smoothly, at the dirtying rate, which is nice.   But
24591da177e4SLinus Torvalds 		 * that's undesirable in laptop mode, where we *want* lumpy
24601da177e4SLinus Torvalds 		 * writeout.  So in laptop mode, write out the whole world.
24611da177e4SLinus Torvalds 		 */
246222fba335SKOSAKI Motohiro 		writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
246322fba335SKOSAKI Motohiro 		if (total_scanned > writeback_threshold) {
24640e175a18SCurt Wohlgemuth 			wakeup_flusher_threads(laptop_mode ? 0 : total_scanned,
24650e175a18SCurt Wohlgemuth 						WB_REASON_TRY_TO_FREE_PAGES);
246666e1707bSBalbir Singh 			sc->may_writepage = 1;
24671da177e4SLinus Torvalds 		}
24685a1c9cbcSMel Gorman 	} while (--sc->priority >= 0 && !aborted_reclaim);
2469bb21c7ceSKOSAKI Motohiro 
24701da177e4SLinus Torvalds out:
2471873b4771SKeika Kobayashi 	delayacct_freepages_end();
2472873b4771SKeika Kobayashi 
2473bb21c7ceSKOSAKI Motohiro 	if (sc->nr_reclaimed)
2474bb21c7ceSKOSAKI Motohiro 		return sc->nr_reclaimed;
2475bb21c7ceSKOSAKI Motohiro 
2476929bea7cSKOSAKI Motohiro 	/*
2477929bea7cSKOSAKI Motohiro 	 * As hibernation is going on, kswapd is freezed so that it can't mark
2478929bea7cSKOSAKI Motohiro 	 * the zone into all_unreclaimable. Thus bypassing all_unreclaimable
2479929bea7cSKOSAKI Motohiro 	 * check.
2480929bea7cSKOSAKI Motohiro 	 */
2481929bea7cSKOSAKI Motohiro 	if (oom_killer_disabled)
2482929bea7cSKOSAKI Motohiro 		return 0;
2483929bea7cSKOSAKI Motohiro 
24840cee34fdSMel Gorman 	/* Aborted reclaim to try compaction? don't OOM, then */
24850cee34fdSMel Gorman 	if (aborted_reclaim)
24867335084dSMel Gorman 		return 1;
24877335084dSMel Gorman 
2488bb21c7ceSKOSAKI Motohiro 	/* top priority shrink_zones still had more to do? don't OOM, then */
248989b5fae5SJohannes Weiner 	if (global_reclaim(sc) && !all_unreclaimable(zonelist, sc))
2490bb21c7ceSKOSAKI Motohiro 		return 1;
2491bb21c7ceSKOSAKI Motohiro 
2492bb21c7ceSKOSAKI Motohiro 	return 0;
24931da177e4SLinus Torvalds }
24941da177e4SLinus Torvalds 
24955515061dSMel Gorman static bool pfmemalloc_watermark_ok(pg_data_t *pgdat)
24965515061dSMel Gorman {
24975515061dSMel Gorman 	struct zone *zone;
24985515061dSMel Gorman 	unsigned long pfmemalloc_reserve = 0;
24995515061dSMel Gorman 	unsigned long free_pages = 0;
25005515061dSMel Gorman 	int i;
25015515061dSMel Gorman 	bool wmark_ok;
25025515061dSMel Gorman 
25035515061dSMel Gorman 	for (i = 0; i <= ZONE_NORMAL; i++) {
25045515061dSMel Gorman 		zone = &pgdat->node_zones[i];
25055515061dSMel Gorman 		pfmemalloc_reserve += min_wmark_pages(zone);
25065515061dSMel Gorman 		free_pages += zone_page_state(zone, NR_FREE_PAGES);
25075515061dSMel Gorman 	}
25085515061dSMel Gorman 
25095515061dSMel Gorman 	wmark_ok = free_pages > pfmemalloc_reserve / 2;
25105515061dSMel Gorman 
25115515061dSMel Gorman 	/* kswapd must be awake if processes are being throttled */
25125515061dSMel Gorman 	if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
25135515061dSMel Gorman 		pgdat->classzone_idx = min(pgdat->classzone_idx,
25145515061dSMel Gorman 						(enum zone_type)ZONE_NORMAL);
25155515061dSMel Gorman 		wake_up_interruptible(&pgdat->kswapd_wait);
25165515061dSMel Gorman 	}
25175515061dSMel Gorman 
25185515061dSMel Gorman 	return wmark_ok;
25195515061dSMel Gorman }
25205515061dSMel Gorman 
25215515061dSMel Gorman /*
25225515061dSMel Gorman  * Throttle direct reclaimers if backing storage is backed by the network
25235515061dSMel Gorman  * and the PFMEMALLOC reserve for the preferred node is getting dangerously
25245515061dSMel Gorman  * depleted. kswapd will continue to make progress and wake the processes
252550694c28SMel Gorman  * when the low watermark is reached.
252650694c28SMel Gorman  *
252750694c28SMel Gorman  * Returns true if a fatal signal was delivered during throttling. If this
252850694c28SMel Gorman  * happens, the page allocator should not consider triggering the OOM killer.
25295515061dSMel Gorman  */
253050694c28SMel Gorman static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
25315515061dSMel Gorman 					nodemask_t *nodemask)
25325515061dSMel Gorman {
25335515061dSMel Gorman 	struct zone *zone;
25345515061dSMel Gorman 	int high_zoneidx = gfp_zone(gfp_mask);
25355515061dSMel Gorman 	pg_data_t *pgdat;
25365515061dSMel Gorman 
25375515061dSMel Gorman 	/*
25385515061dSMel Gorman 	 * Kernel threads should not be throttled as they may be indirectly
25395515061dSMel Gorman 	 * responsible for cleaning pages necessary for reclaim to make forward
25405515061dSMel Gorman 	 * progress. kjournald for example may enter direct reclaim while
25415515061dSMel Gorman 	 * committing a transaction where throttling it could forcing other
25425515061dSMel Gorman 	 * processes to block on log_wait_commit().
25435515061dSMel Gorman 	 */
25445515061dSMel Gorman 	if (current->flags & PF_KTHREAD)
254550694c28SMel Gorman 		goto out;
254650694c28SMel Gorman 
254750694c28SMel Gorman 	/*
254850694c28SMel Gorman 	 * If a fatal signal is pending, this process should not throttle.
254950694c28SMel Gorman 	 * It should return quickly so it can exit and free its memory
255050694c28SMel Gorman 	 */
255150694c28SMel Gorman 	if (fatal_signal_pending(current))
255250694c28SMel Gorman 		goto out;
25535515061dSMel Gorman 
25545515061dSMel Gorman 	/* Check if the pfmemalloc reserves are ok */
25555515061dSMel Gorman 	first_zones_zonelist(zonelist, high_zoneidx, NULL, &zone);
25565515061dSMel Gorman 	pgdat = zone->zone_pgdat;
25575515061dSMel Gorman 	if (pfmemalloc_watermark_ok(pgdat))
255850694c28SMel Gorman 		goto out;
25595515061dSMel Gorman 
256068243e76SMel Gorman 	/* Account for the throttling */
256168243e76SMel Gorman 	count_vm_event(PGSCAN_DIRECT_THROTTLE);
256268243e76SMel Gorman 
25635515061dSMel Gorman 	/*
25645515061dSMel Gorman 	 * If the caller cannot enter the filesystem, it's possible that it
25655515061dSMel Gorman 	 * is due to the caller holding an FS lock or performing a journal
25665515061dSMel Gorman 	 * transaction in the case of a filesystem like ext[3|4]. In this case,
25675515061dSMel Gorman 	 * it is not safe to block on pfmemalloc_wait as kswapd could be
25685515061dSMel Gorman 	 * blocked waiting on the same lock. Instead, throttle for up to a
25695515061dSMel Gorman 	 * second before continuing.
25705515061dSMel Gorman 	 */
25715515061dSMel Gorman 	if (!(gfp_mask & __GFP_FS)) {
25725515061dSMel Gorman 		wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
25735515061dSMel Gorman 			pfmemalloc_watermark_ok(pgdat), HZ);
257450694c28SMel Gorman 
257550694c28SMel Gorman 		goto check_pending;
25765515061dSMel Gorman 	}
25775515061dSMel Gorman 
25785515061dSMel Gorman 	/* Throttle until kswapd wakes the process */
25795515061dSMel Gorman 	wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
25805515061dSMel Gorman 		pfmemalloc_watermark_ok(pgdat));
258150694c28SMel Gorman 
258250694c28SMel Gorman check_pending:
258350694c28SMel Gorman 	if (fatal_signal_pending(current))
258450694c28SMel Gorman 		return true;
258550694c28SMel Gorman 
258650694c28SMel Gorman out:
258750694c28SMel Gorman 	return false;
25885515061dSMel Gorman }
25895515061dSMel Gorman 
2590dac1d27bSMel Gorman unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
2591327c0e96SKAMEZAWA Hiroyuki 				gfp_t gfp_mask, nodemask_t *nodemask)
259266e1707bSBalbir Singh {
259333906bc5SMel Gorman 	unsigned long nr_reclaimed;
259466e1707bSBalbir Singh 	struct scan_control sc = {
259521caf2fcSMing Lei 		.gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)),
259666e1707bSBalbir Singh 		.may_writepage = !laptop_mode,
259722fba335SKOSAKI Motohiro 		.nr_to_reclaim = SWAP_CLUSTER_MAX,
2598a6dc60f8SJohannes Weiner 		.may_unmap = 1,
25992e2e4259SKOSAKI Motohiro 		.may_swap = 1,
260066e1707bSBalbir Singh 		.order = order,
26019e3b2f8cSKonstantin Khlebnikov 		.priority = DEF_PRIORITY,
2602f16015fbSJohannes Weiner 		.target_mem_cgroup = NULL,
2603327c0e96SKAMEZAWA Hiroyuki 		.nodemask = nodemask,
260466e1707bSBalbir Singh 	};
2605a09ed5e0SYing Han 	struct shrink_control shrink = {
2606a09ed5e0SYing Han 		.gfp_mask = sc.gfp_mask,
2607a09ed5e0SYing Han 	};
260866e1707bSBalbir Singh 
26095515061dSMel Gorman 	/*
261050694c28SMel Gorman 	 * Do not enter reclaim if fatal signal was delivered while throttled.
261150694c28SMel Gorman 	 * 1 is returned so that the page allocator does not OOM kill at this
261250694c28SMel Gorman 	 * point.
26135515061dSMel Gorman 	 */
261450694c28SMel Gorman 	if (throttle_direct_reclaim(gfp_mask, zonelist, nodemask))
26155515061dSMel Gorman 		return 1;
26165515061dSMel Gorman 
261733906bc5SMel Gorman 	trace_mm_vmscan_direct_reclaim_begin(order,
261833906bc5SMel Gorman 				sc.may_writepage,
261933906bc5SMel Gorman 				gfp_mask);
262033906bc5SMel Gorman 
2621a09ed5e0SYing Han 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc, &shrink);
262233906bc5SMel Gorman 
262333906bc5SMel Gorman 	trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
262433906bc5SMel Gorman 
262533906bc5SMel Gorman 	return nr_reclaimed;
262666e1707bSBalbir Singh }
262766e1707bSBalbir Singh 
2628c255a458SAndrew Morton #ifdef CONFIG_MEMCG
262966e1707bSBalbir Singh 
263072835c86SJohannes Weiner unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *memcg,
26314e416953SBalbir Singh 						gfp_t gfp_mask, bool noswap,
26320ae5e89cSYing Han 						struct zone *zone,
26330ae5e89cSYing Han 						unsigned long *nr_scanned)
26344e416953SBalbir Singh {
26354e416953SBalbir Singh 	struct scan_control sc = {
26360ae5e89cSYing Han 		.nr_scanned = 0,
2637b8f5c566SKOSAKI Motohiro 		.nr_to_reclaim = SWAP_CLUSTER_MAX,
26384e416953SBalbir Singh 		.may_writepage = !laptop_mode,
26394e416953SBalbir Singh 		.may_unmap = 1,
26404e416953SBalbir Singh 		.may_swap = !noswap,
26414e416953SBalbir Singh 		.order = 0,
26429e3b2f8cSKonstantin Khlebnikov 		.priority = 0,
264372835c86SJohannes Weiner 		.target_mem_cgroup = memcg,
26444e416953SBalbir Singh 	};
2645f9be23d6SKonstantin Khlebnikov 	struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg);
26460ae5e89cSYing Han 
26474e416953SBalbir Singh 	sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
26484e416953SBalbir Singh 			(GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
2649bdce6d9eSKOSAKI Motohiro 
26509e3b2f8cSKonstantin Khlebnikov 	trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
2651bdce6d9eSKOSAKI Motohiro 						      sc.may_writepage,
2652bdce6d9eSKOSAKI Motohiro 						      sc.gfp_mask);
2653bdce6d9eSKOSAKI Motohiro 
26544e416953SBalbir Singh 	/*
26554e416953SBalbir Singh 	 * NOTE: Although we can get the priority field, using it
26564e416953SBalbir Singh 	 * here is not a good idea, since it limits the pages we can scan.
26574e416953SBalbir Singh 	 * if we don't reclaim here, the shrink_zone from balance_pgdat
26584e416953SBalbir Singh 	 * will pick up pages from other mem cgroup's as well. We hack
26594e416953SBalbir Singh 	 * the priority and make it zero.
26604e416953SBalbir Singh 	 */
2661f9be23d6SKonstantin Khlebnikov 	shrink_lruvec(lruvec, &sc);
2662bdce6d9eSKOSAKI Motohiro 
2663bdce6d9eSKOSAKI Motohiro 	trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
2664bdce6d9eSKOSAKI Motohiro 
26650ae5e89cSYing Han 	*nr_scanned = sc.nr_scanned;
26664e416953SBalbir Singh 	return sc.nr_reclaimed;
26674e416953SBalbir Singh }
26684e416953SBalbir Singh 
266972835c86SJohannes Weiner unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
26708c7c6e34SKAMEZAWA Hiroyuki 					   gfp_t gfp_mask,
2671185efc0fSJohannes Weiner 					   bool noswap)
267266e1707bSBalbir Singh {
26734e416953SBalbir Singh 	struct zonelist *zonelist;
2674bdce6d9eSKOSAKI Motohiro 	unsigned long nr_reclaimed;
2675889976dbSYing Han 	int nid;
267666e1707bSBalbir Singh 	struct scan_control sc = {
267766e1707bSBalbir Singh 		.may_writepage = !laptop_mode,
2678a6dc60f8SJohannes Weiner 		.may_unmap = 1,
26792e2e4259SKOSAKI Motohiro 		.may_swap = !noswap,
268022fba335SKOSAKI Motohiro 		.nr_to_reclaim = SWAP_CLUSTER_MAX,
268166e1707bSBalbir Singh 		.order = 0,
26829e3b2f8cSKonstantin Khlebnikov 		.priority = DEF_PRIORITY,
268372835c86SJohannes Weiner 		.target_mem_cgroup = memcg,
2684327c0e96SKAMEZAWA Hiroyuki 		.nodemask = NULL, /* we don't care the placement */
2685a09ed5e0SYing Han 		.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
2686a09ed5e0SYing Han 				(GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
2687a09ed5e0SYing Han 	};
2688a09ed5e0SYing Han 	struct shrink_control shrink = {
2689a09ed5e0SYing Han 		.gfp_mask = sc.gfp_mask,
269066e1707bSBalbir Singh 	};
269166e1707bSBalbir Singh 
2692889976dbSYing Han 	/*
2693889976dbSYing Han 	 * Unlike direct reclaim via alloc_pages(), memcg's reclaim doesn't
2694889976dbSYing Han 	 * take care of from where we get pages. So the node where we start the
2695889976dbSYing Han 	 * scan does not need to be the current node.
2696889976dbSYing Han 	 */
269772835c86SJohannes Weiner 	nid = mem_cgroup_select_victim_node(memcg);
2698889976dbSYing Han 
2699889976dbSYing Han 	zonelist = NODE_DATA(nid)->node_zonelists;
2700bdce6d9eSKOSAKI Motohiro 
2701bdce6d9eSKOSAKI Motohiro 	trace_mm_vmscan_memcg_reclaim_begin(0,
2702bdce6d9eSKOSAKI Motohiro 					    sc.may_writepage,
2703bdce6d9eSKOSAKI Motohiro 					    sc.gfp_mask);
2704bdce6d9eSKOSAKI Motohiro 
2705a09ed5e0SYing Han 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc, &shrink);
2706bdce6d9eSKOSAKI Motohiro 
2707bdce6d9eSKOSAKI Motohiro 	trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
2708bdce6d9eSKOSAKI Motohiro 
2709bdce6d9eSKOSAKI Motohiro 	return nr_reclaimed;
271066e1707bSBalbir Singh }
271166e1707bSBalbir Singh #endif
271266e1707bSBalbir Singh 
27139e3b2f8cSKonstantin Khlebnikov static void age_active_anon(struct zone *zone, struct scan_control *sc)
2714f16015fbSJohannes Weiner {
2715b95a2f2dSJohannes Weiner 	struct mem_cgroup *memcg;
2716b95a2f2dSJohannes Weiner 
2717b95a2f2dSJohannes Weiner 	if (!total_swap_pages)
2718b95a2f2dSJohannes Weiner 		return;
2719b95a2f2dSJohannes Weiner 
2720b95a2f2dSJohannes Weiner 	memcg = mem_cgroup_iter(NULL, NULL, NULL);
2721b95a2f2dSJohannes Weiner 	do {
2722c56d5c7dSKonstantin Khlebnikov 		struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg);
2723f16015fbSJohannes Weiner 
2724c56d5c7dSKonstantin Khlebnikov 		if (inactive_anon_is_low(lruvec))
27251a93be0eSKonstantin Khlebnikov 			shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
27269e3b2f8cSKonstantin Khlebnikov 					   sc, LRU_ACTIVE_ANON);
2727b95a2f2dSJohannes Weiner 
2728b95a2f2dSJohannes Weiner 		memcg = mem_cgroup_iter(NULL, memcg, NULL);
2729b95a2f2dSJohannes Weiner 	} while (memcg);
2730f16015fbSJohannes Weiner }
2731f16015fbSJohannes Weiner 
273260cefed4SJohannes Weiner static bool zone_balanced(struct zone *zone, int order,
273360cefed4SJohannes Weiner 			  unsigned long balance_gap, int classzone_idx)
273460cefed4SJohannes Weiner {
273560cefed4SJohannes Weiner 	if (!zone_watermark_ok_safe(zone, order, high_wmark_pages(zone) +
273660cefed4SJohannes Weiner 				    balance_gap, classzone_idx, 0))
273760cefed4SJohannes Weiner 		return false;
273860cefed4SJohannes Weiner 
2739d84da3f9SKirill A. Shutemov 	if (IS_ENABLED(CONFIG_COMPACTION) && order &&
2740d84da3f9SKirill A. Shutemov 	    !compaction_suitable(zone, order))
274160cefed4SJohannes Weiner 		return false;
274260cefed4SJohannes Weiner 
274360cefed4SJohannes Weiner 	return true;
274460cefed4SJohannes Weiner }
274560cefed4SJohannes Weiner 
27461741c877SMel Gorman /*
27474ae0a48bSZlatko Calusic  * pgdat_balanced() is used when checking if a node is balanced.
27484ae0a48bSZlatko Calusic  *
27494ae0a48bSZlatko Calusic  * For order-0, all zones must be balanced!
27504ae0a48bSZlatko Calusic  *
27514ae0a48bSZlatko Calusic  * For high-order allocations only zones that meet watermarks and are in a
27524ae0a48bSZlatko Calusic  * zone allowed by the callers classzone_idx are added to balanced_pages. The
27534ae0a48bSZlatko Calusic  * total of balanced pages must be at least 25% of the zones allowed by
27544ae0a48bSZlatko Calusic  * classzone_idx for the node to be considered balanced. Forcing all zones to
27554ae0a48bSZlatko Calusic  * be balanced for high orders can cause excessive reclaim when there are
27564ae0a48bSZlatko Calusic  * imbalanced zones.
27571741c877SMel Gorman  * The choice of 25% is due to
27581741c877SMel Gorman  *   o a 16M DMA zone that is balanced will not balance a zone on any
27591741c877SMel Gorman  *     reasonable sized machine
27601741c877SMel Gorman  *   o On all other machines, the top zone must be at least a reasonable
276125985edcSLucas De Marchi  *     percentage of the middle zones. For example, on 32-bit x86, highmem
27621741c877SMel Gorman  *     would need to be at least 256M for it to be balance a whole node.
27631741c877SMel Gorman  *     Similarly, on x86-64 the Normal zone would need to be at least 1G
27641741c877SMel Gorman  *     to balance a node on its own. These seemed like reasonable ratios.
27651741c877SMel Gorman  */
27664ae0a48bSZlatko Calusic static bool pgdat_balanced(pg_data_t *pgdat, int order, int classzone_idx)
27671741c877SMel Gorman {
2768b40da049SJiang Liu 	unsigned long managed_pages = 0;
27694ae0a48bSZlatko Calusic 	unsigned long balanced_pages = 0;
27701741c877SMel Gorman 	int i;
27711741c877SMel Gorman 
27724ae0a48bSZlatko Calusic 	/* Check the watermark levels */
27734ae0a48bSZlatko Calusic 	for (i = 0; i <= classzone_idx; i++) {
27744ae0a48bSZlatko Calusic 		struct zone *zone = pgdat->node_zones + i;
27751741c877SMel Gorman 
27764ae0a48bSZlatko Calusic 		if (!populated_zone(zone))
27774ae0a48bSZlatko Calusic 			continue;
27784ae0a48bSZlatko Calusic 
2779b40da049SJiang Liu 		managed_pages += zone->managed_pages;
27804ae0a48bSZlatko Calusic 
27814ae0a48bSZlatko Calusic 		/*
27824ae0a48bSZlatko Calusic 		 * A special case here:
27834ae0a48bSZlatko Calusic 		 *
27844ae0a48bSZlatko Calusic 		 * balance_pgdat() skips over all_unreclaimable after
27854ae0a48bSZlatko Calusic 		 * DEF_PRIORITY. Effectively, it considers them balanced so
27864ae0a48bSZlatko Calusic 		 * they must be considered balanced here as well!
27874ae0a48bSZlatko Calusic 		 */
27886e543d57SLisa Du 		if (!zone_reclaimable(zone)) {
2789b40da049SJiang Liu 			balanced_pages += zone->managed_pages;
27904ae0a48bSZlatko Calusic 			continue;
27914ae0a48bSZlatko Calusic 		}
27924ae0a48bSZlatko Calusic 
27934ae0a48bSZlatko Calusic 		if (zone_balanced(zone, order, 0, i))
2794b40da049SJiang Liu 			balanced_pages += zone->managed_pages;
27954ae0a48bSZlatko Calusic 		else if (!order)
27964ae0a48bSZlatko Calusic 			return false;
27974ae0a48bSZlatko Calusic 	}
27984ae0a48bSZlatko Calusic 
27994ae0a48bSZlatko Calusic 	if (order)
2800b40da049SJiang Liu 		return balanced_pages >= (managed_pages >> 2);
28014ae0a48bSZlatko Calusic 	else
28024ae0a48bSZlatko Calusic 		return true;
28031741c877SMel Gorman }
28041741c877SMel Gorman 
28055515061dSMel Gorman /*
28065515061dSMel Gorman  * Prepare kswapd for sleeping. This verifies that there are no processes
28075515061dSMel Gorman  * waiting in throttle_direct_reclaim() and that watermarks have been met.
28085515061dSMel Gorman  *
28095515061dSMel Gorman  * Returns true if kswapd is ready to sleep
28105515061dSMel Gorman  */
28115515061dSMel Gorman static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order, long remaining,
2812dc83edd9SMel Gorman 					int classzone_idx)
2813f50de2d3SMel Gorman {
2814f50de2d3SMel Gorman 	/* If a direct reclaimer woke kswapd within HZ/10, it's premature */
2815f50de2d3SMel Gorman 	if (remaining)
28165515061dSMel Gorman 		return false;
28175515061dSMel Gorman 
28185515061dSMel Gorman 	/*
28195515061dSMel Gorman 	 * There is a potential race between when kswapd checks its watermarks
28205515061dSMel Gorman 	 * and a process gets throttled. There is also a potential race if
28215515061dSMel Gorman 	 * processes get throttled, kswapd wakes, a large process exits therby
28225515061dSMel Gorman 	 * balancing the zones that causes kswapd to miss a wakeup. If kswapd
28235515061dSMel Gorman 	 * is going to sleep, no process should be sleeping on pfmemalloc_wait
28245515061dSMel Gorman 	 * so wake them now if necessary. If necessary, processes will wake
28255515061dSMel Gorman 	 * kswapd and get throttled again
28265515061dSMel Gorman 	 */
28275515061dSMel Gorman 	if (waitqueue_active(&pgdat->pfmemalloc_wait)) {
28285515061dSMel Gorman 		wake_up(&pgdat->pfmemalloc_wait);
28295515061dSMel Gorman 		return false;
28305515061dSMel Gorman 	}
2831f50de2d3SMel Gorman 
28324ae0a48bSZlatko Calusic 	return pgdat_balanced(pgdat, order, classzone_idx);
2833f50de2d3SMel Gorman }
2834f50de2d3SMel Gorman 
28351da177e4SLinus Torvalds /*
283675485363SMel Gorman  * kswapd shrinks the zone by the number of pages required to reach
283775485363SMel Gorman  * the high watermark.
2838b8e83b94SMel Gorman  *
2839b8e83b94SMel Gorman  * Returns true if kswapd scanned at least the requested number of pages to
2840283aba9fSMel Gorman  * reclaim or if the lack of progress was due to pages under writeback.
2841283aba9fSMel Gorman  * This is used to determine if the scanning priority needs to be raised.
284275485363SMel Gorman  */
2843b8e83b94SMel Gorman static bool kswapd_shrink_zone(struct zone *zone,
28447c954f6dSMel Gorman 			       int classzone_idx,
284575485363SMel Gorman 			       struct scan_control *sc,
28462ab44f43SMel Gorman 			       unsigned long lru_pages,
28472ab44f43SMel Gorman 			       unsigned long *nr_attempted)
284875485363SMel Gorman {
28497c954f6dSMel Gorman 	int testorder = sc->order;
28507c954f6dSMel Gorman 	unsigned long balance_gap;
285175485363SMel Gorman 	struct reclaim_state *reclaim_state = current->reclaim_state;
285275485363SMel Gorman 	struct shrink_control shrink = {
285375485363SMel Gorman 		.gfp_mask = sc->gfp_mask,
285475485363SMel Gorman 	};
28557c954f6dSMel Gorman 	bool lowmem_pressure;
285675485363SMel Gorman 
285775485363SMel Gorman 	/* Reclaim above the high watermark. */
285875485363SMel Gorman 	sc->nr_to_reclaim = max(SWAP_CLUSTER_MAX, high_wmark_pages(zone));
28597c954f6dSMel Gorman 
28607c954f6dSMel Gorman 	/*
28617c954f6dSMel Gorman 	 * Kswapd reclaims only single pages with compaction enabled. Trying
28627c954f6dSMel Gorman 	 * too hard to reclaim until contiguous free pages have become
28637c954f6dSMel Gorman 	 * available can hurt performance by evicting too much useful data
28647c954f6dSMel Gorman 	 * from memory. Do not reclaim more than needed for compaction.
28657c954f6dSMel Gorman 	 */
28667c954f6dSMel Gorman 	if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
28677c954f6dSMel Gorman 			compaction_suitable(zone, sc->order) !=
28687c954f6dSMel Gorman 				COMPACT_SKIPPED)
28697c954f6dSMel Gorman 		testorder = 0;
28707c954f6dSMel Gorman 
28717c954f6dSMel Gorman 	/*
28727c954f6dSMel Gorman 	 * We put equal pressure on every zone, unless one zone has way too
28737c954f6dSMel Gorman 	 * many pages free already. The "too many pages" is defined as the
28747c954f6dSMel Gorman 	 * high wmark plus a "gap" where the gap is either the low
28757c954f6dSMel Gorman 	 * watermark or 1% of the zone, whichever is smaller.
28767c954f6dSMel Gorman 	 */
28777c954f6dSMel Gorman 	balance_gap = min(low_wmark_pages(zone),
28787c954f6dSMel Gorman 		(zone->managed_pages + KSWAPD_ZONE_BALANCE_GAP_RATIO-1) /
28797c954f6dSMel Gorman 		KSWAPD_ZONE_BALANCE_GAP_RATIO);
28807c954f6dSMel Gorman 
28817c954f6dSMel Gorman 	/*
28827c954f6dSMel Gorman 	 * If there is no low memory pressure or the zone is balanced then no
28837c954f6dSMel Gorman 	 * reclaim is necessary
28847c954f6dSMel Gorman 	 */
28857c954f6dSMel Gorman 	lowmem_pressure = (buffer_heads_over_limit && is_highmem(zone));
28867c954f6dSMel Gorman 	if (!lowmem_pressure && zone_balanced(zone, testorder,
28877c954f6dSMel Gorman 						balance_gap, classzone_idx))
28887c954f6dSMel Gorman 		return true;
28897c954f6dSMel Gorman 
289075485363SMel Gorman 	shrink_zone(zone, sc);
28910ce3d744SDave Chinner 	nodes_clear(shrink.nodes_to_scan);
28920ce3d744SDave Chinner 	node_set(zone_to_nid(zone), shrink.nodes_to_scan);
289375485363SMel Gorman 
289475485363SMel Gorman 	reclaim_state->reclaimed_slab = 0;
28956e543d57SLisa Du 	shrink_slab(&shrink, sc->nr_scanned, lru_pages);
289675485363SMel Gorman 	sc->nr_reclaimed += reclaim_state->reclaimed_slab;
289775485363SMel Gorman 
28982ab44f43SMel Gorman 	/* Account for the number of pages attempted to reclaim */
28992ab44f43SMel Gorman 	*nr_attempted += sc->nr_to_reclaim;
29002ab44f43SMel Gorman 
2901283aba9fSMel Gorman 	zone_clear_flag(zone, ZONE_WRITEBACK);
2902283aba9fSMel Gorman 
29037c954f6dSMel Gorman 	/*
29047c954f6dSMel Gorman 	 * If a zone reaches its high watermark, consider it to be no longer
29057c954f6dSMel Gorman 	 * congested. It's possible there are dirty pages backed by congested
29067c954f6dSMel Gorman 	 * BDIs but as pressure is relieved, speculatively avoid congestion
29077c954f6dSMel Gorman 	 * waits.
29087c954f6dSMel Gorman 	 */
29096e543d57SLisa Du 	if (zone_reclaimable(zone) &&
29107c954f6dSMel Gorman 	    zone_balanced(zone, testorder, 0, classzone_idx)) {
29117c954f6dSMel Gorman 		zone_clear_flag(zone, ZONE_CONGESTED);
29127c954f6dSMel Gorman 		zone_clear_flag(zone, ZONE_TAIL_LRU_DIRTY);
29137c954f6dSMel Gorman 	}
29147c954f6dSMel Gorman 
2915b8e83b94SMel Gorman 	return sc->nr_scanned >= sc->nr_to_reclaim;
291675485363SMel Gorman }
291775485363SMel Gorman 
291875485363SMel Gorman /*
29191da177e4SLinus Torvalds  * For kswapd, balance_pgdat() will work across all this node's zones until
292041858966SMel Gorman  * they are all at high_wmark_pages(zone).
29211da177e4SLinus Torvalds  *
29220abdee2bSMel Gorman  * Returns the final order kswapd was reclaiming at
29231da177e4SLinus Torvalds  *
29241da177e4SLinus Torvalds  * There is special handling here for zones which are full of pinned pages.
29251da177e4SLinus Torvalds  * This can happen if the pages are all mlocked, or if they are all used by
29261da177e4SLinus Torvalds  * device drivers (say, ZONE_DMA).  Or if they are all in use by hugetlb.
29271da177e4SLinus Torvalds  * What we do is to detect the case where all pages in the zone have been
29281da177e4SLinus Torvalds  * scanned twice and there has been zero successful reclaim.  Mark the zone as
29291da177e4SLinus Torvalds  * dead and from now on, only perform a short scan.  Basically we're polling
29301da177e4SLinus Torvalds  * the zone for when the problem goes away.
29311da177e4SLinus Torvalds  *
29321da177e4SLinus Torvalds  * kswapd scans the zones in the highmem->normal->dma direction.  It skips
293341858966SMel Gorman  * zones which have free_pages > high_wmark_pages(zone), but once a zone is
293441858966SMel Gorman  * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
293541858966SMel Gorman  * lower zones regardless of the number of free pages in the lower zones. This
293641858966SMel Gorman  * interoperates with the page allocator fallback scheme to ensure that aging
293741858966SMel Gorman  * of pages is balanced across the zones.
29381da177e4SLinus Torvalds  */
293999504748SMel Gorman static unsigned long balance_pgdat(pg_data_t *pgdat, int order,
2940dc83edd9SMel Gorman 							int *classzone_idx)
29411da177e4SLinus Torvalds {
29421da177e4SLinus Torvalds 	int i;
294399504748SMel Gorman 	int end_zone = 0;	/* Inclusive.  0 = ZONE_DMA */
29440608f43dSAndrew Morton 	unsigned long nr_soft_reclaimed;
29450608f43dSAndrew Morton 	unsigned long nr_soft_scanned;
2946179e9639SAndrew Morton 	struct scan_control sc = {
2947179e9639SAndrew Morton 		.gfp_mask = GFP_KERNEL,
2948b8e83b94SMel Gorman 		.priority = DEF_PRIORITY,
2949a6dc60f8SJohannes Weiner 		.may_unmap = 1,
29502e2e4259SKOSAKI Motohiro 		.may_swap = 1,
2951b8e83b94SMel Gorman 		.may_writepage = !laptop_mode,
29525ad333ebSAndy Whitcroft 		.order = order,
2953f16015fbSJohannes Weiner 		.target_mem_cgroup = NULL,
2954179e9639SAndrew Morton 	};
2955f8891e5eSChristoph Lameter 	count_vm_event(PAGEOUTRUN);
29561da177e4SLinus Torvalds 
29579e3b2f8cSKonstantin Khlebnikov 	do {
29581da177e4SLinus Torvalds 		unsigned long lru_pages = 0;
29592ab44f43SMel Gorman 		unsigned long nr_attempted = 0;
2960b8e83b94SMel Gorman 		bool raise_priority = true;
29612ab44f43SMel Gorman 		bool pgdat_needs_compaction = (order > 0);
2962b8e83b94SMel Gorman 
2963b8e83b94SMel Gorman 		sc.nr_reclaimed = 0;
29641da177e4SLinus Torvalds 
29651da177e4SLinus Torvalds 		/*
29661da177e4SLinus Torvalds 		 * Scan in the highmem->dma direction for the highest
29671da177e4SLinus Torvalds 		 * zone which needs scanning
29681da177e4SLinus Torvalds 		 */
29691da177e4SLinus Torvalds 		for (i = pgdat->nr_zones - 1; i >= 0; i--) {
29701da177e4SLinus Torvalds 			struct zone *zone = pgdat->node_zones + i;
29711da177e4SLinus Torvalds 
2972f3fe6512SCon Kolivas 			if (!populated_zone(zone))
29731da177e4SLinus Torvalds 				continue;
29741da177e4SLinus Torvalds 
29756e543d57SLisa Du 			if (sc.priority != DEF_PRIORITY &&
29766e543d57SLisa Du 			    !zone_reclaimable(zone))
29771da177e4SLinus Torvalds 				continue;
29781da177e4SLinus Torvalds 
2979556adecbSRik van Riel 			/*
2980556adecbSRik van Riel 			 * Do some background aging of the anon list, to give
2981556adecbSRik van Riel 			 * pages a chance to be referenced before reclaiming.
2982556adecbSRik van Riel 			 */
29839e3b2f8cSKonstantin Khlebnikov 			age_active_anon(zone, &sc);
2984556adecbSRik van Riel 
2985cc715d99SMel Gorman 			/*
2986cc715d99SMel Gorman 			 * If the number of buffer_heads in the machine
2987cc715d99SMel Gorman 			 * exceeds the maximum allowed level and this node
2988cc715d99SMel Gorman 			 * has a highmem zone, force kswapd to reclaim from
2989cc715d99SMel Gorman 			 * it to relieve lowmem pressure.
2990cc715d99SMel Gorman 			 */
2991cc715d99SMel Gorman 			if (buffer_heads_over_limit && is_highmem_idx(i)) {
2992cc715d99SMel Gorman 				end_zone = i;
2993cc715d99SMel Gorman 				break;
2994cc715d99SMel Gorman 			}
2995cc715d99SMel Gorman 
299660cefed4SJohannes Weiner 			if (!zone_balanced(zone, order, 0, 0)) {
29971da177e4SLinus Torvalds 				end_zone = i;
2998e1dbeda6SAndrew Morton 				break;
2999439423f6SShaohua Li 			} else {
3000d43006d5SMel Gorman 				/*
3001d43006d5SMel Gorman 				 * If balanced, clear the dirty and congested
3002d43006d5SMel Gorman 				 * flags
3003d43006d5SMel Gorman 				 */
3004439423f6SShaohua Li 				zone_clear_flag(zone, ZONE_CONGESTED);
3005d43006d5SMel Gorman 				zone_clear_flag(zone, ZONE_TAIL_LRU_DIRTY);
30061da177e4SLinus Torvalds 			}
30071da177e4SLinus Torvalds 		}
3008dafcb73eSZlatko Calusic 
3009b8e83b94SMel Gorman 		if (i < 0)
30101da177e4SLinus Torvalds 			goto out;
3011e1dbeda6SAndrew Morton 
30121da177e4SLinus Torvalds 		for (i = 0; i <= end_zone; i++) {
30131da177e4SLinus Torvalds 			struct zone *zone = pgdat->node_zones + i;
30141da177e4SLinus Torvalds 
30152ab44f43SMel Gorman 			if (!populated_zone(zone))
30162ab44f43SMel Gorman 				continue;
30172ab44f43SMel Gorman 
3018adea02a1SWu Fengguang 			lru_pages += zone_reclaimable_pages(zone);
30192ab44f43SMel Gorman 
30202ab44f43SMel Gorman 			/*
30212ab44f43SMel Gorman 			 * If any zone is currently balanced then kswapd will
30222ab44f43SMel Gorman 			 * not call compaction as it is expected that the
30232ab44f43SMel Gorman 			 * necessary pages are already available.
30242ab44f43SMel Gorman 			 */
30252ab44f43SMel Gorman 			if (pgdat_needs_compaction &&
30262ab44f43SMel Gorman 					zone_watermark_ok(zone, order,
30272ab44f43SMel Gorman 						low_wmark_pages(zone),
30282ab44f43SMel Gorman 						*classzone_idx, 0))
30292ab44f43SMel Gorman 				pgdat_needs_compaction = false;
30301da177e4SLinus Torvalds 		}
30311da177e4SLinus Torvalds 
30321da177e4SLinus Torvalds 		/*
3033b7ea3c41SMel Gorman 		 * If we're getting trouble reclaiming, start doing writepage
3034b7ea3c41SMel Gorman 		 * even in laptop mode.
3035b7ea3c41SMel Gorman 		 */
3036b7ea3c41SMel Gorman 		if (sc.priority < DEF_PRIORITY - 2)
3037b7ea3c41SMel Gorman 			sc.may_writepage = 1;
3038b7ea3c41SMel Gorman 
3039b7ea3c41SMel Gorman 		/*
30401da177e4SLinus Torvalds 		 * Now scan the zone in the dma->highmem direction, stopping
30411da177e4SLinus Torvalds 		 * at the last zone which needs scanning.
30421da177e4SLinus Torvalds 		 *
30431da177e4SLinus Torvalds 		 * We do this because the page allocator works in the opposite
30441da177e4SLinus Torvalds 		 * direction.  This prevents the page allocator from allocating
30451da177e4SLinus Torvalds 		 * pages behind kswapd's direction of progress, which would
30461da177e4SLinus Torvalds 		 * cause too much scanning of the lower zones.
30471da177e4SLinus Torvalds 		 */
30481da177e4SLinus Torvalds 		for (i = 0; i <= end_zone; i++) {
30491da177e4SLinus Torvalds 			struct zone *zone = pgdat->node_zones + i;
30501da177e4SLinus Torvalds 
3051f3fe6512SCon Kolivas 			if (!populated_zone(zone))
30521da177e4SLinus Torvalds 				continue;
30531da177e4SLinus Torvalds 
30546e543d57SLisa Du 			if (sc.priority != DEF_PRIORITY &&
30556e543d57SLisa Du 			    !zone_reclaimable(zone))
30561da177e4SLinus Torvalds 				continue;
30571da177e4SLinus Torvalds 
30581da177e4SLinus Torvalds 			sc.nr_scanned = 0;
30594e416953SBalbir Singh 
30600608f43dSAndrew Morton 			nr_soft_scanned = 0;
30610608f43dSAndrew Morton 			/*
30620608f43dSAndrew Morton 			 * Call soft limit reclaim before calling shrink_zone.
30630608f43dSAndrew Morton 			 */
30640608f43dSAndrew Morton 			nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone,
30650608f43dSAndrew Morton 							order, sc.gfp_mask,
30660608f43dSAndrew Morton 							&nr_soft_scanned);
30670608f43dSAndrew Morton 			sc.nr_reclaimed += nr_soft_reclaimed;
30680608f43dSAndrew Morton 
306932a4330dSRik van Riel 			/*
30707c954f6dSMel Gorman 			 * There should be no need to raise the scanning
30717c954f6dSMel Gorman 			 * priority if enough pages are already being scanned
30727c954f6dSMel Gorman 			 * that that high watermark would be met at 100%
30737c954f6dSMel Gorman 			 * efficiency.
307432a4330dSRik van Riel 			 */
30757c954f6dSMel Gorman 			if (kswapd_shrink_zone(zone, end_zone, &sc,
30767c954f6dSMel Gorman 					lru_pages, &nr_attempted))
3077b8e83b94SMel Gorman 				raise_priority = false;
3078b8e83b94SMel Gorman 		}
3079d7868daeSMel Gorman 
30805515061dSMel Gorman 		/*
30815515061dSMel Gorman 		 * If the low watermark is met there is no need for processes
30825515061dSMel Gorman 		 * to be throttled on pfmemalloc_wait as they should not be
30835515061dSMel Gorman 		 * able to safely make forward progress. Wake them
30845515061dSMel Gorman 		 */
30855515061dSMel Gorman 		if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
30865515061dSMel Gorman 				pfmemalloc_watermark_ok(pgdat))
30875515061dSMel Gorman 			wake_up(&pgdat->pfmemalloc_wait);
30885515061dSMel Gorman 
30891da177e4SLinus Torvalds 		/*
3090b8e83b94SMel Gorman 		 * Fragmentation may mean that the system cannot be rebalanced
3091b8e83b94SMel Gorman 		 * for high-order allocations in all zones. If twice the
3092b8e83b94SMel Gorman 		 * allocation size has been reclaimed and the zones are still
3093b8e83b94SMel Gorman 		 * not balanced then recheck the watermarks at order-0 to
3094b8e83b94SMel Gorman 		 * prevent kswapd reclaiming excessively. Assume that a
3095b8e83b94SMel Gorman 		 * process requested a high-order can direct reclaim/compact.
30961da177e4SLinus Torvalds 		 */
3097b8e83b94SMel Gorman 		if (order && sc.nr_reclaimed >= 2UL << order)
309873ce02e9SKOSAKI Motohiro 			order = sc.order = 0;
309973ce02e9SKOSAKI Motohiro 
3100b8e83b94SMel Gorman 		/* Check if kswapd should be suspending */
3101b8e83b94SMel Gorman 		if (try_to_freeze() || kthread_should_stop())
3102b8e83b94SMel Gorman 			break;
3103b8e83b94SMel Gorman 
3104b8e83b94SMel Gorman 		/*
31052ab44f43SMel Gorman 		 * Compact if necessary and kswapd is reclaiming at least the
31062ab44f43SMel Gorman 		 * high watermark number of pages as requsted
31072ab44f43SMel Gorman 		 */
31082ab44f43SMel Gorman 		if (pgdat_needs_compaction && sc.nr_reclaimed > nr_attempted)
31092ab44f43SMel Gorman 			compact_pgdat(pgdat, order);
31102ab44f43SMel Gorman 
31112ab44f43SMel Gorman 		/*
3112b8e83b94SMel Gorman 		 * Raise priority if scanning rate is too low or there was no
3113b8e83b94SMel Gorman 		 * progress in reclaiming pages
3114b8e83b94SMel Gorman 		 */
3115b8e83b94SMel Gorman 		if (raise_priority || !sc.nr_reclaimed)
3116b8e83b94SMel Gorman 			sc.priority--;
31179aa41348SMel Gorman 	} while (sc.priority >= 1 &&
3118b8e83b94SMel Gorman 		 !pgdat_balanced(pgdat, order, *classzone_idx));
31191da177e4SLinus Torvalds 
3120b8e83b94SMel Gorman out:
31210abdee2bSMel Gorman 	/*
31225515061dSMel Gorman 	 * Return the order we were reclaiming at so prepare_kswapd_sleep()
31230abdee2bSMel Gorman 	 * makes a decision on the order we were last reclaiming at. However,
31240abdee2bSMel Gorman 	 * if another caller entered the allocator slow path while kswapd
31250abdee2bSMel Gorman 	 * was awake, order will remain at the higher level
31260abdee2bSMel Gorman 	 */
3127dc83edd9SMel Gorman 	*classzone_idx = end_zone;
31280abdee2bSMel Gorman 	return order;
31291da177e4SLinus Torvalds }
31301da177e4SLinus Torvalds 
3131dc83edd9SMel Gorman static void kswapd_try_to_sleep(pg_data_t *pgdat, int order, int classzone_idx)
3132f0bc0a60SKOSAKI Motohiro {
3133f0bc0a60SKOSAKI Motohiro 	long remaining = 0;
3134f0bc0a60SKOSAKI Motohiro 	DEFINE_WAIT(wait);
3135f0bc0a60SKOSAKI Motohiro 
3136f0bc0a60SKOSAKI Motohiro 	if (freezing(current) || kthread_should_stop())
3137f0bc0a60SKOSAKI Motohiro 		return;
3138f0bc0a60SKOSAKI Motohiro 
3139f0bc0a60SKOSAKI Motohiro 	prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3140f0bc0a60SKOSAKI Motohiro 
3141f0bc0a60SKOSAKI Motohiro 	/* Try to sleep for a short interval */
31425515061dSMel Gorman 	if (prepare_kswapd_sleep(pgdat, order, remaining, classzone_idx)) {
3143f0bc0a60SKOSAKI Motohiro 		remaining = schedule_timeout(HZ/10);
3144f0bc0a60SKOSAKI Motohiro 		finish_wait(&pgdat->kswapd_wait, &wait);
3145f0bc0a60SKOSAKI Motohiro 		prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3146f0bc0a60SKOSAKI Motohiro 	}
3147f0bc0a60SKOSAKI Motohiro 
3148f0bc0a60SKOSAKI Motohiro 	/*
3149f0bc0a60SKOSAKI Motohiro 	 * After a short sleep, check if it was a premature sleep. If not, then
3150f0bc0a60SKOSAKI Motohiro 	 * go fully to sleep until explicitly woken up.
3151f0bc0a60SKOSAKI Motohiro 	 */
31525515061dSMel Gorman 	if (prepare_kswapd_sleep(pgdat, order, remaining, classzone_idx)) {
3153f0bc0a60SKOSAKI Motohiro 		trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
3154f0bc0a60SKOSAKI Motohiro 
3155f0bc0a60SKOSAKI Motohiro 		/*
3156f0bc0a60SKOSAKI Motohiro 		 * vmstat counters are not perfectly accurate and the estimated
3157f0bc0a60SKOSAKI Motohiro 		 * value for counters such as NR_FREE_PAGES can deviate from the
3158f0bc0a60SKOSAKI Motohiro 		 * true value by nr_online_cpus * threshold. To avoid the zone
3159f0bc0a60SKOSAKI Motohiro 		 * watermarks being breached while under pressure, we reduce the
3160f0bc0a60SKOSAKI Motohiro 		 * per-cpu vmstat threshold while kswapd is awake and restore
3161f0bc0a60SKOSAKI Motohiro 		 * them before going back to sleep.
3162f0bc0a60SKOSAKI Motohiro 		 */
3163f0bc0a60SKOSAKI Motohiro 		set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
31641c7e7f6cSAaditya Kumar 
316562997027SMel Gorman 		/*
316662997027SMel Gorman 		 * Compaction records what page blocks it recently failed to
316762997027SMel Gorman 		 * isolate pages from and skips them in the future scanning.
316862997027SMel Gorman 		 * When kswapd is going to sleep, it is reasonable to assume
316962997027SMel Gorman 		 * that pages and compaction may succeed so reset the cache.
317062997027SMel Gorman 		 */
317162997027SMel Gorman 		reset_isolation_suitable(pgdat);
317262997027SMel Gorman 
31731c7e7f6cSAaditya Kumar 		if (!kthread_should_stop())
3174f0bc0a60SKOSAKI Motohiro 			schedule();
31751c7e7f6cSAaditya Kumar 
3176f0bc0a60SKOSAKI Motohiro 		set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
3177f0bc0a60SKOSAKI Motohiro 	} else {
3178f0bc0a60SKOSAKI Motohiro 		if (remaining)
3179f0bc0a60SKOSAKI Motohiro 			count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
3180f0bc0a60SKOSAKI Motohiro 		else
3181f0bc0a60SKOSAKI Motohiro 			count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
3182f0bc0a60SKOSAKI Motohiro 	}
3183f0bc0a60SKOSAKI Motohiro 	finish_wait(&pgdat->kswapd_wait, &wait);
3184f0bc0a60SKOSAKI Motohiro }
3185f0bc0a60SKOSAKI Motohiro 
31861da177e4SLinus Torvalds /*
31871da177e4SLinus Torvalds  * The background pageout daemon, started as a kernel thread
31881da177e4SLinus Torvalds  * from the init process.
31891da177e4SLinus Torvalds  *
31901da177e4SLinus Torvalds  * This basically trickles out pages so that we have _some_
31911da177e4SLinus Torvalds  * free memory available even if there is no other activity
31921da177e4SLinus Torvalds  * that frees anything up. This is needed for things like routing
31931da177e4SLinus Torvalds  * etc, where we otherwise might have all activity going on in
31941da177e4SLinus Torvalds  * asynchronous contexts that cannot page things out.
31951da177e4SLinus Torvalds  *
31961da177e4SLinus Torvalds  * If there are applications that are active memory-allocators
31971da177e4SLinus Torvalds  * (most normal use), this basically shouldn't matter.
31981da177e4SLinus Torvalds  */
31991da177e4SLinus Torvalds static int kswapd(void *p)
32001da177e4SLinus Torvalds {
3201215ddd66SMel Gorman 	unsigned long order, new_order;
3202d2ebd0f6SAlex,Shi 	unsigned balanced_order;
3203215ddd66SMel Gorman 	int classzone_idx, new_classzone_idx;
3204d2ebd0f6SAlex,Shi 	int balanced_classzone_idx;
32051da177e4SLinus Torvalds 	pg_data_t *pgdat = (pg_data_t*)p;
32061da177e4SLinus Torvalds 	struct task_struct *tsk = current;
3207f0bc0a60SKOSAKI Motohiro 
32081da177e4SLinus Torvalds 	struct reclaim_state reclaim_state = {
32091da177e4SLinus Torvalds 		.reclaimed_slab = 0,
32101da177e4SLinus Torvalds 	};
3211a70f7302SRusty Russell 	const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
32121da177e4SLinus Torvalds 
3213cf40bd16SNick Piggin 	lockdep_set_current_reclaim_state(GFP_KERNEL);
3214cf40bd16SNick Piggin 
3215174596a0SRusty Russell 	if (!cpumask_empty(cpumask))
3216c5f59f08SMike Travis 		set_cpus_allowed_ptr(tsk, cpumask);
32171da177e4SLinus Torvalds 	current->reclaim_state = &reclaim_state;
32181da177e4SLinus Torvalds 
32191da177e4SLinus Torvalds 	/*
32201da177e4SLinus Torvalds 	 * Tell the memory management that we're a "memory allocator",
32211da177e4SLinus Torvalds 	 * and that if we need more memory we should get access to it
32221da177e4SLinus Torvalds 	 * regardless (see "__alloc_pages()"). "kswapd" should
32231da177e4SLinus Torvalds 	 * never get caught in the normal page freeing logic.
32241da177e4SLinus Torvalds 	 *
32251da177e4SLinus Torvalds 	 * (Kswapd normally doesn't need memory anyway, but sometimes
32261da177e4SLinus Torvalds 	 * you need a small amount of memory in order to be able to
32271da177e4SLinus Torvalds 	 * page out something else, and this flag essentially protects
32281da177e4SLinus Torvalds 	 * us from recursively trying to free more memory as we're
32291da177e4SLinus Torvalds 	 * trying to free the first piece of memory in the first place).
32301da177e4SLinus Torvalds 	 */
3231930d9152SChristoph Lameter 	tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
323283144186SRafael J. Wysocki 	set_freezable();
32331da177e4SLinus Torvalds 
3234215ddd66SMel Gorman 	order = new_order = 0;
3235d2ebd0f6SAlex,Shi 	balanced_order = 0;
3236215ddd66SMel Gorman 	classzone_idx = new_classzone_idx = pgdat->nr_zones - 1;
3237d2ebd0f6SAlex,Shi 	balanced_classzone_idx = classzone_idx;
32381da177e4SLinus Torvalds 	for ( ; ; ) {
32396f6313d4SJeff Liu 		bool ret;
32403e1d1d28SChristoph Lameter 
3241215ddd66SMel Gorman 		/*
3242215ddd66SMel Gorman 		 * If the last balance_pgdat was unsuccessful it's unlikely a
3243215ddd66SMel Gorman 		 * new request of a similar or harder type will succeed soon
3244215ddd66SMel Gorman 		 * so consider going to sleep on the basis we reclaimed at
3245215ddd66SMel Gorman 		 */
3246d2ebd0f6SAlex,Shi 		if (balanced_classzone_idx >= new_classzone_idx &&
3247d2ebd0f6SAlex,Shi 					balanced_order == new_order) {
32481da177e4SLinus Torvalds 			new_order = pgdat->kswapd_max_order;
324999504748SMel Gorman 			new_classzone_idx = pgdat->classzone_idx;
32501da177e4SLinus Torvalds 			pgdat->kswapd_max_order =  0;
3251215ddd66SMel Gorman 			pgdat->classzone_idx = pgdat->nr_zones - 1;
3252215ddd66SMel Gorman 		}
3253215ddd66SMel Gorman 
325499504748SMel Gorman 		if (order < new_order || classzone_idx > new_classzone_idx) {
32551da177e4SLinus Torvalds 			/*
32561da177e4SLinus Torvalds 			 * Don't sleep if someone wants a larger 'order'
325799504748SMel Gorman 			 * allocation or has tigher zone constraints
32581da177e4SLinus Torvalds 			 */
32591da177e4SLinus Torvalds 			order = new_order;
326099504748SMel Gorman 			classzone_idx = new_classzone_idx;
32611da177e4SLinus Torvalds 		} else {
3262d2ebd0f6SAlex,Shi 			kswapd_try_to_sleep(pgdat, balanced_order,
3263d2ebd0f6SAlex,Shi 						balanced_classzone_idx);
32641da177e4SLinus Torvalds 			order = pgdat->kswapd_max_order;
326599504748SMel Gorman 			classzone_idx = pgdat->classzone_idx;
3266f0dfcde0SAlex,Shi 			new_order = order;
3267f0dfcde0SAlex,Shi 			new_classzone_idx = classzone_idx;
32684d40502eSMel Gorman 			pgdat->kswapd_max_order = 0;
3269215ddd66SMel Gorman 			pgdat->classzone_idx = pgdat->nr_zones - 1;
32701da177e4SLinus Torvalds 		}
32711da177e4SLinus Torvalds 
32728fe23e05SDavid Rientjes 		ret = try_to_freeze();
32738fe23e05SDavid Rientjes 		if (kthread_should_stop())
32748fe23e05SDavid Rientjes 			break;
32758fe23e05SDavid Rientjes 
32768fe23e05SDavid Rientjes 		/*
32778fe23e05SDavid Rientjes 		 * We can speed up thawing tasks if we don't call balance_pgdat
32788fe23e05SDavid Rientjes 		 * after returning from the refrigerator
3279b1296cc4SRafael J. Wysocki 		 */
328033906bc5SMel Gorman 		if (!ret) {
328133906bc5SMel Gorman 			trace_mm_vmscan_kswapd_wake(pgdat->node_id, order);
3282d2ebd0f6SAlex,Shi 			balanced_classzone_idx = classzone_idx;
3283d2ebd0f6SAlex,Shi 			balanced_order = balance_pgdat(pgdat, order,
3284d2ebd0f6SAlex,Shi 						&balanced_classzone_idx);
32851da177e4SLinus Torvalds 		}
328633906bc5SMel Gorman 	}
3287b0a8cc58STakamori Yamaguchi 
3288b0a8cc58STakamori Yamaguchi 	current->reclaim_state = NULL;
32891da177e4SLinus Torvalds 	return 0;
32901da177e4SLinus Torvalds }
32911da177e4SLinus Torvalds 
32921da177e4SLinus Torvalds /*
32931da177e4SLinus Torvalds  * A zone is low on free memory, so wake its kswapd task to service it.
32941da177e4SLinus Torvalds  */
329599504748SMel Gorman void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx)
32961da177e4SLinus Torvalds {
32971da177e4SLinus Torvalds 	pg_data_t *pgdat;
32981da177e4SLinus Torvalds 
3299f3fe6512SCon Kolivas 	if (!populated_zone(zone))
33001da177e4SLinus Torvalds 		return;
33011da177e4SLinus Torvalds 
330202a0e53dSPaul Jackson 	if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
33031da177e4SLinus Torvalds 		return;
330488f5acf8SMel Gorman 	pgdat = zone->zone_pgdat;
330599504748SMel Gorman 	if (pgdat->kswapd_max_order < order) {
330688f5acf8SMel Gorman 		pgdat->kswapd_max_order = order;
330799504748SMel Gorman 		pgdat->classzone_idx = min(pgdat->classzone_idx, classzone_idx);
330899504748SMel Gorman 	}
33098d0986e2SCon Kolivas 	if (!waitqueue_active(&pgdat->kswapd_wait))
33101da177e4SLinus Torvalds 		return;
3311892f795dSJohannes Weiner 	if (zone_balanced(zone, order, 0, 0))
331288f5acf8SMel Gorman 		return;
331388f5acf8SMel Gorman 
331488f5acf8SMel Gorman 	trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order);
33158d0986e2SCon Kolivas 	wake_up_interruptible(&pgdat->kswapd_wait);
33161da177e4SLinus Torvalds }
33171da177e4SLinus Torvalds 
3318adea02a1SWu Fengguang /*
3319adea02a1SWu Fengguang  * The reclaimable count would be mostly accurate.
3320adea02a1SWu Fengguang  * The less reclaimable pages may be
3321adea02a1SWu Fengguang  * - mlocked pages, which will be moved to unevictable list when encountered
3322adea02a1SWu Fengguang  * - mapped pages, which may require several travels to be reclaimed
3323adea02a1SWu Fengguang  * - dirty pages, which is not "instantly" reclaimable
3324adea02a1SWu Fengguang  */
3325adea02a1SWu Fengguang unsigned long global_reclaimable_pages(void)
33264f98a2feSRik van Riel {
3327adea02a1SWu Fengguang 	int nr;
3328adea02a1SWu Fengguang 
3329adea02a1SWu Fengguang 	nr = global_page_state(NR_ACTIVE_FILE) +
3330adea02a1SWu Fengguang 	     global_page_state(NR_INACTIVE_FILE);
3331adea02a1SWu Fengguang 
3332ec8acf20SShaohua Li 	if (get_nr_swap_pages() > 0)
3333adea02a1SWu Fengguang 		nr += global_page_state(NR_ACTIVE_ANON) +
3334adea02a1SWu Fengguang 		      global_page_state(NR_INACTIVE_ANON);
3335adea02a1SWu Fengguang 
3336adea02a1SWu Fengguang 	return nr;
3337adea02a1SWu Fengguang }
3338adea02a1SWu Fengguang 
3339c6f37f12SRafael J. Wysocki #ifdef CONFIG_HIBERNATION
33401da177e4SLinus Torvalds /*
33417b51755cSKOSAKI Motohiro  * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
3342d6277db4SRafael J. Wysocki  * freed pages.
3343d6277db4SRafael J. Wysocki  *
3344d6277db4SRafael J. Wysocki  * Rather than trying to age LRUs the aim is to preserve the overall
3345d6277db4SRafael J. Wysocki  * LRU order by reclaiming preferentially
3346d6277db4SRafael J. Wysocki  * inactive > active > active referenced > active mapped
33471da177e4SLinus Torvalds  */
33487b51755cSKOSAKI Motohiro unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
33491da177e4SLinus Torvalds {
3350d6277db4SRafael J. Wysocki 	struct reclaim_state reclaim_state;
3351d6277db4SRafael J. Wysocki 	struct scan_control sc = {
33527b51755cSKOSAKI Motohiro 		.gfp_mask = GFP_HIGHUSER_MOVABLE,
33537b51755cSKOSAKI Motohiro 		.may_swap = 1,
33547b51755cSKOSAKI Motohiro 		.may_unmap = 1,
3355d6277db4SRafael J. Wysocki 		.may_writepage = 1,
33567b51755cSKOSAKI Motohiro 		.nr_to_reclaim = nr_to_reclaim,
33577b51755cSKOSAKI Motohiro 		.hibernation_mode = 1,
33587b51755cSKOSAKI Motohiro 		.order = 0,
33599e3b2f8cSKonstantin Khlebnikov 		.priority = DEF_PRIORITY,
33601da177e4SLinus Torvalds 	};
3361a09ed5e0SYing Han 	struct shrink_control shrink = {
3362a09ed5e0SYing Han 		.gfp_mask = sc.gfp_mask,
3363a09ed5e0SYing Han 	};
33647b51755cSKOSAKI Motohiro 	struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
33657b51755cSKOSAKI Motohiro 	struct task_struct *p = current;
33667b51755cSKOSAKI Motohiro 	unsigned long nr_reclaimed;
33671da177e4SLinus Torvalds 
33687b51755cSKOSAKI Motohiro 	p->flags |= PF_MEMALLOC;
33697b51755cSKOSAKI Motohiro 	lockdep_set_current_reclaim_state(sc.gfp_mask);
3370d6277db4SRafael J. Wysocki 	reclaim_state.reclaimed_slab = 0;
33717b51755cSKOSAKI Motohiro 	p->reclaim_state = &reclaim_state;
3372d6277db4SRafael J. Wysocki 
3373a09ed5e0SYing Han 	nr_reclaimed = do_try_to_free_pages(zonelist, &sc, &shrink);
3374d6277db4SRafael J. Wysocki 
33757b51755cSKOSAKI Motohiro 	p->reclaim_state = NULL;
33767b51755cSKOSAKI Motohiro 	lockdep_clear_current_reclaim_state();
33777b51755cSKOSAKI Motohiro 	p->flags &= ~PF_MEMALLOC;
3378d6277db4SRafael J. Wysocki 
33797b51755cSKOSAKI Motohiro 	return nr_reclaimed;
33801da177e4SLinus Torvalds }
3381c6f37f12SRafael J. Wysocki #endif /* CONFIG_HIBERNATION */
33821da177e4SLinus Torvalds 
33831da177e4SLinus Torvalds /* It's optimal to keep kswapds on the same CPUs as their memory, but
33841da177e4SLinus Torvalds    not required for correctness.  So if the last cpu in a node goes
33851da177e4SLinus Torvalds    away, we get changed to run anywhere: as the first one comes back,
33861da177e4SLinus Torvalds    restore their cpu bindings. */
3387fcb35a9bSGreg Kroah-Hartman static int cpu_callback(struct notifier_block *nfb, unsigned long action,
3388fcb35a9bSGreg Kroah-Hartman 			void *hcpu)
33891da177e4SLinus Torvalds {
339058c0a4a7SYasunori Goto 	int nid;
33911da177e4SLinus Torvalds 
33928bb78442SRafael J. Wysocki 	if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
339348fb2e24SLai Jiangshan 		for_each_node_state(nid, N_MEMORY) {
3394c5f59f08SMike Travis 			pg_data_t *pgdat = NODE_DATA(nid);
3395a70f7302SRusty Russell 			const struct cpumask *mask;
3396a70f7302SRusty Russell 
3397a70f7302SRusty Russell 			mask = cpumask_of_node(pgdat->node_id);
3398c5f59f08SMike Travis 
33993e597945SRusty Russell 			if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
34001da177e4SLinus Torvalds 				/* One of our CPUs online: restore mask */
3401c5f59f08SMike Travis 				set_cpus_allowed_ptr(pgdat->kswapd, mask);
34021da177e4SLinus Torvalds 		}
34031da177e4SLinus Torvalds 	}
34041da177e4SLinus Torvalds 	return NOTIFY_OK;
34051da177e4SLinus Torvalds }
34061da177e4SLinus Torvalds 
34073218ae14SYasunori Goto /*
34083218ae14SYasunori Goto  * This kswapd start function will be called by init and node-hot-add.
34093218ae14SYasunori Goto  * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
34103218ae14SYasunori Goto  */
34113218ae14SYasunori Goto int kswapd_run(int nid)
34123218ae14SYasunori Goto {
34133218ae14SYasunori Goto 	pg_data_t *pgdat = NODE_DATA(nid);
34143218ae14SYasunori Goto 	int ret = 0;
34153218ae14SYasunori Goto 
34163218ae14SYasunori Goto 	if (pgdat->kswapd)
34173218ae14SYasunori Goto 		return 0;
34183218ae14SYasunori Goto 
34193218ae14SYasunori Goto 	pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
34203218ae14SYasunori Goto 	if (IS_ERR(pgdat->kswapd)) {
34213218ae14SYasunori Goto 		/* failure at boot is fatal */
34223218ae14SYasunori Goto 		BUG_ON(system_state == SYSTEM_BOOTING);
3423d5dc0ad9SGavin Shan 		pr_err("Failed to start kswapd on node %d\n", nid);
3424d5dc0ad9SGavin Shan 		ret = PTR_ERR(pgdat->kswapd);
3425d72515b8SXishi Qiu 		pgdat->kswapd = NULL;
34263218ae14SYasunori Goto 	}
34273218ae14SYasunori Goto 	return ret;
34283218ae14SYasunori Goto }
34293218ae14SYasunori Goto 
34308fe23e05SDavid Rientjes /*
3431d8adde17SJiang Liu  * Called by memory hotplug when all memory in a node is offlined.  Caller must
3432d8adde17SJiang Liu  * hold lock_memory_hotplug().
34338fe23e05SDavid Rientjes  */
34348fe23e05SDavid Rientjes void kswapd_stop(int nid)
34358fe23e05SDavid Rientjes {
34368fe23e05SDavid Rientjes 	struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
34378fe23e05SDavid Rientjes 
3438d8adde17SJiang Liu 	if (kswapd) {
34398fe23e05SDavid Rientjes 		kthread_stop(kswapd);
3440d8adde17SJiang Liu 		NODE_DATA(nid)->kswapd = NULL;
3441d8adde17SJiang Liu 	}
34428fe23e05SDavid Rientjes }
34438fe23e05SDavid Rientjes 
34441da177e4SLinus Torvalds static int __init kswapd_init(void)
34451da177e4SLinus Torvalds {
34463218ae14SYasunori Goto 	int nid;
344769e05944SAndrew Morton 
34481da177e4SLinus Torvalds 	swap_setup();
344948fb2e24SLai Jiangshan 	for_each_node_state(nid, N_MEMORY)
34503218ae14SYasunori Goto  		kswapd_run(nid);
34511da177e4SLinus Torvalds 	hotcpu_notifier(cpu_callback, 0);
34521da177e4SLinus Torvalds 	return 0;
34531da177e4SLinus Torvalds }
34541da177e4SLinus Torvalds 
34551da177e4SLinus Torvalds module_init(kswapd_init)
34569eeff239SChristoph Lameter 
34579eeff239SChristoph Lameter #ifdef CONFIG_NUMA
34589eeff239SChristoph Lameter /*
34599eeff239SChristoph Lameter  * Zone reclaim mode
34609eeff239SChristoph Lameter  *
34619eeff239SChristoph Lameter  * If non-zero call zone_reclaim when the number of free pages falls below
34629eeff239SChristoph Lameter  * the watermarks.
34639eeff239SChristoph Lameter  */
34649eeff239SChristoph Lameter int zone_reclaim_mode __read_mostly;
34659eeff239SChristoph Lameter 
34661b2ffb78SChristoph Lameter #define RECLAIM_OFF 0
34677d03431cSFernando Luis Vazquez Cao #define RECLAIM_ZONE (1<<0)	/* Run shrink_inactive_list on the zone */
34681b2ffb78SChristoph Lameter #define RECLAIM_WRITE (1<<1)	/* Writeout pages during reclaim */
34691b2ffb78SChristoph Lameter #define RECLAIM_SWAP (1<<2)	/* Swap pages out during reclaim */
34701b2ffb78SChristoph Lameter 
34719eeff239SChristoph Lameter /*
3472a92f7126SChristoph Lameter  * Priority for ZONE_RECLAIM. This determines the fraction of pages
3473a92f7126SChristoph Lameter  * of a node considered for each zone_reclaim. 4 scans 1/16th of
3474a92f7126SChristoph Lameter  * a zone.
3475a92f7126SChristoph Lameter  */
3476a92f7126SChristoph Lameter #define ZONE_RECLAIM_PRIORITY 4
3477a92f7126SChristoph Lameter 
34789eeff239SChristoph Lameter /*
34799614634fSChristoph Lameter  * Percentage of pages in a zone that must be unmapped for zone_reclaim to
34809614634fSChristoph Lameter  * occur.
34819614634fSChristoph Lameter  */
34829614634fSChristoph Lameter int sysctl_min_unmapped_ratio = 1;
34839614634fSChristoph Lameter 
34849614634fSChristoph Lameter /*
34850ff38490SChristoph Lameter  * If the number of slab pages in a zone grows beyond this percentage then
34860ff38490SChristoph Lameter  * slab reclaim needs to occur.
34870ff38490SChristoph Lameter  */
34880ff38490SChristoph Lameter int sysctl_min_slab_ratio = 5;
34890ff38490SChristoph Lameter 
349090afa5deSMel Gorman static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
349190afa5deSMel Gorman {
349290afa5deSMel Gorman 	unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
349390afa5deSMel Gorman 	unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
349490afa5deSMel Gorman 		zone_page_state(zone, NR_ACTIVE_FILE);
349590afa5deSMel Gorman 
349690afa5deSMel Gorman 	/*
349790afa5deSMel Gorman 	 * It's possible for there to be more file mapped pages than
349890afa5deSMel Gorman 	 * accounted for by the pages on the file LRU lists because
349990afa5deSMel Gorman 	 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
350090afa5deSMel Gorman 	 */
350190afa5deSMel Gorman 	return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
350290afa5deSMel Gorman }
350390afa5deSMel Gorman 
350490afa5deSMel Gorman /* Work out how many page cache pages we can reclaim in this reclaim_mode */
350590afa5deSMel Gorman static long zone_pagecache_reclaimable(struct zone *zone)
350690afa5deSMel Gorman {
350790afa5deSMel Gorman 	long nr_pagecache_reclaimable;
350890afa5deSMel Gorman 	long delta = 0;
350990afa5deSMel Gorman 
351090afa5deSMel Gorman 	/*
351190afa5deSMel Gorman 	 * If RECLAIM_SWAP is set, then all file pages are considered
351290afa5deSMel Gorman 	 * potentially reclaimable. Otherwise, we have to worry about
351390afa5deSMel Gorman 	 * pages like swapcache and zone_unmapped_file_pages() provides
351490afa5deSMel Gorman 	 * a better estimate
351590afa5deSMel Gorman 	 */
351690afa5deSMel Gorman 	if (zone_reclaim_mode & RECLAIM_SWAP)
351790afa5deSMel Gorman 		nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
351890afa5deSMel Gorman 	else
351990afa5deSMel Gorman 		nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
352090afa5deSMel Gorman 
352190afa5deSMel Gorman 	/* If we can't clean pages, remove dirty pages from consideration */
352290afa5deSMel Gorman 	if (!(zone_reclaim_mode & RECLAIM_WRITE))
352390afa5deSMel Gorman 		delta += zone_page_state(zone, NR_FILE_DIRTY);
352490afa5deSMel Gorman 
352590afa5deSMel Gorman 	/* Watch for any possible underflows due to delta */
352690afa5deSMel Gorman 	if (unlikely(delta > nr_pagecache_reclaimable))
352790afa5deSMel Gorman 		delta = nr_pagecache_reclaimable;
352890afa5deSMel Gorman 
352990afa5deSMel Gorman 	return nr_pagecache_reclaimable - delta;
353090afa5deSMel Gorman }
353190afa5deSMel Gorman 
35320ff38490SChristoph Lameter /*
35339eeff239SChristoph Lameter  * Try to free up some pages from this zone through reclaim.
35349eeff239SChristoph Lameter  */
3535179e9639SAndrew Morton static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
35369eeff239SChristoph Lameter {
35377fb2d46dSChristoph Lameter 	/* Minimum pages needed in order to stay on node */
353869e05944SAndrew Morton 	const unsigned long nr_pages = 1 << order;
35399eeff239SChristoph Lameter 	struct task_struct *p = current;
35409eeff239SChristoph Lameter 	struct reclaim_state reclaim_state;
3541179e9639SAndrew Morton 	struct scan_control sc = {
3542179e9639SAndrew Morton 		.may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
3543a6dc60f8SJohannes Weiner 		.may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
35442e2e4259SKOSAKI Motohiro 		.may_swap = 1,
354562b726c1SAndrew Morton 		.nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
354621caf2fcSMing Lei 		.gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)),
3547bd2f6199SJohannes Weiner 		.order = order,
35489e3b2f8cSKonstantin Khlebnikov 		.priority = ZONE_RECLAIM_PRIORITY,
3549179e9639SAndrew Morton 	};
3550a09ed5e0SYing Han 	struct shrink_control shrink = {
3551a09ed5e0SYing Han 		.gfp_mask = sc.gfp_mask,
3552a09ed5e0SYing Han 	};
355315748048SKOSAKI Motohiro 	unsigned long nr_slab_pages0, nr_slab_pages1;
35549eeff239SChristoph Lameter 
35559eeff239SChristoph Lameter 	cond_resched();
3556d4f7796eSChristoph Lameter 	/*
3557d4f7796eSChristoph Lameter 	 * We need to be able to allocate from the reserves for RECLAIM_SWAP
3558d4f7796eSChristoph Lameter 	 * and we also need to be able to write out pages for RECLAIM_WRITE
3559d4f7796eSChristoph Lameter 	 * and RECLAIM_SWAP.
3560d4f7796eSChristoph Lameter 	 */
3561d4f7796eSChristoph Lameter 	p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
356276ca542dSKOSAKI Motohiro 	lockdep_set_current_reclaim_state(gfp_mask);
35639eeff239SChristoph Lameter 	reclaim_state.reclaimed_slab = 0;
35649eeff239SChristoph Lameter 	p->reclaim_state = &reclaim_state;
3565c84db23cSChristoph Lameter 
356690afa5deSMel Gorman 	if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
3567a92f7126SChristoph Lameter 		/*
35680ff38490SChristoph Lameter 		 * Free memory by calling shrink zone with increasing
35690ff38490SChristoph Lameter 		 * priorities until we have enough memory freed.
3570a92f7126SChristoph Lameter 		 */
3571a92f7126SChristoph Lameter 		do {
35729e3b2f8cSKonstantin Khlebnikov 			shrink_zone(zone, &sc);
35739e3b2f8cSKonstantin Khlebnikov 		} while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
35740ff38490SChristoph Lameter 	}
3575a92f7126SChristoph Lameter 
357615748048SKOSAKI Motohiro 	nr_slab_pages0 = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
357715748048SKOSAKI Motohiro 	if (nr_slab_pages0 > zone->min_slab_pages) {
35782a16e3f4SChristoph Lameter 		/*
35797fb2d46dSChristoph Lameter 		 * shrink_slab() does not currently allow us to determine how
35800ff38490SChristoph Lameter 		 * many pages were freed in this zone. So we take the current
35810ff38490SChristoph Lameter 		 * number of slab pages and shake the slab until it is reduced
35820ff38490SChristoph Lameter 		 * by the same nr_pages that we used for reclaiming unmapped
35830ff38490SChristoph Lameter 		 * pages.
35842a16e3f4SChristoph Lameter 		 */
35850ce3d744SDave Chinner 		nodes_clear(shrink.nodes_to_scan);
35860ce3d744SDave Chinner 		node_set(zone_to_nid(zone), shrink.nodes_to_scan);
35874dc4b3d9SKOSAKI Motohiro 		for (;;) {
35884dc4b3d9SKOSAKI Motohiro 			unsigned long lru_pages = zone_reclaimable_pages(zone);
35894dc4b3d9SKOSAKI Motohiro 
35904dc4b3d9SKOSAKI Motohiro 			/* No reclaimable slab or very low memory pressure */
35911495f230SYing Han 			if (!shrink_slab(&shrink, sc.nr_scanned, lru_pages))
35924dc4b3d9SKOSAKI Motohiro 				break;
35934dc4b3d9SKOSAKI Motohiro 
35944dc4b3d9SKOSAKI Motohiro 			/* Freed enough memory */
35954dc4b3d9SKOSAKI Motohiro 			nr_slab_pages1 = zone_page_state(zone,
35964dc4b3d9SKOSAKI Motohiro 							NR_SLAB_RECLAIMABLE);
35974dc4b3d9SKOSAKI Motohiro 			if (nr_slab_pages1 + nr_pages <= nr_slab_pages0)
35984dc4b3d9SKOSAKI Motohiro 				break;
35994dc4b3d9SKOSAKI Motohiro 		}
360083e33a47SChristoph Lameter 
360183e33a47SChristoph Lameter 		/*
360283e33a47SChristoph Lameter 		 * Update nr_reclaimed by the number of slab pages we
360383e33a47SChristoph Lameter 		 * reclaimed from this zone.
360483e33a47SChristoph Lameter 		 */
360515748048SKOSAKI Motohiro 		nr_slab_pages1 = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
360615748048SKOSAKI Motohiro 		if (nr_slab_pages1 < nr_slab_pages0)
360715748048SKOSAKI Motohiro 			sc.nr_reclaimed += nr_slab_pages0 - nr_slab_pages1;
36082a16e3f4SChristoph Lameter 	}
36092a16e3f4SChristoph Lameter 
36109eeff239SChristoph Lameter 	p->reclaim_state = NULL;
3611d4f7796eSChristoph Lameter 	current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
361276ca542dSKOSAKI Motohiro 	lockdep_clear_current_reclaim_state();
3613a79311c1SRik van Riel 	return sc.nr_reclaimed >= nr_pages;
36149eeff239SChristoph Lameter }
3615179e9639SAndrew Morton 
3616179e9639SAndrew Morton int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
3617179e9639SAndrew Morton {
3618179e9639SAndrew Morton 	int node_id;
3619d773ed6bSDavid Rientjes 	int ret;
3620179e9639SAndrew Morton 
3621179e9639SAndrew Morton 	/*
36220ff38490SChristoph Lameter 	 * Zone reclaim reclaims unmapped file backed pages and
36230ff38490SChristoph Lameter 	 * slab pages if we are over the defined limits.
362434aa1330SChristoph Lameter 	 *
36259614634fSChristoph Lameter 	 * A small portion of unmapped file backed pages is needed for
36269614634fSChristoph Lameter 	 * file I/O otherwise pages read by file I/O will be immediately
36279614634fSChristoph Lameter 	 * thrown out if the zone is overallocated. So we do not reclaim
36289614634fSChristoph Lameter 	 * if less than a specified percentage of the zone is used by
36299614634fSChristoph Lameter 	 * unmapped file backed pages.
3630179e9639SAndrew Morton 	 */
363190afa5deSMel Gorman 	if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
363290afa5deSMel Gorman 	    zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
3633fa5e084eSMel Gorman 		return ZONE_RECLAIM_FULL;
3634179e9639SAndrew Morton 
36356e543d57SLisa Du 	if (!zone_reclaimable(zone))
3636fa5e084eSMel Gorman 		return ZONE_RECLAIM_FULL;
3637d773ed6bSDavid Rientjes 
3638179e9639SAndrew Morton 	/*
3639d773ed6bSDavid Rientjes 	 * Do not scan if the allocation should not be delayed.
3640179e9639SAndrew Morton 	 */
3641d773ed6bSDavid Rientjes 	if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
3642fa5e084eSMel Gorman 		return ZONE_RECLAIM_NOSCAN;
3643179e9639SAndrew Morton 
3644179e9639SAndrew Morton 	/*
3645179e9639SAndrew Morton 	 * Only run zone reclaim on the local zone or on zones that do not
3646179e9639SAndrew Morton 	 * have associated processors. This will favor the local processor
3647179e9639SAndrew Morton 	 * over remote processors and spread off node memory allocations
3648179e9639SAndrew Morton 	 * as wide as possible.
3649179e9639SAndrew Morton 	 */
365089fa3024SChristoph Lameter 	node_id = zone_to_nid(zone);
365137c0708dSChristoph Lameter 	if (node_state(node_id, N_CPU) && node_id != numa_node_id())
3652fa5e084eSMel Gorman 		return ZONE_RECLAIM_NOSCAN;
3653d773ed6bSDavid Rientjes 
3654d773ed6bSDavid Rientjes 	if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
3655fa5e084eSMel Gorman 		return ZONE_RECLAIM_NOSCAN;
3656fa5e084eSMel Gorman 
3657d773ed6bSDavid Rientjes 	ret = __zone_reclaim(zone, gfp_mask, order);
3658d773ed6bSDavid Rientjes 	zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
3659d773ed6bSDavid Rientjes 
366024cf7251SMel Gorman 	if (!ret)
366124cf7251SMel Gorman 		count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
366224cf7251SMel Gorman 
3663d773ed6bSDavid Rientjes 	return ret;
3664179e9639SAndrew Morton }
36659eeff239SChristoph Lameter #endif
3666894bc310SLee Schermerhorn 
3667894bc310SLee Schermerhorn /*
3668894bc310SLee Schermerhorn  * page_evictable - test whether a page is evictable
3669894bc310SLee Schermerhorn  * @page: the page to test
3670894bc310SLee Schermerhorn  *
3671894bc310SLee Schermerhorn  * Test whether page is evictable--i.e., should be placed on active/inactive
367239b5f29aSHugh Dickins  * lists vs unevictable list.
3673894bc310SLee Schermerhorn  *
3674894bc310SLee Schermerhorn  * Reasons page might not be evictable:
3675ba9ddf49SLee Schermerhorn  * (1) page's mapping marked unevictable
3676b291f000SNick Piggin  * (2) page is part of an mlocked VMA
3677ba9ddf49SLee Schermerhorn  *
3678894bc310SLee Schermerhorn  */
367939b5f29aSHugh Dickins int page_evictable(struct page *page)
3680894bc310SLee Schermerhorn {
368139b5f29aSHugh Dickins 	return !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
3682894bc310SLee Schermerhorn }
368389e004eaSLee Schermerhorn 
368485046579SHugh Dickins #ifdef CONFIG_SHMEM
368589e004eaSLee Schermerhorn /**
368624513264SHugh Dickins  * check_move_unevictable_pages - check pages for evictability and move to appropriate zone lru list
368724513264SHugh Dickins  * @pages:	array of pages to check
368824513264SHugh Dickins  * @nr_pages:	number of pages to check
368989e004eaSLee Schermerhorn  *
369024513264SHugh Dickins  * Checks pages for evictability and moves them to the appropriate lru list.
369185046579SHugh Dickins  *
369285046579SHugh Dickins  * This function is only used for SysV IPC SHM_UNLOCK.
369389e004eaSLee Schermerhorn  */
369424513264SHugh Dickins void check_move_unevictable_pages(struct page **pages, int nr_pages)
369589e004eaSLee Schermerhorn {
3696925b7673SJohannes Weiner 	struct lruvec *lruvec;
369724513264SHugh Dickins 	struct zone *zone = NULL;
369824513264SHugh Dickins 	int pgscanned = 0;
369924513264SHugh Dickins 	int pgrescued = 0;
370089e004eaSLee Schermerhorn 	int i;
370189e004eaSLee Schermerhorn 
370224513264SHugh Dickins 	for (i = 0; i < nr_pages; i++) {
370324513264SHugh Dickins 		struct page *page = pages[i];
370424513264SHugh Dickins 		struct zone *pagezone;
370589e004eaSLee Schermerhorn 
370624513264SHugh Dickins 		pgscanned++;
370724513264SHugh Dickins 		pagezone = page_zone(page);
370889e004eaSLee Schermerhorn 		if (pagezone != zone) {
370989e004eaSLee Schermerhorn 			if (zone)
371089e004eaSLee Schermerhorn 				spin_unlock_irq(&zone->lru_lock);
371189e004eaSLee Schermerhorn 			zone = pagezone;
371289e004eaSLee Schermerhorn 			spin_lock_irq(&zone->lru_lock);
371389e004eaSLee Schermerhorn 		}
3714fa9add64SHugh Dickins 		lruvec = mem_cgroup_page_lruvec(page, zone);
371589e004eaSLee Schermerhorn 
371624513264SHugh Dickins 		if (!PageLRU(page) || !PageUnevictable(page))
371724513264SHugh Dickins 			continue;
371889e004eaSLee Schermerhorn 
371939b5f29aSHugh Dickins 		if (page_evictable(page)) {
372024513264SHugh Dickins 			enum lru_list lru = page_lru_base_type(page);
372124513264SHugh Dickins 
3722309381feSSasha Levin 			VM_BUG_ON_PAGE(PageActive(page), page);
372324513264SHugh Dickins 			ClearPageUnevictable(page);
3724fa9add64SHugh Dickins 			del_page_from_lru_list(page, lruvec, LRU_UNEVICTABLE);
3725fa9add64SHugh Dickins 			add_page_to_lru_list(page, lruvec, lru);
372624513264SHugh Dickins 			pgrescued++;
372789e004eaSLee Schermerhorn 		}
372889e004eaSLee Schermerhorn 	}
372924513264SHugh Dickins 
373024513264SHugh Dickins 	if (zone) {
373124513264SHugh Dickins 		__count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
373224513264SHugh Dickins 		__count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
373324513264SHugh Dickins 		spin_unlock_irq(&zone->lru_lock);
373424513264SHugh Dickins 	}
373585046579SHugh Dickins }
373685046579SHugh Dickins #endif /* CONFIG_SHMEM */
3737af936a16SLee Schermerhorn 
3738264e56d8SJohannes Weiner static void warn_scan_unevictable_pages(void)
3739af936a16SLee Schermerhorn {
3740264e56d8SJohannes Weiner 	printk_once(KERN_WARNING
374125bd91bdSKOSAKI Motohiro 		    "%s: The scan_unevictable_pages sysctl/node-interface has been "
3742264e56d8SJohannes Weiner 		    "disabled for lack of a legitimate use case.  If you have "
374325bd91bdSKOSAKI Motohiro 		    "one, please send an email to linux-mm@kvack.org.\n",
374425bd91bdSKOSAKI Motohiro 		    current->comm);
3745af936a16SLee Schermerhorn }
3746af936a16SLee Schermerhorn 
3747af936a16SLee Schermerhorn /*
3748af936a16SLee Schermerhorn  * scan_unevictable_pages [vm] sysctl handler.  On demand re-scan of
3749af936a16SLee Schermerhorn  * all nodes' unevictable lists for evictable pages
3750af936a16SLee Schermerhorn  */
3751af936a16SLee Schermerhorn unsigned long scan_unevictable_pages;
3752af936a16SLee Schermerhorn 
3753af936a16SLee Schermerhorn int scan_unevictable_handler(struct ctl_table *table, int write,
37548d65af78SAlexey Dobriyan 			   void __user *buffer,
3755af936a16SLee Schermerhorn 			   size_t *length, loff_t *ppos)
3756af936a16SLee Schermerhorn {
3757264e56d8SJohannes Weiner 	warn_scan_unevictable_pages();
37588d65af78SAlexey Dobriyan 	proc_doulongvec_minmax(table, write, buffer, length, ppos);
3759af936a16SLee Schermerhorn 	scan_unevictable_pages = 0;
3760af936a16SLee Schermerhorn 	return 0;
3761af936a16SLee Schermerhorn }
3762af936a16SLee Schermerhorn 
3763e4455abbSThadeu Lima de Souza Cascardo #ifdef CONFIG_NUMA
3764af936a16SLee Schermerhorn /*
3765af936a16SLee Schermerhorn  * per node 'scan_unevictable_pages' attribute.  On demand re-scan of
3766af936a16SLee Schermerhorn  * a specified node's per zone unevictable lists for evictable pages.
3767af936a16SLee Schermerhorn  */
3768af936a16SLee Schermerhorn 
376910fbcf4cSKay Sievers static ssize_t read_scan_unevictable_node(struct device *dev,
377010fbcf4cSKay Sievers 					  struct device_attribute *attr,
3771af936a16SLee Schermerhorn 					  char *buf)
3772af936a16SLee Schermerhorn {
3773264e56d8SJohannes Weiner 	warn_scan_unevictable_pages();
3774af936a16SLee Schermerhorn 	return sprintf(buf, "0\n");	/* always zero; should fit... */
3775af936a16SLee Schermerhorn }
3776af936a16SLee Schermerhorn 
377710fbcf4cSKay Sievers static ssize_t write_scan_unevictable_node(struct device *dev,
377810fbcf4cSKay Sievers 					   struct device_attribute *attr,
3779af936a16SLee Schermerhorn 					const char *buf, size_t count)
3780af936a16SLee Schermerhorn {
3781264e56d8SJohannes Weiner 	warn_scan_unevictable_pages();
3782af936a16SLee Schermerhorn 	return 1;
3783af936a16SLee Schermerhorn }
3784af936a16SLee Schermerhorn 
3785af936a16SLee Schermerhorn 
378610fbcf4cSKay Sievers static DEVICE_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
3787af936a16SLee Schermerhorn 			read_scan_unevictable_node,
3788af936a16SLee Schermerhorn 			write_scan_unevictable_node);
3789af936a16SLee Schermerhorn 
3790af936a16SLee Schermerhorn int scan_unevictable_register_node(struct node *node)
3791af936a16SLee Schermerhorn {
379210fbcf4cSKay Sievers 	return device_create_file(&node->dev, &dev_attr_scan_unevictable_pages);
3793af936a16SLee Schermerhorn }
3794af936a16SLee Schermerhorn 
3795af936a16SLee Schermerhorn void scan_unevictable_unregister_node(struct node *node)
3796af936a16SLee Schermerhorn {
379710fbcf4cSKay Sievers 	device_remove_file(&node->dev, &dev_attr_scan_unevictable_pages);
3798af936a16SLee Schermerhorn }
3799e4455abbSThadeu Lima de Souza Cascardo #endif
3800