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 150a1c3bfb2SJohannes Weiner static 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; 227d5bc5fd3SVladimir Davydov long freeable; 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 234d5bc5fd3SVladimir Davydov freeable = shrinker->count_objects(shrinker, shrinkctl); 235d5bc5fd3SVladimir Davydov if (freeable == 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; 247d5bc5fd3SVladimir Davydov delta *= freeable; 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); 254d5bc5fd3SVladimir Davydov total_scan = freeable; 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 >>> 263d5bc5fd3SVladimir Davydov * freeable. 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 */ 269d5bc5fd3SVladimir Davydov if (delta < freeable / 4) 270d5bc5fd3SVladimir Davydov total_scan = min(total_scan, freeable / 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 */ 277d5bc5fd3SVladimir Davydov if (total_scan > freeable * 2) 278d5bc5fd3SVladimir Davydov total_scan = freeable * 2; 2791da177e4SLinus Torvalds 28024f7c6b9SDave Chinner trace_mm_shrink_slab_start(shrinker, shrinkctl, nr, 28109576073SDave Chinner nr_pages_scanned, lru_pages, 282d5bc5fd3SVladimir Davydov freeable, 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 295d5bc5fd3SVladimir Davydov * than the total number of objects on slab (freeable), 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 || 300d5bc5fd3SVladimir Davydov total_scan >= freeable) { 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) { 372ec97097bSVladimir Davydov if (!(shrinker->flags & SHRINKER_NUMA_AWARE)) { 373ec97097bSVladimir Davydov shrinkctl->nid = 0; 374ec97097bSVladimir Davydov freed += shrink_slab_node(shrinkctl, shrinker, 375ec97097bSVladimir Davydov nr_pages_scanned, lru_pages); 3761d3d4437SGlauber Costa continue; 377ec97097bSVladimir Davydov } 3781d3d4437SGlauber Costa 379ec97097bSVladimir Davydov for_each_node_mask(shrinkctl->nid, shrinkctl->nodes_to_scan) { 380ec97097bSVladimir 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 */ 526a528910eSJohannes Weiner static int __remove_mapping(struct address_space *mapping, struct page *page, 527a528910eSJohannes Weiner bool reclaimed) 52849d2e9ccSChristoph Lameter { 52928e4d965SNick Piggin BUG_ON(!PageLocked(page)); 53028e4d965SNick Piggin BUG_ON(mapping != page_mapping(page)); 53149d2e9ccSChristoph Lameter 53219fd6231SNick Piggin spin_lock_irq(&mapping->tree_lock); 53349d2e9ccSChristoph Lameter /* 5340fd0e6b0SNick Piggin * The non racy check for a busy page. 5350fd0e6b0SNick Piggin * 5360fd0e6b0SNick Piggin * Must be careful with the order of the tests. When someone has 5370fd0e6b0SNick Piggin * a ref to the page, it may be possible that they dirty it then 5380fd0e6b0SNick Piggin * drop the reference. So if PageDirty is tested before page_count 5390fd0e6b0SNick Piggin * here, then the following race may occur: 5400fd0e6b0SNick Piggin * 5410fd0e6b0SNick Piggin * get_user_pages(&page); 5420fd0e6b0SNick Piggin * [user mapping goes away] 5430fd0e6b0SNick Piggin * write_to(page); 5440fd0e6b0SNick Piggin * !PageDirty(page) [good] 5450fd0e6b0SNick Piggin * SetPageDirty(page); 5460fd0e6b0SNick Piggin * put_page(page); 5470fd0e6b0SNick Piggin * !page_count(page) [good, discard it] 5480fd0e6b0SNick Piggin * 5490fd0e6b0SNick Piggin * [oops, our write_to data is lost] 5500fd0e6b0SNick Piggin * 5510fd0e6b0SNick Piggin * Reversing the order of the tests ensures such a situation cannot 5520fd0e6b0SNick Piggin * escape unnoticed. The smp_rmb is needed to ensure the page->flags 5530fd0e6b0SNick Piggin * load is not satisfied before that of page->_count. 5540fd0e6b0SNick Piggin * 5550fd0e6b0SNick Piggin * Note that if SetPageDirty is always performed via set_page_dirty, 5560fd0e6b0SNick Piggin * and thus under tree_lock, then this ordering is not required. 55749d2e9ccSChristoph Lameter */ 558e286781dSNick Piggin if (!page_freeze_refs(page, 2)) 55949d2e9ccSChristoph Lameter goto cannot_free; 560e286781dSNick Piggin /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */ 561e286781dSNick Piggin if (unlikely(PageDirty(page))) { 562e286781dSNick Piggin page_unfreeze_refs(page, 2); 56349d2e9ccSChristoph Lameter goto cannot_free; 564e286781dSNick Piggin } 56549d2e9ccSChristoph Lameter 56649d2e9ccSChristoph Lameter if (PageSwapCache(page)) { 56749d2e9ccSChristoph Lameter swp_entry_t swap = { .val = page_private(page) }; 56849d2e9ccSChristoph Lameter __delete_from_swap_cache(page); 56919fd6231SNick Piggin spin_unlock_irq(&mapping->tree_lock); 570cb4b86baSKAMEZAWA Hiroyuki swapcache_free(swap, page); 571e286781dSNick Piggin } else { 5726072d13cSLinus Torvalds void (*freepage)(struct page *); 573a528910eSJohannes Weiner void *shadow = NULL; 5746072d13cSLinus Torvalds 5756072d13cSLinus Torvalds freepage = mapping->a_ops->freepage; 576a528910eSJohannes Weiner /* 577a528910eSJohannes Weiner * Remember a shadow entry for reclaimed file cache in 578a528910eSJohannes Weiner * order to detect refaults, thus thrashing, later on. 579a528910eSJohannes Weiner * 580a528910eSJohannes Weiner * But don't store shadows in an address space that is 581a528910eSJohannes Weiner * already exiting. This is not just an optizimation, 582a528910eSJohannes Weiner * inode reclaim needs to empty out the radix tree or 583a528910eSJohannes Weiner * the nodes are lost. Don't plant shadows behind its 584a528910eSJohannes Weiner * back. 585a528910eSJohannes Weiner */ 586a528910eSJohannes Weiner if (reclaimed && page_is_file_cache(page) && 587a528910eSJohannes Weiner !mapping_exiting(mapping)) 588a528910eSJohannes Weiner shadow = workingset_eviction(mapping, page); 589a528910eSJohannes Weiner __delete_from_page_cache(page, shadow); 59019fd6231SNick Piggin spin_unlock_irq(&mapping->tree_lock); 591e767e056SDaisuke Nishimura mem_cgroup_uncharge_cache_page(page); 5926072d13cSLinus Torvalds 5936072d13cSLinus Torvalds if (freepage != NULL) 5946072d13cSLinus Torvalds freepage(page); 595e286781dSNick Piggin } 596e286781dSNick Piggin 59749d2e9ccSChristoph Lameter return 1; 59849d2e9ccSChristoph Lameter 59949d2e9ccSChristoph Lameter cannot_free: 60019fd6231SNick Piggin spin_unlock_irq(&mapping->tree_lock); 60149d2e9ccSChristoph Lameter return 0; 60249d2e9ccSChristoph Lameter } 60349d2e9ccSChristoph Lameter 6041da177e4SLinus Torvalds /* 605e286781dSNick Piggin * Attempt to detach a locked page from its ->mapping. If it is dirty or if 606e286781dSNick Piggin * someone else has a ref on the page, abort and return 0. If it was 607e286781dSNick Piggin * successfully detached, return 1. Assumes the caller has a single ref on 608e286781dSNick Piggin * this page. 609e286781dSNick Piggin */ 610e286781dSNick Piggin int remove_mapping(struct address_space *mapping, struct page *page) 611e286781dSNick Piggin { 612a528910eSJohannes Weiner if (__remove_mapping(mapping, page, false)) { 613e286781dSNick Piggin /* 614e286781dSNick Piggin * Unfreezing the refcount with 1 rather than 2 effectively 615e286781dSNick Piggin * drops the pagecache ref for us without requiring another 616e286781dSNick Piggin * atomic operation. 617e286781dSNick Piggin */ 618e286781dSNick Piggin page_unfreeze_refs(page, 1); 619e286781dSNick Piggin return 1; 620e286781dSNick Piggin } 621e286781dSNick Piggin return 0; 622e286781dSNick Piggin } 623e286781dSNick Piggin 624894bc310SLee Schermerhorn /** 625894bc310SLee Schermerhorn * putback_lru_page - put previously isolated page onto appropriate LRU list 626894bc310SLee Schermerhorn * @page: page to be put back to appropriate lru list 627894bc310SLee Schermerhorn * 628894bc310SLee Schermerhorn * Add previously isolated @page to appropriate LRU list. 629894bc310SLee Schermerhorn * Page may still be unevictable for other reasons. 630894bc310SLee Schermerhorn * 631894bc310SLee Schermerhorn * lru_lock must not be held, interrupts must be enabled. 632894bc310SLee Schermerhorn */ 633894bc310SLee Schermerhorn void putback_lru_page(struct page *page) 634894bc310SLee Schermerhorn { 6350ec3b74cSVlastimil Babka bool is_unevictable; 636bbfd28eeSLee Schermerhorn int was_unevictable = PageUnevictable(page); 637894bc310SLee Schermerhorn 638309381feSSasha Levin VM_BUG_ON_PAGE(PageLRU(page), page); 639894bc310SLee Schermerhorn 640894bc310SLee Schermerhorn redo: 641894bc310SLee Schermerhorn ClearPageUnevictable(page); 642894bc310SLee Schermerhorn 64339b5f29aSHugh Dickins if (page_evictable(page)) { 644894bc310SLee Schermerhorn /* 645894bc310SLee Schermerhorn * For evictable pages, we can use the cache. 646894bc310SLee Schermerhorn * In event of a race, worst case is we end up with an 647894bc310SLee Schermerhorn * unevictable page on [in]active list. 648894bc310SLee Schermerhorn * We know how to handle that. 649894bc310SLee Schermerhorn */ 6500ec3b74cSVlastimil Babka is_unevictable = false; 651c53954a0SMel Gorman lru_cache_add(page); 652894bc310SLee Schermerhorn } else { 653894bc310SLee Schermerhorn /* 654894bc310SLee Schermerhorn * Put unevictable pages directly on zone's unevictable 655894bc310SLee Schermerhorn * list. 656894bc310SLee Schermerhorn */ 6570ec3b74cSVlastimil Babka is_unevictable = true; 658894bc310SLee Schermerhorn add_page_to_unevictable_list(page); 6596a7b9548SJohannes Weiner /* 66021ee9f39SMinchan Kim * When racing with an mlock or AS_UNEVICTABLE clearing 66121ee9f39SMinchan Kim * (page is unlocked) make sure that if the other thread 66221ee9f39SMinchan Kim * does not observe our setting of PG_lru and fails 66324513264SHugh Dickins * isolation/check_move_unevictable_pages, 66421ee9f39SMinchan Kim * we see PG_mlocked/AS_UNEVICTABLE cleared below and move 6656a7b9548SJohannes Weiner * the page back to the evictable list. 6666a7b9548SJohannes Weiner * 66721ee9f39SMinchan Kim * The other side is TestClearPageMlocked() or shmem_lock(). 6686a7b9548SJohannes Weiner */ 6696a7b9548SJohannes Weiner smp_mb(); 670894bc310SLee Schermerhorn } 671894bc310SLee Schermerhorn 672894bc310SLee Schermerhorn /* 673894bc310SLee Schermerhorn * page's status can change while we move it among lru. If an evictable 674894bc310SLee Schermerhorn * page is on unevictable list, it never be freed. To avoid that, 675894bc310SLee Schermerhorn * check after we added it to the list, again. 676894bc310SLee Schermerhorn */ 6770ec3b74cSVlastimil Babka if (is_unevictable && page_evictable(page)) { 678894bc310SLee Schermerhorn if (!isolate_lru_page(page)) { 679894bc310SLee Schermerhorn put_page(page); 680894bc310SLee Schermerhorn goto redo; 681894bc310SLee Schermerhorn } 682894bc310SLee Schermerhorn /* This means someone else dropped this page from LRU 683894bc310SLee Schermerhorn * So, it will be freed or putback to LRU again. There is 684894bc310SLee Schermerhorn * nothing to do here. 685894bc310SLee Schermerhorn */ 686894bc310SLee Schermerhorn } 687894bc310SLee Schermerhorn 6880ec3b74cSVlastimil Babka if (was_unevictable && !is_unevictable) 689bbfd28eeSLee Schermerhorn count_vm_event(UNEVICTABLE_PGRESCUED); 6900ec3b74cSVlastimil Babka else if (!was_unevictable && is_unevictable) 691bbfd28eeSLee Schermerhorn count_vm_event(UNEVICTABLE_PGCULLED); 692bbfd28eeSLee Schermerhorn 693894bc310SLee Schermerhorn put_page(page); /* drop ref from isolate */ 694894bc310SLee Schermerhorn } 695894bc310SLee Schermerhorn 696dfc8d636SJohannes Weiner enum page_references { 697dfc8d636SJohannes Weiner PAGEREF_RECLAIM, 698dfc8d636SJohannes Weiner PAGEREF_RECLAIM_CLEAN, 69964574746SJohannes Weiner PAGEREF_KEEP, 700dfc8d636SJohannes Weiner PAGEREF_ACTIVATE, 701dfc8d636SJohannes Weiner }; 702dfc8d636SJohannes Weiner 703dfc8d636SJohannes Weiner static enum page_references page_check_references(struct page *page, 704dfc8d636SJohannes Weiner struct scan_control *sc) 705dfc8d636SJohannes Weiner { 70664574746SJohannes Weiner int referenced_ptes, referenced_page; 707dfc8d636SJohannes Weiner unsigned long vm_flags; 708dfc8d636SJohannes Weiner 709c3ac9a8aSJohannes Weiner referenced_ptes = page_referenced(page, 1, sc->target_mem_cgroup, 710c3ac9a8aSJohannes Weiner &vm_flags); 71164574746SJohannes Weiner referenced_page = TestClearPageReferenced(page); 712dfc8d636SJohannes Weiner 713dfc8d636SJohannes Weiner /* 714dfc8d636SJohannes Weiner * Mlock lost the isolation race with us. Let try_to_unmap() 715dfc8d636SJohannes Weiner * move the page to the unevictable list. 716dfc8d636SJohannes Weiner */ 717dfc8d636SJohannes Weiner if (vm_flags & VM_LOCKED) 718dfc8d636SJohannes Weiner return PAGEREF_RECLAIM; 719dfc8d636SJohannes Weiner 72064574746SJohannes Weiner if (referenced_ptes) { 721e4898273SMichal Hocko if (PageSwapBacked(page)) 72264574746SJohannes Weiner return PAGEREF_ACTIVATE; 72364574746SJohannes Weiner /* 72464574746SJohannes Weiner * All mapped pages start out with page table 72564574746SJohannes Weiner * references from the instantiating fault, so we need 72664574746SJohannes Weiner * to look twice if a mapped file page is used more 72764574746SJohannes Weiner * than once. 72864574746SJohannes Weiner * 72964574746SJohannes Weiner * Mark it and spare it for another trip around the 73064574746SJohannes Weiner * inactive list. Another page table reference will 73164574746SJohannes Weiner * lead to its activation. 73264574746SJohannes Weiner * 73364574746SJohannes Weiner * Note: the mark is set for activated pages as well 73464574746SJohannes Weiner * so that recently deactivated but used pages are 73564574746SJohannes Weiner * quickly recovered. 73664574746SJohannes Weiner */ 73764574746SJohannes Weiner SetPageReferenced(page); 73864574746SJohannes Weiner 73934dbc67aSKonstantin Khlebnikov if (referenced_page || referenced_ptes > 1) 740dfc8d636SJohannes Weiner return PAGEREF_ACTIVATE; 741dfc8d636SJohannes Weiner 742c909e993SKonstantin Khlebnikov /* 743c909e993SKonstantin Khlebnikov * Activate file-backed executable pages after first usage. 744c909e993SKonstantin Khlebnikov */ 745c909e993SKonstantin Khlebnikov if (vm_flags & VM_EXEC) 746c909e993SKonstantin Khlebnikov return PAGEREF_ACTIVATE; 747c909e993SKonstantin Khlebnikov 74864574746SJohannes Weiner return PAGEREF_KEEP; 74964574746SJohannes Weiner } 75064574746SJohannes Weiner 751dfc8d636SJohannes Weiner /* Reclaim if clean, defer dirty pages to writeback */ 7522e30244aSKOSAKI Motohiro if (referenced_page && !PageSwapBacked(page)) 753dfc8d636SJohannes Weiner return PAGEREF_RECLAIM_CLEAN; 75464574746SJohannes Weiner 75564574746SJohannes Weiner return PAGEREF_RECLAIM; 756dfc8d636SJohannes Weiner } 757dfc8d636SJohannes Weiner 758e2be15f6SMel Gorman /* Check if a page is dirty or under writeback */ 759e2be15f6SMel Gorman static void page_check_dirty_writeback(struct page *page, 760e2be15f6SMel Gorman bool *dirty, bool *writeback) 761e2be15f6SMel Gorman { 762b4597226SMel Gorman struct address_space *mapping; 763b4597226SMel Gorman 764e2be15f6SMel Gorman /* 765e2be15f6SMel Gorman * Anonymous pages are not handled by flushers and must be written 766e2be15f6SMel Gorman * from reclaim context. Do not stall reclaim based on them 767e2be15f6SMel Gorman */ 768e2be15f6SMel Gorman if (!page_is_file_cache(page)) { 769e2be15f6SMel Gorman *dirty = false; 770e2be15f6SMel Gorman *writeback = false; 771e2be15f6SMel Gorman return; 772e2be15f6SMel Gorman } 773e2be15f6SMel Gorman 774e2be15f6SMel Gorman /* By default assume that the page flags are accurate */ 775e2be15f6SMel Gorman *dirty = PageDirty(page); 776e2be15f6SMel Gorman *writeback = PageWriteback(page); 777b4597226SMel Gorman 778b4597226SMel Gorman /* Verify dirty/writeback state if the filesystem supports it */ 779b4597226SMel Gorman if (!page_has_private(page)) 780b4597226SMel Gorman return; 781b4597226SMel Gorman 782b4597226SMel Gorman mapping = page_mapping(page); 783b4597226SMel Gorman if (mapping && mapping->a_ops->is_dirty_writeback) 784b4597226SMel Gorman mapping->a_ops->is_dirty_writeback(page, dirty, writeback); 785e2be15f6SMel Gorman } 786e2be15f6SMel Gorman 787e286781dSNick Piggin /* 7881742f19fSAndrew Morton * shrink_page_list() returns the number of reclaimed pages 7891da177e4SLinus Torvalds */ 7901742f19fSAndrew Morton static unsigned long shrink_page_list(struct list_head *page_list, 7916a18adb3SKonstantin Khlebnikov struct zone *zone, 792f84f6e2bSMel Gorman struct scan_control *sc, 79302c6de8dSMinchan Kim enum ttu_flags ttu_flags, 7948e950282SMel Gorman unsigned long *ret_nr_dirty, 795d43006d5SMel Gorman unsigned long *ret_nr_unqueued_dirty, 7968e950282SMel Gorman unsigned long *ret_nr_congested, 79702c6de8dSMinchan Kim unsigned long *ret_nr_writeback, 798b1a6f21eSMel Gorman unsigned long *ret_nr_immediate, 79902c6de8dSMinchan Kim bool force_reclaim) 8001da177e4SLinus Torvalds { 8011da177e4SLinus Torvalds LIST_HEAD(ret_pages); 802abe4c3b5SMel Gorman LIST_HEAD(free_pages); 8031da177e4SLinus Torvalds int pgactivate = 0; 804d43006d5SMel Gorman unsigned long nr_unqueued_dirty = 0; 8050e093d99SMel Gorman unsigned long nr_dirty = 0; 8060e093d99SMel Gorman unsigned long nr_congested = 0; 80705ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 80892df3a72SMel Gorman unsigned long nr_writeback = 0; 809b1a6f21eSMel Gorman unsigned long nr_immediate = 0; 8101da177e4SLinus Torvalds 8111da177e4SLinus Torvalds cond_resched(); 8121da177e4SLinus Torvalds 81369980e31STim Chen mem_cgroup_uncharge_start(); 8141da177e4SLinus Torvalds while (!list_empty(page_list)) { 8151da177e4SLinus Torvalds struct address_space *mapping; 8161da177e4SLinus Torvalds struct page *page; 8171da177e4SLinus Torvalds int may_enter_fs; 81802c6de8dSMinchan Kim enum page_references references = PAGEREF_RECLAIM_CLEAN; 819e2be15f6SMel Gorman bool dirty, writeback; 8201da177e4SLinus Torvalds 8211da177e4SLinus Torvalds cond_resched(); 8221da177e4SLinus Torvalds 8231da177e4SLinus Torvalds page = lru_to_page(page_list); 8241da177e4SLinus Torvalds list_del(&page->lru); 8251da177e4SLinus Torvalds 826529ae9aaSNick Piggin if (!trylock_page(page)) 8271da177e4SLinus Torvalds goto keep; 8281da177e4SLinus Torvalds 829309381feSSasha Levin VM_BUG_ON_PAGE(PageActive(page), page); 830309381feSSasha Levin VM_BUG_ON_PAGE(page_zone(page) != zone, page); 8311da177e4SLinus Torvalds 8321da177e4SLinus Torvalds sc->nr_scanned++; 83380e43426SChristoph Lameter 83439b5f29aSHugh Dickins if (unlikely(!page_evictable(page))) 835b291f000SNick Piggin goto cull_mlocked; 836894bc310SLee Schermerhorn 837a6dc60f8SJohannes Weiner if (!sc->may_unmap && page_mapped(page)) 83880e43426SChristoph Lameter goto keep_locked; 83980e43426SChristoph Lameter 8401da177e4SLinus Torvalds /* Double the slab pressure for mapped and swapcache pages */ 8411da177e4SLinus Torvalds if (page_mapped(page) || PageSwapCache(page)) 8421da177e4SLinus Torvalds sc->nr_scanned++; 8431da177e4SLinus Torvalds 844c661b078SAndy Whitcroft may_enter_fs = (sc->gfp_mask & __GFP_FS) || 845c661b078SAndy Whitcroft (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO)); 846c661b078SAndy Whitcroft 847e62e384eSMichal Hocko /* 848e2be15f6SMel Gorman * The number of dirty pages determines if a zone is marked 849e2be15f6SMel Gorman * reclaim_congested which affects wait_iff_congested. kswapd 850e2be15f6SMel Gorman * will stall and start writing pages if the tail of the LRU 851e2be15f6SMel Gorman * is all dirty unqueued pages. 852e2be15f6SMel Gorman */ 853e2be15f6SMel Gorman page_check_dirty_writeback(page, &dirty, &writeback); 854e2be15f6SMel Gorman if (dirty || writeback) 855e2be15f6SMel Gorman nr_dirty++; 856e2be15f6SMel Gorman 857e2be15f6SMel Gorman if (dirty && !writeback) 858e2be15f6SMel Gorman nr_unqueued_dirty++; 859e2be15f6SMel Gorman 860d04e8acdSMel Gorman /* 861d04e8acdSMel Gorman * Treat this page as congested if the underlying BDI is or if 862d04e8acdSMel Gorman * pages are cycling through the LRU so quickly that the 863d04e8acdSMel Gorman * pages marked for immediate reclaim are making it to the 864d04e8acdSMel Gorman * end of the LRU a second time. 865d04e8acdSMel Gorman */ 866e2be15f6SMel Gorman mapping = page_mapping(page); 867d04e8acdSMel Gorman if ((mapping && bdi_write_congested(mapping->backing_dev_info)) || 868d04e8acdSMel Gorman (writeback && PageReclaim(page))) 869e2be15f6SMel Gorman nr_congested++; 870e2be15f6SMel Gorman 871e2be15f6SMel Gorman /* 872283aba9fSMel Gorman * If a page at the tail of the LRU is under writeback, there 873283aba9fSMel Gorman * are three cases to consider. 874e62e384eSMichal Hocko * 875283aba9fSMel Gorman * 1) If reclaim is encountering an excessive number of pages 876283aba9fSMel Gorman * under writeback and this page is both under writeback and 877283aba9fSMel Gorman * PageReclaim then it indicates that pages are being queued 878283aba9fSMel Gorman * for IO but are being recycled through the LRU before the 879283aba9fSMel Gorman * IO can complete. Waiting on the page itself risks an 880283aba9fSMel Gorman * indefinite stall if it is impossible to writeback the 881283aba9fSMel Gorman * page due to IO error or disconnected storage so instead 882b1a6f21eSMel Gorman * note that the LRU is being scanned too quickly and the 883b1a6f21eSMel Gorman * caller can stall after page list has been processed. 884c3b94f44SHugh Dickins * 885283aba9fSMel Gorman * 2) Global reclaim encounters a page, memcg encounters a 886283aba9fSMel Gorman * page that is not marked for immediate reclaim or 887283aba9fSMel Gorman * the caller does not have __GFP_IO. In this case mark 888283aba9fSMel Gorman * the page for immediate reclaim and continue scanning. 889283aba9fSMel Gorman * 890283aba9fSMel Gorman * __GFP_IO is checked because a loop driver thread might 891283aba9fSMel Gorman * enter reclaim, and deadlock if it waits on a page for 892283aba9fSMel Gorman * which it is needed to do the write (loop masks off 893283aba9fSMel Gorman * __GFP_IO|__GFP_FS for this reason); but more thought 894283aba9fSMel Gorman * would probably show more reasons. 895283aba9fSMel Gorman * 896283aba9fSMel Gorman * Don't require __GFP_FS, since we're not going into the 897283aba9fSMel Gorman * FS, just waiting on its writeback completion. Worryingly, 898283aba9fSMel Gorman * ext4 gfs2 and xfs allocate pages with 899283aba9fSMel Gorman * grab_cache_page_write_begin(,,AOP_FLAG_NOFS), so testing 900283aba9fSMel Gorman * may_enter_fs here is liable to OOM on them. 901283aba9fSMel Gorman * 902283aba9fSMel Gorman * 3) memcg encounters a page that is not already marked 903283aba9fSMel Gorman * PageReclaim. memcg does not have any dirty pages 904283aba9fSMel Gorman * throttling so we could easily OOM just because too many 905283aba9fSMel Gorman * pages are in writeback and there is nothing else to 906283aba9fSMel Gorman * reclaim. Wait for the writeback to complete. 907e62e384eSMichal Hocko */ 908283aba9fSMel Gorman if (PageWriteback(page)) { 909283aba9fSMel Gorman /* Case 1 above */ 910283aba9fSMel Gorman if (current_is_kswapd() && 911283aba9fSMel Gorman PageReclaim(page) && 912283aba9fSMel Gorman zone_is_reclaim_writeback(zone)) { 913b1a6f21eSMel Gorman nr_immediate++; 914b1a6f21eSMel Gorman goto keep_locked; 915283aba9fSMel Gorman 916283aba9fSMel Gorman /* Case 2 above */ 917283aba9fSMel Gorman } else if (global_reclaim(sc) || 918c3b94f44SHugh Dickins !PageReclaim(page) || !(sc->gfp_mask & __GFP_IO)) { 919c3b94f44SHugh Dickins /* 920c3b94f44SHugh Dickins * This is slightly racy - end_page_writeback() 921c3b94f44SHugh Dickins * might have just cleared PageReclaim, then 922c3b94f44SHugh Dickins * setting PageReclaim here end up interpreted 923c3b94f44SHugh Dickins * as PageReadahead - but that does not matter 924c3b94f44SHugh Dickins * enough to care. What we do want is for this 925c3b94f44SHugh Dickins * page to have PageReclaim set next time memcg 926c3b94f44SHugh Dickins * reclaim reaches the tests above, so it will 927c3b94f44SHugh Dickins * then wait_on_page_writeback() to avoid OOM; 928c3b94f44SHugh Dickins * and it's also appropriate in global reclaim. 929c3b94f44SHugh Dickins */ 930c3b94f44SHugh Dickins SetPageReclaim(page); 93192df3a72SMel Gorman nr_writeback++; 932283aba9fSMel Gorman 933c3b94f44SHugh Dickins goto keep_locked; 934283aba9fSMel Gorman 935283aba9fSMel Gorman /* Case 3 above */ 936283aba9fSMel Gorman } else { 937c3b94f44SHugh Dickins wait_on_page_writeback(page); 938e62e384eSMichal Hocko } 939283aba9fSMel Gorman } 9401da177e4SLinus Torvalds 94102c6de8dSMinchan Kim if (!force_reclaim) 9426a18adb3SKonstantin Khlebnikov references = page_check_references(page, sc); 94302c6de8dSMinchan Kim 944dfc8d636SJohannes Weiner switch (references) { 945dfc8d636SJohannes Weiner case PAGEREF_ACTIVATE: 9461da177e4SLinus Torvalds goto activate_locked; 94764574746SJohannes Weiner case PAGEREF_KEEP: 94864574746SJohannes Weiner goto keep_locked; 949dfc8d636SJohannes Weiner case PAGEREF_RECLAIM: 950dfc8d636SJohannes Weiner case PAGEREF_RECLAIM_CLEAN: 951dfc8d636SJohannes Weiner ; /* try to reclaim the page below */ 952dfc8d636SJohannes Weiner } 9531da177e4SLinus Torvalds 9541da177e4SLinus Torvalds /* 9551da177e4SLinus Torvalds * Anonymous process memory has backing store? 9561da177e4SLinus Torvalds * Try to allocate it some swap space here. 9571da177e4SLinus Torvalds */ 958b291f000SNick Piggin if (PageAnon(page) && !PageSwapCache(page)) { 95963eb6b93SHugh Dickins if (!(sc->gfp_mask & __GFP_IO)) 96063eb6b93SHugh Dickins goto keep_locked; 9615bc7b8acSShaohua Li if (!add_to_swap(page, page_list)) 9621da177e4SLinus Torvalds goto activate_locked; 96363eb6b93SHugh Dickins may_enter_fs = 1; 9641da177e4SLinus Torvalds 965e2be15f6SMel Gorman /* Adding to swap updated mapping */ 9661da177e4SLinus Torvalds mapping = page_mapping(page); 967e2be15f6SMel Gorman } 9681da177e4SLinus Torvalds 9691da177e4SLinus Torvalds /* 9701da177e4SLinus Torvalds * The page is mapped into the page tables of one or more 9711da177e4SLinus Torvalds * processes. Try to unmap it here. 9721da177e4SLinus Torvalds */ 9731da177e4SLinus Torvalds if (page_mapped(page) && mapping) { 97402c6de8dSMinchan Kim switch (try_to_unmap(page, ttu_flags)) { 9751da177e4SLinus Torvalds case SWAP_FAIL: 9761da177e4SLinus Torvalds goto activate_locked; 9771da177e4SLinus Torvalds case SWAP_AGAIN: 9781da177e4SLinus Torvalds goto keep_locked; 979b291f000SNick Piggin case SWAP_MLOCK: 980b291f000SNick Piggin goto cull_mlocked; 9811da177e4SLinus Torvalds case SWAP_SUCCESS: 9821da177e4SLinus Torvalds ; /* try to free the page below */ 9831da177e4SLinus Torvalds } 9841da177e4SLinus Torvalds } 9851da177e4SLinus Torvalds 9861da177e4SLinus Torvalds if (PageDirty(page)) { 987ee72886dSMel Gorman /* 988ee72886dSMel Gorman * Only kswapd can writeback filesystem pages to 989d43006d5SMel Gorman * avoid risk of stack overflow but only writeback 990d43006d5SMel Gorman * if many dirty pages have been encountered. 991ee72886dSMel Gorman */ 992f84f6e2bSMel Gorman if (page_is_file_cache(page) && 9939e3b2f8cSKonstantin Khlebnikov (!current_is_kswapd() || 994d43006d5SMel Gorman !zone_is_reclaim_dirty(zone))) { 99549ea7eb6SMel Gorman /* 99649ea7eb6SMel Gorman * Immediately reclaim when written back. 99749ea7eb6SMel Gorman * Similar in principal to deactivate_page() 99849ea7eb6SMel Gorman * except we already have the page isolated 99949ea7eb6SMel Gorman * and know it's dirty 100049ea7eb6SMel Gorman */ 100149ea7eb6SMel Gorman inc_zone_page_state(page, NR_VMSCAN_IMMEDIATE); 100249ea7eb6SMel Gorman SetPageReclaim(page); 100349ea7eb6SMel Gorman 1004ee72886dSMel Gorman goto keep_locked; 1005ee72886dSMel Gorman } 1006ee72886dSMel Gorman 1007dfc8d636SJohannes Weiner if (references == PAGEREF_RECLAIM_CLEAN) 10081da177e4SLinus Torvalds goto keep_locked; 10094dd4b920SAndrew Morton if (!may_enter_fs) 10101da177e4SLinus Torvalds goto keep_locked; 101152a8363eSChristoph Lameter if (!sc->may_writepage) 10121da177e4SLinus Torvalds goto keep_locked; 10131da177e4SLinus Torvalds 10141da177e4SLinus Torvalds /* Page is dirty, try to write it out here */ 10157d3579e8SKOSAKI Motohiro switch (pageout(page, mapping, sc)) { 10161da177e4SLinus Torvalds case PAGE_KEEP: 10171da177e4SLinus Torvalds goto keep_locked; 10181da177e4SLinus Torvalds case PAGE_ACTIVATE: 10191da177e4SLinus Torvalds goto activate_locked; 10201da177e4SLinus Torvalds case PAGE_SUCCESS: 10217d3579e8SKOSAKI Motohiro if (PageWriteback(page)) 102241ac1999SMel Gorman goto keep; 10237d3579e8SKOSAKI Motohiro if (PageDirty(page)) 10241da177e4SLinus Torvalds goto keep; 10257d3579e8SKOSAKI Motohiro 10261da177e4SLinus Torvalds /* 10271da177e4SLinus Torvalds * A synchronous write - probably a ramdisk. Go 10281da177e4SLinus Torvalds * ahead and try to reclaim the page. 10291da177e4SLinus Torvalds */ 1030529ae9aaSNick Piggin if (!trylock_page(page)) 10311da177e4SLinus Torvalds goto keep; 10321da177e4SLinus Torvalds if (PageDirty(page) || PageWriteback(page)) 10331da177e4SLinus Torvalds goto keep_locked; 10341da177e4SLinus Torvalds mapping = page_mapping(page); 10351da177e4SLinus Torvalds case PAGE_CLEAN: 10361da177e4SLinus Torvalds ; /* try to free the page below */ 10371da177e4SLinus Torvalds } 10381da177e4SLinus Torvalds } 10391da177e4SLinus Torvalds 10401da177e4SLinus Torvalds /* 10411da177e4SLinus Torvalds * If the page has buffers, try to free the buffer mappings 10421da177e4SLinus Torvalds * associated with this page. If we succeed we try to free 10431da177e4SLinus Torvalds * the page as well. 10441da177e4SLinus Torvalds * 10451da177e4SLinus Torvalds * We do this even if the page is PageDirty(). 10461da177e4SLinus Torvalds * try_to_release_page() does not perform I/O, but it is 10471da177e4SLinus Torvalds * possible for a page to have PageDirty set, but it is actually 10481da177e4SLinus Torvalds * clean (all its buffers are clean). This happens if the 10491da177e4SLinus Torvalds * buffers were written out directly, with submit_bh(). ext3 10501da177e4SLinus Torvalds * will do this, as well as the blockdev mapping. 10511da177e4SLinus Torvalds * try_to_release_page() will discover that cleanness and will 10521da177e4SLinus Torvalds * drop the buffers and mark the page clean - it can be freed. 10531da177e4SLinus Torvalds * 10541da177e4SLinus Torvalds * Rarely, pages can have buffers and no ->mapping. These are 10551da177e4SLinus Torvalds * the pages which were not successfully invalidated in 10561da177e4SLinus Torvalds * truncate_complete_page(). We try to drop those buffers here 10571da177e4SLinus Torvalds * and if that worked, and the page is no longer mapped into 10581da177e4SLinus Torvalds * process address space (page_count == 1) it can be freed. 10591da177e4SLinus Torvalds * Otherwise, leave the page on the LRU so it is swappable. 10601da177e4SLinus Torvalds */ 1061266cf658SDavid Howells if (page_has_private(page)) { 10621da177e4SLinus Torvalds if (!try_to_release_page(page, sc->gfp_mask)) 10631da177e4SLinus Torvalds goto activate_locked; 1064e286781dSNick Piggin if (!mapping && page_count(page) == 1) { 1065e286781dSNick Piggin unlock_page(page); 1066e286781dSNick Piggin if (put_page_testzero(page)) 10671da177e4SLinus Torvalds goto free_it; 1068e286781dSNick Piggin else { 1069e286781dSNick Piggin /* 1070e286781dSNick Piggin * rare race with speculative reference. 1071e286781dSNick Piggin * the speculative reference will free 1072e286781dSNick Piggin * this page shortly, so we may 1073e286781dSNick Piggin * increment nr_reclaimed here (and 1074e286781dSNick Piggin * leave it off the LRU). 1075e286781dSNick Piggin */ 1076e286781dSNick Piggin nr_reclaimed++; 1077e286781dSNick Piggin continue; 1078e286781dSNick Piggin } 1079e286781dSNick Piggin } 10801da177e4SLinus Torvalds } 10811da177e4SLinus Torvalds 1082a528910eSJohannes Weiner if (!mapping || !__remove_mapping(mapping, page, true)) 108349d2e9ccSChristoph Lameter goto keep_locked; 10841da177e4SLinus Torvalds 1085a978d6f5SNick Piggin /* 1086a978d6f5SNick Piggin * At this point, we have no other references and there is 1087a978d6f5SNick Piggin * no way to pick any more up (removed from LRU, removed 1088a978d6f5SNick Piggin * from pagecache). Can use non-atomic bitops now (and 1089a978d6f5SNick Piggin * we obviously don't have to worry about waking up a process 1090a978d6f5SNick Piggin * waiting on the page lock, because there are no references. 1091a978d6f5SNick Piggin */ 1092a978d6f5SNick Piggin __clear_page_locked(page); 1093e286781dSNick Piggin free_it: 109405ff5137SAndrew Morton nr_reclaimed++; 1095abe4c3b5SMel Gorman 1096abe4c3b5SMel Gorman /* 1097abe4c3b5SMel Gorman * Is there need to periodically free_page_list? It would 1098abe4c3b5SMel Gorman * appear not as the counts should be low 1099abe4c3b5SMel Gorman */ 1100abe4c3b5SMel Gorman list_add(&page->lru, &free_pages); 11011da177e4SLinus Torvalds continue; 11021da177e4SLinus Torvalds 1103b291f000SNick Piggin cull_mlocked: 110463d6c5adSHugh Dickins if (PageSwapCache(page)) 110563d6c5adSHugh Dickins try_to_free_swap(page); 1106b291f000SNick Piggin unlock_page(page); 1107b291f000SNick Piggin putback_lru_page(page); 1108b291f000SNick Piggin continue; 1109b291f000SNick Piggin 11101da177e4SLinus Torvalds activate_locked: 111168a22394SRik van Riel /* Not a candidate for swapping, so reclaim swap space. */ 111268a22394SRik van Riel if (PageSwapCache(page) && vm_swap_full()) 1113a2c43eedSHugh Dickins try_to_free_swap(page); 1114309381feSSasha Levin VM_BUG_ON_PAGE(PageActive(page), page); 11151da177e4SLinus Torvalds SetPageActive(page); 11161da177e4SLinus Torvalds pgactivate++; 11171da177e4SLinus Torvalds keep_locked: 11181da177e4SLinus Torvalds unlock_page(page); 11191da177e4SLinus Torvalds keep: 11201da177e4SLinus Torvalds list_add(&page->lru, &ret_pages); 1121309381feSSasha Levin VM_BUG_ON_PAGE(PageLRU(page) || PageUnevictable(page), page); 11221da177e4SLinus Torvalds } 1123abe4c3b5SMel Gorman 1124cc59850eSKonstantin Khlebnikov free_hot_cold_page_list(&free_pages, 1); 1125abe4c3b5SMel Gorman 11261da177e4SLinus Torvalds list_splice(&ret_pages, page_list); 1127f8891e5eSChristoph Lameter count_vm_events(PGACTIVATE, pgactivate); 112869980e31STim Chen mem_cgroup_uncharge_end(); 11298e950282SMel Gorman *ret_nr_dirty += nr_dirty; 11308e950282SMel Gorman *ret_nr_congested += nr_congested; 1131d43006d5SMel Gorman *ret_nr_unqueued_dirty += nr_unqueued_dirty; 113292df3a72SMel Gorman *ret_nr_writeback += nr_writeback; 1133b1a6f21eSMel Gorman *ret_nr_immediate += nr_immediate; 113405ff5137SAndrew Morton return nr_reclaimed; 11351da177e4SLinus Torvalds } 11361da177e4SLinus Torvalds 113702c6de8dSMinchan Kim unsigned long reclaim_clean_pages_from_list(struct zone *zone, 113802c6de8dSMinchan Kim struct list_head *page_list) 113902c6de8dSMinchan Kim { 114002c6de8dSMinchan Kim struct scan_control sc = { 114102c6de8dSMinchan Kim .gfp_mask = GFP_KERNEL, 114202c6de8dSMinchan Kim .priority = DEF_PRIORITY, 114302c6de8dSMinchan Kim .may_unmap = 1, 114402c6de8dSMinchan Kim }; 11458e950282SMel Gorman unsigned long ret, dummy1, dummy2, dummy3, dummy4, dummy5; 114602c6de8dSMinchan Kim struct page *page, *next; 114702c6de8dSMinchan Kim LIST_HEAD(clean_pages); 114802c6de8dSMinchan Kim 114902c6de8dSMinchan Kim list_for_each_entry_safe(page, next, page_list, lru) { 1150117aad1eSRafael Aquini if (page_is_file_cache(page) && !PageDirty(page) && 1151117aad1eSRafael Aquini !isolated_balloon_page(page)) { 115202c6de8dSMinchan Kim ClearPageActive(page); 115302c6de8dSMinchan Kim list_move(&page->lru, &clean_pages); 115402c6de8dSMinchan Kim } 115502c6de8dSMinchan Kim } 115602c6de8dSMinchan Kim 115702c6de8dSMinchan Kim ret = shrink_page_list(&clean_pages, zone, &sc, 115802c6de8dSMinchan Kim TTU_UNMAP|TTU_IGNORE_ACCESS, 11598e950282SMel Gorman &dummy1, &dummy2, &dummy3, &dummy4, &dummy5, true); 116002c6de8dSMinchan Kim list_splice(&clean_pages, page_list); 116183da7510SChristoph Lameter mod_zone_page_state(zone, NR_ISOLATED_FILE, -ret); 116202c6de8dSMinchan Kim return ret; 116302c6de8dSMinchan Kim } 116402c6de8dSMinchan Kim 11655ad333ebSAndy Whitcroft /* 11665ad333ebSAndy Whitcroft * Attempt to remove the specified page from its LRU. Only take this page 11675ad333ebSAndy Whitcroft * if it is of the appropriate PageActive status. Pages which are being 11685ad333ebSAndy Whitcroft * freed elsewhere are also ignored. 11695ad333ebSAndy Whitcroft * 11705ad333ebSAndy Whitcroft * page: page to consider 11715ad333ebSAndy Whitcroft * mode: one of the LRU isolation modes defined above 11725ad333ebSAndy Whitcroft * 11735ad333ebSAndy Whitcroft * returns 0 on success, -ve errno on failure. 11745ad333ebSAndy Whitcroft */ 1175f3fd4a61SKonstantin Khlebnikov int __isolate_lru_page(struct page *page, isolate_mode_t mode) 11765ad333ebSAndy Whitcroft { 11775ad333ebSAndy Whitcroft int ret = -EINVAL; 11785ad333ebSAndy Whitcroft 11795ad333ebSAndy Whitcroft /* Only take pages on the LRU. */ 11805ad333ebSAndy Whitcroft if (!PageLRU(page)) 11815ad333ebSAndy Whitcroft return ret; 11825ad333ebSAndy Whitcroft 1183e46a2879SMinchan Kim /* Compaction should not handle unevictable pages but CMA can do so */ 1184e46a2879SMinchan Kim if (PageUnevictable(page) && !(mode & ISOLATE_UNEVICTABLE)) 1185894bc310SLee Schermerhorn return ret; 1186894bc310SLee Schermerhorn 11875ad333ebSAndy Whitcroft ret = -EBUSY; 118808e552c6SKAMEZAWA Hiroyuki 1189c8244935SMel Gorman /* 1190c8244935SMel Gorman * To minimise LRU disruption, the caller can indicate that it only 1191c8244935SMel Gorman * wants to isolate pages it will be able to operate on without 1192c8244935SMel Gorman * blocking - clean pages for the most part. 1193c8244935SMel Gorman * 1194c8244935SMel Gorman * ISOLATE_CLEAN means that only clean pages should be isolated. This 1195c8244935SMel Gorman * is used by reclaim when it is cannot write to backing storage 1196c8244935SMel Gorman * 1197c8244935SMel Gorman * ISOLATE_ASYNC_MIGRATE is used to indicate that it only wants to pages 1198c8244935SMel Gorman * that it is possible to migrate without blocking 1199c8244935SMel Gorman */ 1200c8244935SMel Gorman if (mode & (ISOLATE_CLEAN|ISOLATE_ASYNC_MIGRATE)) { 1201c8244935SMel Gorman /* All the caller can do on PageWriteback is block */ 1202c8244935SMel Gorman if (PageWriteback(page)) 120339deaf85SMinchan Kim return ret; 120439deaf85SMinchan Kim 1205c8244935SMel Gorman if (PageDirty(page)) { 1206c8244935SMel Gorman struct address_space *mapping; 1207c8244935SMel Gorman 1208c8244935SMel Gorman /* ISOLATE_CLEAN means only clean pages */ 1209c8244935SMel Gorman if (mode & ISOLATE_CLEAN) 1210c8244935SMel Gorman return ret; 1211c8244935SMel Gorman 1212c8244935SMel Gorman /* 1213c8244935SMel Gorman * Only pages without mappings or that have a 1214c8244935SMel Gorman * ->migratepage callback are possible to migrate 1215c8244935SMel Gorman * without blocking 1216c8244935SMel Gorman */ 1217c8244935SMel Gorman mapping = page_mapping(page); 1218c8244935SMel Gorman if (mapping && !mapping->a_ops->migratepage) 1219c8244935SMel Gorman return ret; 1220c8244935SMel Gorman } 1221c8244935SMel Gorman } 1222c8244935SMel Gorman 1223f80c0673SMinchan Kim if ((mode & ISOLATE_UNMAPPED) && page_mapped(page)) 1224f80c0673SMinchan Kim return ret; 1225f80c0673SMinchan Kim 12265ad333ebSAndy Whitcroft if (likely(get_page_unless_zero(page))) { 12275ad333ebSAndy Whitcroft /* 12285ad333ebSAndy Whitcroft * Be careful not to clear PageLRU until after we're 12295ad333ebSAndy Whitcroft * sure the page is not being freed elsewhere -- the 12305ad333ebSAndy Whitcroft * page release code relies on it. 12315ad333ebSAndy Whitcroft */ 12325ad333ebSAndy Whitcroft ClearPageLRU(page); 12335ad333ebSAndy Whitcroft ret = 0; 12345ad333ebSAndy Whitcroft } 12355ad333ebSAndy Whitcroft 12365ad333ebSAndy Whitcroft return ret; 12375ad333ebSAndy Whitcroft } 12385ad333ebSAndy Whitcroft 123949d2e9ccSChristoph Lameter /* 12401da177e4SLinus Torvalds * zone->lru_lock is heavily contended. Some of the functions that 12411da177e4SLinus Torvalds * shrink the lists perform better by taking out a batch of pages 12421da177e4SLinus Torvalds * and working on them outside the LRU lock. 12431da177e4SLinus Torvalds * 12441da177e4SLinus Torvalds * For pagecache intensive workloads, this function is the hottest 12451da177e4SLinus Torvalds * spot in the kernel (apart from copy_*_user functions). 12461da177e4SLinus Torvalds * 12471da177e4SLinus Torvalds * Appropriate locks must be held before calling this function. 12481da177e4SLinus Torvalds * 12491da177e4SLinus Torvalds * @nr_to_scan: The number of pages to look through on the list. 12505dc35979SKonstantin Khlebnikov * @lruvec: The LRU vector to pull pages from. 12511da177e4SLinus Torvalds * @dst: The temp list to put pages on to. 1252f626012dSHugh Dickins * @nr_scanned: The number of pages that were scanned. 1253fe2c2a10SRik van Riel * @sc: The scan_control struct for this reclaim session 12545ad333ebSAndy Whitcroft * @mode: One of the LRU isolation modes 12553cb99451SKonstantin Khlebnikov * @lru: LRU list id for isolating 12561da177e4SLinus Torvalds * 12571da177e4SLinus Torvalds * returns how many pages were moved onto *@dst. 12581da177e4SLinus Torvalds */ 125969e05944SAndrew Morton static unsigned long isolate_lru_pages(unsigned long nr_to_scan, 12605dc35979SKonstantin Khlebnikov struct lruvec *lruvec, struct list_head *dst, 1261fe2c2a10SRik van Riel unsigned long *nr_scanned, struct scan_control *sc, 12623cb99451SKonstantin Khlebnikov isolate_mode_t mode, enum lru_list lru) 12631da177e4SLinus Torvalds { 126475b00af7SHugh Dickins struct list_head *src = &lruvec->lists[lru]; 126569e05944SAndrew Morton unsigned long nr_taken = 0; 1266c9b02d97SWu Fengguang unsigned long scan; 12671da177e4SLinus Torvalds 1268c9b02d97SWu Fengguang for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) { 12695ad333ebSAndy Whitcroft struct page *page; 1270fa9add64SHugh Dickins int nr_pages; 12715ad333ebSAndy Whitcroft 12721da177e4SLinus Torvalds page = lru_to_page(src); 12731da177e4SLinus Torvalds prefetchw_prev_lru_page(page, src, flags); 12741da177e4SLinus Torvalds 1275309381feSSasha Levin VM_BUG_ON_PAGE(!PageLRU(page), page); 12768d438f96SNick Piggin 1277f3fd4a61SKonstantin Khlebnikov switch (__isolate_lru_page(page, mode)) { 12785ad333ebSAndy Whitcroft case 0: 1279fa9add64SHugh Dickins nr_pages = hpage_nr_pages(page); 1280fa9add64SHugh Dickins mem_cgroup_update_lru_size(lruvec, lru, -nr_pages); 12815ad333ebSAndy Whitcroft list_move(&page->lru, dst); 1282fa9add64SHugh Dickins nr_taken += nr_pages; 12835ad333ebSAndy Whitcroft break; 12847c8ee9a8SNick Piggin 12855ad333ebSAndy Whitcroft case -EBUSY: 12865ad333ebSAndy Whitcroft /* else it is being freed elsewhere */ 12875ad333ebSAndy Whitcroft list_move(&page->lru, src); 12885ad333ebSAndy Whitcroft continue; 12895ad333ebSAndy Whitcroft 12905ad333ebSAndy Whitcroft default: 12915ad333ebSAndy Whitcroft BUG(); 12925ad333ebSAndy Whitcroft } 12935ad333ebSAndy Whitcroft } 12941da177e4SLinus Torvalds 1295f626012dSHugh Dickins *nr_scanned = scan; 129675b00af7SHugh Dickins trace_mm_vmscan_lru_isolate(sc->order, nr_to_scan, scan, 129775b00af7SHugh Dickins nr_taken, mode, is_file_lru(lru)); 12981da177e4SLinus Torvalds return nr_taken; 12991da177e4SLinus Torvalds } 13001da177e4SLinus Torvalds 130162695a84SNick Piggin /** 130262695a84SNick Piggin * isolate_lru_page - tries to isolate a page from its LRU list 130362695a84SNick Piggin * @page: page to isolate from its LRU list 130462695a84SNick Piggin * 130562695a84SNick Piggin * Isolates a @page from an LRU list, clears PageLRU and adjusts the 130662695a84SNick Piggin * vmstat statistic corresponding to whatever LRU list the page was on. 130762695a84SNick Piggin * 130862695a84SNick Piggin * Returns 0 if the page was removed from an LRU list. 130962695a84SNick Piggin * Returns -EBUSY if the page was not on an LRU list. 131062695a84SNick Piggin * 131162695a84SNick Piggin * The returned page will have PageLRU() cleared. If it was found on 1312894bc310SLee Schermerhorn * the active list, it will have PageActive set. If it was found on 1313894bc310SLee Schermerhorn * the unevictable list, it will have the PageUnevictable bit set. That flag 1314894bc310SLee Schermerhorn * may need to be cleared by the caller before letting the page go. 131562695a84SNick Piggin * 131662695a84SNick Piggin * The vmstat statistic corresponding to the list on which the page was 131762695a84SNick Piggin * found will be decremented. 131862695a84SNick Piggin * 131962695a84SNick Piggin * Restrictions: 132062695a84SNick Piggin * (1) Must be called with an elevated refcount on the page. This is a 132162695a84SNick Piggin * fundamentnal difference from isolate_lru_pages (which is called 132262695a84SNick Piggin * without a stable reference). 132362695a84SNick Piggin * (2) the lru_lock must not be held. 132462695a84SNick Piggin * (3) interrupts must be enabled. 132562695a84SNick Piggin */ 132662695a84SNick Piggin int isolate_lru_page(struct page *page) 132762695a84SNick Piggin { 132862695a84SNick Piggin int ret = -EBUSY; 132962695a84SNick Piggin 1330309381feSSasha Levin VM_BUG_ON_PAGE(!page_count(page), page); 13310c917313SKonstantin Khlebnikov 133262695a84SNick Piggin if (PageLRU(page)) { 133362695a84SNick Piggin struct zone *zone = page_zone(page); 1334fa9add64SHugh Dickins struct lruvec *lruvec; 133562695a84SNick Piggin 133662695a84SNick Piggin spin_lock_irq(&zone->lru_lock); 1337fa9add64SHugh Dickins lruvec = mem_cgroup_page_lruvec(page, zone); 13380c917313SKonstantin Khlebnikov if (PageLRU(page)) { 1339894bc310SLee Schermerhorn int lru = page_lru(page); 13400c917313SKonstantin Khlebnikov get_page(page); 134162695a84SNick Piggin ClearPageLRU(page); 1342fa9add64SHugh Dickins del_page_from_lru_list(page, lruvec, lru); 1343fa9add64SHugh Dickins ret = 0; 134462695a84SNick Piggin } 134562695a84SNick Piggin spin_unlock_irq(&zone->lru_lock); 134662695a84SNick Piggin } 134762695a84SNick Piggin return ret; 134862695a84SNick Piggin } 134962695a84SNick Piggin 13505ad333ebSAndy Whitcroft /* 1351d37dd5dcSFengguang Wu * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and 1352d37dd5dcSFengguang Wu * then get resheduled. When there are massive number of tasks doing page 1353d37dd5dcSFengguang Wu * allocation, such sleeping direct reclaimers may keep piling up on each CPU, 1354d37dd5dcSFengguang Wu * the LRU list will go small and be scanned faster than necessary, leading to 1355d37dd5dcSFengguang Wu * unnecessary swapping, thrashing and OOM. 135635cd7815SRik van Riel */ 135735cd7815SRik van Riel static int too_many_isolated(struct zone *zone, int file, 135835cd7815SRik van Riel struct scan_control *sc) 135935cd7815SRik van Riel { 136035cd7815SRik van Riel unsigned long inactive, isolated; 136135cd7815SRik van Riel 136235cd7815SRik van Riel if (current_is_kswapd()) 136335cd7815SRik van Riel return 0; 136435cd7815SRik van Riel 136589b5fae5SJohannes Weiner if (!global_reclaim(sc)) 136635cd7815SRik van Riel return 0; 136735cd7815SRik van Riel 136835cd7815SRik van Riel if (file) { 136935cd7815SRik van Riel inactive = zone_page_state(zone, NR_INACTIVE_FILE); 137035cd7815SRik van Riel isolated = zone_page_state(zone, NR_ISOLATED_FILE); 137135cd7815SRik van Riel } else { 137235cd7815SRik van Riel inactive = zone_page_state(zone, NR_INACTIVE_ANON); 137335cd7815SRik van Riel isolated = zone_page_state(zone, NR_ISOLATED_ANON); 137435cd7815SRik van Riel } 137535cd7815SRik van Riel 13763cf23841SFengguang Wu /* 13773cf23841SFengguang Wu * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they 13783cf23841SFengguang Wu * won't get blocked by normal direct-reclaimers, forming a circular 13793cf23841SFengguang Wu * deadlock. 13803cf23841SFengguang Wu */ 13813cf23841SFengguang Wu if ((sc->gfp_mask & GFP_IOFS) == GFP_IOFS) 13823cf23841SFengguang Wu inactive >>= 3; 13833cf23841SFengguang Wu 138435cd7815SRik van Riel return isolated > inactive; 138535cd7815SRik van Riel } 138635cd7815SRik van Riel 138766635629SMel Gorman static noinline_for_stack void 138875b00af7SHugh Dickins putback_inactive_pages(struct lruvec *lruvec, struct list_head *page_list) 138966635629SMel Gorman { 139027ac81d8SKonstantin Khlebnikov struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; 139127ac81d8SKonstantin Khlebnikov struct zone *zone = lruvec_zone(lruvec); 13923f79768fSHugh Dickins LIST_HEAD(pages_to_free); 139366635629SMel Gorman 139466635629SMel Gorman /* 139566635629SMel Gorman * Put back any unfreeable pages. 139666635629SMel Gorman */ 139766635629SMel Gorman while (!list_empty(page_list)) { 13983f79768fSHugh Dickins struct page *page = lru_to_page(page_list); 139966635629SMel Gorman int lru; 14003f79768fSHugh Dickins 1401309381feSSasha Levin VM_BUG_ON_PAGE(PageLRU(page), page); 140266635629SMel Gorman list_del(&page->lru); 140339b5f29aSHugh Dickins if (unlikely(!page_evictable(page))) { 140466635629SMel Gorman spin_unlock_irq(&zone->lru_lock); 140566635629SMel Gorman putback_lru_page(page); 140666635629SMel Gorman spin_lock_irq(&zone->lru_lock); 140766635629SMel Gorman continue; 140866635629SMel Gorman } 1409fa9add64SHugh Dickins 1410fa9add64SHugh Dickins lruvec = mem_cgroup_page_lruvec(page, zone); 1411fa9add64SHugh Dickins 14127a608572SLinus Torvalds SetPageLRU(page); 141366635629SMel Gorman lru = page_lru(page); 1414fa9add64SHugh Dickins add_page_to_lru_list(page, lruvec, lru); 1415fa9add64SHugh Dickins 141666635629SMel Gorman if (is_active_lru(lru)) { 141766635629SMel Gorman int file = is_file_lru(lru); 14189992af10SRik van Riel int numpages = hpage_nr_pages(page); 14199992af10SRik van Riel reclaim_stat->recent_rotated[file] += numpages; 142066635629SMel Gorman } 14212bcf8879SHugh Dickins if (put_page_testzero(page)) { 14222bcf8879SHugh Dickins __ClearPageLRU(page); 14232bcf8879SHugh Dickins __ClearPageActive(page); 1424fa9add64SHugh Dickins del_page_from_lru_list(page, lruvec, lru); 14252bcf8879SHugh Dickins 14262bcf8879SHugh Dickins if (unlikely(PageCompound(page))) { 142766635629SMel Gorman spin_unlock_irq(&zone->lru_lock); 14282bcf8879SHugh Dickins (*get_compound_page_dtor(page))(page); 142966635629SMel Gorman spin_lock_irq(&zone->lru_lock); 14302bcf8879SHugh Dickins } else 14312bcf8879SHugh Dickins list_add(&page->lru, &pages_to_free); 143266635629SMel Gorman } 143366635629SMel Gorman } 143466635629SMel Gorman 14353f79768fSHugh Dickins /* 14363f79768fSHugh Dickins * To save our caller's stack, now use input list for pages to free. 14373f79768fSHugh Dickins */ 14383f79768fSHugh Dickins list_splice(&pages_to_free, page_list); 143966635629SMel Gorman } 144066635629SMel Gorman 144166635629SMel Gorman /* 14421742f19fSAndrew Morton * shrink_inactive_list() is a helper for shrink_zone(). It returns the number 14431742f19fSAndrew Morton * of reclaimed pages 14441da177e4SLinus Torvalds */ 144566635629SMel Gorman static noinline_for_stack unsigned long 14461a93be0eSKonstantin Khlebnikov shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec, 14479e3b2f8cSKonstantin Khlebnikov struct scan_control *sc, enum lru_list lru) 14481da177e4SLinus Torvalds { 14491da177e4SLinus Torvalds LIST_HEAD(page_list); 1450e247dbceSKOSAKI Motohiro unsigned long nr_scanned; 145105ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 1452e247dbceSKOSAKI Motohiro unsigned long nr_taken; 14538e950282SMel Gorman unsigned long nr_dirty = 0; 14548e950282SMel Gorman unsigned long nr_congested = 0; 1455e2be15f6SMel Gorman unsigned long nr_unqueued_dirty = 0; 145692df3a72SMel Gorman unsigned long nr_writeback = 0; 1457b1a6f21eSMel Gorman unsigned long nr_immediate = 0; 1458f3fd4a61SKonstantin Khlebnikov isolate_mode_t isolate_mode = 0; 14593cb99451SKonstantin Khlebnikov int file = is_file_lru(lru); 14601a93be0eSKonstantin Khlebnikov struct zone *zone = lruvec_zone(lruvec); 14611a93be0eSKonstantin Khlebnikov struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; 146278dc583dSKOSAKI Motohiro 146335cd7815SRik van Riel while (unlikely(too_many_isolated(zone, file, sc))) { 146458355c78SKOSAKI Motohiro congestion_wait(BLK_RW_ASYNC, HZ/10); 146535cd7815SRik van Riel 146635cd7815SRik van Riel /* We are about to die and free our memory. Return now. */ 146735cd7815SRik van Riel if (fatal_signal_pending(current)) 146835cd7815SRik van Riel return SWAP_CLUSTER_MAX; 146935cd7815SRik van Riel } 147035cd7815SRik van Riel 14711da177e4SLinus Torvalds lru_add_drain(); 1472f80c0673SMinchan Kim 1473f80c0673SMinchan Kim if (!sc->may_unmap) 147461317289SHillf Danton isolate_mode |= ISOLATE_UNMAPPED; 1475f80c0673SMinchan Kim if (!sc->may_writepage) 147661317289SHillf Danton isolate_mode |= ISOLATE_CLEAN; 1477f80c0673SMinchan Kim 14781da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 14791da177e4SLinus Torvalds 14805dc35979SKonstantin Khlebnikov nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list, 14815dc35979SKonstantin Khlebnikov &nr_scanned, sc, isolate_mode, lru); 148295d918fcSKonstantin Khlebnikov 148395d918fcSKonstantin Khlebnikov __mod_zone_page_state(zone, NR_LRU_BASE + lru, -nr_taken); 148495d918fcSKonstantin Khlebnikov __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken); 148595d918fcSKonstantin Khlebnikov 148689b5fae5SJohannes Weiner if (global_reclaim(sc)) { 1487e247dbceSKOSAKI Motohiro zone->pages_scanned += nr_scanned; 1488b35ea17bSKOSAKI Motohiro if (current_is_kswapd()) 148975b00af7SHugh Dickins __count_zone_vm_events(PGSCAN_KSWAPD, zone, nr_scanned); 1490b35ea17bSKOSAKI Motohiro else 149175b00af7SHugh Dickins __count_zone_vm_events(PGSCAN_DIRECT, zone, nr_scanned); 1492b35ea17bSKOSAKI Motohiro } 149366635629SMel Gorman spin_unlock_irq(&zone->lru_lock); 1494d563c050SHillf Danton 1495d563c050SHillf Danton if (nr_taken == 0) 149666635629SMel Gorman return 0; 1497b35ea17bSKOSAKI Motohiro 149802c6de8dSMinchan Kim nr_reclaimed = shrink_page_list(&page_list, zone, sc, TTU_UNMAP, 14998e950282SMel Gorman &nr_dirty, &nr_unqueued_dirty, &nr_congested, 15008e950282SMel Gorman &nr_writeback, &nr_immediate, 1501b1a6f21eSMel Gorman false); 1502c661b078SAndy Whitcroft 15033f79768fSHugh Dickins spin_lock_irq(&zone->lru_lock); 15043f79768fSHugh Dickins 150595d918fcSKonstantin Khlebnikov reclaim_stat->recent_scanned[file] += nr_taken; 1506d563c050SHillf Danton 1507904249aaSYing Han if (global_reclaim(sc)) { 1508b35ea17bSKOSAKI Motohiro if (current_is_kswapd()) 1509904249aaSYing Han __count_zone_vm_events(PGSTEAL_KSWAPD, zone, 1510904249aaSYing Han nr_reclaimed); 1511904249aaSYing Han else 1512904249aaSYing Han __count_zone_vm_events(PGSTEAL_DIRECT, zone, 1513904249aaSYing Han nr_reclaimed); 1514904249aaSYing Han } 1515a74609faSNick Piggin 151627ac81d8SKonstantin Khlebnikov putback_inactive_pages(lruvec, &page_list); 15173f79768fSHugh Dickins 151895d918fcSKonstantin Khlebnikov __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken); 15193f79768fSHugh Dickins 15203f79768fSHugh Dickins spin_unlock_irq(&zone->lru_lock); 15213f79768fSHugh Dickins 15223f79768fSHugh Dickins free_hot_cold_page_list(&page_list, 1); 1523e11da5b4SMel Gorman 152492df3a72SMel Gorman /* 152592df3a72SMel Gorman * If reclaim is isolating dirty pages under writeback, it implies 152692df3a72SMel Gorman * that the long-lived page allocation rate is exceeding the page 152792df3a72SMel Gorman * laundering rate. Either the global limits are not being effective 152892df3a72SMel Gorman * at throttling processes due to the page distribution throughout 152992df3a72SMel Gorman * zones or there is heavy usage of a slow backing device. The 153092df3a72SMel Gorman * only option is to throttle from reclaim context which is not ideal 153192df3a72SMel Gorman * as there is no guarantee the dirtying process is throttled in the 153292df3a72SMel Gorman * same way balance_dirty_pages() manages. 153392df3a72SMel Gorman * 15348e950282SMel Gorman * Once a zone is flagged ZONE_WRITEBACK, kswapd will count the number 15358e950282SMel Gorman * of pages under pages flagged for immediate reclaim and stall if any 15368e950282SMel Gorman * are encountered in the nr_immediate check below. 153792df3a72SMel Gorman */ 1538918fc718SMel Gorman if (nr_writeback && nr_writeback == nr_taken) 1539283aba9fSMel Gorman zone_set_flag(zone, ZONE_WRITEBACK); 154092df3a72SMel Gorman 1541d43006d5SMel Gorman /* 1542b1a6f21eSMel Gorman * memcg will stall in page writeback so only consider forcibly 1543b1a6f21eSMel Gorman * stalling for global reclaim 1544d43006d5SMel Gorman */ 1545b1a6f21eSMel Gorman if (global_reclaim(sc)) { 1546b1a6f21eSMel Gorman /* 15478e950282SMel Gorman * Tag a zone as congested if all the dirty pages scanned were 15488e950282SMel Gorman * backed by a congested BDI and wait_iff_congested will stall. 15498e950282SMel Gorman */ 15508e950282SMel Gorman if (nr_dirty && nr_dirty == nr_congested) 15518e950282SMel Gorman zone_set_flag(zone, ZONE_CONGESTED); 15528e950282SMel Gorman 15538e950282SMel Gorman /* 1554b1a6f21eSMel Gorman * If dirty pages are scanned that are not queued for IO, it 1555b1a6f21eSMel Gorman * implies that flushers are not keeping up. In this case, flag 1556b1a6f21eSMel Gorman * the zone ZONE_TAIL_LRU_DIRTY and kswapd will start writing 1557b1a6f21eSMel Gorman * pages from reclaim context. It will forcibly stall in the 1558b1a6f21eSMel Gorman * next check. 1559b1a6f21eSMel Gorman */ 1560b1a6f21eSMel Gorman if (nr_unqueued_dirty == nr_taken) 1561d43006d5SMel Gorman zone_set_flag(zone, ZONE_TAIL_LRU_DIRTY); 1562b1a6f21eSMel Gorman 1563b1a6f21eSMel Gorman /* 1564b1a6f21eSMel Gorman * In addition, if kswapd scans pages marked marked for 1565b1a6f21eSMel Gorman * immediate reclaim and under writeback (nr_immediate), it 1566b1a6f21eSMel Gorman * implies that pages are cycling through the LRU faster than 1567b1a6f21eSMel Gorman * they are written so also forcibly stall. 1568b1a6f21eSMel Gorman */ 1569b1a6f21eSMel Gorman if (nr_unqueued_dirty == nr_taken || nr_immediate) 1570b1a6f21eSMel Gorman congestion_wait(BLK_RW_ASYNC, HZ/10); 1571e2be15f6SMel Gorman } 1572d43006d5SMel Gorman 15738e950282SMel Gorman /* 15748e950282SMel Gorman * Stall direct reclaim for IO completions if underlying BDIs or zone 15758e950282SMel Gorman * is congested. Allow kswapd to continue until it starts encountering 15768e950282SMel Gorman * unqueued dirty pages or cycling through the LRU too quickly. 15778e950282SMel Gorman */ 15788e950282SMel Gorman if (!sc->hibernation_mode && !current_is_kswapd()) 15798e950282SMel Gorman wait_iff_congested(zone, BLK_RW_ASYNC, HZ/10); 15808e950282SMel Gorman 1581e11da5b4SMel Gorman trace_mm_vmscan_lru_shrink_inactive(zone->zone_pgdat->node_id, 1582e11da5b4SMel Gorman zone_idx(zone), 1583e11da5b4SMel Gorman nr_scanned, nr_reclaimed, 15849e3b2f8cSKonstantin Khlebnikov sc->priority, 158523b9da55SMel Gorman trace_shrink_flags(file)); 158605ff5137SAndrew Morton return nr_reclaimed; 15871da177e4SLinus Torvalds } 15881da177e4SLinus Torvalds 15893bb1a852SMartin Bligh /* 15901cfb419bSKAMEZAWA Hiroyuki * This moves pages from the active list to the inactive list. 15911cfb419bSKAMEZAWA Hiroyuki * 15921cfb419bSKAMEZAWA Hiroyuki * We move them the other way if the page is referenced by one or more 15931cfb419bSKAMEZAWA Hiroyuki * processes, from rmap. 15941cfb419bSKAMEZAWA Hiroyuki * 15951cfb419bSKAMEZAWA Hiroyuki * If the pages are mostly unmapped, the processing is fast and it is 15961cfb419bSKAMEZAWA Hiroyuki * appropriate to hold zone->lru_lock across the whole operation. But if 15971cfb419bSKAMEZAWA Hiroyuki * the pages are mapped, the processing is slow (page_referenced()) so we 15981cfb419bSKAMEZAWA Hiroyuki * should drop zone->lru_lock around each page. It's impossible to balance 15991cfb419bSKAMEZAWA Hiroyuki * this, so instead we remove the pages from the LRU while processing them. 16001cfb419bSKAMEZAWA Hiroyuki * It is safe to rely on PG_active against the non-LRU pages in here because 16011cfb419bSKAMEZAWA Hiroyuki * nobody will play with that bit on a non-LRU page. 16021cfb419bSKAMEZAWA Hiroyuki * 16031cfb419bSKAMEZAWA Hiroyuki * The downside is that we have to touch page->_count against each page. 16041cfb419bSKAMEZAWA Hiroyuki * But we had to alter page->flags anyway. 16051cfb419bSKAMEZAWA Hiroyuki */ 16061cfb419bSKAMEZAWA Hiroyuki 1607fa9add64SHugh Dickins static void move_active_pages_to_lru(struct lruvec *lruvec, 16083eb4140fSWu Fengguang struct list_head *list, 16092bcf8879SHugh Dickins struct list_head *pages_to_free, 16103eb4140fSWu Fengguang enum lru_list lru) 16113eb4140fSWu Fengguang { 1612fa9add64SHugh Dickins struct zone *zone = lruvec_zone(lruvec); 16133eb4140fSWu Fengguang unsigned long pgmoved = 0; 16143eb4140fSWu Fengguang struct page *page; 1615fa9add64SHugh Dickins int nr_pages; 16163eb4140fSWu Fengguang 16173eb4140fSWu Fengguang while (!list_empty(list)) { 16183eb4140fSWu Fengguang page = lru_to_page(list); 1619fa9add64SHugh Dickins lruvec = mem_cgroup_page_lruvec(page, zone); 16203eb4140fSWu Fengguang 1621309381feSSasha Levin VM_BUG_ON_PAGE(PageLRU(page), page); 16223eb4140fSWu Fengguang SetPageLRU(page); 16233eb4140fSWu Fengguang 1624fa9add64SHugh Dickins nr_pages = hpage_nr_pages(page); 1625fa9add64SHugh Dickins mem_cgroup_update_lru_size(lruvec, lru, nr_pages); 1626925b7673SJohannes Weiner list_move(&page->lru, &lruvec->lists[lru]); 1627fa9add64SHugh Dickins pgmoved += nr_pages; 16283eb4140fSWu Fengguang 16292bcf8879SHugh Dickins if (put_page_testzero(page)) { 16302bcf8879SHugh Dickins __ClearPageLRU(page); 16312bcf8879SHugh Dickins __ClearPageActive(page); 1632fa9add64SHugh Dickins del_page_from_lru_list(page, lruvec, lru); 16332bcf8879SHugh Dickins 16342bcf8879SHugh Dickins if (unlikely(PageCompound(page))) { 16353eb4140fSWu Fengguang spin_unlock_irq(&zone->lru_lock); 16362bcf8879SHugh Dickins (*get_compound_page_dtor(page))(page); 16373eb4140fSWu Fengguang spin_lock_irq(&zone->lru_lock); 16382bcf8879SHugh Dickins } else 16392bcf8879SHugh Dickins list_add(&page->lru, pages_to_free); 16403eb4140fSWu Fengguang } 16413eb4140fSWu Fengguang } 16423eb4140fSWu Fengguang __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved); 16433eb4140fSWu Fengguang if (!is_active_lru(lru)) 16443eb4140fSWu Fengguang __count_vm_events(PGDEACTIVATE, pgmoved); 16453eb4140fSWu Fengguang } 16461cfb419bSKAMEZAWA Hiroyuki 1647f626012dSHugh Dickins static void shrink_active_list(unsigned long nr_to_scan, 16481a93be0eSKonstantin Khlebnikov struct lruvec *lruvec, 1649f16015fbSJohannes Weiner struct scan_control *sc, 16509e3b2f8cSKonstantin Khlebnikov enum lru_list lru) 16511cfb419bSKAMEZAWA Hiroyuki { 165244c241f1SKOSAKI Motohiro unsigned long nr_taken; 1653f626012dSHugh Dickins unsigned long nr_scanned; 16546fe6b7e3SWu Fengguang unsigned long vm_flags; 16551cfb419bSKAMEZAWA Hiroyuki LIST_HEAD(l_hold); /* The pages which were snipped off */ 16568cab4754SWu Fengguang LIST_HEAD(l_active); 1657b69408e8SChristoph Lameter LIST_HEAD(l_inactive); 16581cfb419bSKAMEZAWA Hiroyuki struct page *page; 16591a93be0eSKonstantin Khlebnikov struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; 166044c241f1SKOSAKI Motohiro unsigned long nr_rotated = 0; 1661f3fd4a61SKonstantin Khlebnikov isolate_mode_t isolate_mode = 0; 16623cb99451SKonstantin Khlebnikov int file = is_file_lru(lru); 16631a93be0eSKonstantin Khlebnikov struct zone *zone = lruvec_zone(lruvec); 16641cfb419bSKAMEZAWA Hiroyuki 16651da177e4SLinus Torvalds lru_add_drain(); 1666f80c0673SMinchan Kim 1667f80c0673SMinchan Kim if (!sc->may_unmap) 166861317289SHillf Danton isolate_mode |= ISOLATE_UNMAPPED; 1669f80c0673SMinchan Kim if (!sc->may_writepage) 167061317289SHillf Danton isolate_mode |= ISOLATE_CLEAN; 1671f80c0673SMinchan Kim 16721da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 1673925b7673SJohannes Weiner 16745dc35979SKonstantin Khlebnikov nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold, 16755dc35979SKonstantin Khlebnikov &nr_scanned, sc, isolate_mode, lru); 167689b5fae5SJohannes Weiner if (global_reclaim(sc)) 1677f626012dSHugh Dickins zone->pages_scanned += nr_scanned; 167889b5fae5SJohannes Weiner 1679b7c46d15SJohannes Weiner reclaim_stat->recent_scanned[file] += nr_taken; 16801cfb419bSKAMEZAWA Hiroyuki 1681f626012dSHugh Dickins __count_zone_vm_events(PGREFILL, zone, nr_scanned); 16823cb99451SKonstantin Khlebnikov __mod_zone_page_state(zone, NR_LRU_BASE + lru, -nr_taken); 1683a731286dSKOSAKI Motohiro __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken); 16841da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 16851da177e4SLinus Torvalds 16861da177e4SLinus Torvalds while (!list_empty(&l_hold)) { 16871da177e4SLinus Torvalds cond_resched(); 16881da177e4SLinus Torvalds page = lru_to_page(&l_hold); 16891da177e4SLinus Torvalds list_del(&page->lru); 16907e9cd484SRik van Riel 169139b5f29aSHugh Dickins if (unlikely(!page_evictable(page))) { 1692894bc310SLee Schermerhorn putback_lru_page(page); 1693894bc310SLee Schermerhorn continue; 1694894bc310SLee Schermerhorn } 1695894bc310SLee Schermerhorn 1696cc715d99SMel Gorman if (unlikely(buffer_heads_over_limit)) { 1697cc715d99SMel Gorman if (page_has_private(page) && trylock_page(page)) { 1698cc715d99SMel Gorman if (page_has_private(page)) 1699cc715d99SMel Gorman try_to_release_page(page, 0); 1700cc715d99SMel Gorman unlock_page(page); 1701cc715d99SMel Gorman } 1702cc715d99SMel Gorman } 1703cc715d99SMel Gorman 1704c3ac9a8aSJohannes Weiner if (page_referenced(page, 0, sc->target_mem_cgroup, 1705c3ac9a8aSJohannes Weiner &vm_flags)) { 17069992af10SRik van Riel nr_rotated += hpage_nr_pages(page); 17078cab4754SWu Fengguang /* 17088cab4754SWu Fengguang * Identify referenced, file-backed active pages and 17098cab4754SWu Fengguang * give them one more trip around the active list. So 17108cab4754SWu Fengguang * that executable code get better chances to stay in 17118cab4754SWu Fengguang * memory under moderate memory pressure. Anon pages 17128cab4754SWu Fengguang * are not likely to be evicted by use-once streaming 17138cab4754SWu Fengguang * IO, plus JVM can create lots of anon VM_EXEC pages, 17148cab4754SWu Fengguang * so we ignore them here. 17158cab4754SWu Fengguang */ 171641e20983SWu Fengguang if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) { 17178cab4754SWu Fengguang list_add(&page->lru, &l_active); 17188cab4754SWu Fengguang continue; 17198cab4754SWu Fengguang } 17208cab4754SWu Fengguang } 17217e9cd484SRik van Riel 17225205e56eSKOSAKI Motohiro ClearPageActive(page); /* we are de-activating */ 17231da177e4SLinus Torvalds list_add(&page->lru, &l_inactive); 17241da177e4SLinus Torvalds } 17251da177e4SLinus Torvalds 1726b555749aSAndrew Morton /* 17278cab4754SWu Fengguang * Move pages back to the lru list. 1728b555749aSAndrew Morton */ 17292a1dc509SJohannes Weiner spin_lock_irq(&zone->lru_lock); 17304f98a2feSRik van Riel /* 17318cab4754SWu Fengguang * Count referenced pages from currently used mappings as rotated, 17328cab4754SWu Fengguang * even though only some of them are actually re-activated. This 17338cab4754SWu Fengguang * helps balance scan pressure between file and anonymous pages in 17348cab4754SWu Fengguang * get_scan_ratio. 1735556adecbSRik van Riel */ 1736b7c46d15SJohannes Weiner reclaim_stat->recent_rotated[file] += nr_rotated; 1737556adecbSRik van Riel 1738fa9add64SHugh Dickins move_active_pages_to_lru(lruvec, &l_active, &l_hold, lru); 1739fa9add64SHugh Dickins move_active_pages_to_lru(lruvec, &l_inactive, &l_hold, lru - LRU_ACTIVE); 1740a731286dSKOSAKI Motohiro __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken); 1741f8891e5eSChristoph Lameter spin_unlock_irq(&zone->lru_lock); 17422bcf8879SHugh Dickins 17432bcf8879SHugh Dickins free_hot_cold_page_list(&l_hold, 1); 17441da177e4SLinus Torvalds } 17451da177e4SLinus Torvalds 174674e3f3c3SMinchan Kim #ifdef CONFIG_SWAP 174714797e23SKOSAKI Motohiro static int inactive_anon_is_low_global(struct zone *zone) 1748f89eb90eSKOSAKI Motohiro { 1749f89eb90eSKOSAKI Motohiro unsigned long active, inactive; 1750f89eb90eSKOSAKI Motohiro 1751f89eb90eSKOSAKI Motohiro active = zone_page_state(zone, NR_ACTIVE_ANON); 1752f89eb90eSKOSAKI Motohiro inactive = zone_page_state(zone, NR_INACTIVE_ANON); 1753f89eb90eSKOSAKI Motohiro 1754f89eb90eSKOSAKI Motohiro if (inactive * zone->inactive_ratio < active) 1755f89eb90eSKOSAKI Motohiro return 1; 1756f89eb90eSKOSAKI Motohiro 1757f89eb90eSKOSAKI Motohiro return 0; 1758f89eb90eSKOSAKI Motohiro } 1759f89eb90eSKOSAKI Motohiro 176014797e23SKOSAKI Motohiro /** 176114797e23SKOSAKI Motohiro * inactive_anon_is_low - check if anonymous pages need to be deactivated 1762c56d5c7dSKonstantin Khlebnikov * @lruvec: LRU vector to check 176314797e23SKOSAKI Motohiro * 176414797e23SKOSAKI Motohiro * Returns true if the zone does not have enough inactive anon pages, 176514797e23SKOSAKI Motohiro * meaning some active anon pages need to be deactivated. 176614797e23SKOSAKI Motohiro */ 1767c56d5c7dSKonstantin Khlebnikov static int inactive_anon_is_low(struct lruvec *lruvec) 176814797e23SKOSAKI Motohiro { 176974e3f3c3SMinchan Kim /* 177074e3f3c3SMinchan Kim * If we don't have swap space, anonymous page deactivation 177174e3f3c3SMinchan Kim * is pointless. 177274e3f3c3SMinchan Kim */ 177374e3f3c3SMinchan Kim if (!total_swap_pages) 177474e3f3c3SMinchan Kim return 0; 177574e3f3c3SMinchan Kim 1776c3c787e8SHugh Dickins if (!mem_cgroup_disabled()) 1777c56d5c7dSKonstantin Khlebnikov return mem_cgroup_inactive_anon_is_low(lruvec); 1778f16015fbSJohannes Weiner 1779c56d5c7dSKonstantin Khlebnikov return inactive_anon_is_low_global(lruvec_zone(lruvec)); 178014797e23SKOSAKI Motohiro } 178174e3f3c3SMinchan Kim #else 1782c56d5c7dSKonstantin Khlebnikov static inline int inactive_anon_is_low(struct lruvec *lruvec) 178374e3f3c3SMinchan Kim { 178474e3f3c3SMinchan Kim return 0; 178574e3f3c3SMinchan Kim } 178674e3f3c3SMinchan Kim #endif 178714797e23SKOSAKI Motohiro 178856e49d21SRik van Riel /** 178956e49d21SRik van Riel * inactive_file_is_low - check if file pages need to be deactivated 1790c56d5c7dSKonstantin Khlebnikov * @lruvec: LRU vector to check 179156e49d21SRik van Riel * 179256e49d21SRik van Riel * When the system is doing streaming IO, memory pressure here 179356e49d21SRik van Riel * ensures that active file pages get deactivated, until more 179456e49d21SRik van Riel * than half of the file pages are on the inactive list. 179556e49d21SRik van Riel * 179656e49d21SRik van Riel * Once we get to that situation, protect the system's working 179756e49d21SRik van Riel * set from being evicted by disabling active file page aging. 179856e49d21SRik van Riel * 179956e49d21SRik van Riel * This uses a different ratio than the anonymous pages, because 180056e49d21SRik van Riel * the page cache uses a use-once replacement algorithm. 180156e49d21SRik van Riel */ 1802c56d5c7dSKonstantin Khlebnikov static int inactive_file_is_low(struct lruvec *lruvec) 180356e49d21SRik van Riel { 1804e3790144SJohannes Weiner unsigned long inactive; 1805e3790144SJohannes Weiner unsigned long active; 180656e49d21SRik van Riel 1807e3790144SJohannes Weiner inactive = get_lru_size(lruvec, LRU_INACTIVE_FILE); 1808e3790144SJohannes Weiner active = get_lru_size(lruvec, LRU_ACTIVE_FILE); 1809e3790144SJohannes Weiner 1810e3790144SJohannes Weiner return active > inactive; 181156e49d21SRik van Riel } 181256e49d21SRik van Riel 181375b00af7SHugh Dickins static int inactive_list_is_low(struct lruvec *lruvec, enum lru_list lru) 1814b39415b2SRik van Riel { 181575b00af7SHugh Dickins if (is_file_lru(lru)) 1816c56d5c7dSKonstantin Khlebnikov return inactive_file_is_low(lruvec); 1817b39415b2SRik van Riel else 1818c56d5c7dSKonstantin Khlebnikov return inactive_anon_is_low(lruvec); 1819b39415b2SRik van Riel } 1820b39415b2SRik van Riel 18214f98a2feSRik van Riel static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan, 18221a93be0eSKonstantin Khlebnikov struct lruvec *lruvec, struct scan_control *sc) 1823b69408e8SChristoph Lameter { 1824b39415b2SRik van Riel if (is_active_lru(lru)) { 182575b00af7SHugh Dickins if (inactive_list_is_low(lruvec, lru)) 18261a93be0eSKonstantin Khlebnikov shrink_active_list(nr_to_scan, lruvec, sc, lru); 1827556adecbSRik van Riel return 0; 1828556adecbSRik van Riel } 1829556adecbSRik van Riel 18301a93be0eSKonstantin Khlebnikov return shrink_inactive_list(nr_to_scan, lruvec, sc, lru); 1831b69408e8SChristoph Lameter } 1832b69408e8SChristoph Lameter 18333d58ab5cSKonstantin Khlebnikov static int vmscan_swappiness(struct scan_control *sc) 18341f4c025bSKAMEZAWA Hiroyuki { 183589b5fae5SJohannes Weiner if (global_reclaim(sc)) 18361f4c025bSKAMEZAWA Hiroyuki return vm_swappiness; 18373d58ab5cSKonstantin Khlebnikov return mem_cgroup_swappiness(sc->target_mem_cgroup); 18381f4c025bSKAMEZAWA Hiroyuki } 18391f4c025bSKAMEZAWA Hiroyuki 18409a265114SJohannes Weiner enum scan_balance { 18419a265114SJohannes Weiner SCAN_EQUAL, 18429a265114SJohannes Weiner SCAN_FRACT, 18439a265114SJohannes Weiner SCAN_ANON, 18449a265114SJohannes Weiner SCAN_FILE, 18459a265114SJohannes Weiner }; 18469a265114SJohannes Weiner 18471da177e4SLinus Torvalds /* 18484f98a2feSRik van Riel * Determine how aggressively the anon and file LRU lists should be 18494f98a2feSRik van Riel * scanned. The relative value of each set of LRU lists is determined 18504f98a2feSRik van Riel * by looking at the fraction of the pages scanned we did rotate back 18514f98a2feSRik van Riel * onto the active list instead of evict. 18524f98a2feSRik van Riel * 1853be7bd59dSWanpeng Li * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan 1854be7bd59dSWanpeng Li * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan 18554f98a2feSRik van Riel */ 185690126375SKonstantin Khlebnikov static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc, 18579e3b2f8cSKonstantin Khlebnikov unsigned long *nr) 18584f98a2feSRik van Riel { 185990126375SKonstantin Khlebnikov struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; 18609a265114SJohannes Weiner u64 fraction[2]; 18619a265114SJohannes Weiner u64 denominator = 0; /* gcc */ 186290126375SKonstantin Khlebnikov struct zone *zone = lruvec_zone(lruvec); 18639a265114SJohannes Weiner unsigned long anon_prio, file_prio; 18649a265114SJohannes Weiner enum scan_balance scan_balance; 18650bf1457fSJohannes Weiner unsigned long anon, file; 18669a265114SJohannes Weiner bool force_scan = false; 18679a265114SJohannes Weiner unsigned long ap, fp; 18689a265114SJohannes Weiner enum lru_list lru; 18696f04f48dSSuleiman Souhlal bool some_scanned; 18706f04f48dSSuleiman Souhlal int pass; 1871246e87a9SKAMEZAWA Hiroyuki 1872f11c0ca5SJohannes Weiner /* 1873f11c0ca5SJohannes Weiner * If the zone or memcg is small, nr[l] can be 0. This 1874f11c0ca5SJohannes Weiner * results in no scanning on this priority and a potential 1875f11c0ca5SJohannes Weiner * priority drop. Global direct reclaim can go to the next 1876f11c0ca5SJohannes Weiner * zone and tends to have no problems. Global kswapd is for 1877f11c0ca5SJohannes Weiner * zone balancing and it needs to scan a minimum amount. When 1878f11c0ca5SJohannes Weiner * reclaiming for a memcg, a priority drop can cause high 1879f11c0ca5SJohannes Weiner * latencies, so it's better to scan a minimum amount there as 1880f11c0ca5SJohannes Weiner * well. 1881f11c0ca5SJohannes Weiner */ 18826e543d57SLisa Du if (current_is_kswapd() && !zone_reclaimable(zone)) 1883a4d3e9e7SJohannes Weiner force_scan = true; 188489b5fae5SJohannes Weiner if (!global_reclaim(sc)) 1885a4d3e9e7SJohannes Weiner force_scan = true; 188676a33fc3SShaohua Li 188776a33fc3SShaohua Li /* If we have no swap space, do not bother scanning anon pages. */ 1888ec8acf20SShaohua Li if (!sc->may_swap || (get_nr_swap_pages() <= 0)) { 18899a265114SJohannes Weiner scan_balance = SCAN_FILE; 189076a33fc3SShaohua Li goto out; 189176a33fc3SShaohua Li } 18924f98a2feSRik van Riel 189310316b31SJohannes Weiner /* 189410316b31SJohannes Weiner * Global reclaim will swap to prevent OOM even with no 189510316b31SJohannes Weiner * swappiness, but memcg users want to use this knob to 189610316b31SJohannes Weiner * disable swapping for individual groups completely when 189710316b31SJohannes Weiner * using the memory controller's swap limit feature would be 189810316b31SJohannes Weiner * too expensive. 189910316b31SJohannes Weiner */ 190010316b31SJohannes Weiner if (!global_reclaim(sc) && !vmscan_swappiness(sc)) { 19019a265114SJohannes Weiner scan_balance = SCAN_FILE; 190210316b31SJohannes Weiner goto out; 190310316b31SJohannes Weiner } 190410316b31SJohannes Weiner 190510316b31SJohannes Weiner /* 190610316b31SJohannes Weiner * Do not apply any pressure balancing cleverness when the 190710316b31SJohannes Weiner * system is close to OOM, scan both anon and file equally 190810316b31SJohannes Weiner * (unless the swappiness setting disagrees with swapping). 190910316b31SJohannes Weiner */ 191010316b31SJohannes Weiner if (!sc->priority && vmscan_swappiness(sc)) { 19119a265114SJohannes Weiner scan_balance = SCAN_EQUAL; 191210316b31SJohannes Weiner goto out; 191310316b31SJohannes Weiner } 191410316b31SJohannes Weiner 19154d7dcca2SHugh Dickins anon = get_lru_size(lruvec, LRU_ACTIVE_ANON) + 19164d7dcca2SHugh Dickins get_lru_size(lruvec, LRU_INACTIVE_ANON); 19174d7dcca2SHugh Dickins file = get_lru_size(lruvec, LRU_ACTIVE_FILE) + 19184d7dcca2SHugh Dickins get_lru_size(lruvec, LRU_INACTIVE_FILE); 1919a4d3e9e7SJohannes Weiner 192011d16c25SJohannes Weiner /* 192162376251SJohannes Weiner * Prevent the reclaimer from falling into the cache trap: as 192262376251SJohannes Weiner * cache pages start out inactive, every cache fault will tip 192362376251SJohannes Weiner * the scan balance towards the file LRU. And as the file LRU 192462376251SJohannes Weiner * shrinks, so does the window for rotation from references. 192562376251SJohannes Weiner * This means we have a runaway feedback loop where a tiny 192662376251SJohannes Weiner * thrashing file LRU becomes infinitely more attractive than 192762376251SJohannes Weiner * anon pages. Try to detect this based on file LRU size. 192862376251SJohannes Weiner */ 192962376251SJohannes Weiner if (global_reclaim(sc)) { 193062376251SJohannes Weiner unsigned long free = zone_page_state(zone, NR_FREE_PAGES); 193162376251SJohannes Weiner 193262376251SJohannes Weiner if (unlikely(file + free <= high_wmark_pages(zone))) { 193362376251SJohannes Weiner scan_balance = SCAN_ANON; 193462376251SJohannes Weiner goto out; 193562376251SJohannes Weiner } 193662376251SJohannes Weiner } 193762376251SJohannes Weiner 193862376251SJohannes Weiner /* 19397c5bd705SJohannes Weiner * There is enough inactive page cache, do not reclaim 19407c5bd705SJohannes Weiner * anything from the anonymous working set right now. 1941e9868505SRik van Riel */ 19427c5bd705SJohannes Weiner if (!inactive_file_is_low(lruvec)) { 19439a265114SJohannes Weiner scan_balance = SCAN_FILE; 1944e9868505SRik van Riel goto out; 19454f98a2feSRik van Riel } 19464f98a2feSRik van Riel 19479a265114SJohannes Weiner scan_balance = SCAN_FRACT; 19489a265114SJohannes Weiner 19494f98a2feSRik van Riel /* 195058c37f6eSKOSAKI Motohiro * With swappiness at 100, anonymous and file have the same priority. 195158c37f6eSKOSAKI Motohiro * This scanning priority is essentially the inverse of IO cost. 195258c37f6eSKOSAKI Motohiro */ 19533d58ab5cSKonstantin Khlebnikov anon_prio = vmscan_swappiness(sc); 195475b00af7SHugh Dickins file_prio = 200 - anon_prio; 195558c37f6eSKOSAKI Motohiro 195658c37f6eSKOSAKI Motohiro /* 19574f98a2feSRik van Riel * OK, so we have swap space and a fair amount of page cache 19584f98a2feSRik van Riel * pages. We use the recently rotated / recently scanned 19594f98a2feSRik van Riel * ratios to determine how valuable each cache is. 19604f98a2feSRik van Riel * 19614f98a2feSRik van Riel * Because workloads change over time (and to avoid overflow) 19624f98a2feSRik van Riel * we keep these statistics as a floating average, which ends 19634f98a2feSRik van Riel * up weighing recent references more than old ones. 19644f98a2feSRik van Riel * 19654f98a2feSRik van Riel * anon in [0], file in [1] 19664f98a2feSRik van Riel */ 196790126375SKonstantin Khlebnikov spin_lock_irq(&zone->lru_lock); 196858c37f6eSKOSAKI Motohiro if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) { 19696e901571SKOSAKI Motohiro reclaim_stat->recent_scanned[0] /= 2; 19706e901571SKOSAKI Motohiro reclaim_stat->recent_rotated[0] /= 2; 19714f98a2feSRik van Riel } 19724f98a2feSRik van Riel 19736e901571SKOSAKI Motohiro if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) { 19746e901571SKOSAKI Motohiro reclaim_stat->recent_scanned[1] /= 2; 19756e901571SKOSAKI Motohiro reclaim_stat->recent_rotated[1] /= 2; 19764f98a2feSRik van Riel } 19774f98a2feSRik van Riel 19784f98a2feSRik van Riel /* 197900d8089cSRik van Riel * The amount of pressure on anon vs file pages is inversely 198000d8089cSRik van Riel * proportional to the fraction of recently scanned pages on 198100d8089cSRik van Riel * each list that were recently referenced and in active use. 19824f98a2feSRik van Riel */ 1983fe35004fSSatoru Moriya ap = anon_prio * (reclaim_stat->recent_scanned[0] + 1); 19846e901571SKOSAKI Motohiro ap /= reclaim_stat->recent_rotated[0] + 1; 19854f98a2feSRik van Riel 1986fe35004fSSatoru Moriya fp = file_prio * (reclaim_stat->recent_scanned[1] + 1); 19876e901571SKOSAKI Motohiro fp /= reclaim_stat->recent_rotated[1] + 1; 198890126375SKonstantin Khlebnikov spin_unlock_irq(&zone->lru_lock); 19894f98a2feSRik van Riel 199076a33fc3SShaohua Li fraction[0] = ap; 199176a33fc3SShaohua Li fraction[1] = fp; 199276a33fc3SShaohua Li denominator = ap + fp + 1; 199376a33fc3SShaohua Li out: 19946f04f48dSSuleiman Souhlal some_scanned = false; 19956f04f48dSSuleiman Souhlal /* Only use force_scan on second pass. */ 19966f04f48dSSuleiman Souhlal for (pass = 0; !some_scanned && pass < 2; pass++) { 19974111304dSHugh Dickins for_each_evictable_lru(lru) { 19984111304dSHugh Dickins int file = is_file_lru(lru); 1999d778df51SJohannes Weiner unsigned long size; 200076a33fc3SShaohua Li unsigned long scan; 200176a33fc3SShaohua Li 2002d778df51SJohannes Weiner size = get_lru_size(lruvec, lru); 2003d778df51SJohannes Weiner scan = size >> sc->priority; 20049a265114SJohannes Weiner 20056f04f48dSSuleiman Souhlal if (!scan && pass && force_scan) 2006d778df51SJohannes Weiner scan = min(size, SWAP_CLUSTER_MAX); 20079a265114SJohannes Weiner 20089a265114SJohannes Weiner switch (scan_balance) { 20099a265114SJohannes Weiner case SCAN_EQUAL: 20109a265114SJohannes Weiner /* Scan lists relative to size */ 20119a265114SJohannes Weiner break; 20129a265114SJohannes Weiner case SCAN_FRACT: 20139a265114SJohannes Weiner /* 20149a265114SJohannes Weiner * Scan types proportional to swappiness and 20159a265114SJohannes Weiner * their relative recent reclaim efficiency. 20169a265114SJohannes Weiner */ 20176f04f48dSSuleiman Souhlal scan = div64_u64(scan * fraction[file], 20186f04f48dSSuleiman Souhlal denominator); 20199a265114SJohannes Weiner break; 20209a265114SJohannes Weiner case SCAN_FILE: 20219a265114SJohannes Weiner case SCAN_ANON: 20229a265114SJohannes Weiner /* Scan one type exclusively */ 20239a265114SJohannes Weiner if ((scan_balance == SCAN_FILE) != file) 20249a265114SJohannes Weiner scan = 0; 20259a265114SJohannes Weiner break; 20269a265114SJohannes Weiner default: 20279a265114SJohannes Weiner /* Look ma, no brain */ 20289a265114SJohannes Weiner BUG(); 20299a265114SJohannes Weiner } 20304111304dSHugh Dickins nr[lru] = scan; 20316f04f48dSSuleiman Souhlal /* 20326f04f48dSSuleiman Souhlal * Skip the second pass and don't force_scan, 20336f04f48dSSuleiman Souhlal * if we found something to scan. 20346f04f48dSSuleiman Souhlal */ 20356f04f48dSSuleiman Souhlal some_scanned |= !!scan; 20366f04f48dSSuleiman Souhlal } 203776a33fc3SShaohua Li } 20386e08a369SWu Fengguang } 20394f98a2feSRik van Riel 20409b4f98cdSJohannes Weiner /* 20419b4f98cdSJohannes Weiner * This is a basic per-zone page freer. Used by both kswapd and direct reclaim. 20429b4f98cdSJohannes Weiner */ 20439b4f98cdSJohannes Weiner static void shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc) 20449b4f98cdSJohannes Weiner { 20459b4f98cdSJohannes Weiner unsigned long nr[NR_LRU_LISTS]; 2046e82e0561SMel Gorman unsigned long targets[NR_LRU_LISTS]; 20479b4f98cdSJohannes Weiner unsigned long nr_to_scan; 20489b4f98cdSJohannes Weiner enum lru_list lru; 20499b4f98cdSJohannes Weiner unsigned long nr_reclaimed = 0; 20509b4f98cdSJohannes Weiner unsigned long nr_to_reclaim = sc->nr_to_reclaim; 20519b4f98cdSJohannes Weiner struct blk_plug plug; 2052e82e0561SMel Gorman bool scan_adjusted = false; 20539b4f98cdSJohannes Weiner 20549b4f98cdSJohannes Weiner get_scan_count(lruvec, sc, nr); 20559b4f98cdSJohannes Weiner 2056e82e0561SMel Gorman /* Record the original scan target for proportional adjustments later */ 2057e82e0561SMel Gorman memcpy(targets, nr, sizeof(nr)); 2058e82e0561SMel Gorman 20599b4f98cdSJohannes Weiner blk_start_plug(&plug); 20609b4f98cdSJohannes Weiner while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] || 20619b4f98cdSJohannes Weiner nr[LRU_INACTIVE_FILE]) { 2062e82e0561SMel Gorman unsigned long nr_anon, nr_file, percentage; 2063e82e0561SMel Gorman unsigned long nr_scanned; 2064e82e0561SMel Gorman 20659b4f98cdSJohannes Weiner for_each_evictable_lru(lru) { 20669b4f98cdSJohannes Weiner if (nr[lru]) { 20679b4f98cdSJohannes Weiner nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX); 20689b4f98cdSJohannes Weiner nr[lru] -= nr_to_scan; 20699b4f98cdSJohannes Weiner 20709b4f98cdSJohannes Weiner nr_reclaimed += shrink_list(lru, nr_to_scan, 20719b4f98cdSJohannes Weiner lruvec, sc); 20729b4f98cdSJohannes Weiner } 20739b4f98cdSJohannes Weiner } 2074e82e0561SMel Gorman 2075e82e0561SMel Gorman if (nr_reclaimed < nr_to_reclaim || scan_adjusted) 2076e82e0561SMel Gorman continue; 2077e82e0561SMel Gorman 20789b4f98cdSJohannes Weiner /* 2079e82e0561SMel Gorman * For global direct reclaim, reclaim only the number of pages 2080e82e0561SMel Gorman * requested. Less care is taken to scan proportionally as it 2081e82e0561SMel Gorman * is more important to minimise direct reclaim stall latency 2082e82e0561SMel Gorman * than it is to properly age the LRU lists. 20839b4f98cdSJohannes Weiner */ 2084e82e0561SMel Gorman if (global_reclaim(sc) && !current_is_kswapd()) 20859b4f98cdSJohannes Weiner break; 2086e82e0561SMel Gorman 2087e82e0561SMel Gorman /* 2088e82e0561SMel Gorman * For kswapd and memcg, reclaim at least the number of pages 2089e82e0561SMel Gorman * requested. Ensure that the anon and file LRUs shrink 2090e82e0561SMel Gorman * proportionally what was requested by get_scan_count(). We 2091e82e0561SMel Gorman * stop reclaiming one LRU and reduce the amount scanning 2092e82e0561SMel Gorman * proportional to the original scan target. 2093e82e0561SMel Gorman */ 2094e82e0561SMel Gorman nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE]; 2095e82e0561SMel Gorman nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON]; 2096e82e0561SMel Gorman 2097e82e0561SMel Gorman if (nr_file > nr_anon) { 2098e82e0561SMel Gorman unsigned long scan_target = targets[LRU_INACTIVE_ANON] + 2099e82e0561SMel Gorman targets[LRU_ACTIVE_ANON] + 1; 2100e82e0561SMel Gorman lru = LRU_BASE; 2101e82e0561SMel Gorman percentage = nr_anon * 100 / scan_target; 2102e82e0561SMel Gorman } else { 2103e82e0561SMel Gorman unsigned long scan_target = targets[LRU_INACTIVE_FILE] + 2104e82e0561SMel Gorman targets[LRU_ACTIVE_FILE] + 1; 2105e82e0561SMel Gorman lru = LRU_FILE; 2106e82e0561SMel Gorman percentage = nr_file * 100 / scan_target; 2107e82e0561SMel Gorman } 2108e82e0561SMel Gorman 2109e82e0561SMel Gorman /* Stop scanning the smaller of the LRU */ 2110e82e0561SMel Gorman nr[lru] = 0; 2111e82e0561SMel Gorman nr[lru + LRU_ACTIVE] = 0; 2112e82e0561SMel Gorman 2113e82e0561SMel Gorman /* 2114e82e0561SMel Gorman * Recalculate the other LRU scan count based on its original 2115e82e0561SMel Gorman * scan target and the percentage scanning already complete 2116e82e0561SMel Gorman */ 2117e82e0561SMel Gorman lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE; 2118e82e0561SMel Gorman nr_scanned = targets[lru] - nr[lru]; 2119e82e0561SMel Gorman nr[lru] = targets[lru] * (100 - percentage) / 100; 2120e82e0561SMel Gorman nr[lru] -= min(nr[lru], nr_scanned); 2121e82e0561SMel Gorman 2122e82e0561SMel Gorman lru += LRU_ACTIVE; 2123e82e0561SMel Gorman nr_scanned = targets[lru] - nr[lru]; 2124e82e0561SMel Gorman nr[lru] = targets[lru] * (100 - percentage) / 100; 2125e82e0561SMel Gorman nr[lru] -= min(nr[lru], nr_scanned); 2126e82e0561SMel Gorman 2127e82e0561SMel Gorman scan_adjusted = true; 21289b4f98cdSJohannes Weiner } 21299b4f98cdSJohannes Weiner blk_finish_plug(&plug); 21309b4f98cdSJohannes Weiner sc->nr_reclaimed += nr_reclaimed; 21319b4f98cdSJohannes Weiner 21329b4f98cdSJohannes Weiner /* 21339b4f98cdSJohannes Weiner * Even if we did not try to evict anon pages at all, we want to 21349b4f98cdSJohannes Weiner * rebalance the anon lru active/inactive ratio. 21359b4f98cdSJohannes Weiner */ 21369b4f98cdSJohannes Weiner if (inactive_anon_is_low(lruvec)) 21379b4f98cdSJohannes Weiner shrink_active_list(SWAP_CLUSTER_MAX, lruvec, 21389b4f98cdSJohannes Weiner sc, LRU_ACTIVE_ANON); 21399b4f98cdSJohannes Weiner 21409b4f98cdSJohannes Weiner throttle_vm_writeout(sc->gfp_mask); 21419b4f98cdSJohannes Weiner } 21429b4f98cdSJohannes Weiner 214323b9da55SMel Gorman /* Use reclaim/compaction for costly allocs or under memory pressure */ 21449e3b2f8cSKonstantin Khlebnikov static bool in_reclaim_compaction(struct scan_control *sc) 214523b9da55SMel Gorman { 2146d84da3f9SKirill A. Shutemov if (IS_ENABLED(CONFIG_COMPACTION) && sc->order && 214723b9da55SMel Gorman (sc->order > PAGE_ALLOC_COSTLY_ORDER || 21489e3b2f8cSKonstantin Khlebnikov sc->priority < DEF_PRIORITY - 2)) 214923b9da55SMel Gorman return true; 215023b9da55SMel Gorman 215123b9da55SMel Gorman return false; 215223b9da55SMel Gorman } 215323b9da55SMel Gorman 21544f98a2feSRik van Riel /* 215523b9da55SMel Gorman * Reclaim/compaction is used for high-order allocation requests. It reclaims 215623b9da55SMel Gorman * order-0 pages before compacting the zone. should_continue_reclaim() returns 215723b9da55SMel Gorman * true if more pages should be reclaimed such that when the page allocator 215823b9da55SMel Gorman * calls try_to_compact_zone() that it will have enough free pages to succeed. 215923b9da55SMel Gorman * It will give up earlier than that if there is difficulty reclaiming pages. 21603e7d3449SMel Gorman */ 21619b4f98cdSJohannes Weiner static inline bool should_continue_reclaim(struct zone *zone, 21623e7d3449SMel Gorman unsigned long nr_reclaimed, 21633e7d3449SMel Gorman unsigned long nr_scanned, 21643e7d3449SMel Gorman struct scan_control *sc) 21653e7d3449SMel Gorman { 21663e7d3449SMel Gorman unsigned long pages_for_compaction; 21673e7d3449SMel Gorman unsigned long inactive_lru_pages; 21683e7d3449SMel Gorman 21693e7d3449SMel Gorman /* If not in reclaim/compaction mode, stop */ 21709e3b2f8cSKonstantin Khlebnikov if (!in_reclaim_compaction(sc)) 21713e7d3449SMel Gorman return false; 21723e7d3449SMel Gorman 21732876592fSMel Gorman /* Consider stopping depending on scan and reclaim activity */ 21742876592fSMel Gorman if (sc->gfp_mask & __GFP_REPEAT) { 21753e7d3449SMel Gorman /* 21762876592fSMel Gorman * For __GFP_REPEAT allocations, stop reclaiming if the 21772876592fSMel Gorman * full LRU list has been scanned and we are still failing 21782876592fSMel Gorman * to reclaim pages. This full LRU scan is potentially 21792876592fSMel Gorman * expensive but a __GFP_REPEAT caller really wants to succeed 21803e7d3449SMel Gorman */ 21813e7d3449SMel Gorman if (!nr_reclaimed && !nr_scanned) 21823e7d3449SMel Gorman return false; 21832876592fSMel Gorman } else { 21842876592fSMel Gorman /* 21852876592fSMel Gorman * For non-__GFP_REPEAT allocations which can presumably 21862876592fSMel Gorman * fail without consequence, stop if we failed to reclaim 21872876592fSMel Gorman * any pages from the last SWAP_CLUSTER_MAX number of 21882876592fSMel Gorman * pages that were scanned. This will return to the 21892876592fSMel Gorman * caller faster at the risk reclaim/compaction and 21902876592fSMel Gorman * the resulting allocation attempt fails 21912876592fSMel Gorman */ 21922876592fSMel Gorman if (!nr_reclaimed) 21932876592fSMel Gorman return false; 21942876592fSMel Gorman } 21953e7d3449SMel Gorman 21963e7d3449SMel Gorman /* 21973e7d3449SMel Gorman * If we have not reclaimed enough pages for compaction and the 21983e7d3449SMel Gorman * inactive lists are large enough, continue reclaiming 21993e7d3449SMel Gorman */ 22003e7d3449SMel Gorman pages_for_compaction = (2UL << sc->order); 22019b4f98cdSJohannes Weiner inactive_lru_pages = zone_page_state(zone, NR_INACTIVE_FILE); 2202ec8acf20SShaohua Li if (get_nr_swap_pages() > 0) 22039b4f98cdSJohannes Weiner inactive_lru_pages += zone_page_state(zone, NR_INACTIVE_ANON); 22043e7d3449SMel Gorman if (sc->nr_reclaimed < pages_for_compaction && 22053e7d3449SMel Gorman inactive_lru_pages > pages_for_compaction) 22063e7d3449SMel Gorman return true; 22073e7d3449SMel Gorman 22083e7d3449SMel Gorman /* If compaction would go ahead or the allocation would succeed, stop */ 22099b4f98cdSJohannes Weiner switch (compaction_suitable(zone, sc->order)) { 22103e7d3449SMel Gorman case COMPACT_PARTIAL: 22113e7d3449SMel Gorman case COMPACT_CONTINUE: 22123e7d3449SMel Gorman return false; 22133e7d3449SMel Gorman default: 22143e7d3449SMel Gorman return true; 22153e7d3449SMel Gorman } 22163e7d3449SMel Gorman } 22173e7d3449SMel Gorman 22180608f43dSAndrew Morton static void shrink_zone(struct zone *zone, struct scan_control *sc) 2219f16015fbSJohannes Weiner { 22209b4f98cdSJohannes Weiner unsigned long nr_reclaimed, nr_scanned; 22219b4f98cdSJohannes Weiner 22229b4f98cdSJohannes Weiner do { 22235660048cSJohannes Weiner struct mem_cgroup *root = sc->target_mem_cgroup; 22245660048cSJohannes Weiner struct mem_cgroup_reclaim_cookie reclaim = { 22255660048cSJohannes Weiner .zone = zone, 22269e3b2f8cSKonstantin Khlebnikov .priority = sc->priority, 22275660048cSJohannes Weiner }; 2228694fbc0fSAndrew Morton struct mem_cgroup *memcg; 22295660048cSJohannes Weiner 22309b4f98cdSJohannes Weiner nr_reclaimed = sc->nr_reclaimed; 22319b4f98cdSJohannes Weiner nr_scanned = sc->nr_scanned; 22329b4f98cdSJohannes Weiner 2233694fbc0fSAndrew Morton memcg = mem_cgroup_iter(root, NULL, &reclaim); 2234694fbc0fSAndrew Morton do { 22359b4f98cdSJohannes Weiner struct lruvec *lruvec; 22369b4f98cdSJohannes Weiner 22379b4f98cdSJohannes Weiner lruvec = mem_cgroup_zone_lruvec(zone, memcg); 22385660048cSJohannes Weiner 2239f9be23d6SKonstantin Khlebnikov shrink_lruvec(lruvec, sc); 2240f9be23d6SKonstantin Khlebnikov 22415660048cSJohannes Weiner /* 2242a394cb8eSMichal Hocko * Direct reclaim and kswapd have to scan all memory 2243a394cb8eSMichal Hocko * cgroups to fulfill the overall scan target for the 22449b4f98cdSJohannes Weiner * zone. 2245a394cb8eSMichal Hocko * 2246a394cb8eSMichal Hocko * Limit reclaim, on the other hand, only cares about 2247a394cb8eSMichal Hocko * nr_to_reclaim pages to be reclaimed and it will 2248a394cb8eSMichal Hocko * retry with decreasing priority if one round over the 2249a394cb8eSMichal Hocko * whole hierarchy is not sufficient. 22505660048cSJohannes Weiner */ 2251a394cb8eSMichal Hocko if (!global_reclaim(sc) && 2252a394cb8eSMichal Hocko sc->nr_reclaimed >= sc->nr_to_reclaim) { 22535660048cSJohannes Weiner mem_cgroup_iter_break(root, memcg); 22545660048cSJohannes Weiner break; 22555660048cSJohannes Weiner } 2256694fbc0fSAndrew Morton memcg = mem_cgroup_iter(root, memcg, &reclaim); 2257694fbc0fSAndrew Morton } while (memcg); 225870ddf637SAnton Vorontsov 225970ddf637SAnton Vorontsov vmpressure(sc->gfp_mask, sc->target_mem_cgroup, 226070ddf637SAnton Vorontsov sc->nr_scanned - nr_scanned, 226170ddf637SAnton Vorontsov sc->nr_reclaimed - nr_reclaimed); 226270ddf637SAnton Vorontsov 22639b4f98cdSJohannes Weiner } while (should_continue_reclaim(zone, sc->nr_reclaimed - nr_reclaimed, 22649b4f98cdSJohannes Weiner sc->nr_scanned - nr_scanned, sc)); 2265f16015fbSJohannes Weiner } 2266f16015fbSJohannes Weiner 2267fe4b1b24SMel Gorman /* Returns true if compaction should go ahead for a high-order request */ 2268fe4b1b24SMel Gorman static inline bool compaction_ready(struct zone *zone, struct scan_control *sc) 2269fe4b1b24SMel Gorman { 2270fe4b1b24SMel Gorman unsigned long balance_gap, watermark; 2271fe4b1b24SMel Gorman bool watermark_ok; 2272fe4b1b24SMel Gorman 2273fe4b1b24SMel Gorman /* Do not consider compaction for orders reclaim is meant to satisfy */ 2274fe4b1b24SMel Gorman if (sc->order <= PAGE_ALLOC_COSTLY_ORDER) 2275fe4b1b24SMel Gorman return false; 2276fe4b1b24SMel Gorman 2277fe4b1b24SMel Gorman /* 2278fe4b1b24SMel Gorman * Compaction takes time to run and there are potentially other 2279fe4b1b24SMel Gorman * callers using the pages just freed. Continue reclaiming until 2280fe4b1b24SMel Gorman * there is a buffer of free pages available to give compaction 2281fe4b1b24SMel Gorman * a reasonable chance of completing and allocating the page 2282fe4b1b24SMel Gorman */ 2283fe4b1b24SMel Gorman balance_gap = min(low_wmark_pages(zone), 2284b40da049SJiang Liu (zone->managed_pages + KSWAPD_ZONE_BALANCE_GAP_RATIO-1) / 2285fe4b1b24SMel Gorman KSWAPD_ZONE_BALANCE_GAP_RATIO); 2286fe4b1b24SMel Gorman watermark = high_wmark_pages(zone) + balance_gap + (2UL << sc->order); 2287fe4b1b24SMel Gorman watermark_ok = zone_watermark_ok_safe(zone, 0, watermark, 0, 0); 2288fe4b1b24SMel Gorman 2289fe4b1b24SMel Gorman /* 2290fe4b1b24SMel Gorman * If compaction is deferred, reclaim up to a point where 2291fe4b1b24SMel Gorman * compaction will have a chance of success when re-enabled 2292fe4b1b24SMel Gorman */ 2293aff62249SRik van Riel if (compaction_deferred(zone, sc->order)) 2294fe4b1b24SMel Gorman return watermark_ok; 2295fe4b1b24SMel Gorman 2296fe4b1b24SMel Gorman /* If compaction is not ready to start, keep reclaiming */ 2297fe4b1b24SMel Gorman if (!compaction_suitable(zone, sc->order)) 2298fe4b1b24SMel Gorman return false; 2299fe4b1b24SMel Gorman 2300fe4b1b24SMel Gorman return watermark_ok; 2301fe4b1b24SMel Gorman } 2302fe4b1b24SMel Gorman 23031da177e4SLinus Torvalds /* 23041da177e4SLinus Torvalds * This is the direct reclaim path, for page-allocating processes. We only 23051da177e4SLinus Torvalds * try to reclaim pages from zones which will satisfy the caller's allocation 23061da177e4SLinus Torvalds * request. 23071da177e4SLinus Torvalds * 230841858966SMel Gorman * We reclaim from a zone even if that zone is over high_wmark_pages(zone). 230941858966SMel Gorman * Because: 23101da177e4SLinus Torvalds * a) The caller may be trying to free *extra* pages to satisfy a higher-order 23111da177e4SLinus Torvalds * allocation or 231241858966SMel Gorman * b) The target zone may be at high_wmark_pages(zone) but the lower zones 231341858966SMel Gorman * must go *over* high_wmark_pages(zone) to satisfy the `incremental min' 231441858966SMel Gorman * zone defense algorithm. 23151da177e4SLinus Torvalds * 23161da177e4SLinus Torvalds * If a zone is deemed to be full of pinned pages then just give it a light 23171da177e4SLinus Torvalds * scan then give up on it. 2318e0c23279SMel Gorman * 2319e0c23279SMel Gorman * This function returns true if a zone is being reclaimed for a costly 2320fe4b1b24SMel Gorman * high-order allocation and compaction is ready to begin. This indicates to 23210cee34fdSMel Gorman * the caller that it should consider retrying the allocation instead of 23220cee34fdSMel Gorman * further reclaim. 23231da177e4SLinus Torvalds */ 23243115cd91SVladimir Davydov static bool shrink_zones(struct zonelist *zonelist, struct scan_control *sc) 23251da177e4SLinus Torvalds { 2326dd1a239fSMel Gorman struct zoneref *z; 232754a6eb5cSMel Gorman struct zone *zone; 23280608f43dSAndrew Morton unsigned long nr_soft_reclaimed; 23290608f43dSAndrew Morton unsigned long nr_soft_scanned; 233065ec02cbSVladimir Davydov unsigned long lru_pages = 0; 23310cee34fdSMel Gorman bool aborted_reclaim = false; 233265ec02cbSVladimir Davydov struct reclaim_state *reclaim_state = current->reclaim_state; 2333619d0d76SWeijie Yang gfp_t orig_mask; 23343115cd91SVladimir Davydov struct shrink_control shrink = { 23353115cd91SVladimir Davydov .gfp_mask = sc->gfp_mask, 23363115cd91SVladimir Davydov }; 23379bbc04eeSWeijie Yang enum zone_type requested_highidx = gfp_zone(sc->gfp_mask); 23381cfb419bSKAMEZAWA Hiroyuki 2339cc715d99SMel Gorman /* 2340cc715d99SMel Gorman * If the number of buffer_heads in the machine exceeds the maximum 2341cc715d99SMel Gorman * allowed level, force direct reclaim to scan the highmem zone as 2342cc715d99SMel Gorman * highmem pages could be pinning lowmem pages storing buffer_heads 2343cc715d99SMel Gorman */ 2344619d0d76SWeijie Yang orig_mask = sc->gfp_mask; 2345cc715d99SMel Gorman if (buffer_heads_over_limit) 2346cc715d99SMel Gorman sc->gfp_mask |= __GFP_HIGHMEM; 2347cc715d99SMel Gorman 23483115cd91SVladimir Davydov nodes_clear(shrink.nodes_to_scan); 234965ec02cbSVladimir Davydov 2350d4debc66SMel Gorman for_each_zone_zonelist_nodemask(zone, z, zonelist, 2351d4debc66SMel Gorman gfp_zone(sc->gfp_mask), sc->nodemask) { 2352f3fe6512SCon Kolivas if (!populated_zone(zone)) 23531da177e4SLinus Torvalds continue; 23541cfb419bSKAMEZAWA Hiroyuki /* 23551cfb419bSKAMEZAWA Hiroyuki * Take care memory controller reclaiming has small influence 23561cfb419bSKAMEZAWA Hiroyuki * to global LRU. 23571cfb419bSKAMEZAWA Hiroyuki */ 235889b5fae5SJohannes Weiner if (global_reclaim(sc)) { 235902a0e53dSPaul Jackson if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL)) 23601da177e4SLinus Torvalds continue; 236165ec02cbSVladimir Davydov 236265ec02cbSVladimir Davydov lru_pages += zone_reclaimable_pages(zone); 23633115cd91SVladimir Davydov node_set(zone_to_nid(zone), shrink.nodes_to_scan); 236465ec02cbSVladimir Davydov 23656e543d57SLisa Du if (sc->priority != DEF_PRIORITY && 23666e543d57SLisa Du !zone_reclaimable(zone)) 23671da177e4SLinus Torvalds continue; /* Let kswapd poll it */ 2368d84da3f9SKirill A. Shutemov if (IS_ENABLED(CONFIG_COMPACTION)) { 2369e0887c19SRik van Riel /* 2370e0c23279SMel Gorman * If we already have plenty of memory free for 2371e0c23279SMel Gorman * compaction in this zone, don't free any more. 2372e0c23279SMel Gorman * Even though compaction is invoked for any 2373e0c23279SMel Gorman * non-zero order, only frequent costly order 2374e0c23279SMel Gorman * reclamation is disruptive enough to become a 2375c7cfa37bSCopot Alexandru * noticeable problem, like transparent huge 2376c7cfa37bSCopot Alexandru * page allocations. 2377e0887c19SRik van Riel */ 23789bbc04eeSWeijie Yang if ((zonelist_zone_idx(z) <= requested_highidx) 23799bbc04eeSWeijie Yang && compaction_ready(zone, sc)) { 23800cee34fdSMel Gorman aborted_reclaim = true; 2381e0887c19SRik van Riel continue; 2382e0887c19SRik van Riel } 2383e0c23279SMel Gorman } 23840608f43dSAndrew Morton /* 23850608f43dSAndrew Morton * This steals pages from memory cgroups over softlimit 23860608f43dSAndrew Morton * and returns the number of reclaimed pages and 23870608f43dSAndrew Morton * scanned pages. This works for global memory pressure 23880608f43dSAndrew Morton * and balancing, not for a memcg's limit. 23890608f43dSAndrew Morton */ 23900608f43dSAndrew Morton nr_soft_scanned = 0; 23910608f43dSAndrew Morton nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone, 23920608f43dSAndrew Morton sc->order, sc->gfp_mask, 23930608f43dSAndrew Morton &nr_soft_scanned); 23940608f43dSAndrew Morton sc->nr_reclaimed += nr_soft_reclaimed; 23950608f43dSAndrew Morton sc->nr_scanned += nr_soft_scanned; 2396ac34a1a3SKAMEZAWA Hiroyuki /* need some check for avoid more shrink_zone() */ 2397ac34a1a3SKAMEZAWA Hiroyuki } 2398d149e3b2SYing Han 23999e3b2f8cSKonstantin Khlebnikov shrink_zone(zone, sc); 24001da177e4SLinus Torvalds } 2401e0c23279SMel Gorman 240265ec02cbSVladimir Davydov /* 240365ec02cbSVladimir Davydov * Don't shrink slabs when reclaiming memory from over limit cgroups 240465ec02cbSVladimir Davydov * but do shrink slab at least once when aborting reclaim for 240565ec02cbSVladimir Davydov * compaction to avoid unevenly scanning file/anon LRU pages over slab 240665ec02cbSVladimir Davydov * pages. 240765ec02cbSVladimir Davydov */ 240865ec02cbSVladimir Davydov if (global_reclaim(sc)) { 24093115cd91SVladimir Davydov shrink_slab(&shrink, sc->nr_scanned, lru_pages); 241065ec02cbSVladimir Davydov if (reclaim_state) { 241165ec02cbSVladimir Davydov sc->nr_reclaimed += reclaim_state->reclaimed_slab; 241265ec02cbSVladimir Davydov reclaim_state->reclaimed_slab = 0; 241365ec02cbSVladimir Davydov } 241465ec02cbSVladimir Davydov } 241565ec02cbSVladimir Davydov 2416619d0d76SWeijie Yang /* 2417619d0d76SWeijie Yang * Restore to original mask to avoid the impact on the caller if we 2418619d0d76SWeijie Yang * promoted it to __GFP_HIGHMEM. 2419619d0d76SWeijie Yang */ 2420619d0d76SWeijie Yang sc->gfp_mask = orig_mask; 2421619d0d76SWeijie Yang 24220cee34fdSMel Gorman return aborted_reclaim; 2423d1908362SMinchan Kim } 2424d1908362SMinchan Kim 2425929bea7cSKOSAKI Motohiro /* All zones in zonelist are unreclaimable? */ 2426d1908362SMinchan Kim static bool all_unreclaimable(struct zonelist *zonelist, 2427d1908362SMinchan Kim struct scan_control *sc) 2428d1908362SMinchan Kim { 2429d1908362SMinchan Kim struct zoneref *z; 2430d1908362SMinchan Kim struct zone *zone; 2431d1908362SMinchan Kim 2432d1908362SMinchan Kim for_each_zone_zonelist_nodemask(zone, z, zonelist, 2433d1908362SMinchan Kim gfp_zone(sc->gfp_mask), sc->nodemask) { 2434d1908362SMinchan Kim if (!populated_zone(zone)) 2435d1908362SMinchan Kim continue; 2436d1908362SMinchan Kim if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL)) 2437d1908362SMinchan Kim continue; 24386e543d57SLisa Du if (zone_reclaimable(zone)) 2439929bea7cSKOSAKI Motohiro return false; 2440d1908362SMinchan Kim } 2441d1908362SMinchan Kim 2442929bea7cSKOSAKI Motohiro return true; 24431da177e4SLinus Torvalds } 24441da177e4SLinus Torvalds 24451da177e4SLinus Torvalds /* 24461da177e4SLinus Torvalds * This is the main entry point to direct page reclaim. 24471da177e4SLinus Torvalds * 24481da177e4SLinus Torvalds * If a full scan of the inactive list fails to free enough memory then we 24491da177e4SLinus Torvalds * are "out of memory" and something needs to be killed. 24501da177e4SLinus Torvalds * 24511da177e4SLinus Torvalds * If the caller is !__GFP_FS then the probability of a failure is reasonably 24521da177e4SLinus Torvalds * high - the zone may be full of dirty or under-writeback pages, which this 24535b0830cbSJens Axboe * caller can't do much about. We kick the writeback threads and take explicit 24545b0830cbSJens Axboe * naps in the hope that some of these pages can be written. But if the 24555b0830cbSJens Axboe * allocating task holds filesystem locks which prevent writeout this might not 24565b0830cbSJens Axboe * work, and the allocation attempt will fail. 2457a41f24eaSNishanth Aravamudan * 2458a41f24eaSNishanth Aravamudan * returns: 0, if no pages reclaimed 2459a41f24eaSNishanth Aravamudan * else, the number of pages reclaimed 24601da177e4SLinus Torvalds */ 2461dac1d27bSMel Gorman static unsigned long do_try_to_free_pages(struct zonelist *zonelist, 24623115cd91SVladimir Davydov struct scan_control *sc) 24631da177e4SLinus Torvalds { 246469e05944SAndrew Morton unsigned long total_scanned = 0; 246522fba335SKOSAKI Motohiro unsigned long writeback_threshold; 24660cee34fdSMel Gorman bool aborted_reclaim; 24671da177e4SLinus Torvalds 2468873b4771SKeika Kobayashi delayacct_freepages_start(); 2469873b4771SKeika Kobayashi 247089b5fae5SJohannes Weiner if (global_reclaim(sc)) 2471f8891e5eSChristoph Lameter count_vm_event(ALLOCSTALL); 24721da177e4SLinus Torvalds 24739e3b2f8cSKonstantin Khlebnikov do { 247470ddf637SAnton Vorontsov vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup, 247570ddf637SAnton Vorontsov sc->priority); 247666e1707bSBalbir Singh sc->nr_scanned = 0; 24773115cd91SVladimir Davydov aborted_reclaim = shrink_zones(zonelist, sc); 2478e0c23279SMel Gorman 247966e1707bSBalbir Singh total_scanned += sc->nr_scanned; 2480bb21c7ceSKOSAKI Motohiro if (sc->nr_reclaimed >= sc->nr_to_reclaim) 24811da177e4SLinus Torvalds goto out; 24821da177e4SLinus Torvalds 24831da177e4SLinus Torvalds /* 24840e50ce3bSMinchan Kim * If we're getting trouble reclaiming, start doing 24850e50ce3bSMinchan Kim * writepage even in laptop mode. 24860e50ce3bSMinchan Kim */ 24870e50ce3bSMinchan Kim if (sc->priority < DEF_PRIORITY - 2) 24880e50ce3bSMinchan Kim sc->may_writepage = 1; 24890e50ce3bSMinchan Kim 24900e50ce3bSMinchan Kim /* 24911da177e4SLinus Torvalds * Try to write back as many pages as we just scanned. This 24921da177e4SLinus Torvalds * tends to cause slow streaming writers to write data to the 24931da177e4SLinus Torvalds * disk smoothly, at the dirtying rate, which is nice. But 24941da177e4SLinus Torvalds * that's undesirable in laptop mode, where we *want* lumpy 24951da177e4SLinus Torvalds * writeout. So in laptop mode, write out the whole world. 24961da177e4SLinus Torvalds */ 249722fba335SKOSAKI Motohiro writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2; 249822fba335SKOSAKI Motohiro if (total_scanned > writeback_threshold) { 24990e175a18SCurt Wohlgemuth wakeup_flusher_threads(laptop_mode ? 0 : total_scanned, 25000e175a18SCurt Wohlgemuth WB_REASON_TRY_TO_FREE_PAGES); 250166e1707bSBalbir Singh sc->may_writepage = 1; 25021da177e4SLinus Torvalds } 25035a1c9cbcSMel Gorman } while (--sc->priority >= 0 && !aborted_reclaim); 2504bb21c7ceSKOSAKI Motohiro 25051da177e4SLinus Torvalds out: 2506873b4771SKeika Kobayashi delayacct_freepages_end(); 2507873b4771SKeika Kobayashi 2508bb21c7ceSKOSAKI Motohiro if (sc->nr_reclaimed) 2509bb21c7ceSKOSAKI Motohiro return sc->nr_reclaimed; 2510bb21c7ceSKOSAKI Motohiro 2511929bea7cSKOSAKI Motohiro /* 2512929bea7cSKOSAKI Motohiro * As hibernation is going on, kswapd is freezed so that it can't mark 2513929bea7cSKOSAKI Motohiro * the zone into all_unreclaimable. Thus bypassing all_unreclaimable 2514929bea7cSKOSAKI Motohiro * check. 2515929bea7cSKOSAKI Motohiro */ 2516929bea7cSKOSAKI Motohiro if (oom_killer_disabled) 2517929bea7cSKOSAKI Motohiro return 0; 2518929bea7cSKOSAKI Motohiro 25190cee34fdSMel Gorman /* Aborted reclaim to try compaction? don't OOM, then */ 25200cee34fdSMel Gorman if (aborted_reclaim) 25217335084dSMel Gorman return 1; 25227335084dSMel Gorman 2523bb21c7ceSKOSAKI Motohiro /* top priority shrink_zones still had more to do? don't OOM, then */ 252489b5fae5SJohannes Weiner if (global_reclaim(sc) && !all_unreclaimable(zonelist, sc)) 2525bb21c7ceSKOSAKI Motohiro return 1; 2526bb21c7ceSKOSAKI Motohiro 2527bb21c7ceSKOSAKI Motohiro return 0; 25281da177e4SLinus Torvalds } 25291da177e4SLinus Torvalds 25305515061dSMel Gorman static bool pfmemalloc_watermark_ok(pg_data_t *pgdat) 25315515061dSMel Gorman { 25325515061dSMel Gorman struct zone *zone; 25335515061dSMel Gorman unsigned long pfmemalloc_reserve = 0; 25345515061dSMel Gorman unsigned long free_pages = 0; 25355515061dSMel Gorman int i; 25365515061dSMel Gorman bool wmark_ok; 25375515061dSMel Gorman 25385515061dSMel Gorman for (i = 0; i <= ZONE_NORMAL; i++) { 25395515061dSMel Gorman zone = &pgdat->node_zones[i]; 25405515061dSMel Gorman pfmemalloc_reserve += min_wmark_pages(zone); 25415515061dSMel Gorman free_pages += zone_page_state(zone, NR_FREE_PAGES); 25425515061dSMel Gorman } 25435515061dSMel Gorman 25445515061dSMel Gorman wmark_ok = free_pages > pfmemalloc_reserve / 2; 25455515061dSMel Gorman 25465515061dSMel Gorman /* kswapd must be awake if processes are being throttled */ 25475515061dSMel Gorman if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) { 25485515061dSMel Gorman pgdat->classzone_idx = min(pgdat->classzone_idx, 25495515061dSMel Gorman (enum zone_type)ZONE_NORMAL); 25505515061dSMel Gorman wake_up_interruptible(&pgdat->kswapd_wait); 25515515061dSMel Gorman } 25525515061dSMel Gorman 25535515061dSMel Gorman return wmark_ok; 25545515061dSMel Gorman } 25555515061dSMel Gorman 25565515061dSMel Gorman /* 25575515061dSMel Gorman * Throttle direct reclaimers if backing storage is backed by the network 25585515061dSMel Gorman * and the PFMEMALLOC reserve for the preferred node is getting dangerously 25595515061dSMel Gorman * depleted. kswapd will continue to make progress and wake the processes 256050694c28SMel Gorman * when the low watermark is reached. 256150694c28SMel Gorman * 256250694c28SMel Gorman * Returns true if a fatal signal was delivered during throttling. If this 256350694c28SMel Gorman * happens, the page allocator should not consider triggering the OOM killer. 25645515061dSMel Gorman */ 256550694c28SMel Gorman static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist, 25665515061dSMel Gorman nodemask_t *nodemask) 25675515061dSMel Gorman { 25685515061dSMel Gorman struct zone *zone; 25695515061dSMel Gorman int high_zoneidx = gfp_zone(gfp_mask); 25705515061dSMel Gorman pg_data_t *pgdat; 25715515061dSMel Gorman 25725515061dSMel Gorman /* 25735515061dSMel Gorman * Kernel threads should not be throttled as they may be indirectly 25745515061dSMel Gorman * responsible for cleaning pages necessary for reclaim to make forward 25755515061dSMel Gorman * progress. kjournald for example may enter direct reclaim while 25765515061dSMel Gorman * committing a transaction where throttling it could forcing other 25775515061dSMel Gorman * processes to block on log_wait_commit(). 25785515061dSMel Gorman */ 25795515061dSMel Gorman if (current->flags & PF_KTHREAD) 258050694c28SMel Gorman goto out; 258150694c28SMel Gorman 258250694c28SMel Gorman /* 258350694c28SMel Gorman * If a fatal signal is pending, this process should not throttle. 258450694c28SMel Gorman * It should return quickly so it can exit and free its memory 258550694c28SMel Gorman */ 258650694c28SMel Gorman if (fatal_signal_pending(current)) 258750694c28SMel Gorman goto out; 25885515061dSMel Gorman 25895515061dSMel Gorman /* Check if the pfmemalloc reserves are ok */ 25905515061dSMel Gorman first_zones_zonelist(zonelist, high_zoneidx, NULL, &zone); 25915515061dSMel Gorman pgdat = zone->zone_pgdat; 25925515061dSMel Gorman if (pfmemalloc_watermark_ok(pgdat)) 259350694c28SMel Gorman goto out; 25945515061dSMel Gorman 259568243e76SMel Gorman /* Account for the throttling */ 259668243e76SMel Gorman count_vm_event(PGSCAN_DIRECT_THROTTLE); 259768243e76SMel Gorman 25985515061dSMel Gorman /* 25995515061dSMel Gorman * If the caller cannot enter the filesystem, it's possible that it 26005515061dSMel Gorman * is due to the caller holding an FS lock or performing a journal 26015515061dSMel Gorman * transaction in the case of a filesystem like ext[3|4]. In this case, 26025515061dSMel Gorman * it is not safe to block on pfmemalloc_wait as kswapd could be 26035515061dSMel Gorman * blocked waiting on the same lock. Instead, throttle for up to a 26045515061dSMel Gorman * second before continuing. 26055515061dSMel Gorman */ 26065515061dSMel Gorman if (!(gfp_mask & __GFP_FS)) { 26075515061dSMel Gorman wait_event_interruptible_timeout(pgdat->pfmemalloc_wait, 26085515061dSMel Gorman pfmemalloc_watermark_ok(pgdat), HZ); 260950694c28SMel Gorman 261050694c28SMel Gorman goto check_pending; 26115515061dSMel Gorman } 26125515061dSMel Gorman 26135515061dSMel Gorman /* Throttle until kswapd wakes the process */ 26145515061dSMel Gorman wait_event_killable(zone->zone_pgdat->pfmemalloc_wait, 26155515061dSMel Gorman pfmemalloc_watermark_ok(pgdat)); 261650694c28SMel Gorman 261750694c28SMel Gorman check_pending: 261850694c28SMel Gorman if (fatal_signal_pending(current)) 261950694c28SMel Gorman return true; 262050694c28SMel Gorman 262150694c28SMel Gorman out: 262250694c28SMel Gorman return false; 26235515061dSMel Gorman } 26245515061dSMel Gorman 2625dac1d27bSMel Gorman unsigned long try_to_free_pages(struct zonelist *zonelist, int order, 2626327c0e96SKAMEZAWA Hiroyuki gfp_t gfp_mask, nodemask_t *nodemask) 262766e1707bSBalbir Singh { 262833906bc5SMel Gorman unsigned long nr_reclaimed; 262966e1707bSBalbir Singh struct scan_control sc = { 263021caf2fcSMing Lei .gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)), 263166e1707bSBalbir Singh .may_writepage = !laptop_mode, 263222fba335SKOSAKI Motohiro .nr_to_reclaim = SWAP_CLUSTER_MAX, 2633a6dc60f8SJohannes Weiner .may_unmap = 1, 26342e2e4259SKOSAKI Motohiro .may_swap = 1, 263566e1707bSBalbir Singh .order = order, 26369e3b2f8cSKonstantin Khlebnikov .priority = DEF_PRIORITY, 2637f16015fbSJohannes Weiner .target_mem_cgroup = NULL, 2638327c0e96SKAMEZAWA Hiroyuki .nodemask = nodemask, 263966e1707bSBalbir Singh }; 264066e1707bSBalbir Singh 26415515061dSMel Gorman /* 264250694c28SMel Gorman * Do not enter reclaim if fatal signal was delivered while throttled. 264350694c28SMel Gorman * 1 is returned so that the page allocator does not OOM kill at this 264450694c28SMel Gorman * point. 26455515061dSMel Gorman */ 264650694c28SMel Gorman if (throttle_direct_reclaim(gfp_mask, zonelist, nodemask)) 26475515061dSMel Gorman return 1; 26485515061dSMel Gorman 264933906bc5SMel Gorman trace_mm_vmscan_direct_reclaim_begin(order, 265033906bc5SMel Gorman sc.may_writepage, 265133906bc5SMel Gorman gfp_mask); 265233906bc5SMel Gorman 26533115cd91SVladimir Davydov nr_reclaimed = do_try_to_free_pages(zonelist, &sc); 265433906bc5SMel Gorman 265533906bc5SMel Gorman trace_mm_vmscan_direct_reclaim_end(nr_reclaimed); 265633906bc5SMel Gorman 265733906bc5SMel Gorman return nr_reclaimed; 265866e1707bSBalbir Singh } 265966e1707bSBalbir Singh 2660c255a458SAndrew Morton #ifdef CONFIG_MEMCG 266166e1707bSBalbir Singh 266272835c86SJohannes Weiner unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *memcg, 26634e416953SBalbir Singh gfp_t gfp_mask, bool noswap, 26640ae5e89cSYing Han struct zone *zone, 26650ae5e89cSYing Han unsigned long *nr_scanned) 26664e416953SBalbir Singh { 26674e416953SBalbir Singh struct scan_control sc = { 26680ae5e89cSYing Han .nr_scanned = 0, 2669b8f5c566SKOSAKI Motohiro .nr_to_reclaim = SWAP_CLUSTER_MAX, 26704e416953SBalbir Singh .may_writepage = !laptop_mode, 26714e416953SBalbir Singh .may_unmap = 1, 26724e416953SBalbir Singh .may_swap = !noswap, 26734e416953SBalbir Singh .order = 0, 26749e3b2f8cSKonstantin Khlebnikov .priority = 0, 267572835c86SJohannes Weiner .target_mem_cgroup = memcg, 26764e416953SBalbir Singh }; 2677f9be23d6SKonstantin Khlebnikov struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg); 26780ae5e89cSYing Han 26794e416953SBalbir Singh sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) | 26804e416953SBalbir Singh (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK); 2681bdce6d9eSKOSAKI Motohiro 26829e3b2f8cSKonstantin Khlebnikov trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order, 2683bdce6d9eSKOSAKI Motohiro sc.may_writepage, 2684bdce6d9eSKOSAKI Motohiro sc.gfp_mask); 2685bdce6d9eSKOSAKI Motohiro 26864e416953SBalbir Singh /* 26874e416953SBalbir Singh * NOTE: Although we can get the priority field, using it 26884e416953SBalbir Singh * here is not a good idea, since it limits the pages we can scan. 26894e416953SBalbir Singh * if we don't reclaim here, the shrink_zone from balance_pgdat 26904e416953SBalbir Singh * will pick up pages from other mem cgroup's as well. We hack 26914e416953SBalbir Singh * the priority and make it zero. 26924e416953SBalbir Singh */ 2693f9be23d6SKonstantin Khlebnikov shrink_lruvec(lruvec, &sc); 2694bdce6d9eSKOSAKI Motohiro 2695bdce6d9eSKOSAKI Motohiro trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed); 2696bdce6d9eSKOSAKI Motohiro 26970ae5e89cSYing Han *nr_scanned = sc.nr_scanned; 26984e416953SBalbir Singh return sc.nr_reclaimed; 26994e416953SBalbir Singh } 27004e416953SBalbir Singh 270172835c86SJohannes Weiner unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg, 27028c7c6e34SKAMEZAWA Hiroyuki gfp_t gfp_mask, 2703185efc0fSJohannes Weiner bool noswap) 270466e1707bSBalbir Singh { 27054e416953SBalbir Singh struct zonelist *zonelist; 2706bdce6d9eSKOSAKI Motohiro unsigned long nr_reclaimed; 2707889976dbSYing Han int nid; 270866e1707bSBalbir Singh struct scan_control sc = { 270966e1707bSBalbir Singh .may_writepage = !laptop_mode, 2710a6dc60f8SJohannes Weiner .may_unmap = 1, 27112e2e4259SKOSAKI Motohiro .may_swap = !noswap, 271222fba335SKOSAKI Motohiro .nr_to_reclaim = SWAP_CLUSTER_MAX, 271366e1707bSBalbir Singh .order = 0, 27149e3b2f8cSKonstantin Khlebnikov .priority = DEF_PRIORITY, 271572835c86SJohannes Weiner .target_mem_cgroup = memcg, 2716327c0e96SKAMEZAWA Hiroyuki .nodemask = NULL, /* we don't care the placement */ 2717a09ed5e0SYing Han .gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) | 2718a09ed5e0SYing Han (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK), 2719a09ed5e0SYing Han }; 272066e1707bSBalbir Singh 2721889976dbSYing Han /* 2722889976dbSYing Han * Unlike direct reclaim via alloc_pages(), memcg's reclaim doesn't 2723889976dbSYing Han * take care of from where we get pages. So the node where we start the 2724889976dbSYing Han * scan does not need to be the current node. 2725889976dbSYing Han */ 272672835c86SJohannes Weiner nid = mem_cgroup_select_victim_node(memcg); 2727889976dbSYing Han 2728889976dbSYing Han zonelist = NODE_DATA(nid)->node_zonelists; 2729bdce6d9eSKOSAKI Motohiro 2730bdce6d9eSKOSAKI Motohiro trace_mm_vmscan_memcg_reclaim_begin(0, 2731bdce6d9eSKOSAKI Motohiro sc.may_writepage, 2732bdce6d9eSKOSAKI Motohiro sc.gfp_mask); 2733bdce6d9eSKOSAKI Motohiro 27343115cd91SVladimir Davydov nr_reclaimed = do_try_to_free_pages(zonelist, &sc); 2735bdce6d9eSKOSAKI Motohiro 2736bdce6d9eSKOSAKI Motohiro trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed); 2737bdce6d9eSKOSAKI Motohiro 2738bdce6d9eSKOSAKI Motohiro return nr_reclaimed; 273966e1707bSBalbir Singh } 274066e1707bSBalbir Singh #endif 274166e1707bSBalbir Singh 27429e3b2f8cSKonstantin Khlebnikov static void age_active_anon(struct zone *zone, struct scan_control *sc) 2743f16015fbSJohannes Weiner { 2744b95a2f2dSJohannes Weiner struct mem_cgroup *memcg; 2745b95a2f2dSJohannes Weiner 2746b95a2f2dSJohannes Weiner if (!total_swap_pages) 2747b95a2f2dSJohannes Weiner return; 2748b95a2f2dSJohannes Weiner 2749b95a2f2dSJohannes Weiner memcg = mem_cgroup_iter(NULL, NULL, NULL); 2750b95a2f2dSJohannes Weiner do { 2751c56d5c7dSKonstantin Khlebnikov struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg); 2752f16015fbSJohannes Weiner 2753c56d5c7dSKonstantin Khlebnikov if (inactive_anon_is_low(lruvec)) 27541a93be0eSKonstantin Khlebnikov shrink_active_list(SWAP_CLUSTER_MAX, lruvec, 27559e3b2f8cSKonstantin Khlebnikov sc, LRU_ACTIVE_ANON); 2756b95a2f2dSJohannes Weiner 2757b95a2f2dSJohannes Weiner memcg = mem_cgroup_iter(NULL, memcg, NULL); 2758b95a2f2dSJohannes Weiner } while (memcg); 2759f16015fbSJohannes Weiner } 2760f16015fbSJohannes Weiner 276160cefed4SJohannes Weiner static bool zone_balanced(struct zone *zone, int order, 276260cefed4SJohannes Weiner unsigned long balance_gap, int classzone_idx) 276360cefed4SJohannes Weiner { 276460cefed4SJohannes Weiner if (!zone_watermark_ok_safe(zone, order, high_wmark_pages(zone) + 276560cefed4SJohannes Weiner balance_gap, classzone_idx, 0)) 276660cefed4SJohannes Weiner return false; 276760cefed4SJohannes Weiner 2768d84da3f9SKirill A. Shutemov if (IS_ENABLED(CONFIG_COMPACTION) && order && 2769d84da3f9SKirill A. Shutemov !compaction_suitable(zone, order)) 277060cefed4SJohannes Weiner return false; 277160cefed4SJohannes Weiner 277260cefed4SJohannes Weiner return true; 277360cefed4SJohannes Weiner } 277460cefed4SJohannes Weiner 27751741c877SMel Gorman /* 27764ae0a48bSZlatko Calusic * pgdat_balanced() is used when checking if a node is balanced. 27774ae0a48bSZlatko Calusic * 27784ae0a48bSZlatko Calusic * For order-0, all zones must be balanced! 27794ae0a48bSZlatko Calusic * 27804ae0a48bSZlatko Calusic * For high-order allocations only zones that meet watermarks and are in a 27814ae0a48bSZlatko Calusic * zone allowed by the callers classzone_idx are added to balanced_pages. The 27824ae0a48bSZlatko Calusic * total of balanced pages must be at least 25% of the zones allowed by 27834ae0a48bSZlatko Calusic * classzone_idx for the node to be considered balanced. Forcing all zones to 27844ae0a48bSZlatko Calusic * be balanced for high orders can cause excessive reclaim when there are 27854ae0a48bSZlatko Calusic * imbalanced zones. 27861741c877SMel Gorman * The choice of 25% is due to 27871741c877SMel Gorman * o a 16M DMA zone that is balanced will not balance a zone on any 27881741c877SMel Gorman * reasonable sized machine 27891741c877SMel Gorman * o On all other machines, the top zone must be at least a reasonable 279025985edcSLucas De Marchi * percentage of the middle zones. For example, on 32-bit x86, highmem 27911741c877SMel Gorman * would need to be at least 256M for it to be balance a whole node. 27921741c877SMel Gorman * Similarly, on x86-64 the Normal zone would need to be at least 1G 27931741c877SMel Gorman * to balance a node on its own. These seemed like reasonable ratios. 27941741c877SMel Gorman */ 27954ae0a48bSZlatko Calusic static bool pgdat_balanced(pg_data_t *pgdat, int order, int classzone_idx) 27961741c877SMel Gorman { 2797b40da049SJiang Liu unsigned long managed_pages = 0; 27984ae0a48bSZlatko Calusic unsigned long balanced_pages = 0; 27991741c877SMel Gorman int i; 28001741c877SMel Gorman 28014ae0a48bSZlatko Calusic /* Check the watermark levels */ 28024ae0a48bSZlatko Calusic for (i = 0; i <= classzone_idx; i++) { 28034ae0a48bSZlatko Calusic struct zone *zone = pgdat->node_zones + i; 28041741c877SMel Gorman 28054ae0a48bSZlatko Calusic if (!populated_zone(zone)) 28064ae0a48bSZlatko Calusic continue; 28074ae0a48bSZlatko Calusic 2808b40da049SJiang Liu managed_pages += zone->managed_pages; 28094ae0a48bSZlatko Calusic 28104ae0a48bSZlatko Calusic /* 28114ae0a48bSZlatko Calusic * A special case here: 28124ae0a48bSZlatko Calusic * 28134ae0a48bSZlatko Calusic * balance_pgdat() skips over all_unreclaimable after 28144ae0a48bSZlatko Calusic * DEF_PRIORITY. Effectively, it considers them balanced so 28154ae0a48bSZlatko Calusic * they must be considered balanced here as well! 28164ae0a48bSZlatko Calusic */ 28176e543d57SLisa Du if (!zone_reclaimable(zone)) { 2818b40da049SJiang Liu balanced_pages += zone->managed_pages; 28194ae0a48bSZlatko Calusic continue; 28204ae0a48bSZlatko Calusic } 28214ae0a48bSZlatko Calusic 28224ae0a48bSZlatko Calusic if (zone_balanced(zone, order, 0, i)) 2823b40da049SJiang Liu balanced_pages += zone->managed_pages; 28244ae0a48bSZlatko Calusic else if (!order) 28254ae0a48bSZlatko Calusic return false; 28264ae0a48bSZlatko Calusic } 28274ae0a48bSZlatko Calusic 28284ae0a48bSZlatko Calusic if (order) 2829b40da049SJiang Liu return balanced_pages >= (managed_pages >> 2); 28304ae0a48bSZlatko Calusic else 28314ae0a48bSZlatko Calusic return true; 28321741c877SMel Gorman } 28331741c877SMel Gorman 28345515061dSMel Gorman /* 28355515061dSMel Gorman * Prepare kswapd for sleeping. This verifies that there are no processes 28365515061dSMel Gorman * waiting in throttle_direct_reclaim() and that watermarks have been met. 28375515061dSMel Gorman * 28385515061dSMel Gorman * Returns true if kswapd is ready to sleep 28395515061dSMel Gorman */ 28405515061dSMel Gorman static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order, long remaining, 2841dc83edd9SMel Gorman int classzone_idx) 2842f50de2d3SMel Gorman { 2843f50de2d3SMel Gorman /* If a direct reclaimer woke kswapd within HZ/10, it's premature */ 2844f50de2d3SMel Gorman if (remaining) 28455515061dSMel Gorman return false; 28465515061dSMel Gorman 28475515061dSMel Gorman /* 28485515061dSMel Gorman * There is a potential race between when kswapd checks its watermarks 28495515061dSMel Gorman * and a process gets throttled. There is also a potential race if 28505515061dSMel Gorman * processes get throttled, kswapd wakes, a large process exits therby 28515515061dSMel Gorman * balancing the zones that causes kswapd to miss a wakeup. If kswapd 28525515061dSMel Gorman * is going to sleep, no process should be sleeping on pfmemalloc_wait 28535515061dSMel Gorman * so wake them now if necessary. If necessary, processes will wake 28545515061dSMel Gorman * kswapd and get throttled again 28555515061dSMel Gorman */ 28565515061dSMel Gorman if (waitqueue_active(&pgdat->pfmemalloc_wait)) { 28575515061dSMel Gorman wake_up(&pgdat->pfmemalloc_wait); 28585515061dSMel Gorman return false; 28595515061dSMel Gorman } 2860f50de2d3SMel Gorman 28614ae0a48bSZlatko Calusic return pgdat_balanced(pgdat, order, classzone_idx); 2862f50de2d3SMel Gorman } 2863f50de2d3SMel Gorman 28641da177e4SLinus Torvalds /* 286575485363SMel Gorman * kswapd shrinks the zone by the number of pages required to reach 286675485363SMel Gorman * the high watermark. 2867b8e83b94SMel Gorman * 2868b8e83b94SMel Gorman * Returns true if kswapd scanned at least the requested number of pages to 2869283aba9fSMel Gorman * reclaim or if the lack of progress was due to pages under writeback. 2870283aba9fSMel Gorman * This is used to determine if the scanning priority needs to be raised. 287175485363SMel Gorman */ 2872b8e83b94SMel Gorman static bool kswapd_shrink_zone(struct zone *zone, 28737c954f6dSMel Gorman int classzone_idx, 287475485363SMel Gorman struct scan_control *sc, 28752ab44f43SMel Gorman unsigned long lru_pages, 28762ab44f43SMel Gorman unsigned long *nr_attempted) 287775485363SMel Gorman { 28787c954f6dSMel Gorman int testorder = sc->order; 28797c954f6dSMel Gorman unsigned long balance_gap; 288075485363SMel Gorman struct reclaim_state *reclaim_state = current->reclaim_state; 288175485363SMel Gorman struct shrink_control shrink = { 288275485363SMel Gorman .gfp_mask = sc->gfp_mask, 288375485363SMel Gorman }; 28847c954f6dSMel Gorman bool lowmem_pressure; 288575485363SMel Gorman 288675485363SMel Gorman /* Reclaim above the high watermark. */ 288775485363SMel Gorman sc->nr_to_reclaim = max(SWAP_CLUSTER_MAX, high_wmark_pages(zone)); 28887c954f6dSMel Gorman 28897c954f6dSMel Gorman /* 28907c954f6dSMel Gorman * Kswapd reclaims only single pages with compaction enabled. Trying 28917c954f6dSMel Gorman * too hard to reclaim until contiguous free pages have become 28927c954f6dSMel Gorman * available can hurt performance by evicting too much useful data 28937c954f6dSMel Gorman * from memory. Do not reclaim more than needed for compaction. 28947c954f6dSMel Gorman */ 28957c954f6dSMel Gorman if (IS_ENABLED(CONFIG_COMPACTION) && sc->order && 28967c954f6dSMel Gorman compaction_suitable(zone, sc->order) != 28977c954f6dSMel Gorman COMPACT_SKIPPED) 28987c954f6dSMel Gorman testorder = 0; 28997c954f6dSMel Gorman 29007c954f6dSMel Gorman /* 29017c954f6dSMel Gorman * We put equal pressure on every zone, unless one zone has way too 29027c954f6dSMel Gorman * many pages free already. The "too many pages" is defined as the 29037c954f6dSMel Gorman * high wmark plus a "gap" where the gap is either the low 29047c954f6dSMel Gorman * watermark or 1% of the zone, whichever is smaller. 29057c954f6dSMel Gorman */ 29067c954f6dSMel Gorman balance_gap = min(low_wmark_pages(zone), 29077c954f6dSMel Gorman (zone->managed_pages + KSWAPD_ZONE_BALANCE_GAP_RATIO-1) / 29087c954f6dSMel Gorman KSWAPD_ZONE_BALANCE_GAP_RATIO); 29097c954f6dSMel Gorman 29107c954f6dSMel Gorman /* 29117c954f6dSMel Gorman * If there is no low memory pressure or the zone is balanced then no 29127c954f6dSMel Gorman * reclaim is necessary 29137c954f6dSMel Gorman */ 29147c954f6dSMel Gorman lowmem_pressure = (buffer_heads_over_limit && is_highmem(zone)); 29157c954f6dSMel Gorman if (!lowmem_pressure && zone_balanced(zone, testorder, 29167c954f6dSMel Gorman balance_gap, classzone_idx)) 29177c954f6dSMel Gorman return true; 29187c954f6dSMel Gorman 291975485363SMel Gorman shrink_zone(zone, sc); 29200ce3d744SDave Chinner nodes_clear(shrink.nodes_to_scan); 29210ce3d744SDave Chinner node_set(zone_to_nid(zone), shrink.nodes_to_scan); 292275485363SMel Gorman 292375485363SMel Gorman reclaim_state->reclaimed_slab = 0; 29246e543d57SLisa Du shrink_slab(&shrink, sc->nr_scanned, lru_pages); 292575485363SMel Gorman sc->nr_reclaimed += reclaim_state->reclaimed_slab; 292675485363SMel Gorman 29272ab44f43SMel Gorman /* Account for the number of pages attempted to reclaim */ 29282ab44f43SMel Gorman *nr_attempted += sc->nr_to_reclaim; 29292ab44f43SMel Gorman 2930283aba9fSMel Gorman zone_clear_flag(zone, ZONE_WRITEBACK); 2931283aba9fSMel Gorman 29327c954f6dSMel Gorman /* 29337c954f6dSMel Gorman * If a zone reaches its high watermark, consider it to be no longer 29347c954f6dSMel Gorman * congested. It's possible there are dirty pages backed by congested 29357c954f6dSMel Gorman * BDIs but as pressure is relieved, speculatively avoid congestion 29367c954f6dSMel Gorman * waits. 29377c954f6dSMel Gorman */ 29386e543d57SLisa Du if (zone_reclaimable(zone) && 29397c954f6dSMel Gorman zone_balanced(zone, testorder, 0, classzone_idx)) { 29407c954f6dSMel Gorman zone_clear_flag(zone, ZONE_CONGESTED); 29417c954f6dSMel Gorman zone_clear_flag(zone, ZONE_TAIL_LRU_DIRTY); 29427c954f6dSMel Gorman } 29437c954f6dSMel Gorman 2944b8e83b94SMel Gorman return sc->nr_scanned >= sc->nr_to_reclaim; 294575485363SMel Gorman } 294675485363SMel Gorman 294775485363SMel Gorman /* 29481da177e4SLinus Torvalds * For kswapd, balance_pgdat() will work across all this node's zones until 294941858966SMel Gorman * they are all at high_wmark_pages(zone). 29501da177e4SLinus Torvalds * 29510abdee2bSMel Gorman * Returns the final order kswapd was reclaiming at 29521da177e4SLinus Torvalds * 29531da177e4SLinus Torvalds * There is special handling here for zones which are full of pinned pages. 29541da177e4SLinus Torvalds * This can happen if the pages are all mlocked, or if they are all used by 29551da177e4SLinus Torvalds * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb. 29561da177e4SLinus Torvalds * What we do is to detect the case where all pages in the zone have been 29571da177e4SLinus Torvalds * scanned twice and there has been zero successful reclaim. Mark the zone as 29581da177e4SLinus Torvalds * dead and from now on, only perform a short scan. Basically we're polling 29591da177e4SLinus Torvalds * the zone for when the problem goes away. 29601da177e4SLinus Torvalds * 29611da177e4SLinus Torvalds * kswapd scans the zones in the highmem->normal->dma direction. It skips 296241858966SMel Gorman * zones which have free_pages > high_wmark_pages(zone), but once a zone is 296341858966SMel Gorman * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the 296441858966SMel Gorman * lower zones regardless of the number of free pages in the lower zones. This 296541858966SMel Gorman * interoperates with the page allocator fallback scheme to ensure that aging 296641858966SMel Gorman * of pages is balanced across the zones. 29671da177e4SLinus Torvalds */ 296899504748SMel Gorman static unsigned long balance_pgdat(pg_data_t *pgdat, int order, 2969dc83edd9SMel Gorman int *classzone_idx) 29701da177e4SLinus Torvalds { 29711da177e4SLinus Torvalds int i; 297299504748SMel Gorman int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */ 29730608f43dSAndrew Morton unsigned long nr_soft_reclaimed; 29740608f43dSAndrew Morton unsigned long nr_soft_scanned; 2975179e9639SAndrew Morton struct scan_control sc = { 2976179e9639SAndrew Morton .gfp_mask = GFP_KERNEL, 2977b8e83b94SMel Gorman .priority = DEF_PRIORITY, 2978a6dc60f8SJohannes Weiner .may_unmap = 1, 29792e2e4259SKOSAKI Motohiro .may_swap = 1, 2980b8e83b94SMel Gorman .may_writepage = !laptop_mode, 29815ad333ebSAndy Whitcroft .order = order, 2982f16015fbSJohannes Weiner .target_mem_cgroup = NULL, 2983179e9639SAndrew Morton }; 2984f8891e5eSChristoph Lameter count_vm_event(PAGEOUTRUN); 29851da177e4SLinus Torvalds 29869e3b2f8cSKonstantin Khlebnikov do { 29871da177e4SLinus Torvalds unsigned long lru_pages = 0; 29882ab44f43SMel Gorman unsigned long nr_attempted = 0; 2989b8e83b94SMel Gorman bool raise_priority = true; 29902ab44f43SMel Gorman bool pgdat_needs_compaction = (order > 0); 2991b8e83b94SMel Gorman 2992b8e83b94SMel Gorman sc.nr_reclaimed = 0; 29931da177e4SLinus Torvalds 29941da177e4SLinus Torvalds /* 29951da177e4SLinus Torvalds * Scan in the highmem->dma direction for the highest 29961da177e4SLinus Torvalds * zone which needs scanning 29971da177e4SLinus Torvalds */ 29981da177e4SLinus Torvalds for (i = pgdat->nr_zones - 1; i >= 0; i--) { 29991da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 30001da177e4SLinus Torvalds 3001f3fe6512SCon Kolivas if (!populated_zone(zone)) 30021da177e4SLinus Torvalds continue; 30031da177e4SLinus Torvalds 30046e543d57SLisa Du if (sc.priority != DEF_PRIORITY && 30056e543d57SLisa Du !zone_reclaimable(zone)) 30061da177e4SLinus Torvalds continue; 30071da177e4SLinus Torvalds 3008556adecbSRik van Riel /* 3009556adecbSRik van Riel * Do some background aging of the anon list, to give 3010556adecbSRik van Riel * pages a chance to be referenced before reclaiming. 3011556adecbSRik van Riel */ 30129e3b2f8cSKonstantin Khlebnikov age_active_anon(zone, &sc); 3013556adecbSRik van Riel 3014cc715d99SMel Gorman /* 3015cc715d99SMel Gorman * If the number of buffer_heads in the machine 3016cc715d99SMel Gorman * exceeds the maximum allowed level and this node 3017cc715d99SMel Gorman * has a highmem zone, force kswapd to reclaim from 3018cc715d99SMel Gorman * it to relieve lowmem pressure. 3019cc715d99SMel Gorman */ 3020cc715d99SMel Gorman if (buffer_heads_over_limit && is_highmem_idx(i)) { 3021cc715d99SMel Gorman end_zone = i; 3022cc715d99SMel Gorman break; 3023cc715d99SMel Gorman } 3024cc715d99SMel Gorman 302560cefed4SJohannes Weiner if (!zone_balanced(zone, order, 0, 0)) { 30261da177e4SLinus Torvalds end_zone = i; 3027e1dbeda6SAndrew Morton break; 3028439423f6SShaohua Li } else { 3029d43006d5SMel Gorman /* 3030d43006d5SMel Gorman * If balanced, clear the dirty and congested 3031d43006d5SMel Gorman * flags 3032d43006d5SMel Gorman */ 3033439423f6SShaohua Li zone_clear_flag(zone, ZONE_CONGESTED); 3034d43006d5SMel Gorman zone_clear_flag(zone, ZONE_TAIL_LRU_DIRTY); 30351da177e4SLinus Torvalds } 30361da177e4SLinus Torvalds } 3037dafcb73eSZlatko Calusic 3038b8e83b94SMel Gorman if (i < 0) 30391da177e4SLinus Torvalds goto out; 3040e1dbeda6SAndrew Morton 30411da177e4SLinus Torvalds for (i = 0; i <= end_zone; i++) { 30421da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 30431da177e4SLinus Torvalds 30442ab44f43SMel Gorman if (!populated_zone(zone)) 30452ab44f43SMel Gorman continue; 30462ab44f43SMel Gorman 3047adea02a1SWu Fengguang lru_pages += zone_reclaimable_pages(zone); 30482ab44f43SMel Gorman 30492ab44f43SMel Gorman /* 30502ab44f43SMel Gorman * If any zone is currently balanced then kswapd will 30512ab44f43SMel Gorman * not call compaction as it is expected that the 30522ab44f43SMel Gorman * necessary pages are already available. 30532ab44f43SMel Gorman */ 30542ab44f43SMel Gorman if (pgdat_needs_compaction && 30552ab44f43SMel Gorman zone_watermark_ok(zone, order, 30562ab44f43SMel Gorman low_wmark_pages(zone), 30572ab44f43SMel Gorman *classzone_idx, 0)) 30582ab44f43SMel Gorman pgdat_needs_compaction = false; 30591da177e4SLinus Torvalds } 30601da177e4SLinus Torvalds 30611da177e4SLinus Torvalds /* 3062b7ea3c41SMel Gorman * If we're getting trouble reclaiming, start doing writepage 3063b7ea3c41SMel Gorman * even in laptop mode. 3064b7ea3c41SMel Gorman */ 3065b7ea3c41SMel Gorman if (sc.priority < DEF_PRIORITY - 2) 3066b7ea3c41SMel Gorman sc.may_writepage = 1; 3067b7ea3c41SMel Gorman 3068b7ea3c41SMel Gorman /* 30691da177e4SLinus Torvalds * Now scan the zone in the dma->highmem direction, stopping 30701da177e4SLinus Torvalds * at the last zone which needs scanning. 30711da177e4SLinus Torvalds * 30721da177e4SLinus Torvalds * We do this because the page allocator works in the opposite 30731da177e4SLinus Torvalds * direction. This prevents the page allocator from allocating 30741da177e4SLinus Torvalds * pages behind kswapd's direction of progress, which would 30751da177e4SLinus Torvalds * cause too much scanning of the lower zones. 30761da177e4SLinus Torvalds */ 30771da177e4SLinus Torvalds for (i = 0; i <= end_zone; i++) { 30781da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 30791da177e4SLinus Torvalds 3080f3fe6512SCon Kolivas if (!populated_zone(zone)) 30811da177e4SLinus Torvalds continue; 30821da177e4SLinus Torvalds 30836e543d57SLisa Du if (sc.priority != DEF_PRIORITY && 30846e543d57SLisa Du !zone_reclaimable(zone)) 30851da177e4SLinus Torvalds continue; 30861da177e4SLinus Torvalds 30871da177e4SLinus Torvalds sc.nr_scanned = 0; 30884e416953SBalbir Singh 30890608f43dSAndrew Morton nr_soft_scanned = 0; 30900608f43dSAndrew Morton /* 30910608f43dSAndrew Morton * Call soft limit reclaim before calling shrink_zone. 30920608f43dSAndrew Morton */ 30930608f43dSAndrew Morton nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone, 30940608f43dSAndrew Morton order, sc.gfp_mask, 30950608f43dSAndrew Morton &nr_soft_scanned); 30960608f43dSAndrew Morton sc.nr_reclaimed += nr_soft_reclaimed; 30970608f43dSAndrew Morton 309832a4330dSRik van Riel /* 30997c954f6dSMel Gorman * There should be no need to raise the scanning 31007c954f6dSMel Gorman * priority if enough pages are already being scanned 31017c954f6dSMel Gorman * that that high watermark would be met at 100% 31027c954f6dSMel Gorman * efficiency. 310332a4330dSRik van Riel */ 31047c954f6dSMel Gorman if (kswapd_shrink_zone(zone, end_zone, &sc, 31057c954f6dSMel Gorman lru_pages, &nr_attempted)) 3106b8e83b94SMel Gorman raise_priority = false; 3107b8e83b94SMel Gorman } 3108d7868daeSMel Gorman 31095515061dSMel Gorman /* 31105515061dSMel Gorman * If the low watermark is met there is no need for processes 31115515061dSMel Gorman * to be throttled on pfmemalloc_wait as they should not be 31125515061dSMel Gorman * able to safely make forward progress. Wake them 31135515061dSMel Gorman */ 31145515061dSMel Gorman if (waitqueue_active(&pgdat->pfmemalloc_wait) && 31155515061dSMel Gorman pfmemalloc_watermark_ok(pgdat)) 31165515061dSMel Gorman wake_up(&pgdat->pfmemalloc_wait); 31175515061dSMel Gorman 31181da177e4SLinus Torvalds /* 3119b8e83b94SMel Gorman * Fragmentation may mean that the system cannot be rebalanced 3120b8e83b94SMel Gorman * for high-order allocations in all zones. If twice the 3121b8e83b94SMel Gorman * allocation size has been reclaimed and the zones are still 3122b8e83b94SMel Gorman * not balanced then recheck the watermarks at order-0 to 3123b8e83b94SMel Gorman * prevent kswapd reclaiming excessively. Assume that a 3124b8e83b94SMel Gorman * process requested a high-order can direct reclaim/compact. 31251da177e4SLinus Torvalds */ 3126b8e83b94SMel Gorman if (order && sc.nr_reclaimed >= 2UL << order) 312773ce02e9SKOSAKI Motohiro order = sc.order = 0; 312873ce02e9SKOSAKI Motohiro 3129b8e83b94SMel Gorman /* Check if kswapd should be suspending */ 3130b8e83b94SMel Gorman if (try_to_freeze() || kthread_should_stop()) 3131b8e83b94SMel Gorman break; 3132b8e83b94SMel Gorman 3133b8e83b94SMel Gorman /* 31342ab44f43SMel Gorman * Compact if necessary and kswapd is reclaiming at least the 31352ab44f43SMel Gorman * high watermark number of pages as requsted 31362ab44f43SMel Gorman */ 31372ab44f43SMel Gorman if (pgdat_needs_compaction && sc.nr_reclaimed > nr_attempted) 31382ab44f43SMel Gorman compact_pgdat(pgdat, order); 31392ab44f43SMel Gorman 31402ab44f43SMel Gorman /* 3141b8e83b94SMel Gorman * Raise priority if scanning rate is too low or there was no 3142b8e83b94SMel Gorman * progress in reclaiming pages 3143b8e83b94SMel Gorman */ 3144b8e83b94SMel Gorman if (raise_priority || !sc.nr_reclaimed) 3145b8e83b94SMel Gorman sc.priority--; 31469aa41348SMel Gorman } while (sc.priority >= 1 && 3147b8e83b94SMel Gorman !pgdat_balanced(pgdat, order, *classzone_idx)); 31481da177e4SLinus Torvalds 3149b8e83b94SMel Gorman out: 31500abdee2bSMel Gorman /* 31515515061dSMel Gorman * Return the order we were reclaiming at so prepare_kswapd_sleep() 31520abdee2bSMel Gorman * makes a decision on the order we were last reclaiming at. However, 31530abdee2bSMel Gorman * if another caller entered the allocator slow path while kswapd 31540abdee2bSMel Gorman * was awake, order will remain at the higher level 31550abdee2bSMel Gorman */ 3156dc83edd9SMel Gorman *classzone_idx = end_zone; 31570abdee2bSMel Gorman return order; 31581da177e4SLinus Torvalds } 31591da177e4SLinus Torvalds 3160dc83edd9SMel Gorman static void kswapd_try_to_sleep(pg_data_t *pgdat, int order, int classzone_idx) 3161f0bc0a60SKOSAKI Motohiro { 3162f0bc0a60SKOSAKI Motohiro long remaining = 0; 3163f0bc0a60SKOSAKI Motohiro DEFINE_WAIT(wait); 3164f0bc0a60SKOSAKI Motohiro 3165f0bc0a60SKOSAKI Motohiro if (freezing(current) || kthread_should_stop()) 3166f0bc0a60SKOSAKI Motohiro return; 3167f0bc0a60SKOSAKI Motohiro 3168f0bc0a60SKOSAKI Motohiro prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE); 3169f0bc0a60SKOSAKI Motohiro 3170f0bc0a60SKOSAKI Motohiro /* Try to sleep for a short interval */ 31715515061dSMel Gorman if (prepare_kswapd_sleep(pgdat, order, remaining, classzone_idx)) { 3172f0bc0a60SKOSAKI Motohiro remaining = schedule_timeout(HZ/10); 3173f0bc0a60SKOSAKI Motohiro finish_wait(&pgdat->kswapd_wait, &wait); 3174f0bc0a60SKOSAKI Motohiro prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE); 3175f0bc0a60SKOSAKI Motohiro } 3176f0bc0a60SKOSAKI Motohiro 3177f0bc0a60SKOSAKI Motohiro /* 3178f0bc0a60SKOSAKI Motohiro * After a short sleep, check if it was a premature sleep. If not, then 3179f0bc0a60SKOSAKI Motohiro * go fully to sleep until explicitly woken up. 3180f0bc0a60SKOSAKI Motohiro */ 31815515061dSMel Gorman if (prepare_kswapd_sleep(pgdat, order, remaining, classzone_idx)) { 3182f0bc0a60SKOSAKI Motohiro trace_mm_vmscan_kswapd_sleep(pgdat->node_id); 3183f0bc0a60SKOSAKI Motohiro 3184f0bc0a60SKOSAKI Motohiro /* 3185f0bc0a60SKOSAKI Motohiro * vmstat counters are not perfectly accurate and the estimated 3186f0bc0a60SKOSAKI Motohiro * value for counters such as NR_FREE_PAGES can deviate from the 3187f0bc0a60SKOSAKI Motohiro * true value by nr_online_cpus * threshold. To avoid the zone 3188f0bc0a60SKOSAKI Motohiro * watermarks being breached while under pressure, we reduce the 3189f0bc0a60SKOSAKI Motohiro * per-cpu vmstat threshold while kswapd is awake and restore 3190f0bc0a60SKOSAKI Motohiro * them before going back to sleep. 3191f0bc0a60SKOSAKI Motohiro */ 3192f0bc0a60SKOSAKI Motohiro set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold); 31931c7e7f6cSAaditya Kumar 319462997027SMel Gorman /* 319562997027SMel Gorman * Compaction records what page blocks it recently failed to 319662997027SMel Gorman * isolate pages from and skips them in the future scanning. 319762997027SMel Gorman * When kswapd is going to sleep, it is reasonable to assume 319862997027SMel Gorman * that pages and compaction may succeed so reset the cache. 319962997027SMel Gorman */ 320062997027SMel Gorman reset_isolation_suitable(pgdat); 320162997027SMel Gorman 32021c7e7f6cSAaditya Kumar if (!kthread_should_stop()) 3203f0bc0a60SKOSAKI Motohiro schedule(); 32041c7e7f6cSAaditya Kumar 3205f0bc0a60SKOSAKI Motohiro set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold); 3206f0bc0a60SKOSAKI Motohiro } else { 3207f0bc0a60SKOSAKI Motohiro if (remaining) 3208f0bc0a60SKOSAKI Motohiro count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY); 3209f0bc0a60SKOSAKI Motohiro else 3210f0bc0a60SKOSAKI Motohiro count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY); 3211f0bc0a60SKOSAKI Motohiro } 3212f0bc0a60SKOSAKI Motohiro finish_wait(&pgdat->kswapd_wait, &wait); 3213f0bc0a60SKOSAKI Motohiro } 3214f0bc0a60SKOSAKI Motohiro 32151da177e4SLinus Torvalds /* 32161da177e4SLinus Torvalds * The background pageout daemon, started as a kernel thread 32171da177e4SLinus Torvalds * from the init process. 32181da177e4SLinus Torvalds * 32191da177e4SLinus Torvalds * This basically trickles out pages so that we have _some_ 32201da177e4SLinus Torvalds * free memory available even if there is no other activity 32211da177e4SLinus Torvalds * that frees anything up. This is needed for things like routing 32221da177e4SLinus Torvalds * etc, where we otherwise might have all activity going on in 32231da177e4SLinus Torvalds * asynchronous contexts that cannot page things out. 32241da177e4SLinus Torvalds * 32251da177e4SLinus Torvalds * If there are applications that are active memory-allocators 32261da177e4SLinus Torvalds * (most normal use), this basically shouldn't matter. 32271da177e4SLinus Torvalds */ 32281da177e4SLinus Torvalds static int kswapd(void *p) 32291da177e4SLinus Torvalds { 3230215ddd66SMel Gorman unsigned long order, new_order; 3231d2ebd0f6SAlex,Shi unsigned balanced_order; 3232215ddd66SMel Gorman int classzone_idx, new_classzone_idx; 3233d2ebd0f6SAlex,Shi int balanced_classzone_idx; 32341da177e4SLinus Torvalds pg_data_t *pgdat = (pg_data_t*)p; 32351da177e4SLinus Torvalds struct task_struct *tsk = current; 3236f0bc0a60SKOSAKI Motohiro 32371da177e4SLinus Torvalds struct reclaim_state reclaim_state = { 32381da177e4SLinus Torvalds .reclaimed_slab = 0, 32391da177e4SLinus Torvalds }; 3240a70f7302SRusty Russell const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id); 32411da177e4SLinus Torvalds 3242cf40bd16SNick Piggin lockdep_set_current_reclaim_state(GFP_KERNEL); 3243cf40bd16SNick Piggin 3244174596a0SRusty Russell if (!cpumask_empty(cpumask)) 3245c5f59f08SMike Travis set_cpus_allowed_ptr(tsk, cpumask); 32461da177e4SLinus Torvalds current->reclaim_state = &reclaim_state; 32471da177e4SLinus Torvalds 32481da177e4SLinus Torvalds /* 32491da177e4SLinus Torvalds * Tell the memory management that we're a "memory allocator", 32501da177e4SLinus Torvalds * and that if we need more memory we should get access to it 32511da177e4SLinus Torvalds * regardless (see "__alloc_pages()"). "kswapd" should 32521da177e4SLinus Torvalds * never get caught in the normal page freeing logic. 32531da177e4SLinus Torvalds * 32541da177e4SLinus Torvalds * (Kswapd normally doesn't need memory anyway, but sometimes 32551da177e4SLinus Torvalds * you need a small amount of memory in order to be able to 32561da177e4SLinus Torvalds * page out something else, and this flag essentially protects 32571da177e4SLinus Torvalds * us from recursively trying to free more memory as we're 32581da177e4SLinus Torvalds * trying to free the first piece of memory in the first place). 32591da177e4SLinus Torvalds */ 3260930d9152SChristoph Lameter tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD; 326183144186SRafael J. Wysocki set_freezable(); 32621da177e4SLinus Torvalds 3263215ddd66SMel Gorman order = new_order = 0; 3264d2ebd0f6SAlex,Shi balanced_order = 0; 3265215ddd66SMel Gorman classzone_idx = new_classzone_idx = pgdat->nr_zones - 1; 3266d2ebd0f6SAlex,Shi balanced_classzone_idx = classzone_idx; 32671da177e4SLinus Torvalds for ( ; ; ) { 32686f6313d4SJeff Liu bool ret; 32693e1d1d28SChristoph Lameter 3270215ddd66SMel Gorman /* 3271215ddd66SMel Gorman * If the last balance_pgdat was unsuccessful it's unlikely a 3272215ddd66SMel Gorman * new request of a similar or harder type will succeed soon 3273215ddd66SMel Gorman * so consider going to sleep on the basis we reclaimed at 3274215ddd66SMel Gorman */ 3275d2ebd0f6SAlex,Shi if (balanced_classzone_idx >= new_classzone_idx && 3276d2ebd0f6SAlex,Shi balanced_order == new_order) { 32771da177e4SLinus Torvalds new_order = pgdat->kswapd_max_order; 327899504748SMel Gorman new_classzone_idx = pgdat->classzone_idx; 32791da177e4SLinus Torvalds pgdat->kswapd_max_order = 0; 3280215ddd66SMel Gorman pgdat->classzone_idx = pgdat->nr_zones - 1; 3281215ddd66SMel Gorman } 3282215ddd66SMel Gorman 328399504748SMel Gorman if (order < new_order || classzone_idx > new_classzone_idx) { 32841da177e4SLinus Torvalds /* 32851da177e4SLinus Torvalds * Don't sleep if someone wants a larger 'order' 328699504748SMel Gorman * allocation or has tigher zone constraints 32871da177e4SLinus Torvalds */ 32881da177e4SLinus Torvalds order = new_order; 328999504748SMel Gorman classzone_idx = new_classzone_idx; 32901da177e4SLinus Torvalds } else { 3291d2ebd0f6SAlex,Shi kswapd_try_to_sleep(pgdat, balanced_order, 3292d2ebd0f6SAlex,Shi balanced_classzone_idx); 32931da177e4SLinus Torvalds order = pgdat->kswapd_max_order; 329499504748SMel Gorman classzone_idx = pgdat->classzone_idx; 3295f0dfcde0SAlex,Shi new_order = order; 3296f0dfcde0SAlex,Shi new_classzone_idx = classzone_idx; 32974d40502eSMel Gorman pgdat->kswapd_max_order = 0; 3298215ddd66SMel Gorman pgdat->classzone_idx = pgdat->nr_zones - 1; 32991da177e4SLinus Torvalds } 33001da177e4SLinus Torvalds 33018fe23e05SDavid Rientjes ret = try_to_freeze(); 33028fe23e05SDavid Rientjes if (kthread_should_stop()) 33038fe23e05SDavid Rientjes break; 33048fe23e05SDavid Rientjes 33058fe23e05SDavid Rientjes /* 33068fe23e05SDavid Rientjes * We can speed up thawing tasks if we don't call balance_pgdat 33078fe23e05SDavid Rientjes * after returning from the refrigerator 3308b1296cc4SRafael J. Wysocki */ 330933906bc5SMel Gorman if (!ret) { 331033906bc5SMel Gorman trace_mm_vmscan_kswapd_wake(pgdat->node_id, order); 3311d2ebd0f6SAlex,Shi balanced_classzone_idx = classzone_idx; 3312d2ebd0f6SAlex,Shi balanced_order = balance_pgdat(pgdat, order, 3313d2ebd0f6SAlex,Shi &balanced_classzone_idx); 33141da177e4SLinus Torvalds } 331533906bc5SMel Gorman } 3316b0a8cc58STakamori Yamaguchi 3317b0a8cc58STakamori Yamaguchi current->reclaim_state = NULL; 33181da177e4SLinus Torvalds return 0; 33191da177e4SLinus Torvalds } 33201da177e4SLinus Torvalds 33211da177e4SLinus Torvalds /* 33221da177e4SLinus Torvalds * A zone is low on free memory, so wake its kswapd task to service it. 33231da177e4SLinus Torvalds */ 332499504748SMel Gorman void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx) 33251da177e4SLinus Torvalds { 33261da177e4SLinus Torvalds pg_data_t *pgdat; 33271da177e4SLinus Torvalds 3328f3fe6512SCon Kolivas if (!populated_zone(zone)) 33291da177e4SLinus Torvalds return; 33301da177e4SLinus Torvalds 333102a0e53dSPaul Jackson if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL)) 33321da177e4SLinus Torvalds return; 333388f5acf8SMel Gorman pgdat = zone->zone_pgdat; 333499504748SMel Gorman if (pgdat->kswapd_max_order < order) { 333588f5acf8SMel Gorman pgdat->kswapd_max_order = order; 333699504748SMel Gorman pgdat->classzone_idx = min(pgdat->classzone_idx, classzone_idx); 333799504748SMel Gorman } 33388d0986e2SCon Kolivas if (!waitqueue_active(&pgdat->kswapd_wait)) 33391da177e4SLinus Torvalds return; 3340892f795dSJohannes Weiner if (zone_balanced(zone, order, 0, 0)) 334188f5acf8SMel Gorman return; 334288f5acf8SMel Gorman 334388f5acf8SMel Gorman trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order); 33448d0986e2SCon Kolivas wake_up_interruptible(&pgdat->kswapd_wait); 33451da177e4SLinus Torvalds } 33461da177e4SLinus Torvalds 3347c6f37f12SRafael J. Wysocki #ifdef CONFIG_HIBERNATION 33481da177e4SLinus Torvalds /* 33497b51755cSKOSAKI Motohiro * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of 3350d6277db4SRafael J. Wysocki * freed pages. 3351d6277db4SRafael J. Wysocki * 3352d6277db4SRafael J. Wysocki * Rather than trying to age LRUs the aim is to preserve the overall 3353d6277db4SRafael J. Wysocki * LRU order by reclaiming preferentially 3354d6277db4SRafael J. Wysocki * inactive > active > active referenced > active mapped 33551da177e4SLinus Torvalds */ 33567b51755cSKOSAKI Motohiro unsigned long shrink_all_memory(unsigned long nr_to_reclaim) 33571da177e4SLinus Torvalds { 3358d6277db4SRafael J. Wysocki struct reclaim_state reclaim_state; 3359d6277db4SRafael J. Wysocki struct scan_control sc = { 33607b51755cSKOSAKI Motohiro .gfp_mask = GFP_HIGHUSER_MOVABLE, 33617b51755cSKOSAKI Motohiro .may_swap = 1, 33627b51755cSKOSAKI Motohiro .may_unmap = 1, 3363d6277db4SRafael J. Wysocki .may_writepage = 1, 33647b51755cSKOSAKI Motohiro .nr_to_reclaim = nr_to_reclaim, 33657b51755cSKOSAKI Motohiro .hibernation_mode = 1, 33667b51755cSKOSAKI Motohiro .order = 0, 33679e3b2f8cSKonstantin Khlebnikov .priority = DEF_PRIORITY, 33681da177e4SLinus Torvalds }; 33697b51755cSKOSAKI Motohiro struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask); 33707b51755cSKOSAKI Motohiro struct task_struct *p = current; 33717b51755cSKOSAKI Motohiro unsigned long nr_reclaimed; 33721da177e4SLinus Torvalds 33737b51755cSKOSAKI Motohiro p->flags |= PF_MEMALLOC; 33747b51755cSKOSAKI Motohiro lockdep_set_current_reclaim_state(sc.gfp_mask); 3375d6277db4SRafael J. Wysocki reclaim_state.reclaimed_slab = 0; 33767b51755cSKOSAKI Motohiro p->reclaim_state = &reclaim_state; 3377d6277db4SRafael J. Wysocki 33783115cd91SVladimir Davydov nr_reclaimed = do_try_to_free_pages(zonelist, &sc); 3379d6277db4SRafael J. Wysocki 33807b51755cSKOSAKI Motohiro p->reclaim_state = NULL; 33817b51755cSKOSAKI Motohiro lockdep_clear_current_reclaim_state(); 33827b51755cSKOSAKI Motohiro p->flags &= ~PF_MEMALLOC; 3383d6277db4SRafael J. Wysocki 33847b51755cSKOSAKI Motohiro return nr_reclaimed; 33851da177e4SLinus Torvalds } 3386c6f37f12SRafael J. Wysocki #endif /* CONFIG_HIBERNATION */ 33871da177e4SLinus Torvalds 33881da177e4SLinus Torvalds /* It's optimal to keep kswapds on the same CPUs as their memory, but 33891da177e4SLinus Torvalds not required for correctness. So if the last cpu in a node goes 33901da177e4SLinus Torvalds away, we get changed to run anywhere: as the first one comes back, 33911da177e4SLinus Torvalds restore their cpu bindings. */ 3392fcb35a9bSGreg Kroah-Hartman static int cpu_callback(struct notifier_block *nfb, unsigned long action, 3393fcb35a9bSGreg Kroah-Hartman void *hcpu) 33941da177e4SLinus Torvalds { 339558c0a4a7SYasunori Goto int nid; 33961da177e4SLinus Torvalds 33978bb78442SRafael J. Wysocki if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) { 339848fb2e24SLai Jiangshan for_each_node_state(nid, N_MEMORY) { 3399c5f59f08SMike Travis pg_data_t *pgdat = NODE_DATA(nid); 3400a70f7302SRusty Russell const struct cpumask *mask; 3401a70f7302SRusty Russell 3402a70f7302SRusty Russell mask = cpumask_of_node(pgdat->node_id); 3403c5f59f08SMike Travis 34043e597945SRusty Russell if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids) 34051da177e4SLinus Torvalds /* One of our CPUs online: restore mask */ 3406c5f59f08SMike Travis set_cpus_allowed_ptr(pgdat->kswapd, mask); 34071da177e4SLinus Torvalds } 34081da177e4SLinus Torvalds } 34091da177e4SLinus Torvalds return NOTIFY_OK; 34101da177e4SLinus Torvalds } 34111da177e4SLinus Torvalds 34123218ae14SYasunori Goto /* 34133218ae14SYasunori Goto * This kswapd start function will be called by init and node-hot-add. 34143218ae14SYasunori Goto * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added. 34153218ae14SYasunori Goto */ 34163218ae14SYasunori Goto int kswapd_run(int nid) 34173218ae14SYasunori Goto { 34183218ae14SYasunori Goto pg_data_t *pgdat = NODE_DATA(nid); 34193218ae14SYasunori Goto int ret = 0; 34203218ae14SYasunori Goto 34213218ae14SYasunori Goto if (pgdat->kswapd) 34223218ae14SYasunori Goto return 0; 34233218ae14SYasunori Goto 34243218ae14SYasunori Goto pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid); 34253218ae14SYasunori Goto if (IS_ERR(pgdat->kswapd)) { 34263218ae14SYasunori Goto /* failure at boot is fatal */ 34273218ae14SYasunori Goto BUG_ON(system_state == SYSTEM_BOOTING); 3428d5dc0ad9SGavin Shan pr_err("Failed to start kswapd on node %d\n", nid); 3429d5dc0ad9SGavin Shan ret = PTR_ERR(pgdat->kswapd); 3430d72515b8SXishi Qiu pgdat->kswapd = NULL; 34313218ae14SYasunori Goto } 34323218ae14SYasunori Goto return ret; 34333218ae14SYasunori Goto } 34343218ae14SYasunori Goto 34358fe23e05SDavid Rientjes /* 3436d8adde17SJiang Liu * Called by memory hotplug when all memory in a node is offlined. Caller must 3437*bfc8c901SVladimir Davydov * hold mem_hotplug_begin/end(). 34388fe23e05SDavid Rientjes */ 34398fe23e05SDavid Rientjes void kswapd_stop(int nid) 34408fe23e05SDavid Rientjes { 34418fe23e05SDavid Rientjes struct task_struct *kswapd = NODE_DATA(nid)->kswapd; 34428fe23e05SDavid Rientjes 3443d8adde17SJiang Liu if (kswapd) { 34448fe23e05SDavid Rientjes kthread_stop(kswapd); 3445d8adde17SJiang Liu NODE_DATA(nid)->kswapd = NULL; 3446d8adde17SJiang Liu } 34478fe23e05SDavid Rientjes } 34488fe23e05SDavid Rientjes 34491da177e4SLinus Torvalds static int __init kswapd_init(void) 34501da177e4SLinus Torvalds { 34513218ae14SYasunori Goto int nid; 345269e05944SAndrew Morton 34531da177e4SLinus Torvalds swap_setup(); 345448fb2e24SLai Jiangshan for_each_node_state(nid, N_MEMORY) 34553218ae14SYasunori Goto kswapd_run(nid); 34561da177e4SLinus Torvalds hotcpu_notifier(cpu_callback, 0); 34571da177e4SLinus Torvalds return 0; 34581da177e4SLinus Torvalds } 34591da177e4SLinus Torvalds 34601da177e4SLinus Torvalds module_init(kswapd_init) 34619eeff239SChristoph Lameter 34629eeff239SChristoph Lameter #ifdef CONFIG_NUMA 34639eeff239SChristoph Lameter /* 34649eeff239SChristoph Lameter * Zone reclaim mode 34659eeff239SChristoph Lameter * 34669eeff239SChristoph Lameter * If non-zero call zone_reclaim when the number of free pages falls below 34679eeff239SChristoph Lameter * the watermarks. 34689eeff239SChristoph Lameter */ 34699eeff239SChristoph Lameter int zone_reclaim_mode __read_mostly; 34709eeff239SChristoph Lameter 34711b2ffb78SChristoph Lameter #define RECLAIM_OFF 0 34727d03431cSFernando Luis Vazquez Cao #define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */ 34731b2ffb78SChristoph Lameter #define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */ 34741b2ffb78SChristoph Lameter #define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */ 34751b2ffb78SChristoph Lameter 34769eeff239SChristoph Lameter /* 3477a92f7126SChristoph Lameter * Priority for ZONE_RECLAIM. This determines the fraction of pages 3478a92f7126SChristoph Lameter * of a node considered for each zone_reclaim. 4 scans 1/16th of 3479a92f7126SChristoph Lameter * a zone. 3480a92f7126SChristoph Lameter */ 3481a92f7126SChristoph Lameter #define ZONE_RECLAIM_PRIORITY 4 3482a92f7126SChristoph Lameter 34839eeff239SChristoph Lameter /* 34849614634fSChristoph Lameter * Percentage of pages in a zone that must be unmapped for zone_reclaim to 34859614634fSChristoph Lameter * occur. 34869614634fSChristoph Lameter */ 34879614634fSChristoph Lameter int sysctl_min_unmapped_ratio = 1; 34889614634fSChristoph Lameter 34899614634fSChristoph Lameter /* 34900ff38490SChristoph Lameter * If the number of slab pages in a zone grows beyond this percentage then 34910ff38490SChristoph Lameter * slab reclaim needs to occur. 34920ff38490SChristoph Lameter */ 34930ff38490SChristoph Lameter int sysctl_min_slab_ratio = 5; 34940ff38490SChristoph Lameter 349590afa5deSMel Gorman static inline unsigned long zone_unmapped_file_pages(struct zone *zone) 349690afa5deSMel Gorman { 349790afa5deSMel Gorman unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED); 349890afa5deSMel Gorman unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) + 349990afa5deSMel Gorman zone_page_state(zone, NR_ACTIVE_FILE); 350090afa5deSMel Gorman 350190afa5deSMel Gorman /* 350290afa5deSMel Gorman * It's possible for there to be more file mapped pages than 350390afa5deSMel Gorman * accounted for by the pages on the file LRU lists because 350490afa5deSMel Gorman * tmpfs pages accounted for as ANON can also be FILE_MAPPED 350590afa5deSMel Gorman */ 350690afa5deSMel Gorman return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0; 350790afa5deSMel Gorman } 350890afa5deSMel Gorman 350990afa5deSMel Gorman /* Work out how many page cache pages we can reclaim in this reclaim_mode */ 351090afa5deSMel Gorman static long zone_pagecache_reclaimable(struct zone *zone) 351190afa5deSMel Gorman { 351290afa5deSMel Gorman long nr_pagecache_reclaimable; 351390afa5deSMel Gorman long delta = 0; 351490afa5deSMel Gorman 351590afa5deSMel Gorman /* 351690afa5deSMel Gorman * If RECLAIM_SWAP is set, then all file pages are considered 351790afa5deSMel Gorman * potentially reclaimable. Otherwise, we have to worry about 351890afa5deSMel Gorman * pages like swapcache and zone_unmapped_file_pages() provides 351990afa5deSMel Gorman * a better estimate 352090afa5deSMel Gorman */ 352190afa5deSMel Gorman if (zone_reclaim_mode & RECLAIM_SWAP) 352290afa5deSMel Gorman nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES); 352390afa5deSMel Gorman else 352490afa5deSMel Gorman nr_pagecache_reclaimable = zone_unmapped_file_pages(zone); 352590afa5deSMel Gorman 352690afa5deSMel Gorman /* If we can't clean pages, remove dirty pages from consideration */ 352790afa5deSMel Gorman if (!(zone_reclaim_mode & RECLAIM_WRITE)) 352890afa5deSMel Gorman delta += zone_page_state(zone, NR_FILE_DIRTY); 352990afa5deSMel Gorman 353090afa5deSMel Gorman /* Watch for any possible underflows due to delta */ 353190afa5deSMel Gorman if (unlikely(delta > nr_pagecache_reclaimable)) 353290afa5deSMel Gorman delta = nr_pagecache_reclaimable; 353390afa5deSMel Gorman 353490afa5deSMel Gorman return nr_pagecache_reclaimable - delta; 353590afa5deSMel Gorman } 353690afa5deSMel Gorman 35370ff38490SChristoph Lameter /* 35389eeff239SChristoph Lameter * Try to free up some pages from this zone through reclaim. 35399eeff239SChristoph Lameter */ 3540179e9639SAndrew Morton static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order) 35419eeff239SChristoph Lameter { 35427fb2d46dSChristoph Lameter /* Minimum pages needed in order to stay on node */ 354369e05944SAndrew Morton const unsigned long nr_pages = 1 << order; 35449eeff239SChristoph Lameter struct task_struct *p = current; 35459eeff239SChristoph Lameter struct reclaim_state reclaim_state; 3546179e9639SAndrew Morton struct scan_control sc = { 3547179e9639SAndrew Morton .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE), 3548a6dc60f8SJohannes Weiner .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP), 35492e2e4259SKOSAKI Motohiro .may_swap = 1, 355062b726c1SAndrew Morton .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX), 355121caf2fcSMing Lei .gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)), 3552bd2f6199SJohannes Weiner .order = order, 35539e3b2f8cSKonstantin Khlebnikov .priority = ZONE_RECLAIM_PRIORITY, 3554179e9639SAndrew Morton }; 3555a09ed5e0SYing Han struct shrink_control shrink = { 3556a09ed5e0SYing Han .gfp_mask = sc.gfp_mask, 3557a09ed5e0SYing Han }; 355815748048SKOSAKI Motohiro unsigned long nr_slab_pages0, nr_slab_pages1; 35599eeff239SChristoph Lameter 35609eeff239SChristoph Lameter cond_resched(); 3561d4f7796eSChristoph Lameter /* 3562d4f7796eSChristoph Lameter * We need to be able to allocate from the reserves for RECLAIM_SWAP 3563d4f7796eSChristoph Lameter * and we also need to be able to write out pages for RECLAIM_WRITE 3564d4f7796eSChristoph Lameter * and RECLAIM_SWAP. 3565d4f7796eSChristoph Lameter */ 3566d4f7796eSChristoph Lameter p->flags |= PF_MEMALLOC | PF_SWAPWRITE; 356776ca542dSKOSAKI Motohiro lockdep_set_current_reclaim_state(gfp_mask); 35689eeff239SChristoph Lameter reclaim_state.reclaimed_slab = 0; 35699eeff239SChristoph Lameter p->reclaim_state = &reclaim_state; 3570c84db23cSChristoph Lameter 357190afa5deSMel Gorman if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) { 3572a92f7126SChristoph Lameter /* 35730ff38490SChristoph Lameter * Free memory by calling shrink zone with increasing 35740ff38490SChristoph Lameter * priorities until we have enough memory freed. 3575a92f7126SChristoph Lameter */ 3576a92f7126SChristoph Lameter do { 35779e3b2f8cSKonstantin Khlebnikov shrink_zone(zone, &sc); 35789e3b2f8cSKonstantin Khlebnikov } while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0); 35790ff38490SChristoph Lameter } 3580a92f7126SChristoph Lameter 358115748048SKOSAKI Motohiro nr_slab_pages0 = zone_page_state(zone, NR_SLAB_RECLAIMABLE); 358215748048SKOSAKI Motohiro if (nr_slab_pages0 > zone->min_slab_pages) { 35832a16e3f4SChristoph Lameter /* 35847fb2d46dSChristoph Lameter * shrink_slab() does not currently allow us to determine how 35850ff38490SChristoph Lameter * many pages were freed in this zone. So we take the current 35860ff38490SChristoph Lameter * number of slab pages and shake the slab until it is reduced 35870ff38490SChristoph Lameter * by the same nr_pages that we used for reclaiming unmapped 35880ff38490SChristoph Lameter * pages. 35892a16e3f4SChristoph Lameter */ 35900ce3d744SDave Chinner nodes_clear(shrink.nodes_to_scan); 35910ce3d744SDave Chinner node_set(zone_to_nid(zone), shrink.nodes_to_scan); 35924dc4b3d9SKOSAKI Motohiro for (;;) { 35934dc4b3d9SKOSAKI Motohiro unsigned long lru_pages = zone_reclaimable_pages(zone); 35944dc4b3d9SKOSAKI Motohiro 35954dc4b3d9SKOSAKI Motohiro /* No reclaimable slab or very low memory pressure */ 35961495f230SYing Han if (!shrink_slab(&shrink, sc.nr_scanned, lru_pages)) 35974dc4b3d9SKOSAKI Motohiro break; 35984dc4b3d9SKOSAKI Motohiro 35994dc4b3d9SKOSAKI Motohiro /* Freed enough memory */ 36004dc4b3d9SKOSAKI Motohiro nr_slab_pages1 = zone_page_state(zone, 36014dc4b3d9SKOSAKI Motohiro NR_SLAB_RECLAIMABLE); 36024dc4b3d9SKOSAKI Motohiro if (nr_slab_pages1 + nr_pages <= nr_slab_pages0) 36034dc4b3d9SKOSAKI Motohiro break; 36044dc4b3d9SKOSAKI Motohiro } 360583e33a47SChristoph Lameter 360683e33a47SChristoph Lameter /* 360783e33a47SChristoph Lameter * Update nr_reclaimed by the number of slab pages we 360883e33a47SChristoph Lameter * reclaimed from this zone. 360983e33a47SChristoph Lameter */ 361015748048SKOSAKI Motohiro nr_slab_pages1 = zone_page_state(zone, NR_SLAB_RECLAIMABLE); 361115748048SKOSAKI Motohiro if (nr_slab_pages1 < nr_slab_pages0) 361215748048SKOSAKI Motohiro sc.nr_reclaimed += nr_slab_pages0 - nr_slab_pages1; 36132a16e3f4SChristoph Lameter } 36142a16e3f4SChristoph Lameter 36159eeff239SChristoph Lameter p->reclaim_state = NULL; 3616d4f7796eSChristoph Lameter current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE); 361776ca542dSKOSAKI Motohiro lockdep_clear_current_reclaim_state(); 3618a79311c1SRik van Riel return sc.nr_reclaimed >= nr_pages; 36199eeff239SChristoph Lameter } 3620179e9639SAndrew Morton 3621179e9639SAndrew Morton int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order) 3622179e9639SAndrew Morton { 3623179e9639SAndrew Morton int node_id; 3624d773ed6bSDavid Rientjes int ret; 3625179e9639SAndrew Morton 3626179e9639SAndrew Morton /* 36270ff38490SChristoph Lameter * Zone reclaim reclaims unmapped file backed pages and 36280ff38490SChristoph Lameter * slab pages if we are over the defined limits. 362934aa1330SChristoph Lameter * 36309614634fSChristoph Lameter * A small portion of unmapped file backed pages is needed for 36319614634fSChristoph Lameter * file I/O otherwise pages read by file I/O will be immediately 36329614634fSChristoph Lameter * thrown out if the zone is overallocated. So we do not reclaim 36339614634fSChristoph Lameter * if less than a specified percentage of the zone is used by 36349614634fSChristoph Lameter * unmapped file backed pages. 3635179e9639SAndrew Morton */ 363690afa5deSMel Gorman if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages && 363790afa5deSMel Gorman zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages) 3638fa5e084eSMel Gorman return ZONE_RECLAIM_FULL; 3639179e9639SAndrew Morton 36406e543d57SLisa Du if (!zone_reclaimable(zone)) 3641fa5e084eSMel Gorman return ZONE_RECLAIM_FULL; 3642d773ed6bSDavid Rientjes 3643179e9639SAndrew Morton /* 3644d773ed6bSDavid Rientjes * Do not scan if the allocation should not be delayed. 3645179e9639SAndrew Morton */ 3646d773ed6bSDavid Rientjes if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC)) 3647fa5e084eSMel Gorman return ZONE_RECLAIM_NOSCAN; 3648179e9639SAndrew Morton 3649179e9639SAndrew Morton /* 3650179e9639SAndrew Morton * Only run zone reclaim on the local zone or on zones that do not 3651179e9639SAndrew Morton * have associated processors. This will favor the local processor 3652179e9639SAndrew Morton * over remote processors and spread off node memory allocations 3653179e9639SAndrew Morton * as wide as possible. 3654179e9639SAndrew Morton */ 365589fa3024SChristoph Lameter node_id = zone_to_nid(zone); 365637c0708dSChristoph Lameter if (node_state(node_id, N_CPU) && node_id != numa_node_id()) 3657fa5e084eSMel Gorman return ZONE_RECLAIM_NOSCAN; 3658d773ed6bSDavid Rientjes 3659d773ed6bSDavid Rientjes if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED)) 3660fa5e084eSMel Gorman return ZONE_RECLAIM_NOSCAN; 3661fa5e084eSMel Gorman 3662d773ed6bSDavid Rientjes ret = __zone_reclaim(zone, gfp_mask, order); 3663d773ed6bSDavid Rientjes zone_clear_flag(zone, ZONE_RECLAIM_LOCKED); 3664d773ed6bSDavid Rientjes 366524cf7251SMel Gorman if (!ret) 366624cf7251SMel Gorman count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED); 366724cf7251SMel Gorman 3668d773ed6bSDavid Rientjes return ret; 3669179e9639SAndrew Morton } 36709eeff239SChristoph Lameter #endif 3671894bc310SLee Schermerhorn 3672894bc310SLee Schermerhorn /* 3673894bc310SLee Schermerhorn * page_evictable - test whether a page is evictable 3674894bc310SLee Schermerhorn * @page: the page to test 3675894bc310SLee Schermerhorn * 3676894bc310SLee Schermerhorn * Test whether page is evictable--i.e., should be placed on active/inactive 367739b5f29aSHugh Dickins * lists vs unevictable list. 3678894bc310SLee Schermerhorn * 3679894bc310SLee Schermerhorn * Reasons page might not be evictable: 3680ba9ddf49SLee Schermerhorn * (1) page's mapping marked unevictable 3681b291f000SNick Piggin * (2) page is part of an mlocked VMA 3682ba9ddf49SLee Schermerhorn * 3683894bc310SLee Schermerhorn */ 368439b5f29aSHugh Dickins int page_evictable(struct page *page) 3685894bc310SLee Schermerhorn { 368639b5f29aSHugh Dickins return !mapping_unevictable(page_mapping(page)) && !PageMlocked(page); 3687894bc310SLee Schermerhorn } 368889e004eaSLee Schermerhorn 368985046579SHugh Dickins #ifdef CONFIG_SHMEM 369089e004eaSLee Schermerhorn /** 369124513264SHugh Dickins * check_move_unevictable_pages - check pages for evictability and move to appropriate zone lru list 369224513264SHugh Dickins * @pages: array of pages to check 369324513264SHugh Dickins * @nr_pages: number of pages to check 369489e004eaSLee Schermerhorn * 369524513264SHugh Dickins * Checks pages for evictability and moves them to the appropriate lru list. 369685046579SHugh Dickins * 369785046579SHugh Dickins * This function is only used for SysV IPC SHM_UNLOCK. 369889e004eaSLee Schermerhorn */ 369924513264SHugh Dickins void check_move_unevictable_pages(struct page **pages, int nr_pages) 370089e004eaSLee Schermerhorn { 3701925b7673SJohannes Weiner struct lruvec *lruvec; 370224513264SHugh Dickins struct zone *zone = NULL; 370324513264SHugh Dickins int pgscanned = 0; 370424513264SHugh Dickins int pgrescued = 0; 370589e004eaSLee Schermerhorn int i; 370689e004eaSLee Schermerhorn 370724513264SHugh Dickins for (i = 0; i < nr_pages; i++) { 370824513264SHugh Dickins struct page *page = pages[i]; 370924513264SHugh Dickins struct zone *pagezone; 371089e004eaSLee Schermerhorn 371124513264SHugh Dickins pgscanned++; 371224513264SHugh Dickins pagezone = page_zone(page); 371389e004eaSLee Schermerhorn if (pagezone != zone) { 371489e004eaSLee Schermerhorn if (zone) 371589e004eaSLee Schermerhorn spin_unlock_irq(&zone->lru_lock); 371689e004eaSLee Schermerhorn zone = pagezone; 371789e004eaSLee Schermerhorn spin_lock_irq(&zone->lru_lock); 371889e004eaSLee Schermerhorn } 3719fa9add64SHugh Dickins lruvec = mem_cgroup_page_lruvec(page, zone); 372089e004eaSLee Schermerhorn 372124513264SHugh Dickins if (!PageLRU(page) || !PageUnevictable(page)) 372224513264SHugh Dickins continue; 372389e004eaSLee Schermerhorn 372439b5f29aSHugh Dickins if (page_evictable(page)) { 372524513264SHugh Dickins enum lru_list lru = page_lru_base_type(page); 372624513264SHugh Dickins 3727309381feSSasha Levin VM_BUG_ON_PAGE(PageActive(page), page); 372824513264SHugh Dickins ClearPageUnevictable(page); 3729fa9add64SHugh Dickins del_page_from_lru_list(page, lruvec, LRU_UNEVICTABLE); 3730fa9add64SHugh Dickins add_page_to_lru_list(page, lruvec, lru); 373124513264SHugh Dickins pgrescued++; 373289e004eaSLee Schermerhorn } 373389e004eaSLee Schermerhorn } 373424513264SHugh Dickins 373524513264SHugh Dickins if (zone) { 373624513264SHugh Dickins __count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued); 373724513264SHugh Dickins __count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned); 373824513264SHugh Dickins spin_unlock_irq(&zone->lru_lock); 373924513264SHugh Dickins } 374085046579SHugh Dickins } 374185046579SHugh Dickins #endif /* CONFIG_SHMEM */ 3742af936a16SLee Schermerhorn 3743264e56d8SJohannes Weiner static void warn_scan_unevictable_pages(void) 3744af936a16SLee Schermerhorn { 3745264e56d8SJohannes Weiner printk_once(KERN_WARNING 374625bd91bdSKOSAKI Motohiro "%s: The scan_unevictable_pages sysctl/node-interface has been " 3747264e56d8SJohannes Weiner "disabled for lack of a legitimate use case. If you have " 374825bd91bdSKOSAKI Motohiro "one, please send an email to linux-mm@kvack.org.\n", 374925bd91bdSKOSAKI Motohiro current->comm); 3750af936a16SLee Schermerhorn } 3751af936a16SLee Schermerhorn 3752af936a16SLee Schermerhorn /* 3753af936a16SLee Schermerhorn * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of 3754af936a16SLee Schermerhorn * all nodes' unevictable lists for evictable pages 3755af936a16SLee Schermerhorn */ 3756af936a16SLee Schermerhorn unsigned long scan_unevictable_pages; 3757af936a16SLee Schermerhorn 3758af936a16SLee Schermerhorn int scan_unevictable_handler(struct ctl_table *table, int write, 37598d65af78SAlexey Dobriyan void __user *buffer, 3760af936a16SLee Schermerhorn size_t *length, loff_t *ppos) 3761af936a16SLee Schermerhorn { 3762264e56d8SJohannes Weiner warn_scan_unevictable_pages(); 37638d65af78SAlexey Dobriyan proc_doulongvec_minmax(table, write, buffer, length, ppos); 3764af936a16SLee Schermerhorn scan_unevictable_pages = 0; 3765af936a16SLee Schermerhorn return 0; 3766af936a16SLee Schermerhorn } 3767af936a16SLee Schermerhorn 3768e4455abbSThadeu Lima de Souza Cascardo #ifdef CONFIG_NUMA 3769af936a16SLee Schermerhorn /* 3770af936a16SLee Schermerhorn * per node 'scan_unevictable_pages' attribute. On demand re-scan of 3771af936a16SLee Schermerhorn * a specified node's per zone unevictable lists for evictable pages. 3772af936a16SLee Schermerhorn */ 3773af936a16SLee Schermerhorn 377410fbcf4cSKay Sievers static ssize_t read_scan_unevictable_node(struct device *dev, 377510fbcf4cSKay Sievers struct device_attribute *attr, 3776af936a16SLee Schermerhorn char *buf) 3777af936a16SLee Schermerhorn { 3778264e56d8SJohannes Weiner warn_scan_unevictable_pages(); 3779af936a16SLee Schermerhorn return sprintf(buf, "0\n"); /* always zero; should fit... */ 3780af936a16SLee Schermerhorn } 3781af936a16SLee Schermerhorn 378210fbcf4cSKay Sievers static ssize_t write_scan_unevictable_node(struct device *dev, 378310fbcf4cSKay Sievers struct device_attribute *attr, 3784af936a16SLee Schermerhorn const char *buf, size_t count) 3785af936a16SLee Schermerhorn { 3786264e56d8SJohannes Weiner warn_scan_unevictable_pages(); 3787af936a16SLee Schermerhorn return 1; 3788af936a16SLee Schermerhorn } 3789af936a16SLee Schermerhorn 3790af936a16SLee Schermerhorn 379110fbcf4cSKay Sievers static DEVICE_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR, 3792af936a16SLee Schermerhorn read_scan_unevictable_node, 3793af936a16SLee Schermerhorn write_scan_unevictable_node); 3794af936a16SLee Schermerhorn 3795af936a16SLee Schermerhorn int scan_unevictable_register_node(struct node *node) 3796af936a16SLee Schermerhorn { 379710fbcf4cSKay Sievers return device_create_file(&node->dev, &dev_attr_scan_unevictable_pages); 3798af936a16SLee Schermerhorn } 3799af936a16SLee Schermerhorn 3800af936a16SLee Schermerhorn void scan_unevictable_unregister_node(struct node *node) 3801af936a16SLee Schermerhorn { 380210fbcf4cSKay Sievers device_remove_file(&node->dev, &dev_attr_scan_unevictable_pages); 3803af936a16SLee Schermerhorn } 3804e4455abbSThadeu Lima de Souza Cascardo #endif 3805