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> 161da177e4SLinus Torvalds #include <linux/slab.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> 221da177e4SLinus Torvalds #include <linux/file.h> 231da177e4SLinus Torvalds #include <linux/writeback.h> 241da177e4SLinus Torvalds #include <linux/blkdev.h> 251da177e4SLinus Torvalds #include <linux/buffer_head.h> /* for try_to_release_page(), 261da177e4SLinus Torvalds buffer_heads_over_limit */ 271da177e4SLinus Torvalds #include <linux/mm_inline.h> 281da177e4SLinus Torvalds #include <linux/pagevec.h> 291da177e4SLinus Torvalds #include <linux/backing-dev.h> 301da177e4SLinus Torvalds #include <linux/rmap.h> 311da177e4SLinus Torvalds #include <linux/topology.h> 321da177e4SLinus Torvalds #include <linux/cpu.h> 331da177e4SLinus Torvalds #include <linux/cpuset.h> 341da177e4SLinus Torvalds #include <linux/notifier.h> 351da177e4SLinus Torvalds #include <linux/rwsem.h> 36248a0301SRafael J. Wysocki #include <linux/delay.h> 371da177e4SLinus Torvalds 381da177e4SLinus Torvalds #include <asm/tlbflush.h> 391da177e4SLinus Torvalds #include <asm/div64.h> 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds #include <linux/swapops.h> 421da177e4SLinus Torvalds 430f8053a5SNick Piggin #include "internal.h" 440f8053a5SNick Piggin 451da177e4SLinus Torvalds struct scan_control { 461da177e4SLinus Torvalds /* Incremented by the number of inactive pages that were scanned */ 471da177e4SLinus Torvalds unsigned long nr_scanned; 481da177e4SLinus Torvalds 491da177e4SLinus Torvalds unsigned long nr_mapped; /* From page_state */ 501da177e4SLinus Torvalds 511da177e4SLinus Torvalds /* This context's GFP mask */ 526daa0e28SAl Viro gfp_t gfp_mask; 531da177e4SLinus Torvalds 541da177e4SLinus Torvalds int may_writepage; 551da177e4SLinus Torvalds 56f1fd1067SChristoph Lameter /* Can pages be swapped as part of reclaim? */ 57f1fd1067SChristoph Lameter int may_swap; 58f1fd1067SChristoph Lameter 591da177e4SLinus Torvalds /* This context's SWAP_CLUSTER_MAX. If freeing memory for 601da177e4SLinus Torvalds * suspend, we effectively ignore SWAP_CLUSTER_MAX. 611da177e4SLinus Torvalds * In this context, it doesn't matter that we scan the 621da177e4SLinus Torvalds * whole list at once. */ 631da177e4SLinus Torvalds int swap_cluster_max; 64*d6277db4SRafael J. Wysocki 65*d6277db4SRafael J. Wysocki int swappiness; 661da177e4SLinus Torvalds }; 671da177e4SLinus Torvalds 681da177e4SLinus Torvalds /* 691da177e4SLinus Torvalds * The list of shrinker callbacks used by to apply pressure to 701da177e4SLinus Torvalds * ageable caches. 711da177e4SLinus Torvalds */ 721da177e4SLinus Torvalds struct shrinker { 731da177e4SLinus Torvalds shrinker_t shrinker; 741da177e4SLinus Torvalds struct list_head list; 751da177e4SLinus Torvalds int seeks; /* seeks to recreate an obj */ 761da177e4SLinus Torvalds long nr; /* objs pending delete */ 771da177e4SLinus Torvalds }; 781da177e4SLinus Torvalds 791da177e4SLinus Torvalds #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru)) 801da177e4SLinus Torvalds 811da177e4SLinus Torvalds #ifdef ARCH_HAS_PREFETCH 821da177e4SLinus Torvalds #define prefetch_prev_lru_page(_page, _base, _field) \ 831da177e4SLinus Torvalds do { \ 841da177e4SLinus Torvalds if ((_page)->lru.prev != _base) { \ 851da177e4SLinus Torvalds struct page *prev; \ 861da177e4SLinus Torvalds \ 871da177e4SLinus Torvalds prev = lru_to_page(&(_page->lru)); \ 881da177e4SLinus Torvalds prefetch(&prev->_field); \ 891da177e4SLinus Torvalds } \ 901da177e4SLinus Torvalds } while (0) 911da177e4SLinus Torvalds #else 921da177e4SLinus Torvalds #define prefetch_prev_lru_page(_page, _base, _field) do { } while (0) 931da177e4SLinus Torvalds #endif 941da177e4SLinus Torvalds 951da177e4SLinus Torvalds #ifdef ARCH_HAS_PREFETCHW 961da177e4SLinus Torvalds #define prefetchw_prev_lru_page(_page, _base, _field) \ 971da177e4SLinus Torvalds do { \ 981da177e4SLinus Torvalds if ((_page)->lru.prev != _base) { \ 991da177e4SLinus Torvalds struct page *prev; \ 1001da177e4SLinus Torvalds \ 1011da177e4SLinus Torvalds prev = lru_to_page(&(_page->lru)); \ 1021da177e4SLinus Torvalds prefetchw(&prev->_field); \ 1031da177e4SLinus Torvalds } \ 1041da177e4SLinus Torvalds } while (0) 1051da177e4SLinus Torvalds #else 1061da177e4SLinus Torvalds #define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0) 1071da177e4SLinus Torvalds #endif 1081da177e4SLinus Torvalds 1091da177e4SLinus Torvalds /* 1101da177e4SLinus Torvalds * From 0 .. 100. Higher means more swappy. 1111da177e4SLinus Torvalds */ 1121da177e4SLinus Torvalds int vm_swappiness = 60; 1131da177e4SLinus Torvalds static long total_memory; 1141da177e4SLinus Torvalds 1151da177e4SLinus Torvalds static LIST_HEAD(shrinker_list); 1161da177e4SLinus Torvalds static DECLARE_RWSEM(shrinker_rwsem); 1171da177e4SLinus Torvalds 1181da177e4SLinus Torvalds /* 1191da177e4SLinus Torvalds * Add a shrinker callback to be called from the vm 1201da177e4SLinus Torvalds */ 1211da177e4SLinus Torvalds struct shrinker *set_shrinker(int seeks, shrinker_t theshrinker) 1221da177e4SLinus Torvalds { 1231da177e4SLinus Torvalds struct shrinker *shrinker; 1241da177e4SLinus Torvalds 1251da177e4SLinus Torvalds shrinker = kmalloc(sizeof(*shrinker), GFP_KERNEL); 1261da177e4SLinus Torvalds if (shrinker) { 1271da177e4SLinus Torvalds shrinker->shrinker = theshrinker; 1281da177e4SLinus Torvalds shrinker->seeks = seeks; 1291da177e4SLinus Torvalds shrinker->nr = 0; 1301da177e4SLinus Torvalds down_write(&shrinker_rwsem); 1311da177e4SLinus Torvalds list_add_tail(&shrinker->list, &shrinker_list); 1321da177e4SLinus Torvalds up_write(&shrinker_rwsem); 1331da177e4SLinus Torvalds } 1341da177e4SLinus Torvalds return shrinker; 1351da177e4SLinus Torvalds } 1361da177e4SLinus Torvalds EXPORT_SYMBOL(set_shrinker); 1371da177e4SLinus Torvalds 1381da177e4SLinus Torvalds /* 1391da177e4SLinus Torvalds * Remove one 1401da177e4SLinus Torvalds */ 1411da177e4SLinus Torvalds void remove_shrinker(struct shrinker *shrinker) 1421da177e4SLinus Torvalds { 1431da177e4SLinus Torvalds down_write(&shrinker_rwsem); 1441da177e4SLinus Torvalds list_del(&shrinker->list); 1451da177e4SLinus Torvalds up_write(&shrinker_rwsem); 1461da177e4SLinus Torvalds kfree(shrinker); 1471da177e4SLinus Torvalds } 1481da177e4SLinus Torvalds EXPORT_SYMBOL(remove_shrinker); 1491da177e4SLinus Torvalds 1501da177e4SLinus Torvalds #define SHRINK_BATCH 128 1511da177e4SLinus Torvalds /* 1521da177e4SLinus Torvalds * Call the shrink functions to age shrinkable caches 1531da177e4SLinus Torvalds * 1541da177e4SLinus Torvalds * Here we assume it costs one seek to replace a lru page and that it also 1551da177e4SLinus Torvalds * takes a seek to recreate a cache object. With this in mind we age equal 1561da177e4SLinus Torvalds * percentages of the lru and ageable caches. This should balance the seeks 1571da177e4SLinus Torvalds * generated by these structures. 1581da177e4SLinus Torvalds * 1591da177e4SLinus Torvalds * If the vm encounted mapped pages on the LRU it increase the pressure on 1601da177e4SLinus Torvalds * slab to avoid swapping. 1611da177e4SLinus Torvalds * 1621da177e4SLinus Torvalds * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits. 1631da177e4SLinus Torvalds * 1641da177e4SLinus Torvalds * `lru_pages' represents the number of on-LRU pages in all the zones which 1651da177e4SLinus Torvalds * are eligible for the caller's allocation attempt. It is used for balancing 1661da177e4SLinus Torvalds * slab reclaim versus page reclaim. 167b15e0905Sakpm@osdl.org * 168b15e0905Sakpm@osdl.org * Returns the number of slab objects which we shrunk. 1691da177e4SLinus Torvalds */ 17069e05944SAndrew Morton unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask, 17169e05944SAndrew Morton unsigned long lru_pages) 1721da177e4SLinus Torvalds { 1731da177e4SLinus Torvalds struct shrinker *shrinker; 17469e05944SAndrew Morton unsigned long ret = 0; 1751da177e4SLinus Torvalds 1761da177e4SLinus Torvalds if (scanned == 0) 1771da177e4SLinus Torvalds scanned = SWAP_CLUSTER_MAX; 1781da177e4SLinus Torvalds 1791da177e4SLinus Torvalds if (!down_read_trylock(&shrinker_rwsem)) 180b15e0905Sakpm@osdl.org return 1; /* Assume we'll be able to shrink next time */ 1811da177e4SLinus Torvalds 1821da177e4SLinus Torvalds list_for_each_entry(shrinker, &shrinker_list, list) { 1831da177e4SLinus Torvalds unsigned long long delta; 1841da177e4SLinus Torvalds unsigned long total_scan; 185ea164d73SAndrea Arcangeli unsigned long max_pass = (*shrinker->shrinker)(0, gfp_mask); 1861da177e4SLinus Torvalds 1871da177e4SLinus Torvalds delta = (4 * scanned) / shrinker->seeks; 188ea164d73SAndrea Arcangeli delta *= max_pass; 1891da177e4SLinus Torvalds do_div(delta, lru_pages + 1); 1901da177e4SLinus Torvalds shrinker->nr += delta; 191ea164d73SAndrea Arcangeli if (shrinker->nr < 0) { 192ea164d73SAndrea Arcangeli printk(KERN_ERR "%s: nr=%ld\n", 193ea164d73SAndrea Arcangeli __FUNCTION__, shrinker->nr); 194ea164d73SAndrea Arcangeli shrinker->nr = max_pass; 195ea164d73SAndrea Arcangeli } 196ea164d73SAndrea Arcangeli 197ea164d73SAndrea Arcangeli /* 198ea164d73SAndrea Arcangeli * Avoid risking looping forever due to too large nr value: 199ea164d73SAndrea Arcangeli * never try to free more than twice the estimate number of 200ea164d73SAndrea Arcangeli * freeable entries. 201ea164d73SAndrea Arcangeli */ 202ea164d73SAndrea Arcangeli if (shrinker->nr > max_pass * 2) 203ea164d73SAndrea Arcangeli shrinker->nr = max_pass * 2; 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds total_scan = shrinker->nr; 2061da177e4SLinus Torvalds shrinker->nr = 0; 2071da177e4SLinus Torvalds 2081da177e4SLinus Torvalds while (total_scan >= SHRINK_BATCH) { 2091da177e4SLinus Torvalds long this_scan = SHRINK_BATCH; 2101da177e4SLinus Torvalds int shrink_ret; 211b15e0905Sakpm@osdl.org int nr_before; 2121da177e4SLinus Torvalds 213b15e0905Sakpm@osdl.org nr_before = (*shrinker->shrinker)(0, gfp_mask); 2141da177e4SLinus Torvalds shrink_ret = (*shrinker->shrinker)(this_scan, gfp_mask); 2151da177e4SLinus Torvalds if (shrink_ret == -1) 2161da177e4SLinus Torvalds break; 217b15e0905Sakpm@osdl.org if (shrink_ret < nr_before) 218b15e0905Sakpm@osdl.org ret += nr_before - shrink_ret; 2191da177e4SLinus Torvalds mod_page_state(slabs_scanned, this_scan); 2201da177e4SLinus Torvalds total_scan -= this_scan; 2211da177e4SLinus Torvalds 2221da177e4SLinus Torvalds cond_resched(); 2231da177e4SLinus Torvalds } 2241da177e4SLinus Torvalds 2251da177e4SLinus Torvalds shrinker->nr += total_scan; 2261da177e4SLinus Torvalds } 2271da177e4SLinus Torvalds up_read(&shrinker_rwsem); 228b15e0905Sakpm@osdl.org return ret; 2291da177e4SLinus Torvalds } 2301da177e4SLinus Torvalds 2311da177e4SLinus Torvalds /* Called without lock on whether page is mapped, so answer is unstable */ 2321da177e4SLinus Torvalds static inline int page_mapping_inuse(struct page *page) 2331da177e4SLinus Torvalds { 2341da177e4SLinus Torvalds struct address_space *mapping; 2351da177e4SLinus Torvalds 2361da177e4SLinus Torvalds /* Page is in somebody's page tables. */ 2371da177e4SLinus Torvalds if (page_mapped(page)) 2381da177e4SLinus Torvalds return 1; 2391da177e4SLinus Torvalds 2401da177e4SLinus Torvalds /* Be more reluctant to reclaim swapcache than pagecache */ 2411da177e4SLinus Torvalds if (PageSwapCache(page)) 2421da177e4SLinus Torvalds return 1; 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvalds mapping = page_mapping(page); 2451da177e4SLinus Torvalds if (!mapping) 2461da177e4SLinus Torvalds return 0; 2471da177e4SLinus Torvalds 2481da177e4SLinus Torvalds /* File is mmap'd by somebody? */ 2491da177e4SLinus Torvalds return mapping_mapped(mapping); 2501da177e4SLinus Torvalds } 2511da177e4SLinus Torvalds 2521da177e4SLinus Torvalds static inline int is_page_cache_freeable(struct page *page) 2531da177e4SLinus Torvalds { 2541da177e4SLinus Torvalds return page_count(page) - !!PagePrivate(page) == 2; 2551da177e4SLinus Torvalds } 2561da177e4SLinus Torvalds 2571da177e4SLinus Torvalds static int may_write_to_queue(struct backing_dev_info *bdi) 2581da177e4SLinus Torvalds { 259930d9152SChristoph Lameter if (current->flags & PF_SWAPWRITE) 2601da177e4SLinus Torvalds return 1; 2611da177e4SLinus Torvalds if (!bdi_write_congested(bdi)) 2621da177e4SLinus Torvalds return 1; 2631da177e4SLinus Torvalds if (bdi == current->backing_dev_info) 2641da177e4SLinus Torvalds return 1; 2651da177e4SLinus Torvalds return 0; 2661da177e4SLinus Torvalds } 2671da177e4SLinus Torvalds 2681da177e4SLinus Torvalds /* 2691da177e4SLinus Torvalds * We detected a synchronous write error writing a page out. Probably 2701da177e4SLinus Torvalds * -ENOSPC. We need to propagate that into the address_space for a subsequent 2711da177e4SLinus Torvalds * fsync(), msync() or close(). 2721da177e4SLinus Torvalds * 2731da177e4SLinus Torvalds * The tricky part is that after writepage we cannot touch the mapping: nothing 2741da177e4SLinus Torvalds * prevents it from being freed up. But we have a ref on the page and once 2751da177e4SLinus Torvalds * that page is locked, the mapping is pinned. 2761da177e4SLinus Torvalds * 2771da177e4SLinus Torvalds * We're allowed to run sleeping lock_page() here because we know the caller has 2781da177e4SLinus Torvalds * __GFP_FS. 2791da177e4SLinus Torvalds */ 2801da177e4SLinus Torvalds static void handle_write_error(struct address_space *mapping, 2811da177e4SLinus Torvalds struct page *page, int error) 2821da177e4SLinus Torvalds { 2831da177e4SLinus Torvalds lock_page(page); 2841da177e4SLinus Torvalds if (page_mapping(page) == mapping) { 2851da177e4SLinus Torvalds if (error == -ENOSPC) 2861da177e4SLinus Torvalds set_bit(AS_ENOSPC, &mapping->flags); 2871da177e4SLinus Torvalds else 2881da177e4SLinus Torvalds set_bit(AS_EIO, &mapping->flags); 2891da177e4SLinus Torvalds } 2901da177e4SLinus Torvalds unlock_page(page); 2911da177e4SLinus Torvalds } 2921da177e4SLinus Torvalds 2931da177e4SLinus Torvalds /* 2941742f19fSAndrew Morton * pageout is called by shrink_page_list() for each dirty page. 2951742f19fSAndrew Morton * Calls ->writepage(). 2961da177e4SLinus Torvalds */ 297b20a3503SChristoph Lameter pageout_t pageout(struct page *page, struct address_space *mapping) 2981da177e4SLinus Torvalds { 2991da177e4SLinus Torvalds /* 3001da177e4SLinus Torvalds * If the page is dirty, only perform writeback if that write 3011da177e4SLinus Torvalds * will be non-blocking. To prevent this allocation from being 3021da177e4SLinus Torvalds * stalled by pagecache activity. But note that there may be 3031da177e4SLinus Torvalds * stalls if we need to run get_block(). We could test 3041da177e4SLinus Torvalds * PagePrivate for that. 3051da177e4SLinus Torvalds * 3061da177e4SLinus Torvalds * If this process is currently in generic_file_write() against 3071da177e4SLinus Torvalds * this page's queue, we can perform writeback even if that 3081da177e4SLinus Torvalds * will block. 3091da177e4SLinus Torvalds * 3101da177e4SLinus Torvalds * If the page is swapcache, write it back even if that would 3111da177e4SLinus Torvalds * block, for some throttling. This happens by accident, because 3121da177e4SLinus Torvalds * swap_backing_dev_info is bust: it doesn't reflect the 3131da177e4SLinus Torvalds * congestion state of the swapdevs. Easy to fix, if needed. 3141da177e4SLinus Torvalds * See swapfile.c:page_queue_congested(). 3151da177e4SLinus Torvalds */ 3161da177e4SLinus Torvalds if (!is_page_cache_freeable(page)) 3171da177e4SLinus Torvalds return PAGE_KEEP; 3181da177e4SLinus Torvalds if (!mapping) { 3191da177e4SLinus Torvalds /* 3201da177e4SLinus Torvalds * Some data journaling orphaned pages can have 3211da177e4SLinus Torvalds * page->mapping == NULL while being dirty with clean buffers. 3221da177e4SLinus Torvalds */ 323323aca6cSakpm@osdl.org if (PagePrivate(page)) { 3241da177e4SLinus Torvalds if (try_to_free_buffers(page)) { 3251da177e4SLinus Torvalds ClearPageDirty(page); 3261da177e4SLinus Torvalds printk("%s: orphaned page\n", __FUNCTION__); 3271da177e4SLinus Torvalds return PAGE_CLEAN; 3281da177e4SLinus Torvalds } 3291da177e4SLinus Torvalds } 3301da177e4SLinus Torvalds return PAGE_KEEP; 3311da177e4SLinus Torvalds } 3321da177e4SLinus Torvalds if (mapping->a_ops->writepage == NULL) 3331da177e4SLinus Torvalds return PAGE_ACTIVATE; 3341da177e4SLinus Torvalds if (!may_write_to_queue(mapping->backing_dev_info)) 3351da177e4SLinus Torvalds return PAGE_KEEP; 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvalds if (clear_page_dirty_for_io(page)) { 3381da177e4SLinus Torvalds int res; 3391da177e4SLinus Torvalds struct writeback_control wbc = { 3401da177e4SLinus Torvalds .sync_mode = WB_SYNC_NONE, 3411da177e4SLinus Torvalds .nr_to_write = SWAP_CLUSTER_MAX, 3421da177e4SLinus Torvalds .nonblocking = 1, 3431da177e4SLinus Torvalds .for_reclaim = 1, 3441da177e4SLinus Torvalds }; 3451da177e4SLinus Torvalds 3461da177e4SLinus Torvalds SetPageReclaim(page); 3471da177e4SLinus Torvalds res = mapping->a_ops->writepage(page, &wbc); 3481da177e4SLinus Torvalds if (res < 0) 3491da177e4SLinus Torvalds handle_write_error(mapping, page, res); 350994fc28cSZach Brown if (res == AOP_WRITEPAGE_ACTIVATE) { 3511da177e4SLinus Torvalds ClearPageReclaim(page); 3521da177e4SLinus Torvalds return PAGE_ACTIVATE; 3531da177e4SLinus Torvalds } 3541da177e4SLinus Torvalds if (!PageWriteback(page)) { 3551da177e4SLinus Torvalds /* synchronous write or broken a_ops? */ 3561da177e4SLinus Torvalds ClearPageReclaim(page); 3571da177e4SLinus Torvalds } 3581da177e4SLinus Torvalds 3591da177e4SLinus Torvalds return PAGE_SUCCESS; 3601da177e4SLinus Torvalds } 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvalds return PAGE_CLEAN; 3631da177e4SLinus Torvalds } 3641da177e4SLinus Torvalds 365b20a3503SChristoph Lameter int remove_mapping(struct address_space *mapping, struct page *page) 36649d2e9ccSChristoph Lameter { 36749d2e9ccSChristoph Lameter if (!mapping) 36849d2e9ccSChristoph Lameter return 0; /* truncate got there first */ 36949d2e9ccSChristoph Lameter 37049d2e9ccSChristoph Lameter write_lock_irq(&mapping->tree_lock); 37149d2e9ccSChristoph Lameter 37249d2e9ccSChristoph Lameter /* 37349d2e9ccSChristoph Lameter * The non-racy check for busy page. It is critical to check 37449d2e9ccSChristoph Lameter * PageDirty _after_ making sure that the page is freeable and 37549d2e9ccSChristoph Lameter * not in use by anybody. (pagecache + us == 2) 37649d2e9ccSChristoph Lameter */ 37749d2e9ccSChristoph Lameter if (unlikely(page_count(page) != 2)) 37849d2e9ccSChristoph Lameter goto cannot_free; 37949d2e9ccSChristoph Lameter smp_rmb(); 38049d2e9ccSChristoph Lameter if (unlikely(PageDirty(page))) 38149d2e9ccSChristoph Lameter goto cannot_free; 38249d2e9ccSChristoph Lameter 38349d2e9ccSChristoph Lameter if (PageSwapCache(page)) { 38449d2e9ccSChristoph Lameter swp_entry_t swap = { .val = page_private(page) }; 38549d2e9ccSChristoph Lameter __delete_from_swap_cache(page); 38649d2e9ccSChristoph Lameter write_unlock_irq(&mapping->tree_lock); 38749d2e9ccSChristoph Lameter swap_free(swap); 38849d2e9ccSChristoph Lameter __put_page(page); /* The pagecache ref */ 38949d2e9ccSChristoph Lameter return 1; 39049d2e9ccSChristoph Lameter } 39149d2e9ccSChristoph Lameter 39249d2e9ccSChristoph Lameter __remove_from_page_cache(page); 39349d2e9ccSChristoph Lameter write_unlock_irq(&mapping->tree_lock); 39449d2e9ccSChristoph Lameter __put_page(page); 39549d2e9ccSChristoph Lameter return 1; 39649d2e9ccSChristoph Lameter 39749d2e9ccSChristoph Lameter cannot_free: 39849d2e9ccSChristoph Lameter write_unlock_irq(&mapping->tree_lock); 39949d2e9ccSChristoph Lameter return 0; 40049d2e9ccSChristoph Lameter } 40149d2e9ccSChristoph Lameter 4021da177e4SLinus Torvalds /* 4031742f19fSAndrew Morton * shrink_page_list() returns the number of reclaimed pages 4041da177e4SLinus Torvalds */ 4051742f19fSAndrew Morton static unsigned long shrink_page_list(struct list_head *page_list, 40669e05944SAndrew Morton struct scan_control *sc) 4071da177e4SLinus Torvalds { 4081da177e4SLinus Torvalds LIST_HEAD(ret_pages); 4091da177e4SLinus Torvalds struct pagevec freed_pvec; 4101da177e4SLinus Torvalds int pgactivate = 0; 41105ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 4121da177e4SLinus Torvalds 4131da177e4SLinus Torvalds cond_resched(); 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvalds pagevec_init(&freed_pvec, 1); 4161da177e4SLinus Torvalds while (!list_empty(page_list)) { 4171da177e4SLinus Torvalds struct address_space *mapping; 4181da177e4SLinus Torvalds struct page *page; 4191da177e4SLinus Torvalds int may_enter_fs; 4201da177e4SLinus Torvalds int referenced; 4211da177e4SLinus Torvalds 4221da177e4SLinus Torvalds cond_resched(); 4231da177e4SLinus Torvalds 4241da177e4SLinus Torvalds page = lru_to_page(page_list); 4251da177e4SLinus Torvalds list_del(&page->lru); 4261da177e4SLinus Torvalds 4271da177e4SLinus Torvalds if (TestSetPageLocked(page)) 4281da177e4SLinus Torvalds goto keep; 4291da177e4SLinus Torvalds 4301da177e4SLinus Torvalds BUG_ON(PageActive(page)); 4311da177e4SLinus Torvalds 4321da177e4SLinus Torvalds sc->nr_scanned++; 43380e43426SChristoph Lameter 43480e43426SChristoph Lameter if (!sc->may_swap && page_mapped(page)) 43580e43426SChristoph Lameter goto keep_locked; 43680e43426SChristoph Lameter 4371da177e4SLinus Torvalds /* Double the slab pressure for mapped and swapcache pages */ 4381da177e4SLinus Torvalds if (page_mapped(page) || PageSwapCache(page)) 4391da177e4SLinus Torvalds sc->nr_scanned++; 4401da177e4SLinus Torvalds 4411da177e4SLinus Torvalds if (PageWriteback(page)) 4421da177e4SLinus Torvalds goto keep_locked; 4431da177e4SLinus Torvalds 444f7b7fd8fSRik van Riel referenced = page_referenced(page, 1); 4451da177e4SLinus Torvalds /* In active use or really unfreeable? Activate it. */ 4461da177e4SLinus Torvalds if (referenced && page_mapping_inuse(page)) 4471da177e4SLinus Torvalds goto activate_locked; 4481da177e4SLinus Torvalds 4491da177e4SLinus Torvalds #ifdef CONFIG_SWAP 4501da177e4SLinus Torvalds /* 4511da177e4SLinus Torvalds * Anonymous process memory has backing store? 4521da177e4SLinus Torvalds * Try to allocate it some swap space here. 4531da177e4SLinus Torvalds */ 4546e5ef1a9SChristoph Lameter if (PageAnon(page) && !PageSwapCache(page)) 4551480a540SChristoph Lameter if (!add_to_swap(page, GFP_ATOMIC)) 4561da177e4SLinus Torvalds goto activate_locked; 4571da177e4SLinus Torvalds #endif /* CONFIG_SWAP */ 4581da177e4SLinus Torvalds 4591da177e4SLinus Torvalds mapping = page_mapping(page); 4601da177e4SLinus Torvalds may_enter_fs = (sc->gfp_mask & __GFP_FS) || 4611da177e4SLinus Torvalds (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO)); 4621da177e4SLinus Torvalds 4631da177e4SLinus Torvalds /* 4641da177e4SLinus Torvalds * The page is mapped into the page tables of one or more 4651da177e4SLinus Torvalds * processes. Try to unmap it here. 4661da177e4SLinus Torvalds */ 4671da177e4SLinus Torvalds if (page_mapped(page) && mapping) { 468a48d07afSChristoph Lameter switch (try_to_unmap(page, 0)) { 4691da177e4SLinus Torvalds case SWAP_FAIL: 4701da177e4SLinus Torvalds goto activate_locked; 4711da177e4SLinus Torvalds case SWAP_AGAIN: 4721da177e4SLinus Torvalds goto keep_locked; 4731da177e4SLinus Torvalds case SWAP_SUCCESS: 4741da177e4SLinus Torvalds ; /* try to free the page below */ 4751da177e4SLinus Torvalds } 4761da177e4SLinus Torvalds } 4771da177e4SLinus Torvalds 4781da177e4SLinus Torvalds if (PageDirty(page)) { 4791da177e4SLinus Torvalds if (referenced) 4801da177e4SLinus Torvalds goto keep_locked; 4811da177e4SLinus Torvalds if (!may_enter_fs) 4821da177e4SLinus Torvalds goto keep_locked; 48352a8363eSChristoph Lameter if (!sc->may_writepage) 4841da177e4SLinus Torvalds goto keep_locked; 4851da177e4SLinus Torvalds 4861da177e4SLinus Torvalds /* Page is dirty, try to write it out here */ 4871da177e4SLinus Torvalds switch(pageout(page, mapping)) { 4881da177e4SLinus Torvalds case PAGE_KEEP: 4891da177e4SLinus Torvalds goto keep_locked; 4901da177e4SLinus Torvalds case PAGE_ACTIVATE: 4911da177e4SLinus Torvalds goto activate_locked; 4921da177e4SLinus Torvalds case PAGE_SUCCESS: 4931da177e4SLinus Torvalds if (PageWriteback(page) || PageDirty(page)) 4941da177e4SLinus Torvalds goto keep; 4951da177e4SLinus Torvalds /* 4961da177e4SLinus Torvalds * A synchronous write - probably a ramdisk. Go 4971da177e4SLinus Torvalds * ahead and try to reclaim the page. 4981da177e4SLinus Torvalds */ 4991da177e4SLinus Torvalds if (TestSetPageLocked(page)) 5001da177e4SLinus Torvalds goto keep; 5011da177e4SLinus Torvalds if (PageDirty(page) || PageWriteback(page)) 5021da177e4SLinus Torvalds goto keep_locked; 5031da177e4SLinus Torvalds mapping = page_mapping(page); 5041da177e4SLinus Torvalds case PAGE_CLEAN: 5051da177e4SLinus Torvalds ; /* try to free the page below */ 5061da177e4SLinus Torvalds } 5071da177e4SLinus Torvalds } 5081da177e4SLinus Torvalds 5091da177e4SLinus Torvalds /* 5101da177e4SLinus Torvalds * If the page has buffers, try to free the buffer mappings 5111da177e4SLinus Torvalds * associated with this page. If we succeed we try to free 5121da177e4SLinus Torvalds * the page as well. 5131da177e4SLinus Torvalds * 5141da177e4SLinus Torvalds * We do this even if the page is PageDirty(). 5151da177e4SLinus Torvalds * try_to_release_page() does not perform I/O, but it is 5161da177e4SLinus Torvalds * possible for a page to have PageDirty set, but it is actually 5171da177e4SLinus Torvalds * clean (all its buffers are clean). This happens if the 5181da177e4SLinus Torvalds * buffers were written out directly, with submit_bh(). ext3 5191da177e4SLinus Torvalds * will do this, as well as the blockdev mapping. 5201da177e4SLinus Torvalds * try_to_release_page() will discover that cleanness and will 5211da177e4SLinus Torvalds * drop the buffers and mark the page clean - it can be freed. 5221da177e4SLinus Torvalds * 5231da177e4SLinus Torvalds * Rarely, pages can have buffers and no ->mapping. These are 5241da177e4SLinus Torvalds * the pages which were not successfully invalidated in 5251da177e4SLinus Torvalds * truncate_complete_page(). We try to drop those buffers here 5261da177e4SLinus Torvalds * and if that worked, and the page is no longer mapped into 5271da177e4SLinus Torvalds * process address space (page_count == 1) it can be freed. 5281da177e4SLinus Torvalds * Otherwise, leave the page on the LRU so it is swappable. 5291da177e4SLinus Torvalds */ 5301da177e4SLinus Torvalds if (PagePrivate(page)) { 5311da177e4SLinus Torvalds if (!try_to_release_page(page, sc->gfp_mask)) 5321da177e4SLinus Torvalds goto activate_locked; 5331da177e4SLinus Torvalds if (!mapping && page_count(page) == 1) 5341da177e4SLinus Torvalds goto free_it; 5351da177e4SLinus Torvalds } 5361da177e4SLinus Torvalds 53749d2e9ccSChristoph Lameter if (!remove_mapping(mapping, page)) 53849d2e9ccSChristoph Lameter goto keep_locked; 5391da177e4SLinus Torvalds 5401da177e4SLinus Torvalds free_it: 5411da177e4SLinus Torvalds unlock_page(page); 54205ff5137SAndrew Morton nr_reclaimed++; 5431da177e4SLinus Torvalds if (!pagevec_add(&freed_pvec, page)) 5441da177e4SLinus Torvalds __pagevec_release_nonlru(&freed_pvec); 5451da177e4SLinus Torvalds continue; 5461da177e4SLinus Torvalds 5471da177e4SLinus Torvalds activate_locked: 5481da177e4SLinus Torvalds SetPageActive(page); 5491da177e4SLinus Torvalds pgactivate++; 5501da177e4SLinus Torvalds keep_locked: 5511da177e4SLinus Torvalds unlock_page(page); 5521da177e4SLinus Torvalds keep: 5531da177e4SLinus Torvalds list_add(&page->lru, &ret_pages); 5541da177e4SLinus Torvalds BUG_ON(PageLRU(page)); 5551da177e4SLinus Torvalds } 5561da177e4SLinus Torvalds list_splice(&ret_pages, page_list); 5571da177e4SLinus Torvalds if (pagevec_count(&freed_pvec)) 5581da177e4SLinus Torvalds __pagevec_release_nonlru(&freed_pvec); 5591da177e4SLinus Torvalds mod_page_state(pgactivate, pgactivate); 56005ff5137SAndrew Morton return nr_reclaimed; 5611da177e4SLinus Torvalds } 5621da177e4SLinus Torvalds 56349d2e9ccSChristoph Lameter /* 5641da177e4SLinus Torvalds * zone->lru_lock is heavily contended. Some of the functions that 5651da177e4SLinus Torvalds * shrink the lists perform better by taking out a batch of pages 5661da177e4SLinus Torvalds * and working on them outside the LRU lock. 5671da177e4SLinus Torvalds * 5681da177e4SLinus Torvalds * For pagecache intensive workloads, this function is the hottest 5691da177e4SLinus Torvalds * spot in the kernel (apart from copy_*_user functions). 5701da177e4SLinus Torvalds * 5711da177e4SLinus Torvalds * Appropriate locks must be held before calling this function. 5721da177e4SLinus Torvalds * 5731da177e4SLinus Torvalds * @nr_to_scan: The number of pages to look through on the list. 5741da177e4SLinus Torvalds * @src: The LRU list to pull pages off. 5751da177e4SLinus Torvalds * @dst: The temp list to put pages on to. 5761da177e4SLinus Torvalds * @scanned: The number of pages that were scanned. 5771da177e4SLinus Torvalds * 5781da177e4SLinus Torvalds * returns how many pages were moved onto *@dst. 5791da177e4SLinus Torvalds */ 58069e05944SAndrew Morton static unsigned long isolate_lru_pages(unsigned long nr_to_scan, 58169e05944SAndrew Morton struct list_head *src, struct list_head *dst, 58269e05944SAndrew Morton unsigned long *scanned) 5831da177e4SLinus Torvalds { 58469e05944SAndrew Morton unsigned long nr_taken = 0; 5851da177e4SLinus Torvalds struct page *page; 586c9b02d97SWu Fengguang unsigned long scan; 5871da177e4SLinus Torvalds 588c9b02d97SWu Fengguang for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) { 5897c8ee9a8SNick Piggin struct list_head *target; 5901da177e4SLinus Torvalds page = lru_to_page(src); 5911da177e4SLinus Torvalds prefetchw_prev_lru_page(page, src, flags); 5921da177e4SLinus Torvalds 5938d438f96SNick Piggin BUG_ON(!PageLRU(page)); 5948d438f96SNick Piggin 595053837fcSNick Piggin list_del(&page->lru); 5967c8ee9a8SNick Piggin target = src; 5977c8ee9a8SNick Piggin if (likely(get_page_unless_zero(page))) { 598053837fcSNick Piggin /* 5997c8ee9a8SNick Piggin * Be careful not to clear PageLRU until after we're 6007c8ee9a8SNick Piggin * sure the page is not being freed elsewhere -- the 6017c8ee9a8SNick Piggin * page release code relies on it. 60246453a6eSNick Piggin */ 6038d438f96SNick Piggin ClearPageLRU(page); 6047c8ee9a8SNick Piggin target = dst; 605053837fcSNick Piggin nr_taken++; 6067c8ee9a8SNick Piggin } /* else it is being freed elsewhere */ 6077c8ee9a8SNick Piggin 6087c8ee9a8SNick Piggin list_add(&page->lru, target); 6091da177e4SLinus Torvalds } 6101da177e4SLinus Torvalds 6111da177e4SLinus Torvalds *scanned = scan; 6121da177e4SLinus Torvalds return nr_taken; 6131da177e4SLinus Torvalds } 6141da177e4SLinus Torvalds 6151da177e4SLinus Torvalds /* 6161742f19fSAndrew Morton * shrink_inactive_list() is a helper for shrink_zone(). It returns the number 6171742f19fSAndrew Morton * of reclaimed pages 6181da177e4SLinus Torvalds */ 6191742f19fSAndrew Morton static unsigned long shrink_inactive_list(unsigned long max_scan, 6201742f19fSAndrew Morton struct zone *zone, struct scan_control *sc) 6211da177e4SLinus Torvalds { 6221da177e4SLinus Torvalds LIST_HEAD(page_list); 6231da177e4SLinus Torvalds struct pagevec pvec; 62469e05944SAndrew Morton unsigned long nr_scanned = 0; 62505ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 6261da177e4SLinus Torvalds 6271da177e4SLinus Torvalds pagevec_init(&pvec, 1); 6281da177e4SLinus Torvalds 6291da177e4SLinus Torvalds lru_add_drain(); 6301da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 63169e05944SAndrew Morton do { 6321da177e4SLinus Torvalds struct page *page; 63369e05944SAndrew Morton unsigned long nr_taken; 63469e05944SAndrew Morton unsigned long nr_scan; 63569e05944SAndrew Morton unsigned long nr_freed; 6361da177e4SLinus Torvalds 6371da177e4SLinus Torvalds nr_taken = isolate_lru_pages(sc->swap_cluster_max, 6381da177e4SLinus Torvalds &zone->inactive_list, 6391da177e4SLinus Torvalds &page_list, &nr_scan); 6401da177e4SLinus Torvalds zone->nr_inactive -= nr_taken; 6411da177e4SLinus Torvalds zone->pages_scanned += nr_scan; 6421da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 6431da177e4SLinus Torvalds 64469e05944SAndrew Morton nr_scanned += nr_scan; 6451742f19fSAndrew Morton nr_freed = shrink_page_list(&page_list, sc); 64605ff5137SAndrew Morton nr_reclaimed += nr_freed; 647a74609faSNick Piggin local_irq_disable(); 648a74609faSNick Piggin if (current_is_kswapd()) { 649a74609faSNick Piggin __mod_page_state_zone(zone, pgscan_kswapd, nr_scan); 650a74609faSNick Piggin __mod_page_state(kswapd_steal, nr_freed); 651a74609faSNick Piggin } else 652a74609faSNick Piggin __mod_page_state_zone(zone, pgscan_direct, nr_scan); 653a74609faSNick Piggin __mod_page_state_zone(zone, pgsteal, nr_freed); 654a74609faSNick Piggin 655fb8d14e1SWu Fengguang if (nr_taken == 0) 656fb8d14e1SWu Fengguang goto done; 657fb8d14e1SWu Fengguang 658a74609faSNick Piggin spin_lock(&zone->lru_lock); 6591da177e4SLinus Torvalds /* 6601da177e4SLinus Torvalds * Put back any unfreeable pages. 6611da177e4SLinus Torvalds */ 6621da177e4SLinus Torvalds while (!list_empty(&page_list)) { 6631da177e4SLinus Torvalds page = lru_to_page(&page_list); 6648d438f96SNick Piggin BUG_ON(PageLRU(page)); 6658d438f96SNick Piggin SetPageLRU(page); 6661da177e4SLinus Torvalds list_del(&page->lru); 6671da177e4SLinus Torvalds if (PageActive(page)) 6681da177e4SLinus Torvalds add_page_to_active_list(zone, page); 6691da177e4SLinus Torvalds else 6701da177e4SLinus Torvalds add_page_to_inactive_list(zone, page); 6711da177e4SLinus Torvalds if (!pagevec_add(&pvec, page)) { 6721da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 6731da177e4SLinus Torvalds __pagevec_release(&pvec); 6741da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 6751da177e4SLinus Torvalds } 6761da177e4SLinus Torvalds } 67769e05944SAndrew Morton } while (nr_scanned < max_scan); 678fb8d14e1SWu Fengguang spin_unlock(&zone->lru_lock); 6791da177e4SLinus Torvalds done: 680fb8d14e1SWu Fengguang local_irq_enable(); 6811da177e4SLinus Torvalds pagevec_release(&pvec); 68205ff5137SAndrew Morton return nr_reclaimed; 6831da177e4SLinus Torvalds } 6841da177e4SLinus Torvalds 6851da177e4SLinus Torvalds /* 6861da177e4SLinus Torvalds * This moves pages from the active list to the inactive list. 6871da177e4SLinus Torvalds * 6881da177e4SLinus Torvalds * We move them the other way if the page is referenced by one or more 6891da177e4SLinus Torvalds * processes, from rmap. 6901da177e4SLinus Torvalds * 6911da177e4SLinus Torvalds * If the pages are mostly unmapped, the processing is fast and it is 6921da177e4SLinus Torvalds * appropriate to hold zone->lru_lock across the whole operation. But if 6931da177e4SLinus Torvalds * the pages are mapped, the processing is slow (page_referenced()) so we 6941da177e4SLinus Torvalds * should drop zone->lru_lock around each page. It's impossible to balance 6951da177e4SLinus Torvalds * this, so instead we remove the pages from the LRU while processing them. 6961da177e4SLinus Torvalds * It is safe to rely on PG_active against the non-LRU pages in here because 6971da177e4SLinus Torvalds * nobody will play with that bit on a non-LRU page. 6981da177e4SLinus Torvalds * 6991da177e4SLinus Torvalds * The downside is that we have to touch page->_count against each page. 7001da177e4SLinus Torvalds * But we had to alter page->flags anyway. 7011da177e4SLinus Torvalds */ 7021742f19fSAndrew Morton static void shrink_active_list(unsigned long nr_pages, struct zone *zone, 70369e05944SAndrew Morton struct scan_control *sc) 7041da177e4SLinus Torvalds { 70569e05944SAndrew Morton unsigned long pgmoved; 7061da177e4SLinus Torvalds int pgdeactivate = 0; 70769e05944SAndrew Morton unsigned long pgscanned; 7081da177e4SLinus Torvalds LIST_HEAD(l_hold); /* The pages which were snipped off */ 7091da177e4SLinus Torvalds LIST_HEAD(l_inactive); /* Pages to go onto the inactive_list */ 7101da177e4SLinus Torvalds LIST_HEAD(l_active); /* Pages to go onto the active_list */ 7111da177e4SLinus Torvalds struct page *page; 7121da177e4SLinus Torvalds struct pagevec pvec; 7131da177e4SLinus Torvalds int reclaim_mapped = 0; 7142903fb16SChristoph Lameter 7156e5ef1a9SChristoph Lameter if (sc->may_swap) { 7161da177e4SLinus Torvalds long mapped_ratio; 7171da177e4SLinus Torvalds long distress; 7181da177e4SLinus Torvalds long swap_tendency; 7191da177e4SLinus Torvalds 7202903fb16SChristoph Lameter /* 7212903fb16SChristoph Lameter * `distress' is a measure of how much trouble we're having 7222903fb16SChristoph Lameter * reclaiming pages. 0 -> no problems. 100 -> great trouble. 7232903fb16SChristoph Lameter */ 7242903fb16SChristoph Lameter distress = 100 >> zone->prev_priority; 7252903fb16SChristoph Lameter 7262903fb16SChristoph Lameter /* 7272903fb16SChristoph Lameter * The point of this algorithm is to decide when to start 7282903fb16SChristoph Lameter * reclaiming mapped memory instead of just pagecache. Work out 7292903fb16SChristoph Lameter * how much memory 7302903fb16SChristoph Lameter * is mapped. 7312903fb16SChristoph Lameter */ 7322903fb16SChristoph Lameter mapped_ratio = (sc->nr_mapped * 100) / total_memory; 7332903fb16SChristoph Lameter 7342903fb16SChristoph Lameter /* 7352903fb16SChristoph Lameter * Now decide how much we really want to unmap some pages. The 7362903fb16SChristoph Lameter * mapped ratio is downgraded - just because there's a lot of 7372903fb16SChristoph Lameter * mapped memory doesn't necessarily mean that page reclaim 7382903fb16SChristoph Lameter * isn't succeeding. 7392903fb16SChristoph Lameter * 7402903fb16SChristoph Lameter * The distress ratio is important - we don't want to start 7412903fb16SChristoph Lameter * going oom. 7422903fb16SChristoph Lameter * 7432903fb16SChristoph Lameter * A 100% value of vm_swappiness overrides this algorithm 7442903fb16SChristoph Lameter * altogether. 7452903fb16SChristoph Lameter */ 746*d6277db4SRafael J. Wysocki swap_tendency = mapped_ratio / 2 + distress + sc->swappiness; 7472903fb16SChristoph Lameter 7482903fb16SChristoph Lameter /* 7492903fb16SChristoph Lameter * Now use this metric to decide whether to start moving mapped 7502903fb16SChristoph Lameter * memory onto the inactive list. 7512903fb16SChristoph Lameter */ 7522903fb16SChristoph Lameter if (swap_tendency >= 100) 7532903fb16SChristoph Lameter reclaim_mapped = 1; 7542903fb16SChristoph Lameter } 7552903fb16SChristoph Lameter 7561da177e4SLinus Torvalds lru_add_drain(); 7571da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 7581da177e4SLinus Torvalds pgmoved = isolate_lru_pages(nr_pages, &zone->active_list, 7591da177e4SLinus Torvalds &l_hold, &pgscanned); 7601da177e4SLinus Torvalds zone->pages_scanned += pgscanned; 7611da177e4SLinus Torvalds zone->nr_active -= pgmoved; 7621da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 7631da177e4SLinus Torvalds 7641da177e4SLinus Torvalds while (!list_empty(&l_hold)) { 7651da177e4SLinus Torvalds cond_resched(); 7661da177e4SLinus Torvalds page = lru_to_page(&l_hold); 7671da177e4SLinus Torvalds list_del(&page->lru); 7681da177e4SLinus Torvalds if (page_mapped(page)) { 7691da177e4SLinus Torvalds if (!reclaim_mapped || 7701da177e4SLinus Torvalds (total_swap_pages == 0 && PageAnon(page)) || 771f7b7fd8fSRik van Riel page_referenced(page, 0)) { 7721da177e4SLinus Torvalds list_add(&page->lru, &l_active); 7731da177e4SLinus Torvalds continue; 7741da177e4SLinus Torvalds } 7751da177e4SLinus Torvalds } 7761da177e4SLinus Torvalds list_add(&page->lru, &l_inactive); 7771da177e4SLinus Torvalds } 7781da177e4SLinus Torvalds 7791da177e4SLinus Torvalds pagevec_init(&pvec, 1); 7801da177e4SLinus Torvalds pgmoved = 0; 7811da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 7821da177e4SLinus Torvalds while (!list_empty(&l_inactive)) { 7831da177e4SLinus Torvalds page = lru_to_page(&l_inactive); 7841da177e4SLinus Torvalds prefetchw_prev_lru_page(page, &l_inactive, flags); 7858d438f96SNick Piggin BUG_ON(PageLRU(page)); 7868d438f96SNick Piggin SetPageLRU(page); 7874c84cacfSNick Piggin BUG_ON(!PageActive(page)); 7884c84cacfSNick Piggin ClearPageActive(page); 7894c84cacfSNick Piggin 7901da177e4SLinus Torvalds list_move(&page->lru, &zone->inactive_list); 7911da177e4SLinus Torvalds pgmoved++; 7921da177e4SLinus Torvalds if (!pagevec_add(&pvec, page)) { 7931da177e4SLinus Torvalds zone->nr_inactive += pgmoved; 7941da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 7951da177e4SLinus Torvalds pgdeactivate += pgmoved; 7961da177e4SLinus Torvalds pgmoved = 0; 7971da177e4SLinus Torvalds if (buffer_heads_over_limit) 7981da177e4SLinus Torvalds pagevec_strip(&pvec); 7991da177e4SLinus Torvalds __pagevec_release(&pvec); 8001da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 8011da177e4SLinus Torvalds } 8021da177e4SLinus Torvalds } 8031da177e4SLinus Torvalds zone->nr_inactive += pgmoved; 8041da177e4SLinus Torvalds pgdeactivate += pgmoved; 8051da177e4SLinus Torvalds if (buffer_heads_over_limit) { 8061da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 8071da177e4SLinus Torvalds pagevec_strip(&pvec); 8081da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 8091da177e4SLinus Torvalds } 8101da177e4SLinus Torvalds 8111da177e4SLinus Torvalds pgmoved = 0; 8121da177e4SLinus Torvalds while (!list_empty(&l_active)) { 8131da177e4SLinus Torvalds page = lru_to_page(&l_active); 8141da177e4SLinus Torvalds prefetchw_prev_lru_page(page, &l_active, flags); 8158d438f96SNick Piggin BUG_ON(PageLRU(page)); 8168d438f96SNick Piggin SetPageLRU(page); 8171da177e4SLinus Torvalds BUG_ON(!PageActive(page)); 8181da177e4SLinus Torvalds list_move(&page->lru, &zone->active_list); 8191da177e4SLinus Torvalds pgmoved++; 8201da177e4SLinus Torvalds if (!pagevec_add(&pvec, page)) { 8211da177e4SLinus Torvalds zone->nr_active += pgmoved; 8221da177e4SLinus Torvalds pgmoved = 0; 8231da177e4SLinus Torvalds spin_unlock_irq(&zone->lru_lock); 8241da177e4SLinus Torvalds __pagevec_release(&pvec); 8251da177e4SLinus Torvalds spin_lock_irq(&zone->lru_lock); 8261da177e4SLinus Torvalds } 8271da177e4SLinus Torvalds } 8281da177e4SLinus Torvalds zone->nr_active += pgmoved; 829a74609faSNick Piggin spin_unlock(&zone->lru_lock); 8301da177e4SLinus Torvalds 831a74609faSNick Piggin __mod_page_state_zone(zone, pgrefill, pgscanned); 832a74609faSNick Piggin __mod_page_state(pgdeactivate, pgdeactivate); 833a74609faSNick Piggin local_irq_enable(); 834a74609faSNick Piggin 835a74609faSNick Piggin pagevec_release(&pvec); 8361da177e4SLinus Torvalds } 8371da177e4SLinus Torvalds 8381da177e4SLinus Torvalds /* 8391da177e4SLinus Torvalds * This is a basic per-zone page freer. Used by both kswapd and direct reclaim. 8401da177e4SLinus Torvalds */ 84105ff5137SAndrew Morton static unsigned long shrink_zone(int priority, struct zone *zone, 84269e05944SAndrew Morton struct scan_control *sc) 8431da177e4SLinus Torvalds { 8441da177e4SLinus Torvalds unsigned long nr_active; 8451da177e4SLinus Torvalds unsigned long nr_inactive; 8468695949aSChristoph Lameter unsigned long nr_to_scan; 84705ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 8481da177e4SLinus Torvalds 84953e9a615SMartin Hicks atomic_inc(&zone->reclaim_in_progress); 85053e9a615SMartin Hicks 8511da177e4SLinus Torvalds /* 8521da177e4SLinus Torvalds * Add one to `nr_to_scan' just to make sure that the kernel will 8531da177e4SLinus Torvalds * slowly sift through the active list. 8541da177e4SLinus Torvalds */ 8558695949aSChristoph Lameter zone->nr_scan_active += (zone->nr_active >> priority) + 1; 8561da177e4SLinus Torvalds nr_active = zone->nr_scan_active; 8571da177e4SLinus Torvalds if (nr_active >= sc->swap_cluster_max) 8581da177e4SLinus Torvalds zone->nr_scan_active = 0; 8591da177e4SLinus Torvalds else 8601da177e4SLinus Torvalds nr_active = 0; 8611da177e4SLinus Torvalds 8628695949aSChristoph Lameter zone->nr_scan_inactive += (zone->nr_inactive >> priority) + 1; 8631da177e4SLinus Torvalds nr_inactive = zone->nr_scan_inactive; 8641da177e4SLinus Torvalds if (nr_inactive >= sc->swap_cluster_max) 8651da177e4SLinus Torvalds zone->nr_scan_inactive = 0; 8661da177e4SLinus Torvalds else 8671da177e4SLinus Torvalds nr_inactive = 0; 8681da177e4SLinus Torvalds 8691da177e4SLinus Torvalds while (nr_active || nr_inactive) { 8701da177e4SLinus Torvalds if (nr_active) { 8718695949aSChristoph Lameter nr_to_scan = min(nr_active, 8721da177e4SLinus Torvalds (unsigned long)sc->swap_cluster_max); 8738695949aSChristoph Lameter nr_active -= nr_to_scan; 8741742f19fSAndrew Morton shrink_active_list(nr_to_scan, zone, sc); 8751da177e4SLinus Torvalds } 8761da177e4SLinus Torvalds 8771da177e4SLinus Torvalds if (nr_inactive) { 8788695949aSChristoph Lameter nr_to_scan = min(nr_inactive, 8791da177e4SLinus Torvalds (unsigned long)sc->swap_cluster_max); 8808695949aSChristoph Lameter nr_inactive -= nr_to_scan; 8811742f19fSAndrew Morton nr_reclaimed += shrink_inactive_list(nr_to_scan, zone, 8821742f19fSAndrew Morton sc); 8831da177e4SLinus Torvalds } 8841da177e4SLinus Torvalds } 8851da177e4SLinus Torvalds 8861da177e4SLinus Torvalds throttle_vm_writeout(); 88753e9a615SMartin Hicks 88853e9a615SMartin Hicks atomic_dec(&zone->reclaim_in_progress); 88905ff5137SAndrew Morton return nr_reclaimed; 8901da177e4SLinus Torvalds } 8911da177e4SLinus Torvalds 8921da177e4SLinus Torvalds /* 8931da177e4SLinus Torvalds * This is the direct reclaim path, for page-allocating processes. We only 8941da177e4SLinus Torvalds * try to reclaim pages from zones which will satisfy the caller's allocation 8951da177e4SLinus Torvalds * request. 8961da177e4SLinus Torvalds * 8971da177e4SLinus Torvalds * We reclaim from a zone even if that zone is over pages_high. Because: 8981da177e4SLinus Torvalds * a) The caller may be trying to free *extra* pages to satisfy a higher-order 8991da177e4SLinus Torvalds * allocation or 9001da177e4SLinus Torvalds * b) The zones may be over pages_high but they must go *over* pages_high to 9011da177e4SLinus Torvalds * satisfy the `incremental min' zone defense algorithm. 9021da177e4SLinus Torvalds * 9031da177e4SLinus Torvalds * Returns the number of reclaimed pages. 9041da177e4SLinus Torvalds * 9051da177e4SLinus Torvalds * If a zone is deemed to be full of pinned pages then just give it a light 9061da177e4SLinus Torvalds * scan then give up on it. 9071da177e4SLinus Torvalds */ 9081742f19fSAndrew Morton static unsigned long shrink_zones(int priority, struct zone **zones, 90969e05944SAndrew Morton struct scan_control *sc) 9101da177e4SLinus Torvalds { 91105ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 9121da177e4SLinus Torvalds int i; 9131da177e4SLinus Torvalds 9141da177e4SLinus Torvalds for (i = 0; zones[i] != NULL; i++) { 9151da177e4SLinus Torvalds struct zone *zone = zones[i]; 9161da177e4SLinus Torvalds 917f3fe6512SCon Kolivas if (!populated_zone(zone)) 9181da177e4SLinus Torvalds continue; 9191da177e4SLinus Torvalds 9209bf2229fSPaul Jackson if (!cpuset_zone_allowed(zone, __GFP_HARDWALL)) 9211da177e4SLinus Torvalds continue; 9221da177e4SLinus Torvalds 9238695949aSChristoph Lameter zone->temp_priority = priority; 9248695949aSChristoph Lameter if (zone->prev_priority > priority) 9258695949aSChristoph Lameter zone->prev_priority = priority; 9261da177e4SLinus Torvalds 9278695949aSChristoph Lameter if (zone->all_unreclaimable && priority != DEF_PRIORITY) 9281da177e4SLinus Torvalds continue; /* Let kswapd poll it */ 9291da177e4SLinus Torvalds 93005ff5137SAndrew Morton nr_reclaimed += shrink_zone(priority, zone, sc); 9311da177e4SLinus Torvalds } 93205ff5137SAndrew Morton return nr_reclaimed; 9331da177e4SLinus Torvalds } 9341da177e4SLinus Torvalds 9351da177e4SLinus Torvalds /* 9361da177e4SLinus Torvalds * This is the main entry point to direct page reclaim. 9371da177e4SLinus Torvalds * 9381da177e4SLinus Torvalds * If a full scan of the inactive list fails to free enough memory then we 9391da177e4SLinus Torvalds * are "out of memory" and something needs to be killed. 9401da177e4SLinus Torvalds * 9411da177e4SLinus Torvalds * If the caller is !__GFP_FS then the probability of a failure is reasonably 9421da177e4SLinus Torvalds * high - the zone may be full of dirty or under-writeback pages, which this 9431da177e4SLinus Torvalds * caller can't do much about. We kick pdflush and take explicit naps in the 9441da177e4SLinus Torvalds * hope that some of these pages can be written. But if the allocating task 9451da177e4SLinus Torvalds * holds filesystem locks which prevent writeout this might not work, and the 9461da177e4SLinus Torvalds * allocation attempt will fail. 9471da177e4SLinus Torvalds */ 94869e05944SAndrew Morton unsigned long try_to_free_pages(struct zone **zones, gfp_t gfp_mask) 9491da177e4SLinus Torvalds { 9501da177e4SLinus Torvalds int priority; 9511da177e4SLinus Torvalds int ret = 0; 95269e05944SAndrew Morton unsigned long total_scanned = 0; 95305ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 9541da177e4SLinus Torvalds struct reclaim_state *reclaim_state = current->reclaim_state; 9551da177e4SLinus Torvalds unsigned long lru_pages = 0; 9561da177e4SLinus Torvalds int i; 957179e9639SAndrew Morton struct scan_control sc = { 958179e9639SAndrew Morton .gfp_mask = gfp_mask, 959179e9639SAndrew Morton .may_writepage = !laptop_mode, 960179e9639SAndrew Morton .swap_cluster_max = SWAP_CLUSTER_MAX, 961179e9639SAndrew Morton .may_swap = 1, 962*d6277db4SRafael J. Wysocki .swappiness = vm_swappiness, 963179e9639SAndrew Morton }; 9641da177e4SLinus Torvalds 9651da177e4SLinus Torvalds inc_page_state(allocstall); 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds for (i = 0; zones[i] != NULL; i++) { 9681da177e4SLinus Torvalds struct zone *zone = zones[i]; 9691da177e4SLinus Torvalds 9709bf2229fSPaul Jackson if (!cpuset_zone_allowed(zone, __GFP_HARDWALL)) 9711da177e4SLinus Torvalds continue; 9721da177e4SLinus Torvalds 9731da177e4SLinus Torvalds zone->temp_priority = DEF_PRIORITY; 9741da177e4SLinus Torvalds lru_pages += zone->nr_active + zone->nr_inactive; 9751da177e4SLinus Torvalds } 9761da177e4SLinus Torvalds 9771da177e4SLinus Torvalds for (priority = DEF_PRIORITY; priority >= 0; priority--) { 9781da177e4SLinus Torvalds sc.nr_mapped = read_page_state(nr_mapped); 9791da177e4SLinus Torvalds sc.nr_scanned = 0; 980f7b7fd8fSRik van Riel if (!priority) 981f7b7fd8fSRik van Riel disable_swap_token(); 9821742f19fSAndrew Morton nr_reclaimed += shrink_zones(priority, zones, &sc); 9831da177e4SLinus Torvalds shrink_slab(sc.nr_scanned, gfp_mask, lru_pages); 9841da177e4SLinus Torvalds if (reclaim_state) { 98505ff5137SAndrew Morton nr_reclaimed += reclaim_state->reclaimed_slab; 9861da177e4SLinus Torvalds reclaim_state->reclaimed_slab = 0; 9871da177e4SLinus Torvalds } 9881da177e4SLinus Torvalds total_scanned += sc.nr_scanned; 98905ff5137SAndrew Morton if (nr_reclaimed >= sc.swap_cluster_max) { 9901da177e4SLinus Torvalds ret = 1; 9911da177e4SLinus Torvalds goto out; 9921da177e4SLinus Torvalds } 9931da177e4SLinus Torvalds 9941da177e4SLinus Torvalds /* 9951da177e4SLinus Torvalds * Try to write back as many pages as we just scanned. This 9961da177e4SLinus Torvalds * tends to cause slow streaming writers to write data to the 9971da177e4SLinus Torvalds * disk smoothly, at the dirtying rate, which is nice. But 9981da177e4SLinus Torvalds * that's undesirable in laptop mode, where we *want* lumpy 9991da177e4SLinus Torvalds * writeout. So in laptop mode, write out the whole world. 10001da177e4SLinus Torvalds */ 1001179e9639SAndrew Morton if (total_scanned > sc.swap_cluster_max + 1002179e9639SAndrew Morton sc.swap_cluster_max / 2) { 1003687a21ceSPekka J Enberg wakeup_pdflush(laptop_mode ? 0 : total_scanned); 10041da177e4SLinus Torvalds sc.may_writepage = 1; 10051da177e4SLinus Torvalds } 10061da177e4SLinus Torvalds 10071da177e4SLinus Torvalds /* Take a nap, wait for some writeback to complete */ 10081da177e4SLinus Torvalds if (sc.nr_scanned && priority < DEF_PRIORITY - 2) 10091da177e4SLinus Torvalds blk_congestion_wait(WRITE, HZ/10); 10101da177e4SLinus Torvalds } 10111da177e4SLinus Torvalds out: 10121da177e4SLinus Torvalds for (i = 0; zones[i] != 0; i++) { 10131da177e4SLinus Torvalds struct zone *zone = zones[i]; 10141da177e4SLinus Torvalds 10159bf2229fSPaul Jackson if (!cpuset_zone_allowed(zone, __GFP_HARDWALL)) 10161da177e4SLinus Torvalds continue; 10171da177e4SLinus Torvalds 10181da177e4SLinus Torvalds zone->prev_priority = zone->temp_priority; 10191da177e4SLinus Torvalds } 10201da177e4SLinus Torvalds return ret; 10211da177e4SLinus Torvalds } 10221da177e4SLinus Torvalds 10231da177e4SLinus Torvalds /* 10241da177e4SLinus Torvalds * For kswapd, balance_pgdat() will work across all this node's zones until 10251da177e4SLinus Torvalds * they are all at pages_high. 10261da177e4SLinus Torvalds * 10271da177e4SLinus Torvalds * Returns the number of pages which were actually freed. 10281da177e4SLinus Torvalds * 10291da177e4SLinus Torvalds * There is special handling here for zones which are full of pinned pages. 10301da177e4SLinus Torvalds * This can happen if the pages are all mlocked, or if they are all used by 10311da177e4SLinus Torvalds * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb. 10321da177e4SLinus Torvalds * What we do is to detect the case where all pages in the zone have been 10331da177e4SLinus Torvalds * scanned twice and there has been zero successful reclaim. Mark the zone as 10341da177e4SLinus Torvalds * dead and from now on, only perform a short scan. Basically we're polling 10351da177e4SLinus Torvalds * the zone for when the problem goes away. 10361da177e4SLinus Torvalds * 10371da177e4SLinus Torvalds * kswapd scans the zones in the highmem->normal->dma direction. It skips 10381da177e4SLinus Torvalds * zones which have free_pages > pages_high, but once a zone is found to have 10391da177e4SLinus Torvalds * free_pages <= pages_high, we scan that zone and the lower zones regardless 10401da177e4SLinus Torvalds * of the number of free pages in the lower zones. This interoperates with 10411da177e4SLinus Torvalds * the page allocator fallback scheme to ensure that aging of pages is balanced 10421da177e4SLinus Torvalds * across the zones. 10431da177e4SLinus Torvalds */ 1044*d6277db4SRafael J. Wysocki static unsigned long balance_pgdat(pg_data_t *pgdat, int order) 10451da177e4SLinus Torvalds { 10461da177e4SLinus Torvalds int all_zones_ok; 10471da177e4SLinus Torvalds int priority; 10481da177e4SLinus Torvalds int i; 104969e05944SAndrew Morton unsigned long total_scanned; 105005ff5137SAndrew Morton unsigned long nr_reclaimed; 10511da177e4SLinus Torvalds struct reclaim_state *reclaim_state = current->reclaim_state; 1052179e9639SAndrew Morton struct scan_control sc = { 1053179e9639SAndrew Morton .gfp_mask = GFP_KERNEL, 1054179e9639SAndrew Morton .may_swap = 1, 1055*d6277db4SRafael J. Wysocki .swap_cluster_max = SWAP_CLUSTER_MAX, 1056*d6277db4SRafael J. Wysocki .swappiness = vm_swappiness, 1057179e9639SAndrew Morton }; 10581da177e4SLinus Torvalds 10591da177e4SLinus Torvalds loop_again: 10601da177e4SLinus Torvalds total_scanned = 0; 106105ff5137SAndrew Morton nr_reclaimed = 0; 1062c0bbbc73SChristoph Lameter sc.may_writepage = !laptop_mode; 10631da177e4SLinus Torvalds sc.nr_mapped = read_page_state(nr_mapped); 10641da177e4SLinus Torvalds 10651da177e4SLinus Torvalds inc_page_state(pageoutrun); 10661da177e4SLinus Torvalds 10671da177e4SLinus Torvalds for (i = 0; i < pgdat->nr_zones; i++) { 10681da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 10691da177e4SLinus Torvalds 10701da177e4SLinus Torvalds zone->temp_priority = DEF_PRIORITY; 10711da177e4SLinus Torvalds } 10721da177e4SLinus Torvalds 10731da177e4SLinus Torvalds for (priority = DEF_PRIORITY; priority >= 0; priority--) { 10741da177e4SLinus Torvalds int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */ 10751da177e4SLinus Torvalds unsigned long lru_pages = 0; 10761da177e4SLinus Torvalds 1077f7b7fd8fSRik van Riel /* The swap token gets in the way of swapout... */ 1078f7b7fd8fSRik van Riel if (!priority) 1079f7b7fd8fSRik van Riel disable_swap_token(); 1080f7b7fd8fSRik van Riel 10811da177e4SLinus Torvalds all_zones_ok = 1; 10821da177e4SLinus Torvalds 10831da177e4SLinus Torvalds /* 10841da177e4SLinus Torvalds * Scan in the highmem->dma direction for the highest 10851da177e4SLinus Torvalds * zone which needs scanning 10861da177e4SLinus Torvalds */ 10871da177e4SLinus Torvalds for (i = pgdat->nr_zones - 1; i >= 0; i--) { 10881da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 10891da177e4SLinus Torvalds 1090f3fe6512SCon Kolivas if (!populated_zone(zone)) 10911da177e4SLinus Torvalds continue; 10921da177e4SLinus Torvalds 1093*d6277db4SRafael J. Wysocki if (zone->all_unreclaimable && priority != DEF_PRIORITY) 10941da177e4SLinus Torvalds continue; 10951da177e4SLinus Torvalds 1096*d6277db4SRafael J. Wysocki if (!zone_watermark_ok(zone, order, zone->pages_high, 1097*d6277db4SRafael J. Wysocki 0, 0)) { 10981da177e4SLinus Torvalds end_zone = i; 10991da177e4SLinus Torvalds goto scan; 11001da177e4SLinus Torvalds } 11011da177e4SLinus Torvalds } 11021da177e4SLinus Torvalds goto out; 11031da177e4SLinus Torvalds scan: 11041da177e4SLinus Torvalds for (i = 0; i <= end_zone; i++) { 11051da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 11061da177e4SLinus Torvalds 11071da177e4SLinus Torvalds lru_pages += zone->nr_active + zone->nr_inactive; 11081da177e4SLinus Torvalds } 11091da177e4SLinus Torvalds 11101da177e4SLinus Torvalds /* 11111da177e4SLinus Torvalds * Now scan the zone in the dma->highmem direction, stopping 11121da177e4SLinus Torvalds * at the last zone which needs scanning. 11131da177e4SLinus Torvalds * 11141da177e4SLinus Torvalds * We do this because the page allocator works in the opposite 11151da177e4SLinus Torvalds * direction. This prevents the page allocator from allocating 11161da177e4SLinus Torvalds * pages behind kswapd's direction of progress, which would 11171da177e4SLinus Torvalds * cause too much scanning of the lower zones. 11181da177e4SLinus Torvalds */ 11191da177e4SLinus Torvalds for (i = 0; i <= end_zone; i++) { 11201da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 1121b15e0905Sakpm@osdl.org int nr_slab; 11221da177e4SLinus Torvalds 1123f3fe6512SCon Kolivas if (!populated_zone(zone)) 11241da177e4SLinus Torvalds continue; 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds if (zone->all_unreclaimable && priority != DEF_PRIORITY) 11271da177e4SLinus Torvalds continue; 11281da177e4SLinus Torvalds 1129*d6277db4SRafael J. Wysocki if (!zone_watermark_ok(zone, order, zone->pages_high, 1130*d6277db4SRafael J. Wysocki end_zone, 0)) 11311da177e4SLinus Torvalds all_zones_ok = 0; 11321da177e4SLinus Torvalds zone->temp_priority = priority; 11331da177e4SLinus Torvalds if (zone->prev_priority > priority) 11341da177e4SLinus Torvalds zone->prev_priority = priority; 11351da177e4SLinus Torvalds sc.nr_scanned = 0; 113605ff5137SAndrew Morton nr_reclaimed += shrink_zone(priority, zone, &sc); 11371da177e4SLinus Torvalds reclaim_state->reclaimed_slab = 0; 1138b15e0905Sakpm@osdl.org nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL, 1139b15e0905Sakpm@osdl.org lru_pages); 114005ff5137SAndrew Morton nr_reclaimed += reclaim_state->reclaimed_slab; 11411da177e4SLinus Torvalds total_scanned += sc.nr_scanned; 11421da177e4SLinus Torvalds if (zone->all_unreclaimable) 11431da177e4SLinus Torvalds continue; 1144b15e0905Sakpm@osdl.org if (nr_slab == 0 && zone->pages_scanned >= 1145b15e0905Sakpm@osdl.org (zone->nr_active + zone->nr_inactive) * 4) 11461da177e4SLinus Torvalds zone->all_unreclaimable = 1; 11471da177e4SLinus Torvalds /* 11481da177e4SLinus Torvalds * If we've done a decent amount of scanning and 11491da177e4SLinus Torvalds * the reclaim ratio is low, start doing writepage 11501da177e4SLinus Torvalds * even in laptop mode 11511da177e4SLinus Torvalds */ 11521da177e4SLinus Torvalds if (total_scanned > SWAP_CLUSTER_MAX * 2 && 115305ff5137SAndrew Morton total_scanned > nr_reclaimed + nr_reclaimed / 2) 11541da177e4SLinus Torvalds sc.may_writepage = 1; 11551da177e4SLinus Torvalds } 11561da177e4SLinus Torvalds if (all_zones_ok) 11571da177e4SLinus Torvalds break; /* kswapd: all done */ 11581da177e4SLinus Torvalds /* 11591da177e4SLinus Torvalds * OK, kswapd is getting into trouble. Take a nap, then take 11601da177e4SLinus Torvalds * another pass across the zones. 11611da177e4SLinus Torvalds */ 11621da177e4SLinus Torvalds if (total_scanned && priority < DEF_PRIORITY - 2) 11631da177e4SLinus Torvalds blk_congestion_wait(WRITE, HZ/10); 11641da177e4SLinus Torvalds 11651da177e4SLinus Torvalds /* 11661da177e4SLinus Torvalds * We do this so kswapd doesn't build up large priorities for 11671da177e4SLinus Torvalds * example when it is freeing in parallel with allocators. It 11681da177e4SLinus Torvalds * matches the direct reclaim path behaviour in terms of impact 11691da177e4SLinus Torvalds * on zone->*_priority. 11701da177e4SLinus Torvalds */ 1171*d6277db4SRafael J. Wysocki if (nr_reclaimed >= SWAP_CLUSTER_MAX) 11721da177e4SLinus Torvalds break; 11731da177e4SLinus Torvalds } 11741da177e4SLinus Torvalds out: 11751da177e4SLinus Torvalds for (i = 0; i < pgdat->nr_zones; i++) { 11761da177e4SLinus Torvalds struct zone *zone = pgdat->node_zones + i; 11771da177e4SLinus Torvalds 11781da177e4SLinus Torvalds zone->prev_priority = zone->temp_priority; 11791da177e4SLinus Torvalds } 11801da177e4SLinus Torvalds if (!all_zones_ok) { 11811da177e4SLinus Torvalds cond_resched(); 11821da177e4SLinus Torvalds goto loop_again; 11831da177e4SLinus Torvalds } 11841da177e4SLinus Torvalds 118505ff5137SAndrew Morton return nr_reclaimed; 11861da177e4SLinus Torvalds } 11871da177e4SLinus Torvalds 11881da177e4SLinus Torvalds /* 11891da177e4SLinus Torvalds * The background pageout daemon, started as a kernel thread 11901da177e4SLinus Torvalds * from the init process. 11911da177e4SLinus Torvalds * 11921da177e4SLinus Torvalds * This basically trickles out pages so that we have _some_ 11931da177e4SLinus Torvalds * free memory available even if there is no other activity 11941da177e4SLinus Torvalds * that frees anything up. This is needed for things like routing 11951da177e4SLinus Torvalds * etc, where we otherwise might have all activity going on in 11961da177e4SLinus Torvalds * asynchronous contexts that cannot page things out. 11971da177e4SLinus Torvalds * 11981da177e4SLinus Torvalds * If there are applications that are active memory-allocators 11991da177e4SLinus Torvalds * (most normal use), this basically shouldn't matter. 12001da177e4SLinus Torvalds */ 12011da177e4SLinus Torvalds static int kswapd(void *p) 12021da177e4SLinus Torvalds { 12031da177e4SLinus Torvalds unsigned long order; 12041da177e4SLinus Torvalds pg_data_t *pgdat = (pg_data_t*)p; 12051da177e4SLinus Torvalds struct task_struct *tsk = current; 12061da177e4SLinus Torvalds DEFINE_WAIT(wait); 12071da177e4SLinus Torvalds struct reclaim_state reclaim_state = { 12081da177e4SLinus Torvalds .reclaimed_slab = 0, 12091da177e4SLinus Torvalds }; 12101da177e4SLinus Torvalds cpumask_t cpumask; 12111da177e4SLinus Torvalds 12121da177e4SLinus Torvalds daemonize("kswapd%d", pgdat->node_id); 12131da177e4SLinus Torvalds cpumask = node_to_cpumask(pgdat->node_id); 12141da177e4SLinus Torvalds if (!cpus_empty(cpumask)) 12151da177e4SLinus Torvalds set_cpus_allowed(tsk, cpumask); 12161da177e4SLinus Torvalds current->reclaim_state = &reclaim_state; 12171da177e4SLinus Torvalds 12181da177e4SLinus Torvalds /* 12191da177e4SLinus Torvalds * Tell the memory management that we're a "memory allocator", 12201da177e4SLinus Torvalds * and that if we need more memory we should get access to it 12211da177e4SLinus Torvalds * regardless (see "__alloc_pages()"). "kswapd" should 12221da177e4SLinus Torvalds * never get caught in the normal page freeing logic. 12231da177e4SLinus Torvalds * 12241da177e4SLinus Torvalds * (Kswapd normally doesn't need memory anyway, but sometimes 12251da177e4SLinus Torvalds * you need a small amount of memory in order to be able to 12261da177e4SLinus Torvalds * page out something else, and this flag essentially protects 12271da177e4SLinus Torvalds * us from recursively trying to free more memory as we're 12281da177e4SLinus Torvalds * trying to free the first piece of memory in the first place). 12291da177e4SLinus Torvalds */ 1230930d9152SChristoph Lameter tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD; 12311da177e4SLinus Torvalds 12321da177e4SLinus Torvalds order = 0; 12331da177e4SLinus Torvalds for ( ; ; ) { 12341da177e4SLinus Torvalds unsigned long new_order; 12353e1d1d28SChristoph Lameter 12363e1d1d28SChristoph Lameter try_to_freeze(); 12371da177e4SLinus Torvalds 12381da177e4SLinus Torvalds prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE); 12391da177e4SLinus Torvalds new_order = pgdat->kswapd_max_order; 12401da177e4SLinus Torvalds pgdat->kswapd_max_order = 0; 12411da177e4SLinus Torvalds if (order < new_order) { 12421da177e4SLinus Torvalds /* 12431da177e4SLinus Torvalds * Don't sleep if someone wants a larger 'order' 12441da177e4SLinus Torvalds * allocation 12451da177e4SLinus Torvalds */ 12461da177e4SLinus Torvalds order = new_order; 12471da177e4SLinus Torvalds } else { 12481da177e4SLinus Torvalds schedule(); 12491da177e4SLinus Torvalds order = pgdat->kswapd_max_order; 12501da177e4SLinus Torvalds } 12511da177e4SLinus Torvalds finish_wait(&pgdat->kswapd_wait, &wait); 12521da177e4SLinus Torvalds 1253*d6277db4SRafael J. Wysocki balance_pgdat(pgdat, order); 12541da177e4SLinus Torvalds } 12551da177e4SLinus Torvalds return 0; 12561da177e4SLinus Torvalds } 12571da177e4SLinus Torvalds 12581da177e4SLinus Torvalds /* 12591da177e4SLinus Torvalds * A zone is low on free memory, so wake its kswapd task to service it. 12601da177e4SLinus Torvalds */ 12611da177e4SLinus Torvalds void wakeup_kswapd(struct zone *zone, int order) 12621da177e4SLinus Torvalds { 12631da177e4SLinus Torvalds pg_data_t *pgdat; 12641da177e4SLinus Torvalds 1265f3fe6512SCon Kolivas if (!populated_zone(zone)) 12661da177e4SLinus Torvalds return; 12671da177e4SLinus Torvalds 12681da177e4SLinus Torvalds pgdat = zone->zone_pgdat; 12697fb1d9fcSRohit Seth if (zone_watermark_ok(zone, order, zone->pages_low, 0, 0)) 12701da177e4SLinus Torvalds return; 12711da177e4SLinus Torvalds if (pgdat->kswapd_max_order < order) 12721da177e4SLinus Torvalds pgdat->kswapd_max_order = order; 12739bf2229fSPaul Jackson if (!cpuset_zone_allowed(zone, __GFP_HARDWALL)) 12741da177e4SLinus Torvalds return; 12758d0986e2SCon Kolivas if (!waitqueue_active(&pgdat->kswapd_wait)) 12761da177e4SLinus Torvalds return; 12778d0986e2SCon Kolivas wake_up_interruptible(&pgdat->kswapd_wait); 12781da177e4SLinus Torvalds } 12791da177e4SLinus Torvalds 12801da177e4SLinus Torvalds #ifdef CONFIG_PM 12811da177e4SLinus Torvalds /* 1282*d6277db4SRafael J. Wysocki * Helper function for shrink_all_memory(). Tries to reclaim 'nr_pages' pages 1283*d6277db4SRafael J. Wysocki * from LRU lists system-wide, for given pass and priority, and returns the 1284*d6277db4SRafael J. Wysocki * number of reclaimed pages 1285*d6277db4SRafael J. Wysocki * 1286*d6277db4SRafael J. Wysocki * For pass > 3 we also try to shrink the LRU lists that contain a few pages 1287*d6277db4SRafael J. Wysocki */ 1288*d6277db4SRafael J. Wysocki static unsigned long shrink_all_zones(unsigned long nr_pages, int pass, 1289*d6277db4SRafael J. Wysocki int prio, struct scan_control *sc) 1290*d6277db4SRafael J. Wysocki { 1291*d6277db4SRafael J. Wysocki struct zone *zone; 1292*d6277db4SRafael J. Wysocki unsigned long nr_to_scan, ret = 0; 1293*d6277db4SRafael J. Wysocki 1294*d6277db4SRafael J. Wysocki for_each_zone(zone) { 1295*d6277db4SRafael J. Wysocki 1296*d6277db4SRafael J. Wysocki if (!populated_zone(zone)) 1297*d6277db4SRafael J. Wysocki continue; 1298*d6277db4SRafael J. Wysocki 1299*d6277db4SRafael J. Wysocki if (zone->all_unreclaimable && prio != DEF_PRIORITY) 1300*d6277db4SRafael J. Wysocki continue; 1301*d6277db4SRafael J. Wysocki 1302*d6277db4SRafael J. Wysocki /* For pass = 0 we don't shrink the active list */ 1303*d6277db4SRafael J. Wysocki if (pass > 0) { 1304*d6277db4SRafael J. Wysocki zone->nr_scan_active += (zone->nr_active >> prio) + 1; 1305*d6277db4SRafael J. Wysocki if (zone->nr_scan_active >= nr_pages || pass > 3) { 1306*d6277db4SRafael J. Wysocki zone->nr_scan_active = 0; 1307*d6277db4SRafael J. Wysocki nr_to_scan = min(nr_pages, zone->nr_active); 1308*d6277db4SRafael J. Wysocki shrink_active_list(nr_to_scan, zone, sc); 1309*d6277db4SRafael J. Wysocki } 1310*d6277db4SRafael J. Wysocki } 1311*d6277db4SRafael J. Wysocki 1312*d6277db4SRafael J. Wysocki zone->nr_scan_inactive += (zone->nr_inactive >> prio) + 1; 1313*d6277db4SRafael J. Wysocki if (zone->nr_scan_inactive >= nr_pages || pass > 3) { 1314*d6277db4SRafael J. Wysocki zone->nr_scan_inactive = 0; 1315*d6277db4SRafael J. Wysocki nr_to_scan = min(nr_pages, zone->nr_inactive); 1316*d6277db4SRafael J. Wysocki ret += shrink_inactive_list(nr_to_scan, zone, sc); 1317*d6277db4SRafael J. Wysocki if (ret >= nr_pages) 1318*d6277db4SRafael J. Wysocki return ret; 1319*d6277db4SRafael J. Wysocki } 1320*d6277db4SRafael J. Wysocki } 1321*d6277db4SRafael J. Wysocki 1322*d6277db4SRafael J. Wysocki return ret; 1323*d6277db4SRafael J. Wysocki } 1324*d6277db4SRafael J. Wysocki 1325*d6277db4SRafael J. Wysocki /* 1326*d6277db4SRafael J. Wysocki * Try to free `nr_pages' of memory, system-wide, and return the number of 1327*d6277db4SRafael J. Wysocki * freed pages. 1328*d6277db4SRafael J. Wysocki * 1329*d6277db4SRafael J. Wysocki * Rather than trying to age LRUs the aim is to preserve the overall 1330*d6277db4SRafael J. Wysocki * LRU order by reclaiming preferentially 1331*d6277db4SRafael J. Wysocki * inactive > active > active referenced > active mapped 13321da177e4SLinus Torvalds */ 133369e05944SAndrew Morton unsigned long shrink_all_memory(unsigned long nr_pages) 13341da177e4SLinus Torvalds { 1335*d6277db4SRafael J. Wysocki unsigned long lru_pages, nr_slab; 133669e05944SAndrew Morton unsigned long ret = 0; 1337*d6277db4SRafael J. Wysocki int pass; 1338*d6277db4SRafael J. Wysocki struct reclaim_state reclaim_state; 1339*d6277db4SRafael J. Wysocki struct zone *zone; 1340*d6277db4SRafael J. Wysocki struct scan_control sc = { 1341*d6277db4SRafael J. Wysocki .gfp_mask = GFP_KERNEL, 1342*d6277db4SRafael J. Wysocki .may_swap = 0, 1343*d6277db4SRafael J. Wysocki .swap_cluster_max = nr_pages, 1344*d6277db4SRafael J. Wysocki .may_writepage = 1, 1345*d6277db4SRafael J. Wysocki .swappiness = vm_swappiness, 13461da177e4SLinus Torvalds }; 13471da177e4SLinus Torvalds 13481da177e4SLinus Torvalds current->reclaim_state = &reclaim_state; 134969e05944SAndrew Morton 1350*d6277db4SRafael J. Wysocki lru_pages = 0; 1351*d6277db4SRafael J. Wysocki for_each_zone(zone) 1352*d6277db4SRafael J. Wysocki lru_pages += zone->nr_active + zone->nr_inactive; 1353*d6277db4SRafael J. Wysocki 1354*d6277db4SRafael J. Wysocki nr_slab = read_page_state(nr_slab); 1355*d6277db4SRafael J. Wysocki /* If slab caches are huge, it's better to hit them first */ 1356*d6277db4SRafael J. Wysocki while (nr_slab >= lru_pages) { 1357*d6277db4SRafael J. Wysocki reclaim_state.reclaimed_slab = 0; 1358*d6277db4SRafael J. Wysocki shrink_slab(nr_pages, sc.gfp_mask, lru_pages); 1359*d6277db4SRafael J. Wysocki if (!reclaim_state.reclaimed_slab) 13601da177e4SLinus Torvalds break; 1361*d6277db4SRafael J. Wysocki 1362*d6277db4SRafael J. Wysocki ret += reclaim_state.reclaimed_slab; 1363*d6277db4SRafael J. Wysocki if (ret >= nr_pages) 1364*d6277db4SRafael J. Wysocki goto out; 1365*d6277db4SRafael J. Wysocki 1366*d6277db4SRafael J. Wysocki nr_slab -= reclaim_state.reclaimed_slab; 13671da177e4SLinus Torvalds } 1368*d6277db4SRafael J. Wysocki 1369*d6277db4SRafael J. Wysocki /* 1370*d6277db4SRafael J. Wysocki * We try to shrink LRUs in 5 passes: 1371*d6277db4SRafael J. Wysocki * 0 = Reclaim from inactive_list only 1372*d6277db4SRafael J. Wysocki * 1 = Reclaim from active list but don't reclaim mapped 1373*d6277db4SRafael J. Wysocki * 2 = 2nd pass of type 1 1374*d6277db4SRafael J. Wysocki * 3 = Reclaim mapped (normal reclaim) 1375*d6277db4SRafael J. Wysocki * 4 = 2nd pass of type 3 1376*d6277db4SRafael J. Wysocki */ 1377*d6277db4SRafael J. Wysocki for (pass = 0; pass < 5; pass++) { 1378*d6277db4SRafael J. Wysocki int prio; 1379*d6277db4SRafael J. Wysocki 1380*d6277db4SRafael J. Wysocki /* Needed for shrinking slab caches later on */ 1381*d6277db4SRafael J. Wysocki if (!lru_pages) 1382*d6277db4SRafael J. Wysocki for_each_zone(zone) { 1383*d6277db4SRafael J. Wysocki lru_pages += zone->nr_active; 1384*d6277db4SRafael J. Wysocki lru_pages += zone->nr_inactive; 1385248a0301SRafael J. Wysocki } 1386*d6277db4SRafael J. Wysocki 1387*d6277db4SRafael J. Wysocki /* Force reclaiming mapped pages in the passes #3 and #4 */ 1388*d6277db4SRafael J. Wysocki if (pass > 2) { 1389*d6277db4SRafael J. Wysocki sc.may_swap = 1; 1390*d6277db4SRafael J. Wysocki sc.swappiness = 100; 1391*d6277db4SRafael J. Wysocki } 1392*d6277db4SRafael J. Wysocki 1393*d6277db4SRafael J. Wysocki for (prio = DEF_PRIORITY; prio >= 0; prio--) { 1394*d6277db4SRafael J. Wysocki unsigned long nr_to_scan = nr_pages - ret; 1395*d6277db4SRafael J. Wysocki 1396*d6277db4SRafael J. Wysocki sc.nr_mapped = read_page_state(nr_mapped); 1397*d6277db4SRafael J. Wysocki sc.nr_scanned = 0; 1398*d6277db4SRafael J. Wysocki 1399*d6277db4SRafael J. Wysocki ret += shrink_all_zones(nr_to_scan, prio, pass, &sc); 1400*d6277db4SRafael J. Wysocki if (ret >= nr_pages) 1401*d6277db4SRafael J. Wysocki goto out; 1402*d6277db4SRafael J. Wysocki 1403*d6277db4SRafael J. Wysocki reclaim_state.reclaimed_slab = 0; 1404*d6277db4SRafael J. Wysocki shrink_slab(sc.nr_scanned, sc.gfp_mask, lru_pages); 1405*d6277db4SRafael J. Wysocki ret += reclaim_state.reclaimed_slab; 1406*d6277db4SRafael J. Wysocki if (ret >= nr_pages) 1407*d6277db4SRafael J. Wysocki goto out; 1408*d6277db4SRafael J. Wysocki 1409*d6277db4SRafael J. Wysocki if (sc.nr_scanned && prio < DEF_PRIORITY - 2) 1410*d6277db4SRafael J. Wysocki blk_congestion_wait(WRITE, HZ / 10); 1411*d6277db4SRafael J. Wysocki } 1412*d6277db4SRafael J. Wysocki 1413*d6277db4SRafael J. Wysocki lru_pages = 0; 1414*d6277db4SRafael J. Wysocki } 1415*d6277db4SRafael J. Wysocki 1416*d6277db4SRafael J. Wysocki /* 1417*d6277db4SRafael J. Wysocki * If ret = 0, we could not shrink LRUs, but there may be something 1418*d6277db4SRafael J. Wysocki * in slab caches 1419*d6277db4SRafael J. Wysocki */ 1420*d6277db4SRafael J. Wysocki if (!ret) 1421*d6277db4SRafael J. Wysocki do { 1422*d6277db4SRafael J. Wysocki reclaim_state.reclaimed_slab = 0; 1423*d6277db4SRafael J. Wysocki shrink_slab(nr_pages, sc.gfp_mask, lru_pages); 1424*d6277db4SRafael J. Wysocki ret += reclaim_state.reclaimed_slab; 1425*d6277db4SRafael J. Wysocki } while (ret < nr_pages && reclaim_state.reclaimed_slab > 0); 1426*d6277db4SRafael J. Wysocki 1427*d6277db4SRafael J. Wysocki out: 14281da177e4SLinus Torvalds current->reclaim_state = NULL; 1429*d6277db4SRafael J. Wysocki 14301da177e4SLinus Torvalds return ret; 14311da177e4SLinus Torvalds } 14321da177e4SLinus Torvalds #endif 14331da177e4SLinus Torvalds 14341da177e4SLinus Torvalds #ifdef CONFIG_HOTPLUG_CPU 14351da177e4SLinus Torvalds /* It's optimal to keep kswapds on the same CPUs as their memory, but 14361da177e4SLinus Torvalds not required for correctness. So if the last cpu in a node goes 14371da177e4SLinus Torvalds away, we get changed to run anywhere: as the first one comes back, 14381da177e4SLinus Torvalds restore their cpu bindings. */ 143983d722f7SChandra Seetharaman static int cpu_callback(struct notifier_block *nfb, 144069e05944SAndrew Morton unsigned long action, void *hcpu) 14411da177e4SLinus Torvalds { 14421da177e4SLinus Torvalds pg_data_t *pgdat; 14431da177e4SLinus Torvalds cpumask_t mask; 14441da177e4SLinus Torvalds 14451da177e4SLinus Torvalds if (action == CPU_ONLINE) { 1446ec936fc5SKAMEZAWA Hiroyuki for_each_online_pgdat(pgdat) { 14471da177e4SLinus Torvalds mask = node_to_cpumask(pgdat->node_id); 14481da177e4SLinus Torvalds if (any_online_cpu(mask) != NR_CPUS) 14491da177e4SLinus Torvalds /* One of our CPUs online: restore mask */ 14501da177e4SLinus Torvalds set_cpus_allowed(pgdat->kswapd, mask); 14511da177e4SLinus Torvalds } 14521da177e4SLinus Torvalds } 14531da177e4SLinus Torvalds return NOTIFY_OK; 14541da177e4SLinus Torvalds } 14551da177e4SLinus Torvalds #endif /* CONFIG_HOTPLUG_CPU */ 14561da177e4SLinus Torvalds 14571da177e4SLinus Torvalds static int __init kswapd_init(void) 14581da177e4SLinus Torvalds { 14591da177e4SLinus Torvalds pg_data_t *pgdat; 146069e05944SAndrew Morton 14611da177e4SLinus Torvalds swap_setup(); 1462ec936fc5SKAMEZAWA Hiroyuki for_each_online_pgdat(pgdat) { 146369e05944SAndrew Morton pid_t pid; 146469e05944SAndrew Morton 146569e05944SAndrew Morton pid = kernel_thread(kswapd, pgdat, CLONE_KERNEL); 146669e05944SAndrew Morton BUG_ON(pid < 0); 146705eeae20SAndrew Morton read_lock(&tasklist_lock); 146869e05944SAndrew Morton pgdat->kswapd = find_task_by_pid(pid); 146905eeae20SAndrew Morton read_unlock(&tasklist_lock); 147069e05944SAndrew Morton } 14711da177e4SLinus Torvalds total_memory = nr_free_pagecache_pages(); 14721da177e4SLinus Torvalds hotcpu_notifier(cpu_callback, 0); 14731da177e4SLinus Torvalds return 0; 14741da177e4SLinus Torvalds } 14751da177e4SLinus Torvalds 14761da177e4SLinus Torvalds module_init(kswapd_init) 14779eeff239SChristoph Lameter 14789eeff239SChristoph Lameter #ifdef CONFIG_NUMA 14799eeff239SChristoph Lameter /* 14809eeff239SChristoph Lameter * Zone reclaim mode 14819eeff239SChristoph Lameter * 14829eeff239SChristoph Lameter * If non-zero call zone_reclaim when the number of free pages falls below 14839eeff239SChristoph Lameter * the watermarks. 14849eeff239SChristoph Lameter * 14859eeff239SChristoph Lameter * In the future we may add flags to the mode. However, the page allocator 14869eeff239SChristoph Lameter * should only have to check that zone_reclaim_mode != 0 before calling 14879eeff239SChristoph Lameter * zone_reclaim(). 14889eeff239SChristoph Lameter */ 14899eeff239SChristoph Lameter int zone_reclaim_mode __read_mostly; 14909eeff239SChristoph Lameter 14911b2ffb78SChristoph Lameter #define RECLAIM_OFF 0 14921b2ffb78SChristoph Lameter #define RECLAIM_ZONE (1<<0) /* Run shrink_cache on the zone */ 14931b2ffb78SChristoph Lameter #define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */ 14941b2ffb78SChristoph Lameter #define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */ 14952a16e3f4SChristoph Lameter #define RECLAIM_SLAB (1<<3) /* Do a global slab shrink if the zone is out of memory */ 14961b2ffb78SChristoph Lameter 14979eeff239SChristoph Lameter /* 14989eeff239SChristoph Lameter * Mininum time between zone reclaim scans 14999eeff239SChristoph Lameter */ 15002a11ff06SChristoph Lameter int zone_reclaim_interval __read_mostly = 30*HZ; 1501a92f7126SChristoph Lameter 1502a92f7126SChristoph Lameter /* 1503a92f7126SChristoph Lameter * Priority for ZONE_RECLAIM. This determines the fraction of pages 1504a92f7126SChristoph Lameter * of a node considered for each zone_reclaim. 4 scans 1/16th of 1505a92f7126SChristoph Lameter * a zone. 1506a92f7126SChristoph Lameter */ 1507a92f7126SChristoph Lameter #define ZONE_RECLAIM_PRIORITY 4 1508a92f7126SChristoph Lameter 15099eeff239SChristoph Lameter /* 15109eeff239SChristoph Lameter * Try to free up some pages from this zone through reclaim. 15119eeff239SChristoph Lameter */ 1512179e9639SAndrew Morton static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order) 15139eeff239SChristoph Lameter { 15147fb2d46dSChristoph Lameter /* Minimum pages needed in order to stay on node */ 151569e05944SAndrew Morton const unsigned long nr_pages = 1 << order; 15169eeff239SChristoph Lameter struct task_struct *p = current; 15179eeff239SChristoph Lameter struct reclaim_state reclaim_state; 15188695949aSChristoph Lameter int priority; 151905ff5137SAndrew Morton unsigned long nr_reclaimed = 0; 1520179e9639SAndrew Morton struct scan_control sc = { 1521179e9639SAndrew Morton .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE), 1522179e9639SAndrew Morton .may_swap = !!(zone_reclaim_mode & RECLAIM_SWAP), 1523179e9639SAndrew Morton .nr_mapped = read_page_state(nr_mapped), 152469e05944SAndrew Morton .swap_cluster_max = max_t(unsigned long, nr_pages, 152569e05944SAndrew Morton SWAP_CLUSTER_MAX), 1526179e9639SAndrew Morton .gfp_mask = gfp_mask, 1527*d6277db4SRafael J. Wysocki .swappiness = vm_swappiness, 1528179e9639SAndrew Morton }; 15299eeff239SChristoph Lameter 15309eeff239SChristoph Lameter disable_swap_token(); 15319eeff239SChristoph Lameter cond_resched(); 1532d4f7796eSChristoph Lameter /* 1533d4f7796eSChristoph Lameter * We need to be able to allocate from the reserves for RECLAIM_SWAP 1534d4f7796eSChristoph Lameter * and we also need to be able to write out pages for RECLAIM_WRITE 1535d4f7796eSChristoph Lameter * and RECLAIM_SWAP. 1536d4f7796eSChristoph Lameter */ 1537d4f7796eSChristoph Lameter p->flags |= PF_MEMALLOC | PF_SWAPWRITE; 15389eeff239SChristoph Lameter reclaim_state.reclaimed_slab = 0; 15399eeff239SChristoph Lameter p->reclaim_state = &reclaim_state; 1540c84db23cSChristoph Lameter 1541a92f7126SChristoph Lameter /* 1542a92f7126SChristoph Lameter * Free memory by calling shrink zone with increasing priorities 1543a92f7126SChristoph Lameter * until we have enough memory freed. 1544a92f7126SChristoph Lameter */ 15458695949aSChristoph Lameter priority = ZONE_RECLAIM_PRIORITY; 1546a92f7126SChristoph Lameter do { 154705ff5137SAndrew Morton nr_reclaimed += shrink_zone(priority, zone, &sc); 15488695949aSChristoph Lameter priority--; 154905ff5137SAndrew Morton } while (priority >= 0 && nr_reclaimed < nr_pages); 1550a92f7126SChristoph Lameter 155105ff5137SAndrew Morton if (nr_reclaimed < nr_pages && (zone_reclaim_mode & RECLAIM_SLAB)) { 15522a16e3f4SChristoph Lameter /* 15537fb2d46dSChristoph Lameter * shrink_slab() does not currently allow us to determine how 15547fb2d46dSChristoph Lameter * many pages were freed in this zone. So we just shake the slab 15557fb2d46dSChristoph Lameter * a bit and then go off node for this particular allocation 15567fb2d46dSChristoph Lameter * despite possibly having freed enough memory to allocate in 15577fb2d46dSChristoph Lameter * this zone. If we freed local memory then the next 15587fb2d46dSChristoph Lameter * allocations will be local again. 15592a16e3f4SChristoph Lameter * 15602a16e3f4SChristoph Lameter * shrink_slab will free memory on all zones and may take 15612a16e3f4SChristoph Lameter * a long time. 15622a16e3f4SChristoph Lameter */ 15632a16e3f4SChristoph Lameter shrink_slab(sc.nr_scanned, gfp_mask, order); 15642a16e3f4SChristoph Lameter } 15652a16e3f4SChristoph Lameter 15669eeff239SChristoph Lameter p->reclaim_state = NULL; 1567d4f7796eSChristoph Lameter current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE); 15689eeff239SChristoph Lameter 15697fb2d46dSChristoph Lameter if (nr_reclaimed == 0) { 15707fb2d46dSChristoph Lameter /* 15717fb2d46dSChristoph Lameter * We were unable to reclaim enough pages to stay on node. We 15727fb2d46dSChristoph Lameter * now allow off node accesses for a certain time period before 15737fb2d46dSChristoph Lameter * trying again to reclaim pages from the local zone. 15747fb2d46dSChristoph Lameter */ 15759eeff239SChristoph Lameter zone->last_unsuccessful_zone_reclaim = jiffies; 15767fb2d46dSChristoph Lameter } 15779eeff239SChristoph Lameter 157805ff5137SAndrew Morton return nr_reclaimed >= nr_pages; 15799eeff239SChristoph Lameter } 1580179e9639SAndrew Morton 1581179e9639SAndrew Morton int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order) 1582179e9639SAndrew Morton { 1583179e9639SAndrew Morton cpumask_t mask; 1584179e9639SAndrew Morton int node_id; 1585179e9639SAndrew Morton 1586179e9639SAndrew Morton /* 1587179e9639SAndrew Morton * Do not reclaim if there was a recent unsuccessful attempt at zone 1588179e9639SAndrew Morton * reclaim. In that case we let allocations go off node for the 1589179e9639SAndrew Morton * zone_reclaim_interval. Otherwise we would scan for each off-node 1590179e9639SAndrew Morton * page allocation. 1591179e9639SAndrew Morton */ 1592179e9639SAndrew Morton if (time_before(jiffies, 1593179e9639SAndrew Morton zone->last_unsuccessful_zone_reclaim + zone_reclaim_interval)) 1594179e9639SAndrew Morton return 0; 1595179e9639SAndrew Morton 1596179e9639SAndrew Morton /* 1597179e9639SAndrew Morton * Avoid concurrent zone reclaims, do not reclaim in a zone that does 1598179e9639SAndrew Morton * not have reclaimable pages and if we should not delay the allocation 1599179e9639SAndrew Morton * then do not scan. 1600179e9639SAndrew Morton */ 1601179e9639SAndrew Morton if (!(gfp_mask & __GFP_WAIT) || 1602179e9639SAndrew Morton zone->all_unreclaimable || 1603179e9639SAndrew Morton atomic_read(&zone->reclaim_in_progress) > 0 || 1604179e9639SAndrew Morton (current->flags & PF_MEMALLOC)) 1605179e9639SAndrew Morton return 0; 1606179e9639SAndrew Morton 1607179e9639SAndrew Morton /* 1608179e9639SAndrew Morton * Only run zone reclaim on the local zone or on zones that do not 1609179e9639SAndrew Morton * have associated processors. This will favor the local processor 1610179e9639SAndrew Morton * over remote processors and spread off node memory allocations 1611179e9639SAndrew Morton * as wide as possible. 1612179e9639SAndrew Morton */ 1613179e9639SAndrew Morton node_id = zone->zone_pgdat->node_id; 1614179e9639SAndrew Morton mask = node_to_cpumask(node_id); 1615179e9639SAndrew Morton if (!cpus_empty(mask) && node_id != numa_node_id()) 1616179e9639SAndrew Morton return 0; 1617179e9639SAndrew Morton return __zone_reclaim(zone, gfp_mask, order); 1618179e9639SAndrew Morton } 16199eeff239SChristoph Lameter #endif 1620