blob: 63bd521bb2297660a27c5abcedeaec59ba3f68c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/vmscan.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 *
6 * Swap reorganised 29.12.95, Stephen Tweedie.
7 * kswapd added: 7.1.96 sct
8 * Removed kswapd_ctl limits, and swap out as many pages as needed
9 * to bring the system back to freepages.high: 2.4.97, Rik van Riel.
10 * Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
11 * Multiqueue VM started 5.8.00, Rik van Riel.
12 */
13
14#include <linux/mm.h>
15#include <linux/module.h>
16#include <linux/slab.h>
17#include <linux/kernel_stat.h>
18#include <linux/swap.h>
19#include <linux/pagemap.h>
20#include <linux/init.h>
21#include <linux/highmem.h>
Andrew Mortone129b5c2006-09-27 01:50:00 -070022#include <linux/vmstat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/file.h>
24#include <linux/writeback.h>
25#include <linux/blkdev.h>
26#include <linux/buffer_head.h> /* for try_to_release_page(),
27 buffer_heads_over_limit */
28#include <linux/mm_inline.h>
29#include <linux/pagevec.h>
30#include <linux/backing-dev.h>
31#include <linux/rmap.h>
32#include <linux/topology.h>
33#include <linux/cpu.h>
34#include <linux/cpuset.h>
35#include <linux/notifier.h>
36#include <linux/rwsem.h>
Rafael J. Wysocki248a0302006-03-22 00:09:04 -080037#include <linux/delay.h>
Yasunori Goto3218ae12006-06-27 02:53:33 -070038#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080039#include <linux/freezer.h>
Balbir Singh66e17072008-02-07 00:13:56 -080040#include <linux/memcontrol.h>
Keika Kobayashi873b4772008-07-25 01:48:52 -070041#include <linux/delayacct.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070042#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/tlbflush.h>
45#include <asm/div64.h>
46
47#include <linux/swapops.h>
48
Nick Piggin0f8053a2006-03-22 00:08:33 -080049#include "internal.h"
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct scan_control {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 /* Incremented by the number of inactive pages that were scanned */
53 unsigned long nr_scanned;
54
Rik van Riela79311c2009-01-06 14:40:01 -080055 /* Number of pages freed so far during a call to shrink_zones() */
56 unsigned long nr_reclaimed;
57
KOSAKI Motohiro22fba332009-12-14 17:59:10 -080058 /* How many pages shrink_list() should reclaim */
59 unsigned long nr_to_reclaim;
60
KOSAKI Motohiro7b517552009-12-14 17:59:12 -080061 unsigned long hibernation_mode;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 /* This context's GFP mask */
Al Viro6daa0e22005-10-21 03:18:50 -040064 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 int may_writepage;
67
Johannes Weinera6dc60f2009-03-31 15:19:30 -070068 /* Can mapped pages be reclaimed? */
69 int may_unmap;
Christoph Lameterf1fd1062006-01-18 17:42:30 -080070
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -070071 /* Can pages be swapped as part of reclaim? */
72 int may_swap;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* This context's SWAP_CLUSTER_MAX. If freeing memory for
75 * suspend, we effectively ignore SWAP_CLUSTER_MAX.
76 * In this context, it doesn't matter that we scan the
77 * whole list at once. */
78 int swap_cluster_max;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -070079
80 int swappiness;
Nick Piggin408d8542006-09-25 23:31:27 -070081
82 int all_unreclaimable;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -070083
84 int order;
Balbir Singh66e17072008-02-07 00:13:56 -080085
86 /* Which cgroup do we reclaim from */
87 struct mem_cgroup *mem_cgroup;
88
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -070089 /*
90 * Nodemask of nodes allowed by the caller. If NULL, all nodes
91 * are scanned.
92 */
93 nodemask_t *nodemask;
94
Balbir Singh66e17072008-02-07 00:13:56 -080095 /* Pluggable isolate pages callback */
96 unsigned long (*isolate_pages)(unsigned long nr, struct list_head *dst,
97 unsigned long *scanned, int order, int mode,
98 struct zone *z, struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070099 int active, int file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
103
104#ifdef ARCH_HAS_PREFETCH
105#define prefetch_prev_lru_page(_page, _base, _field) \
106 do { \
107 if ((_page)->lru.prev != _base) { \
108 struct page *prev; \
109 \
110 prev = lru_to_page(&(_page->lru)); \
111 prefetch(&prev->_field); \
112 } \
113 } while (0)
114#else
115#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
116#endif
117
118#ifdef ARCH_HAS_PREFETCHW
119#define prefetchw_prev_lru_page(_page, _base, _field) \
120 do { \
121 if ((_page)->lru.prev != _base) { \
122 struct page *prev; \
123 \
124 prev = lru_to_page(&(_page->lru)); \
125 prefetchw(&prev->_field); \
126 } \
127 } while (0)
128#else
129#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
130#endif
131
132/*
133 * From 0 .. 100. Higher means more swappy.
134 */
135int vm_swappiness = 60;
Andrew Mortonbd1e22b2006-06-23 02:03:47 -0700136long vm_total_pages; /* The total number of pages which the VM controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138static LIST_HEAD(shrinker_list);
139static DECLARE_RWSEM(shrinker_rwsem);
140
Balbir Singh00f0b822008-03-04 14:28:39 -0800141#ifdef CONFIG_CGROUP_MEM_RES_CTLR
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800142#define scanning_global_lru(sc) (!(sc)->mem_cgroup)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800143#else
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800144#define scanning_global_lru(sc) (1)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800145#endif
146
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800147static struct zone_reclaim_stat *get_reclaim_stat(struct zone *zone,
148 struct scan_control *sc)
149{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800150 if (!scanning_global_lru(sc))
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800151 return mem_cgroup_get_reclaim_stat(sc->mem_cgroup, zone);
152
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800153 return &zone->reclaim_stat;
154}
155
Vincent Li0b217672009-09-21 17:03:09 -0700156static unsigned long zone_nr_lru_pages(struct zone *zone,
157 struct scan_control *sc, enum lru_list lru)
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800158{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800159 if (!scanning_global_lru(sc))
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800160 return mem_cgroup_zone_nr_pages(sc->mem_cgroup, zone, lru);
161
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800162 return zone_page_state(zone, NR_LRU_BASE + lru);
163}
164
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * Add a shrinker callback to be called from the vm
168 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700169void register_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700171 shrinker->nr = 0;
172 down_write(&shrinker_rwsem);
173 list_add_tail(&shrinker->list, &shrinker_list);
174 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700176EXPORT_SYMBOL(register_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/*
179 * Remove one
180 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700181void unregister_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 down_write(&shrinker_rwsem);
184 list_del(&shrinker->list);
185 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700187EXPORT_SYMBOL(unregister_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189#define SHRINK_BATCH 128
190/*
191 * Call the shrink functions to age shrinkable caches
192 *
193 * Here we assume it costs one seek to replace a lru page and that it also
194 * takes a seek to recreate a cache object. With this in mind we age equal
195 * percentages of the lru and ageable caches. This should balance the seeks
196 * generated by these structures.
197 *
Simon Arlott183ff222007-10-20 01:27:18 +0200198 * If the vm encountered mapped pages on the LRU it increase the pressure on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * slab to avoid swapping.
200 *
201 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
202 *
203 * `lru_pages' represents the number of on-LRU pages in all the zones which
204 * are eligible for the caller's allocation attempt. It is used for balancing
205 * slab reclaim versus page reclaim.
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700206 *
207 * Returns the number of slab objects which we shrunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 */
Andrew Morton69e05942006-03-22 00:08:19 -0800209unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask,
210 unsigned long lru_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 struct shrinker *shrinker;
Andrew Morton69e05942006-03-22 00:08:19 -0800213 unsigned long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (scanned == 0)
216 scanned = SWAP_CLUSTER_MAX;
217
218 if (!down_read_trylock(&shrinker_rwsem))
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700219 return 1; /* Assume we'll be able to shrink next time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 list_for_each_entry(shrinker, &shrinker_list, list) {
222 unsigned long long delta;
223 unsigned long total_scan;
Rusty Russell8e1f9362007-07-17 04:03:17 -0700224 unsigned long max_pass = (*shrinker->shrink)(0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 delta = (4 * scanned) / shrinker->seeks;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800227 delta *= max_pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 do_div(delta, lru_pages + 1);
229 shrinker->nr += delta;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800230 if (shrinker->nr < 0) {
David Rientjes88c3bd72009-03-31 15:23:29 -0700231 printk(KERN_ERR "shrink_slab: %pF negative objects to "
232 "delete nr=%ld\n",
233 shrinker->shrink, shrinker->nr);
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800234 shrinker->nr = max_pass;
235 }
236
237 /*
238 * Avoid risking looping forever due to too large nr value:
239 * never try to free more than twice the estimate number of
240 * freeable entries.
241 */
242 if (shrinker->nr > max_pass * 2)
243 shrinker->nr = max_pass * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 total_scan = shrinker->nr;
246 shrinker->nr = 0;
247
248 while (total_scan >= SHRINK_BATCH) {
249 long this_scan = SHRINK_BATCH;
250 int shrink_ret;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700251 int nr_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Rusty Russell8e1f9362007-07-17 04:03:17 -0700253 nr_before = (*shrinker->shrink)(0, gfp_mask);
254 shrink_ret = (*shrinker->shrink)(this_scan, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (shrink_ret == -1)
256 break;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700257 if (shrink_ret < nr_before)
258 ret += nr_before - shrink_ret;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700259 count_vm_events(SLABS_SCANNED, this_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 total_scan -= this_scan;
261
262 cond_resched();
263 }
264
265 shrinker->nr += total_scan;
266 }
267 up_read(&shrinker_rwsem);
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700268 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/* Called without lock on whether page is mapped, so answer is unstable */
272static inline int page_mapping_inuse(struct page *page)
273{
274 struct address_space *mapping;
275
276 /* Page is in somebody's page tables. */
277 if (page_mapped(page))
278 return 1;
279
280 /* Be more reluctant to reclaim swapcache than pagecache */
281 if (PageSwapCache(page))
282 return 1;
283
284 mapping = page_mapping(page);
285 if (!mapping)
286 return 0;
287
288 /* File is mmap'd by somebody? */
289 return mapping_mapped(mapping);
290}
291
292static inline int is_page_cache_freeable(struct page *page)
293{
Johannes Weinerceddc3a2009-09-21 17:03:00 -0700294 /*
295 * A freeable page cache page is referenced only by the caller
296 * that isolated the page, the page cache radix tree and
297 * optional buffer heads at page->private.
298 */
Johannes Weineredcf4742009-09-21 17:02:59 -0700299 return page_count(page) - page_has_private(page) == 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302static int may_write_to_queue(struct backing_dev_info *bdi)
303{
Christoph Lameter930d9152006-01-08 01:00:47 -0800304 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 1;
306 if (!bdi_write_congested(bdi))
307 return 1;
308 if (bdi == current->backing_dev_info)
309 return 1;
310 return 0;
311}
312
313/*
314 * We detected a synchronous write error writing a page out. Probably
315 * -ENOSPC. We need to propagate that into the address_space for a subsequent
316 * fsync(), msync() or close().
317 *
318 * The tricky part is that after writepage we cannot touch the mapping: nothing
319 * prevents it from being freed up. But we have a ref on the page and once
320 * that page is locked, the mapping is pinned.
321 *
322 * We're allowed to run sleeping lock_page() here because we know the caller has
323 * __GFP_FS.
324 */
325static void handle_write_error(struct address_space *mapping,
326 struct page *page, int error)
327{
328 lock_page(page);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700329 if (page_mapping(page) == mapping)
330 mapping_set_error(mapping, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 unlock_page(page);
332}
333
Andy Whitcroftc661b072007-08-22 14:01:26 -0700334/* Request for sync pageout. */
335enum pageout_io {
336 PAGEOUT_IO_ASYNC,
337 PAGEOUT_IO_SYNC,
338};
339
Christoph Lameter04e62a22006-06-23 02:03:38 -0700340/* possible outcome of pageout() */
341typedef enum {
342 /* failed to write page out, page is locked */
343 PAGE_KEEP,
344 /* move page to the active list, page is locked */
345 PAGE_ACTIVATE,
346 /* page has been sent to the disk successfully, page is unlocked */
347 PAGE_SUCCESS,
348 /* page is clean and locked */
349 PAGE_CLEAN,
350} pageout_t;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
Andrew Morton1742f192006-03-22 00:08:21 -0800353 * pageout is called by shrink_page_list() for each dirty page.
354 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700356static pageout_t pageout(struct page *page, struct address_space *mapping,
357 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 /*
360 * If the page is dirty, only perform writeback if that write
361 * will be non-blocking. To prevent this allocation from being
362 * stalled by pagecache activity. But note that there may be
363 * stalls if we need to run get_block(). We could test
364 * PagePrivate for that.
365 *
Vincent Li6aceb532009-12-14 17:58:49 -0800366 * If this process is currently in __generic_file_aio_write() against
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * this page's queue, we can perform writeback even if that
368 * will block.
369 *
370 * If the page is swapcache, write it back even if that would
371 * block, for some throttling. This happens by accident, because
372 * swap_backing_dev_info is bust: it doesn't reflect the
373 * congestion state of the swapdevs. Easy to fix, if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
375 if (!is_page_cache_freeable(page))
376 return PAGE_KEEP;
377 if (!mapping) {
378 /*
379 * Some data journaling orphaned pages can have
380 * page->mapping == NULL while being dirty with clean buffers.
381 */
David Howells266cf652009-04-03 16:42:36 +0100382 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (try_to_free_buffers(page)) {
384 ClearPageDirty(page);
Harvey Harrisond40cee22008-04-30 00:55:07 -0700385 printk("%s: orphaned page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return PAGE_CLEAN;
387 }
388 }
389 return PAGE_KEEP;
390 }
391 if (mapping->a_ops->writepage == NULL)
392 return PAGE_ACTIVATE;
393 if (!may_write_to_queue(mapping->backing_dev_info))
394 return PAGE_KEEP;
395
396 if (clear_page_dirty_for_io(page)) {
397 int res;
398 struct writeback_control wbc = {
399 .sync_mode = WB_SYNC_NONE,
400 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700401 .range_start = 0,
402 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 .nonblocking = 1,
404 .for_reclaim = 1,
405 };
406
407 SetPageReclaim(page);
408 res = mapping->a_ops->writepage(page, &wbc);
409 if (res < 0)
410 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800411 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 ClearPageReclaim(page);
413 return PAGE_ACTIVATE;
414 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700415
416 /*
417 * Wait on writeback if requested to. This happens when
418 * direct reclaiming a large contiguous area and the
419 * first attempt to free a range of pages fails.
420 */
421 if (PageWriteback(page) && sync_writeback == PAGEOUT_IO_SYNC)
422 wait_on_page_writeback(page);
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (!PageWriteback(page)) {
425 /* synchronous write or broken a_ops? */
426 ClearPageReclaim(page);
427 }
Andrew Mortone129b5c2006-09-27 01:50:00 -0700428 inc_zone_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return PAGE_SUCCESS;
430 }
431
432 return PAGE_CLEAN;
433}
434
Andrew Mortona649fd92006-10-17 00:09:36 -0700435/*
Nick Piggine2867812008-07-25 19:45:30 -0700436 * Same as remove_mapping, but if the page is removed from the mapping, it
437 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700438 */
Nick Piggine2867812008-07-25 19:45:30 -0700439static int __remove_mapping(struct address_space *mapping, struct page *page)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800440{
Nick Piggin28e4d962006-09-25 23:31:23 -0700441 BUG_ON(!PageLocked(page));
442 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800443
Nick Piggin19fd6232008-07-25 19:45:32 -0700444 spin_lock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800445 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700446 * The non racy check for a busy page.
447 *
448 * Must be careful with the order of the tests. When someone has
449 * a ref to the page, it may be possible that they dirty it then
450 * drop the reference. So if PageDirty is tested before page_count
451 * here, then the following race may occur:
452 *
453 * get_user_pages(&page);
454 * [user mapping goes away]
455 * write_to(page);
456 * !PageDirty(page) [good]
457 * SetPageDirty(page);
458 * put_page(page);
459 * !page_count(page) [good, discard it]
460 *
461 * [oops, our write_to data is lost]
462 *
463 * Reversing the order of the tests ensures such a situation cannot
464 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
465 * load is not satisfied before that of page->_count.
466 *
467 * Note that if SetPageDirty is always performed via set_page_dirty,
468 * and thus under tree_lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800469 */
Nick Piggine2867812008-07-25 19:45:30 -0700470 if (!page_freeze_refs(page, 2))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800471 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700472 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
473 if (unlikely(PageDirty(page))) {
474 page_unfreeze_refs(page, 2);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800475 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700476 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800477
478 if (PageSwapCache(page)) {
479 swp_entry_t swap = { .val = page_private(page) };
480 __delete_from_swap_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700481 spin_unlock_irq(&mapping->tree_lock);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700482 swapcache_free(swap, page);
Nick Piggine2867812008-07-25 19:45:30 -0700483 } else {
484 __remove_from_page_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700485 spin_unlock_irq(&mapping->tree_lock);
Daisuke Nishimurae767e052009-05-28 14:34:28 -0700486 mem_cgroup_uncharge_cache_page(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800487 }
488
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800489 return 1;
490
491cannot_free:
Nick Piggin19fd6232008-07-25 19:45:32 -0700492 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800493 return 0;
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/*
Nick Piggine2867812008-07-25 19:45:30 -0700497 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
498 * someone else has a ref on the page, abort and return 0. If it was
499 * successfully detached, return 1. Assumes the caller has a single ref on
500 * this page.
501 */
502int remove_mapping(struct address_space *mapping, struct page *page)
503{
504 if (__remove_mapping(mapping, page)) {
505 /*
506 * Unfreezing the refcount with 1 rather than 2 effectively
507 * drops the pagecache ref for us without requiring another
508 * atomic operation.
509 */
510 page_unfreeze_refs(page, 1);
511 return 1;
512 }
513 return 0;
514}
515
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700516/**
517 * putback_lru_page - put previously isolated page onto appropriate LRU list
518 * @page: page to be put back to appropriate lru list
519 *
520 * Add previously isolated @page to appropriate LRU list.
521 * Page may still be unevictable for other reasons.
522 *
523 * lru_lock must not be held, interrupts must be enabled.
524 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700525void putback_lru_page(struct page *page)
526{
527 int lru;
528 int active = !!TestClearPageActive(page);
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700529 int was_unevictable = PageUnevictable(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700530
531 VM_BUG_ON(PageLRU(page));
532
533redo:
534 ClearPageUnevictable(page);
535
536 if (page_evictable(page, NULL)) {
537 /*
538 * For evictable pages, we can use the cache.
539 * In event of a race, worst case is we end up with an
540 * unevictable page on [in]active list.
541 * We know how to handle that.
542 */
Johannes Weiner401a8e12009-09-21 17:02:58 -0700543 lru = active + page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700544 lru_cache_add_lru(page, lru);
545 } else {
546 /*
547 * Put unevictable pages directly on zone's unevictable
548 * list.
549 */
550 lru = LRU_UNEVICTABLE;
551 add_page_to_unevictable_list(page);
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700552 /*
553 * When racing with an mlock clearing (page is
554 * unlocked), make sure that if the other thread does
555 * not observe our setting of PG_lru and fails
556 * isolation, we see PG_mlocked cleared below and move
557 * the page back to the evictable list.
558 *
559 * The other side is TestClearPageMlocked().
560 */
561 smp_mb();
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700562 }
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700563
564 /*
565 * page's status can change while we move it among lru. If an evictable
566 * page is on unevictable list, it never be freed. To avoid that,
567 * check after we added it to the list, again.
568 */
569 if (lru == LRU_UNEVICTABLE && page_evictable(page, NULL)) {
570 if (!isolate_lru_page(page)) {
571 put_page(page);
572 goto redo;
573 }
574 /* This means someone else dropped this page from LRU
575 * So, it will be freed or putback to LRU again. There is
576 * nothing to do here.
577 */
578 }
579
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700580 if (was_unevictable && lru != LRU_UNEVICTABLE)
581 count_vm_event(UNEVICTABLE_PGRESCUED);
582 else if (!was_unevictable && lru == LRU_UNEVICTABLE)
583 count_vm_event(UNEVICTABLE_PGCULLED);
584
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700585 put_page(page); /* drop ref from isolate */
586}
587
Nick Piggine2867812008-07-25 19:45:30 -0700588/*
Andrew Morton1742f192006-03-22 00:08:21 -0800589 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 */
Andrew Morton1742f192006-03-22 00:08:21 -0800591static unsigned long shrink_page_list(struct list_head *page_list,
Andy Whitcroftc661b072007-08-22 14:01:26 -0700592 struct scan_control *sc,
593 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 LIST_HEAD(ret_pages);
596 struct pagevec freed_pvec;
597 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800598 unsigned long nr_reclaimed = 0;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -0700599 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 cond_resched();
602
603 pagevec_init(&freed_pvec, 1);
604 while (!list_empty(page_list)) {
605 struct address_space *mapping;
606 struct page *page;
607 int may_enter_fs;
608 int referenced;
609
610 cond_resched();
611
612 page = lru_to_page(page_list);
613 list_del(&page->lru);
614
Nick Piggin529ae9a2008-08-02 12:01:03 +0200615 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 goto keep;
617
Nick Piggin725d7042006-09-25 23:30:55 -0700618 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800621
Nick Pigginb291f002008-10-18 20:26:44 -0700622 if (unlikely(!page_evictable(page, NULL)))
623 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700624
Johannes Weinera6dc60f2009-03-31 15:19:30 -0700625 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800626 goto keep_locked;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* Double the slab pressure for mapped and swapcache pages */
629 if (page_mapped(page) || PageSwapCache(page))
630 sc->nr_scanned++;
631
Andy Whitcroftc661b072007-08-22 14:01:26 -0700632 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
633 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
634
635 if (PageWriteback(page)) {
636 /*
637 * Synchronous reclaim is performed in two passes,
638 * first an asynchronous pass over the list to
639 * start parallel writeback, and a second synchronous
640 * pass to wait for the IO to complete. Wait here
641 * for any page for which writeback has already
642 * started.
643 */
644 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
645 wait_on_page_writeback(page);
Andrew Morton4dd4b922008-03-24 12:29:52 -0700646 else
Andy Whitcroftc661b072007-08-22 14:01:26 -0700647 goto keep_locked;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -0700650 referenced = page_referenced(page, 1,
651 sc->mem_cgroup, &vm_flags);
Minchan Kim03ef83a2009-08-26 14:29:23 -0700652 /*
653 * In active use or really unfreeable? Activate it.
654 * If page which have PG_mlocked lost isoltation race,
655 * try_to_unmap moves it to unevictable list
656 */
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700657 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER &&
Minchan Kim03ef83a2009-08-26 14:29:23 -0700658 referenced && page_mapping_inuse(page)
659 && !(vm_flags & VM_LOCKED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 goto activate_locked;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /*
663 * Anonymous process memory has backing store?
664 * Try to allocate it some swap space here.
665 */
Nick Pigginb291f002008-10-18 20:26:44 -0700666 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800667 if (!(sc->gfp_mask & __GFP_IO))
668 goto keep_locked;
Hugh Dickinsac47b002009-01-06 14:39:39 -0800669 if (!add_to_swap(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto activate_locked;
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800671 may_enter_fs = 1;
Nick Pigginb291f002008-10-18 20:26:44 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /*
677 * The page is mapped into the page tables of one or more
678 * processes. Try to unmap it here.
679 */
680 if (page_mapped(page) && mapping) {
Andi Kleen14fa31b2009-09-16 11:50:10 +0200681 switch (try_to_unmap(page, TTU_UNMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 case SWAP_FAIL:
683 goto activate_locked;
684 case SWAP_AGAIN:
685 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -0700686 case SWAP_MLOCK:
687 goto cull_mlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case SWAP_SUCCESS:
689 ; /* try to free the page below */
690 }
691 }
692
693 if (PageDirty(page)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700694 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -0700696 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800698 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 goto keep_locked;
700
701 /* Page is dirty, try to write it out here */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700702 switch (pageout(page, mapping, sync_writeback)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 case PAGE_KEEP:
704 goto keep_locked;
705 case PAGE_ACTIVATE:
706 goto activate_locked;
707 case PAGE_SUCCESS:
Andrew Morton4dd4b922008-03-24 12:29:52 -0700708 if (PageWriteback(page) || PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto keep;
710 /*
711 * A synchronous write - probably a ramdisk. Go
712 * ahead and try to reclaim the page.
713 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200714 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 goto keep;
716 if (PageDirty(page) || PageWriteback(page))
717 goto keep_locked;
718 mapping = page_mapping(page);
719 case PAGE_CLEAN:
720 ; /* try to free the page below */
721 }
722 }
723
724 /*
725 * If the page has buffers, try to free the buffer mappings
726 * associated with this page. If we succeed we try to free
727 * the page as well.
728 *
729 * We do this even if the page is PageDirty().
730 * try_to_release_page() does not perform I/O, but it is
731 * possible for a page to have PageDirty set, but it is actually
732 * clean (all its buffers are clean). This happens if the
733 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700734 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 * try_to_release_page() will discover that cleanness and will
736 * drop the buffers and mark the page clean - it can be freed.
737 *
738 * Rarely, pages can have buffers and no ->mapping. These are
739 * the pages which were not successfully invalidated in
740 * truncate_complete_page(). We try to drop those buffers here
741 * and if that worked, and the page is no longer mapped into
742 * process address space (page_count == 1) it can be freed.
743 * Otherwise, leave the page on the LRU so it is swappable.
744 */
David Howells266cf652009-04-03 16:42:36 +0100745 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!try_to_release_page(page, sc->gfp_mask))
747 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -0700748 if (!mapping && page_count(page) == 1) {
749 unlock_page(page);
750 if (put_page_testzero(page))
751 goto free_it;
752 else {
753 /*
754 * rare race with speculative reference.
755 * the speculative reference will free
756 * this page shortly, so we may
757 * increment nr_reclaimed here (and
758 * leave it off the LRU).
759 */
760 nr_reclaimed++;
761 continue;
762 }
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765
Nick Piggine2867812008-07-25 19:45:30 -0700766 if (!mapping || !__remove_mapping(mapping, page))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800767 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Nick Piggina978d6f2008-10-18 20:26:58 -0700769 /*
770 * At this point, we have no other references and there is
771 * no way to pick any more up (removed from LRU, removed
772 * from pagecache). Can use non-atomic bitops now (and
773 * we obviously don't have to worry about waking up a process
774 * waiting on the page lock, because there are no references.
775 */
776 __clear_page_locked(page);
Nick Piggine2867812008-07-25 19:45:30 -0700777free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -0800778 nr_reclaimed++;
Nick Piggine2867812008-07-25 19:45:30 -0700779 if (!pagevec_add(&freed_pvec, page)) {
780 __pagevec_free(&freed_pvec);
781 pagevec_reinit(&freed_pvec);
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 continue;
784
Nick Pigginb291f002008-10-18 20:26:44 -0700785cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -0800786 if (PageSwapCache(page))
787 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -0700788 unlock_page(page);
789 putback_lru_page(page);
790 continue;
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -0700793 /* Not a candidate for swapping, so reclaim swap space. */
794 if (PageSwapCache(page) && vm_swap_full())
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800795 try_to_free_swap(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700796 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 SetPageActive(page);
798 pgactivate++;
799keep_locked:
800 unlock_page(page);
801keep:
802 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -0700803 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 list_splice(&ret_pages, page_list);
806 if (pagevec_count(&freed_pvec))
Nick Piggine2867812008-07-25 19:45:30 -0700807 __pagevec_free(&freed_pvec);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700808 count_vm_events(PGACTIVATE, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800809 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700812/* LRU Isolation modes. */
813#define ISOLATE_INACTIVE 0 /* Isolate inactive pages. */
814#define ISOLATE_ACTIVE 1 /* Isolate active pages. */
815#define ISOLATE_BOTH 2 /* Isolate both active and inactive pages. */
816
817/*
818 * Attempt to remove the specified page from its LRU. Only take this page
819 * if it is of the appropriate PageActive status. Pages which are being
820 * freed elsewhere are also ignored.
821 *
822 * page: page to consider
823 * mode: one of the LRU isolation modes defined above
824 *
825 * returns 0 on success, -ve errno on failure.
826 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700827int __isolate_lru_page(struct page *page, int mode, int file)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700828{
829 int ret = -EINVAL;
830
831 /* Only take pages on the LRU. */
832 if (!PageLRU(page))
833 return ret;
834
835 /*
836 * When checking the active state, we need to be sure we are
837 * dealing with comparible boolean values. Take the logical not
838 * of each.
839 */
840 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
841 return ret;
842
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700843 if (mode != ISOLATE_BOTH && page_is_file_cache(page) != file)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700844 return ret;
845
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700846 /*
847 * When this function is being called for lumpy reclaim, we
848 * initially look into all LRU pages, active, inactive and
849 * unevictable; only give shrink_page_list evictable pages.
850 */
851 if (PageUnevictable(page))
852 return ret;
853
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700854 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800855
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700856 if (likely(get_page_unless_zero(page))) {
857 /*
858 * Be careful not to clear PageLRU until after we're
859 * sure the page is not being freed elsewhere -- the
860 * page release code relies on it.
861 */
862 ClearPageLRU(page);
863 ret = 0;
864 }
865
866 return ret;
867}
868
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800869/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * zone->lru_lock is heavily contended. Some of the functions that
871 * shrink the lists perform better by taking out a batch of pages
872 * and working on them outside the LRU lock.
873 *
874 * For pagecache intensive workloads, this function is the hottest
875 * spot in the kernel (apart from copy_*_user functions).
876 *
877 * Appropriate locks must be held before calling this function.
878 *
879 * @nr_to_scan: The number of pages to look through on the list.
880 * @src: The LRU list to pull pages off.
881 * @dst: The temp list to put pages on to.
882 * @scanned: The number of pages that were scanned.
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700883 * @order: The caller's attempted allocation order
884 * @mode: One of the LRU isolation modes
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700885 * @file: True [1] if isolating file [!anon] pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 *
887 * returns how many pages were moved onto *@dst.
888 */
Andrew Morton69e05942006-03-22 00:08:19 -0800889static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
890 struct list_head *src, struct list_head *dst,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700891 unsigned long *scanned, int order, int mode, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Andrew Morton69e05942006-03-22 00:08:19 -0800893 unsigned long nr_taken = 0;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800894 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800896 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700897 struct page *page;
898 unsigned long pfn;
899 unsigned long end_pfn;
900 unsigned long page_pfn;
901 int zone_id;
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 page = lru_to_page(src);
904 prefetchw_prev_lru_page(page, src, flags);
905
Nick Piggin725d7042006-09-25 23:30:55 -0700906 VM_BUG_ON(!PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800907
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700908 switch (__isolate_lru_page(page, mode, file)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700909 case 0:
910 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700911 mem_cgroup_del_lru(page);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800912 nr_taken++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700913 break;
Nick Piggin46453a62006-03-22 00:07:58 -0800914
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700915 case -EBUSY:
916 /* else it is being freed elsewhere */
917 list_move(&page->lru, src);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700918 mem_cgroup_rotate_lru_list(page, page_lru(page));
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700919 continue;
920
921 default:
922 BUG();
923 }
924
925 if (!order)
926 continue;
927
928 /*
929 * Attempt to take all pages in the order aligned region
930 * surrounding the tag page. Only take those pages of
931 * the same active state as that tag page. We may safely
932 * round the target page pfn down to the requested order
933 * as the mem_map is guarenteed valid out to MAX_ORDER,
934 * where that page is in a different zone we will detect
935 * it from its zone id and abort this block scan.
936 */
937 zone_id = page_zone_id(page);
938 page_pfn = page_to_pfn(page);
939 pfn = page_pfn & ~((1 << order) - 1);
940 end_pfn = pfn + (1 << order);
941 for (; pfn < end_pfn; pfn++) {
942 struct page *cursor_page;
943
944 /* The target page is in the block, ignore it. */
945 if (unlikely(pfn == page_pfn))
946 continue;
947
948 /* Avoid holes within the zone. */
949 if (unlikely(!pfn_valid_within(pfn)))
950 break;
951
952 cursor_page = pfn_to_page(pfn);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700953
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700954 /* Check that we have not crossed a zone boundary. */
955 if (unlikely(page_zone_id(cursor_page) != zone_id))
956 continue;
Minchan Kimde2e7562009-09-21 17:01:43 -0700957
958 /*
959 * If we don't have enough swap space, reclaiming of
960 * anon page which don't already have a swap slot is
961 * pointless.
962 */
963 if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
964 !PageSwapCache(cursor_page))
965 continue;
966
KAMEZAWA Hiroyukiee993b12009-06-16 15:33:24 -0700967 if (__isolate_lru_page(cursor_page, mode, file) == 0) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700968 list_move(&cursor_page->lru, dst);
KAMEZAWA Hiroyukicb4cbcf2009-06-23 08:57:55 +0900969 mem_cgroup_del_lru(cursor_page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700970 nr_taken++;
971 scan++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700972 }
973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
976 *scanned = scan;
977 return nr_taken;
978}
979
Balbir Singh66e17072008-02-07 00:13:56 -0800980static unsigned long isolate_pages_global(unsigned long nr,
981 struct list_head *dst,
982 unsigned long *scanned, int order,
983 int mode, struct zone *z,
984 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700985 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800986{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700987 int lru = LRU_BASE;
Balbir Singh66e17072008-02-07 00:13:56 -0800988 if (active)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700989 lru += LRU_ACTIVE;
990 if (file)
991 lru += LRU_FILE;
992 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
Johannes Weinerb7c46d12009-09-21 17:02:56 -0700993 mode, file);
Balbir Singh66e17072008-02-07 00:13:56 -0800994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700997 * clear_active_flags() is a helper for shrink_active_list(), clearing
998 * any active bits from the pages in the list.
999 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001000static unsigned long clear_active_flags(struct list_head *page_list,
1001 unsigned int *count)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001002{
1003 int nr_active = 0;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001004 int lru;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001005 struct page *page;
1006
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001007 list_for_each_entry(page, page_list, lru) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07001008 lru = page_lru_base_type(page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001009 if (PageActive(page)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001010 lru += LRU_ACTIVE;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001011 ClearPageActive(page);
1012 nr_active++;
1013 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001014 count[lru]++;
1015 }
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001016
1017 return nr_active;
1018}
1019
Nick Piggin62695a82008-10-18 20:26:09 -07001020/**
1021 * isolate_lru_page - tries to isolate a page from its LRU list
1022 * @page: page to isolate from its LRU list
1023 *
1024 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1025 * vmstat statistic corresponding to whatever LRU list the page was on.
1026 *
1027 * Returns 0 if the page was removed from an LRU list.
1028 * Returns -EBUSY if the page was not on an LRU list.
1029 *
1030 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001031 * the active list, it will have PageActive set. If it was found on
1032 * the unevictable list, it will have the PageUnevictable bit set. That flag
1033 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001034 *
1035 * The vmstat statistic corresponding to the list on which the page was
1036 * found will be decremented.
1037 *
1038 * Restrictions:
1039 * (1) Must be called with an elevated refcount on the page. This is a
1040 * fundamentnal difference from isolate_lru_pages (which is called
1041 * without a stable reference).
1042 * (2) the lru_lock must not be held.
1043 * (3) interrupts must be enabled.
1044 */
1045int isolate_lru_page(struct page *page)
1046{
1047 int ret = -EBUSY;
1048
1049 if (PageLRU(page)) {
1050 struct zone *zone = page_zone(page);
1051
1052 spin_lock_irq(&zone->lru_lock);
1053 if (PageLRU(page) && get_page_unless_zero(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001054 int lru = page_lru(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001055 ret = 0;
1056 ClearPageLRU(page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001057
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001058 del_page_from_lru_list(zone, page, lru);
Nick Piggin62695a82008-10-18 20:26:09 -07001059 }
1060 spin_unlock_irq(&zone->lru_lock);
1061 }
1062 return ret;
1063}
1064
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001065/*
Rik van Riel35cd7812009-09-21 17:01:38 -07001066 * Are there way too many processes in the direct reclaim path already?
1067 */
1068static int too_many_isolated(struct zone *zone, int file,
1069 struct scan_control *sc)
1070{
1071 unsigned long inactive, isolated;
1072
1073 if (current_is_kswapd())
1074 return 0;
1075
1076 if (!scanning_global_lru(sc))
1077 return 0;
1078
1079 if (file) {
1080 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1081 isolated = zone_page_state(zone, NR_ISOLATED_FILE);
1082 } else {
1083 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1084 isolated = zone_page_state(zone, NR_ISOLATED_ANON);
1085 }
1086
1087 return isolated > inactive;
1088}
1089
1090/*
Andrew Morton1742f192006-03-22 00:08:21 -08001091 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1092 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 */
Andrew Morton1742f192006-03-22 00:08:21 -08001094static unsigned long shrink_inactive_list(unsigned long max_scan,
Rik van Riel33c120e2008-10-18 20:26:36 -07001095 struct zone *zone, struct scan_control *sc,
1096 int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 LIST_HEAD(page_list);
1099 struct pagevec pvec;
Andrew Morton69e05942006-03-22 00:08:19 -08001100 unsigned long nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001101 unsigned long nr_reclaimed = 0;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001102 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001103 int lumpy_reclaim = 0;
1104
Rik van Riel35cd7812009-09-21 17:01:38 -07001105 while (unlikely(too_many_isolated(zone, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001106 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001107
1108 /* We are about to die and free our memory. Return now. */
1109 if (fatal_signal_pending(current))
1110 return SWAP_CLUSTER_MAX;
1111 }
1112
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001113 /*
1114 * If we need a large contiguous chunk of memory, or have
1115 * trouble getting a small set of contiguous pages, we
1116 * will reclaim both active and inactive pages.
1117 *
1118 * We use the same threshold as pageout congestion_wait below.
1119 */
1120 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1121 lumpy_reclaim = 1;
1122 else if (sc->order && priority < DEF_PRIORITY - 2)
1123 lumpy_reclaim = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 pagevec_init(&pvec, 1);
1126
1127 lru_add_drain();
1128 spin_lock_irq(&zone->lru_lock);
Andrew Morton69e05942006-03-22 00:08:19 -08001129 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 struct page *page;
Andrew Morton69e05942006-03-22 00:08:19 -08001131 unsigned long nr_taken;
1132 unsigned long nr_scan;
1133 unsigned long nr_freed;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001134 unsigned long nr_active;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001135 unsigned int count[NR_LRU_LISTS] = { 0, };
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001136 int mode = lumpy_reclaim ? ISOLATE_BOTH : ISOLATE_INACTIVE;
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001137 unsigned long nr_anon;
1138 unsigned long nr_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Balbir Singh66e17072008-02-07 00:13:56 -08001140 nr_taken = sc->isolate_pages(sc->swap_cluster_max,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001141 &page_list, &nr_scan, sc->order, mode,
1142 zone, sc->mem_cgroup, 0, file);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001143
1144 if (scanning_global_lru(sc)) {
1145 zone->pages_scanned += nr_scan;
1146 if (current_is_kswapd())
1147 __count_zone_vm_events(PGSCAN_KSWAPD, zone,
1148 nr_scan);
1149 else
1150 __count_zone_vm_events(PGSCAN_DIRECT, zone,
1151 nr_scan);
1152 }
1153
1154 if (nr_taken == 0)
1155 goto done;
1156
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001157 nr_active = clear_active_flags(&page_list, count);
Andy Whitcrofte9187bd2007-08-22 14:01:25 -07001158 __count_vm_events(PGDEACTIVATE, nr_active);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001159
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001160 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1161 -count[LRU_ACTIVE_FILE]);
1162 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1163 -count[LRU_INACTIVE_FILE]);
1164 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1165 -count[LRU_ACTIVE_ANON]);
1166 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1167 -count[LRU_INACTIVE_ANON]);
1168
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001169 nr_anon = count[LRU_ACTIVE_ANON] + count[LRU_INACTIVE_ANON];
1170 nr_file = count[LRU_ACTIVE_FILE] + count[LRU_INACTIVE_FILE];
1171 __mod_zone_page_state(zone, NR_ISOLATED_ANON, nr_anon);
1172 __mod_zone_page_state(zone, NR_ISOLATED_FILE, nr_file);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001173
1174 reclaim_stat->recent_scanned[0] += count[LRU_INACTIVE_ANON];
1175 reclaim_stat->recent_scanned[0] += count[LRU_ACTIVE_ANON];
1176 reclaim_stat->recent_scanned[1] += count[LRU_INACTIVE_FILE];
1177 reclaim_stat->recent_scanned[1] += count[LRU_ACTIVE_FILE];
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 spin_unlock_irq(&zone->lru_lock);
1180
Andrew Morton69e05942006-03-22 00:08:19 -08001181 nr_scanned += nr_scan;
Andy Whitcroftc661b072007-08-22 14:01:26 -07001182 nr_freed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1183
1184 /*
1185 * If we are direct reclaiming for contiguous pages and we do
1186 * not reclaim everything in the list, try again and wait
1187 * for IO to complete. This will stall high-order allocations
1188 * but that should be acceptable to the caller
1189 */
1190 if (nr_freed < nr_taken && !current_is_kswapd() &&
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001191 lumpy_reclaim) {
Jens Axboe8aa7e842009-07-09 14:52:32 +02001192 congestion_wait(BLK_RW_ASYNC, HZ/10);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001193
1194 /*
1195 * The attempt at page out may have made some
1196 * of the pages active, mark them inactive again.
1197 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001198 nr_active = clear_active_flags(&page_list, count);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001199 count_vm_events(PGDEACTIVATE, nr_active);
1200
1201 nr_freed += shrink_page_list(&page_list, sc,
1202 PAGEOUT_IO_SYNC);
1203 }
1204
Andrew Morton05ff5132006-03-22 00:08:20 -08001205 nr_reclaimed += nr_freed;
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001206
Nick Piggina74609f2006-01-06 00:11:20 -08001207 local_irq_disable();
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001208 if (current_is_kswapd())
Christoph Lameterf8891e52006-06-30 01:55:45 -07001209 __count_vm_events(KSWAPD_STEAL, nr_freed);
Shantanu Goel918d3f92006-12-29 16:48:59 -08001210 __count_zone_vm_events(PGSTEAL, zone, nr_freed);
Nick Piggina74609f2006-01-06 00:11:20 -08001211
1212 spin_lock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 /*
1214 * Put back any unfreeable pages.
1215 */
1216 while (!list_empty(&page_list)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001217 int lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 page = lru_to_page(&page_list);
Nick Piggin725d7042006-09-25 23:30:55 -07001219 VM_BUG_ON(PageLRU(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001221 if (unlikely(!page_evictable(page, NULL))) {
1222 spin_unlock_irq(&zone->lru_lock);
1223 putback_lru_page(page);
1224 spin_lock_irq(&zone->lru_lock);
1225 continue;
1226 }
1227 SetPageLRU(page);
1228 lru = page_lru(page);
1229 add_page_to_lru_list(zone, page, lru);
KOSAKI Motohiro74a1c482009-09-21 17:01:45 -07001230 if (is_active_lru(lru)) {
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001231 int file = is_file_lru(lru);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001232 reclaim_stat->recent_rotated[file]++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (!pagevec_add(&pvec, page)) {
1235 spin_unlock_irq(&zone->lru_lock);
1236 __pagevec_release(&pvec);
1237 spin_lock_irq(&zone->lru_lock);
1238 }
1239 }
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001240 __mod_zone_page_state(zone, NR_ISOLATED_ANON, -nr_anon);
1241 __mod_zone_page_state(zone, NR_ISOLATED_FILE, -nr_file);
1242
Andrew Morton69e05942006-03-22 00:08:19 -08001243 } while (nr_scanned < max_scan);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245done:
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001246 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 pagevec_release(&pvec);
Andrew Morton05ff5132006-03-22 00:08:20 -08001248 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Martin Bligh3bb1a852006-10-28 10:38:24 -07001251/*
1252 * We are about to scan this zone at a certain priority level. If that priority
1253 * level is smaller (ie: more urgent) than the previous priority, then note
1254 * that priority level within the zone. This is done so that when the next
1255 * process comes in to scan this zone, it will immediately start out at this
1256 * priority level rather than having to build up its own scanning priority.
1257 * Here, this priority affects only the reclaim-mapped threshold.
1258 */
1259static inline void note_zone_scanning_priority(struct zone *zone, int priority)
1260{
1261 if (priority < zone->prev_priority)
1262 zone->prev_priority = priority;
1263}
1264
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001265/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 * This moves pages from the active list to the inactive list.
1267 *
1268 * We move them the other way if the page is referenced by one or more
1269 * processes, from rmap.
1270 *
1271 * If the pages are mostly unmapped, the processing is fast and it is
1272 * appropriate to hold zone->lru_lock across the whole operation. But if
1273 * the pages are mapped, the processing is slow (page_referenced()) so we
1274 * should drop zone->lru_lock around each page. It's impossible to balance
1275 * this, so instead we remove the pages from the LRU while processing them.
1276 * It is safe to rely on PG_active against the non-LRU pages in here because
1277 * nobody will play with that bit on a non-LRU page.
1278 *
1279 * The downside is that we have to touch page->_count against each page.
1280 * But we had to alter page->flags anyway.
1281 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001282
Wu Fengguang3eb41402009-06-16 15:33:13 -07001283static void move_active_pages_to_lru(struct zone *zone,
1284 struct list_head *list,
1285 enum lru_list lru)
1286{
1287 unsigned long pgmoved = 0;
1288 struct pagevec pvec;
1289 struct page *page;
1290
1291 pagevec_init(&pvec, 1);
1292
1293 while (!list_empty(list)) {
1294 page = lru_to_page(list);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001295
1296 VM_BUG_ON(PageLRU(page));
1297 SetPageLRU(page);
1298
Wu Fengguang3eb41402009-06-16 15:33:13 -07001299 list_move(&page->lru, &zone->lru[lru].list);
1300 mem_cgroup_add_lru_list(page, lru);
1301 pgmoved++;
1302
1303 if (!pagevec_add(&pvec, page) || list_empty(list)) {
1304 spin_unlock_irq(&zone->lru_lock);
1305 if (buffer_heads_over_limit)
1306 pagevec_strip(&pvec);
1307 __pagevec_release(&pvec);
1308 spin_lock_irq(&zone->lru_lock);
1309 }
1310 }
1311 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1312 if (!is_active_lru(lru))
1313 __count_vm_events(PGDEACTIVATE, pgmoved);
1314}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001315
Andrew Morton1742f192006-03-22 00:08:21 -08001316static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001317 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001319 unsigned long nr_taken;
Andrew Morton69e05942006-03-22 00:08:19 -08001320 unsigned long pgscanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001321 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001323 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001324 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 struct page *page;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001326 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001327 unsigned long nr_rotated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 lru_add_drain();
1330 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001331 nr_taken = sc->isolate_pages(nr_pages, &l_hold, &pgscanned, sc->order,
Balbir Singh66e17072008-02-07 00:13:56 -08001332 ISOLATE_ACTIVE, zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001333 sc->mem_cgroup, 1, file);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001334 /*
1335 * zone->pages_scanned is used for detect zone's oom
1336 * mem_cgroup remembers nr_scan by itself.
1337 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001338 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001339 zone->pages_scanned += pgscanned;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001340 }
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001341 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001342
Wu Fengguang3eb41402009-06-16 15:33:13 -07001343 __count_zone_vm_events(PGREFILL, zone, pgscanned);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001344 if (file)
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001345 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001346 else
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001347 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001348 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 spin_unlock_irq(&zone->lru_lock);
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 while (!list_empty(&l_hold)) {
1352 cond_resched();
1353 page = lru_to_page(&l_hold);
1354 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001355
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001356 if (unlikely(!page_evictable(page, NULL))) {
1357 putback_lru_page(page);
1358 continue;
1359 }
1360
Rik van Riel7e9cd482008-10-18 20:26:35 -07001361 /* page_referenced clears PageReferenced */
1362 if (page_mapping_inuse(page) &&
Wu Fengguang8cab4752009-06-16 15:33:12 -07001363 page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) {
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001364 nr_rotated++;
Wu Fengguang8cab4752009-06-16 15:33:12 -07001365 /*
1366 * Identify referenced, file-backed active pages and
1367 * give them one more trip around the active list. So
1368 * that executable code get better chances to stay in
1369 * memory under moderate memory pressure. Anon pages
1370 * are not likely to be evicted by use-once streaming
1371 * IO, plus JVM can create lots of anon VM_EXEC pages,
1372 * so we ignore them here.
1373 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001374 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001375 list_add(&page->lru, &l_active);
1376 continue;
1377 }
1378 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001379
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001380 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 list_add(&page->lru, &l_inactive);
1382 }
1383
Andrew Mortonb5557492009-01-06 14:40:13 -08001384 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001385 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001386 */
Johannes Weiner2a1dc502008-12-01 03:00:35 +01001387 spin_lock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001388 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001389 * Count referenced pages from currently used mappings as rotated,
1390 * even though only some of them are actually re-activated. This
1391 * helps balance scan pressure between file and anonymous pages in
1392 * get_scan_ratio.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001393 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001394 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001395
Wu Fengguang3eb41402009-06-16 15:33:13 -07001396 move_active_pages_to_lru(zone, &l_active,
1397 LRU_ACTIVE + file * LRU_FILE);
1398 move_active_pages_to_lru(zone, &l_inactive,
1399 LRU_BASE + file * LRU_FILE);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001400 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001401 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001404static int inactive_anon_is_low_global(struct zone *zone)
KOSAKI Motohirof89eb902009-01-07 18:08:14 -08001405{
1406 unsigned long active, inactive;
1407
1408 active = zone_page_state(zone, NR_ACTIVE_ANON);
1409 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1410
1411 if (inactive * zone->inactive_ratio < active)
1412 return 1;
1413
1414 return 0;
1415}
1416
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001417/**
1418 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1419 * @zone: zone to check
1420 * @sc: scan control of this context
1421 *
1422 * Returns true if the zone does not have enough inactive anon pages,
1423 * meaning some active anon pages need to be deactivated.
1424 */
1425static int inactive_anon_is_low(struct zone *zone, struct scan_control *sc)
1426{
1427 int low;
1428
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001429 if (scanning_global_lru(sc))
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001430 low = inactive_anon_is_low_global(zone);
1431 else
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001432 low = mem_cgroup_inactive_anon_is_low(sc->mem_cgroup);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001433 return low;
1434}
1435
Rik van Riel56e49d22009-06-16 15:32:28 -07001436static int inactive_file_is_low_global(struct zone *zone)
1437{
1438 unsigned long active, inactive;
1439
1440 active = zone_page_state(zone, NR_ACTIVE_FILE);
1441 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1442
1443 return (active > inactive);
1444}
1445
1446/**
1447 * inactive_file_is_low - check if file pages need to be deactivated
1448 * @zone: zone to check
1449 * @sc: scan control of this context
1450 *
1451 * When the system is doing streaming IO, memory pressure here
1452 * ensures that active file pages get deactivated, until more
1453 * than half of the file pages are on the inactive list.
1454 *
1455 * Once we get to that situation, protect the system's working
1456 * set from being evicted by disabling active file page aging.
1457 *
1458 * This uses a different ratio than the anonymous pages, because
1459 * the page cache uses a use-once replacement algorithm.
1460 */
1461static int inactive_file_is_low(struct zone *zone, struct scan_control *sc)
1462{
1463 int low;
1464
1465 if (scanning_global_lru(sc))
1466 low = inactive_file_is_low_global(zone);
1467 else
1468 low = mem_cgroup_inactive_file_is_low(sc->mem_cgroup);
1469 return low;
1470}
1471
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001472static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Christoph Lameterb69408e2008-10-18 20:26:14 -07001473 struct zone *zone, struct scan_control *sc, int priority)
1474{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001475 int file = is_file_lru(lru);
1476
Rik van Riel56e49d22009-06-16 15:32:28 -07001477 if (lru == LRU_ACTIVE_FILE && inactive_file_is_low(zone, sc)) {
Rik van Riel556adec2008-10-18 20:26:34 -07001478 shrink_active_list(nr_to_scan, zone, sc, priority, file);
1479 return 0;
1480 }
1481
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001482 if (lru == LRU_ACTIVE_ANON && inactive_anon_is_low(zone, sc)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001483 shrink_active_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001484 return 0;
1485 }
Rik van Riel33c120e2008-10-18 20:26:36 -07001486 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001487}
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001490 * Determine how aggressively the anon and file LRU lists should be
1491 * scanned. The relative value of each set of LRU lists is determined
1492 * by looking at the fraction of the pages scanned we did rotate back
1493 * onto the active list instead of evict.
1494 *
1495 * percent[0] specifies how much pressure to put on ram/swap backed
1496 * memory, while percent[1] determines pressure on the file LRUs.
1497 */
1498static void get_scan_ratio(struct zone *zone, struct scan_control *sc,
1499 unsigned long *percent)
1500{
1501 unsigned long anon, file, free;
1502 unsigned long anon_prio, file_prio;
1503 unsigned long ap, fp;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001504 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001505
Vincent Li0b217672009-09-21 17:03:09 -07001506 anon = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_ANON) +
1507 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_ANON);
1508 file = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_FILE) +
1509 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_FILE);
Hugh Dickinsb9627162009-01-06 14:39:41 -08001510
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001511 if (scanning_global_lru(sc)) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001512 free = zone_page_state(zone, NR_FREE_PAGES);
1513 /* If we have very few page cache pages,
1514 force-scan anon pages. */
Mel Gorman41858962009-06-16 15:32:12 -07001515 if (unlikely(file + free <= high_wmark_pages(zone))) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001516 percent[0] = 100;
1517 percent[1] = 0;
1518 return;
1519 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001520 }
1521
1522 /*
1523 * OK, so we have swap space and a fair amount of page cache
1524 * pages. We use the recently rotated / recently scanned
1525 * ratios to determine how valuable each cache is.
1526 *
1527 * Because workloads change over time (and to avoid overflow)
1528 * we keep these statistics as a floating average, which ends
1529 * up weighing recent references more than old ones.
1530 *
1531 * anon in [0], file in [1]
1532 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001533 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001534 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001535 reclaim_stat->recent_scanned[0] /= 2;
1536 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001537 spin_unlock_irq(&zone->lru_lock);
1538 }
1539
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001540 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001541 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001542 reclaim_stat->recent_scanned[1] /= 2;
1543 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001544 spin_unlock_irq(&zone->lru_lock);
1545 }
1546
1547 /*
1548 * With swappiness at 100, anonymous and file have the same priority.
1549 * This scanning priority is essentially the inverse of IO cost.
1550 */
1551 anon_prio = sc->swappiness;
1552 file_prio = 200 - sc->swappiness;
1553
1554 /*
Rik van Riel00d80892008-11-19 15:36:44 -08001555 * The amount of pressure on anon vs file pages is inversely
1556 * proportional to the fraction of recently scanned pages on
1557 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001558 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001559 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1560 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001561
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001562 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1563 fp /= reclaim_stat->recent_rotated[1] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001564
1565 /* Normalize to percentages */
1566 percent[0] = 100 * ap / (ap + fp + 1);
1567 percent[1] = 100 - percent[0];
1568}
1569
Wu Fengguang6e08a362009-06-16 15:32:29 -07001570/*
1571 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1572 * until we collected @swap_cluster_max pages to scan.
1573 */
1574static unsigned long nr_scan_try_batch(unsigned long nr_to_scan,
1575 unsigned long *nr_saved_scan,
1576 unsigned long swap_cluster_max)
1577{
1578 unsigned long nr;
1579
1580 *nr_saved_scan += nr_to_scan;
1581 nr = *nr_saved_scan;
1582
1583 if (nr >= swap_cluster_max)
1584 *nr_saved_scan = 0;
1585 else
1586 nr = 0;
1587
1588 return nr;
1589}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001590
1591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1593 */
Rik van Riela79311c2009-01-06 14:40:01 -08001594static void shrink_zone(int priority, struct zone *zone,
Andrew Morton05ff5132006-03-22 00:08:20 -08001595 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Christoph Lameterb69408e2008-10-18 20:26:14 -07001597 unsigned long nr[NR_LRU_LISTS];
Christoph Lameter86959492006-03-22 00:08:18 -08001598 unsigned long nr_to_scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001599 unsigned long percent[2]; /* anon @ 0; file @ 1 */
Christoph Lameterb69408e2008-10-18 20:26:14 -07001600 enum lru_list l;
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001601 unsigned long nr_reclaimed = sc->nr_reclaimed;
1602 unsigned long swap_cluster_max = sc->swap_cluster_max;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001603 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
Wu Fengguangf8629632009-09-21 17:03:11 -07001604 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001605 int noswap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001607 /* If we have no swap space, do not bother scanning anon pages. */
1608 if (!sc->may_swap || (nr_swap_pages <= 0)) {
1609 noswap = 1;
1610 percent[0] = 0;
1611 percent[1] = 100;
1612 } else
1613 get_scan_ratio(zone, sc, percent);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001614
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001615 for_each_evictable_lru(l) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001616 int file = is_file_lru(l);
Andrew Morton8713e012009-04-30 15:08:55 -07001617 unsigned long scan;
Johannes Weinere0f79b82008-10-18 20:26:55 -07001618
Vincent Li0b217672009-09-21 17:03:09 -07001619 scan = zone_nr_lru_pages(zone, sc, l);
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001620 if (priority || noswap) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001621 scan >>= priority;
1622 scan = (scan * percent[file]) / 100;
1623 }
Wu Fengguangf8629632009-09-21 17:03:11 -07001624 nr[l] = nr_scan_try_batch(scan,
1625 &reclaim_stat->nr_saved_scan[l],
1626 swap_cluster_max);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001627 }
1628
Rik van Riel556adec2008-10-18 20:26:34 -07001629 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1630 nr[LRU_INACTIVE_FILE]) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001631 for_each_evictable_lru(l) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001632 if (nr[l]) {
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001633 nr_to_scan = min(nr[l], swap_cluster_max);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001634 nr[l] -= nr_to_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001636 nr_reclaimed += shrink_list(l, nr_to_scan,
1637 zone, sc, priority);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Rik van Riela79311c2009-01-06 14:40:01 -08001640 /*
1641 * On large memory systems, scan >> priority can become
1642 * really large. This is fine for the starting priority;
1643 * we want to put equal scanning pressure on each zone.
1644 * However, if the VM has a harder time of freeing pages,
1645 * with multiple processes reclaiming pages, the total
1646 * freeing target can get unreasonably large.
1647 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001648 if (nr_reclaimed > nr_to_reclaim && priority < DEF_PRIORITY)
Rik van Riela79311c2009-01-06 14:40:01 -08001649 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001652 sc->nr_reclaimed = nr_reclaimed;
1653
Rik van Riel556adec2008-10-18 20:26:34 -07001654 /*
1655 * Even if we did not try to evict anon pages at all, we want to
1656 * rebalance the anon lru active/inactive ratio.
1657 */
MinChan Kim69c85482009-06-16 15:32:44 -07001658 if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
Rik van Riel556adec2008-10-18 20:26:34 -07001659 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1660
Andrew Morton232ea4d2007-02-28 20:13:21 -08001661 throttle_vm_writeout(sc->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
1664/*
1665 * This is the direct reclaim path, for page-allocating processes. We only
1666 * try to reclaim pages from zones which will satisfy the caller's allocation
1667 * request.
1668 *
Mel Gorman41858962009-06-16 15:32:12 -07001669 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1670 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1672 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07001673 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1674 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1675 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 * If a zone is deemed to be full of pinned pages then just give it a light
1678 * scan then give up on it.
1679 */
Rik van Riela79311c2009-01-06 14:40:01 -08001680static void shrink_zones(int priority, struct zonelist *zonelist,
Andrew Morton05ff5132006-03-22 00:08:20 -08001681 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
Mel Gorman54a6eb52008-04-28 02:12:16 -07001683 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
Mel Gormandd1a2392008-04-28 02:12:17 -07001684 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001685 struct zone *zone;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001686
Nick Piggin408d8542006-09-25 23:31:27 -07001687 sc->all_unreclaimable = 1;
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001688 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1689 sc->nodemask) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08001690 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 continue;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001692 /*
1693 * Take care memory controller reclaiming has small influence
1694 * to global LRU.
1695 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001696 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001697 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1698 continue;
1699 note_zone_scanning_priority(zone, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001701 if (zone_is_all_unreclaimable(zone) &&
1702 priority != DEF_PRIORITY)
1703 continue; /* Let kswapd poll it */
1704 sc->all_unreclaimable = 0;
1705 } else {
1706 /*
1707 * Ignore cpuset limitation here. We just want to reduce
1708 * # of used pages by us regardless of memory shortage.
1709 */
1710 sc->all_unreclaimable = 0;
1711 mem_cgroup_note_reclaim_priority(sc->mem_cgroup,
1712 priority);
1713 }
Nick Piggin408d8542006-09-25 23:31:27 -07001714
Rik van Riela79311c2009-01-06 14:40:01 -08001715 shrink_zone(priority, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719/*
1720 * This is the main entry point to direct page reclaim.
1721 *
1722 * If a full scan of the inactive list fails to free enough memory then we
1723 * are "out of memory" and something needs to be killed.
1724 *
1725 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1726 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02001727 * caller can't do much about. We kick the writeback threads and take explicit
1728 * naps in the hope that some of these pages can be written. But if the
1729 * allocating task holds filesystem locks which prevent writeout this might not
1730 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07001731 *
1732 * returns: 0, if no pages reclaimed
1733 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 */
Mel Gormandac1d272008-04-28 02:12:12 -07001735static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Mel Gormandd1a2392008-04-28 02:12:17 -07001736 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 int priority;
kosaki.motohiro@jp.fujitsu.comc700be32008-06-12 15:21:27 -07001739 unsigned long ret = 0;
Andrew Morton69e05942006-03-22 00:08:19 -08001740 unsigned long total_scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 struct reclaim_state *reclaim_state = current->reclaim_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 unsigned long lru_pages = 0;
Mel Gormandd1a2392008-04-28 02:12:17 -07001743 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001744 struct zone *zone;
Mel Gormandd1a2392008-04-28 02:12:17 -07001745 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001746 unsigned long writeback_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Keika Kobayashi873b4772008-07-25 01:48:52 -07001748 delayacct_freepages_start();
1749
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001750 if (scanning_global_lru(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001751 count_vm_event(ALLOCSTALL);
1752 /*
1753 * mem_cgroup will not do shrink_slab.
1754 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001755 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001756 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001758 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1759 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Wu Fengguangadea02a2009-09-21 17:01:42 -07001761 lru_pages += zone_reclaimable_pages(zone);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
1764
1765 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Balbir Singh66e17072008-02-07 00:13:56 -08001766 sc->nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001767 if (!priority)
1768 disable_swap_token();
Rik van Riela79311c2009-01-06 14:40:01 -08001769 shrink_zones(priority, zonelist, sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001770 /*
1771 * Don't shrink slabs when reclaiming memory from
1772 * over limit cgroups
1773 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001774 if (scanning_global_lru(sc)) {
Mel Gormandd1a2392008-04-28 02:12:17 -07001775 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001776 if (reclaim_state) {
Rik van Riela79311c2009-01-06 14:40:01 -08001777 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001778 reclaim_state->reclaimed_slab = 0;
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
Balbir Singh66e17072008-02-07 00:13:56 -08001781 total_scanned += sc->nr_scanned;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001782 if (sc->nr_reclaimed >= sc->nr_to_reclaim) {
Rik van Riela79311c2009-01-06 14:40:01 -08001783 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto out;
1785 }
1786
1787 /*
1788 * Try to write back as many pages as we just scanned. This
1789 * tends to cause slow streaming writers to write data to the
1790 * disk smoothly, at the dirtying rate, which is nice. But
1791 * that's undesirable in laptop mode, where we *want* lumpy
1792 * writeout. So in laptop mode, write out the whole world.
1793 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001794 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
1795 if (total_scanned > writeback_threshold) {
Jens Axboe03ba3782009-09-09 09:08:54 +02001796 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned);
Balbir Singh66e17072008-02-07 00:13:56 -08001797 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
1800 /* Take a nap, wait for some writeback to complete */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08001801 if (!sc->hibernation_mode && sc->nr_scanned &&
1802 priority < DEF_PRIORITY - 2)
Jens Axboe8aa7e842009-07-09 14:52:32 +02001803 congestion_wait(BLK_RW_ASYNC, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
Fernando Luis Vazquez Cao87547ee2008-07-29 22:33:42 -07001805 /* top priority shrink_zones still had more to do? don't OOM, then */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001806 if (!sc->all_unreclaimable && scanning_global_lru(sc))
Rik van Riela79311c2009-01-06 14:40:01 -08001807 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07001809 /*
1810 * Now that we've scanned all the zones at this priority level, note
1811 * that level within the zone so that the next thread which performs
1812 * scanning of this zone will immediately start out at this priority
1813 * level. This affects only the decision whether or not to bring
1814 * mapped pages onto the inactive list.
1815 */
1816 if (priority < 0)
1817 priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001819 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001820 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001822 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1823 continue;
1824
1825 zone->prev_priority = priority;
1826 }
1827 } else
1828 mem_cgroup_record_reclaim_priority(sc->mem_cgroup, priority);
1829
Keika Kobayashi873b4772008-07-25 01:48:52 -07001830 delayacct_freepages_end();
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return ret;
1833}
1834
Mel Gormandac1d272008-04-28 02:12:12 -07001835unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001836 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08001837{
1838 struct scan_control sc = {
1839 .gfp_mask = gfp_mask,
1840 .may_writepage = !laptop_mode,
1841 .swap_cluster_max = SWAP_CLUSTER_MAX,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001842 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001843 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001844 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08001845 .swappiness = vm_swappiness,
1846 .order = order,
1847 .mem_cgroup = NULL,
1848 .isolate_pages = isolate_pages_global,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001849 .nodemask = nodemask,
Balbir Singh66e17072008-02-07 00:13:56 -08001850 };
1851
Mel Gormandd1a2392008-04-28 02:12:17 -07001852 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001853}
1854
Balbir Singh00f0b822008-03-04 14:28:39 -08001855#ifdef CONFIG_CGROUP_MEM_RES_CTLR
Balbir Singh66e17072008-02-07 00:13:56 -08001856
Balbir Singh4e416952009-09-23 15:56:39 -07001857unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
1858 gfp_t gfp_mask, bool noswap,
1859 unsigned int swappiness,
1860 struct zone *zone, int nid)
1861{
1862 struct scan_control sc = {
1863 .may_writepage = !laptop_mode,
1864 .may_unmap = 1,
1865 .may_swap = !noswap,
1866 .swap_cluster_max = SWAP_CLUSTER_MAX,
1867 .swappiness = swappiness,
1868 .order = 0,
1869 .mem_cgroup = mem,
1870 .isolate_pages = mem_cgroup_isolate_pages,
1871 };
1872 nodemask_t nm = nodemask_of_node(nid);
1873
1874 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1875 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1876 sc.nodemask = &nm;
1877 sc.nr_reclaimed = 0;
1878 sc.nr_scanned = 0;
1879 /*
1880 * NOTE: Although we can get the priority field, using it
1881 * here is not a good idea, since it limits the pages we can scan.
1882 * if we don't reclaim here, the shrink_zone from balance_pgdat
1883 * will pick up pages from other mem cgroup's as well. We hack
1884 * the priority and make it zero.
1885 */
1886 shrink_zone(0, zone, &sc);
1887 return sc.nr_reclaimed;
1888}
1889
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001890unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001891 gfp_t gfp_mask,
1892 bool noswap,
1893 unsigned int swappiness)
Balbir Singh66e17072008-02-07 00:13:56 -08001894{
Balbir Singh4e416952009-09-23 15:56:39 -07001895 struct zonelist *zonelist;
Balbir Singh66e17072008-02-07 00:13:56 -08001896 struct scan_control sc = {
Balbir Singh66e17072008-02-07 00:13:56 -08001897 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001898 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001899 .may_swap = !noswap,
Balbir Singh66e17072008-02-07 00:13:56 -08001900 .swap_cluster_max = SWAP_CLUSTER_MAX,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001901 .nr_to_reclaim = SWAP_CLUSTER_MAX,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001902 .swappiness = swappiness,
Balbir Singh66e17072008-02-07 00:13:56 -08001903 .order = 0,
1904 .mem_cgroup = mem_cont,
1905 .isolate_pages = mem_cgroup_isolate_pages,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001906 .nodemask = NULL, /* we don't care the placement */
Balbir Singh66e17072008-02-07 00:13:56 -08001907 };
Balbir Singh66e17072008-02-07 00:13:56 -08001908
Mel Gormandd1a2392008-04-28 02:12:17 -07001909 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1910 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1911 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
1912 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001913}
1914#endif
1915
Mel Gormanf50de2d2009-12-14 17:58:53 -08001916/* is kswapd sleeping prematurely? */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001917static int sleeping_prematurely(pg_data_t *pgdat, int order, long remaining)
Mel Gormanf50de2d2009-12-14 17:58:53 -08001918{
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001919 int i;
Mel Gormanf50de2d2009-12-14 17:58:53 -08001920
1921 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
1922 if (remaining)
1923 return 1;
1924
1925 /* If after HZ/10, a zone is below the high mark, it's premature */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001926 for (i = 0; i < pgdat->nr_zones; i++) {
1927 struct zone *zone = pgdat->node_zones + i;
1928
1929 if (!populated_zone(zone))
1930 continue;
1931
Mel Gormanf50de2d2009-12-14 17:58:53 -08001932 if (!zone_watermark_ok(zone, order, high_wmark_pages(zone),
1933 0, 0))
1934 return 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001935 }
Mel Gormanf50de2d2009-12-14 17:58:53 -08001936
1937 return 0;
1938}
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940/*
1941 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07001942 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 * Returns the number of pages which were actually freed.
1945 *
1946 * There is special handling here for zones which are full of pinned pages.
1947 * This can happen if the pages are all mlocked, or if they are all used by
1948 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1949 * What we do is to detect the case where all pages in the zone have been
1950 * scanned twice and there has been zero successful reclaim. Mark the zone as
1951 * dead and from now on, only perform a short scan. Basically we're polling
1952 * the zone for when the problem goes away.
1953 *
1954 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07001955 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
1956 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
1957 * lower zones regardless of the number of free pages in the lower zones. This
1958 * interoperates with the page allocator fallback scheme to ensure that aging
1959 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001961static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 int all_zones_ok;
1964 int priority;
1965 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08001966 unsigned long total_scanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08001968 struct scan_control sc = {
1969 .gfp_mask = GFP_KERNEL,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001970 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001971 .may_swap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001972 .swap_cluster_max = SWAP_CLUSTER_MAX,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001973 /*
1974 * kswapd doesn't want to be bailed out while reclaim. because
1975 * we want to put equal scanning pressure on each zone.
1976 */
1977 .nr_to_reclaim = ULONG_MAX,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001978 .swappiness = vm_swappiness,
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001979 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08001980 .mem_cgroup = NULL,
1981 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08001982 };
Martin Bligh3bb1a852006-10-28 10:38:24 -07001983 /*
1984 * temp_priority is used to remember the scanning priority at which
Mel Gorman41858962009-06-16 15:32:12 -07001985 * this zone was successfully refilled to
1986 * free_pages == high_wmark_pages(zone).
Martin Bligh3bb1a852006-10-28 10:38:24 -07001987 */
1988 int temp_priority[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990loop_again:
1991 total_scanned = 0;
Rik van Riela79311c2009-01-06 14:40:01 -08001992 sc.nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07001993 sc.may_writepage = !laptop_mode;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001994 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Martin Bligh3bb1a852006-10-28 10:38:24 -07001996 for (i = 0; i < pgdat->nr_zones; i++)
1997 temp_priority[i] = DEF_PRIORITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
2000 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
2001 unsigned long lru_pages = 0;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002002 int has_under_min_watermark_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Rik van Rielf7b7fd82005-11-28 13:44:07 -08002004 /* The swap token gets in the way of swapout... */
2005 if (!priority)
2006 disable_swap_token();
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 all_zones_ok = 1;
2009
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002010 /*
2011 * Scan in the highmem->dma direction for the highest
2012 * zone which needs scanning
2013 */
2014 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
2015 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002017 if (!populated_zone(zone))
2018 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
David Rientjese815af92007-10-16 23:25:54 -07002020 if (zone_is_all_unreclaimable(zone) &&
2021 priority != DEF_PRIORITY)
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002022 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Rik van Riel556adec2008-10-18 20:26:34 -07002024 /*
2025 * Do some background aging of the anon list, to give
2026 * pages a chance to be referenced before reclaiming.
2027 */
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002028 if (inactive_anon_is_low(zone, &sc))
Rik van Riel556adec2008-10-18 20:26:34 -07002029 shrink_active_list(SWAP_CLUSTER_MAX, zone,
2030 &sc, priority, 0);
2031
Mel Gorman41858962009-06-16 15:32:12 -07002032 if (!zone_watermark_ok(zone, order,
2033 high_wmark_pages(zone), 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002034 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002035 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002038 if (i < 0)
2039 goto out;
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 for (i = 0; i <= end_zone; i++) {
2042 struct zone *zone = pgdat->node_zones + i;
2043
Wu Fengguangadea02a2009-09-21 17:01:42 -07002044 lru_pages += zone_reclaimable_pages(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
2046
2047 /*
2048 * Now scan the zone in the dma->highmem direction, stopping
2049 * at the last zone which needs scanning.
2050 *
2051 * We do this because the page allocator works in the opposite
2052 * direction. This prevents the page allocator from allocating
2053 * pages behind kswapd's direction of progress, which would
2054 * cause too much scanning of the lower zones.
2055 */
2056 for (i = 0; i <= end_zone; i++) {
2057 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002058 int nr_slab;
Balbir Singh4e416952009-09-23 15:56:39 -07002059 int nid, zid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Con Kolivasf3fe6512006-01-06 00:11:15 -08002061 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 continue;
2063
David Rientjese815af92007-10-16 23:25:54 -07002064 if (zone_is_all_unreclaimable(zone) &&
2065 priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 continue;
2067
Mel Gorman41858962009-06-16 15:32:12 -07002068 if (!zone_watermark_ok(zone, order,
2069 high_wmark_pages(zone), end_zone, 0))
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002070 all_zones_ok = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002071 temp_priority[i] = priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 sc.nr_scanned = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002073 note_zone_scanning_priority(zone, priority);
Balbir Singh4e416952009-09-23 15:56:39 -07002074
2075 nid = pgdat->node_id;
2076 zid = zone_idx(zone);
2077 /*
2078 * Call soft limit reclaim before calling shrink_zone.
2079 * For now we ignore the return value
2080 */
2081 mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask,
2082 nid, zid);
Rik van Riel32a43302007-10-16 01:24:50 -07002083 /*
2084 * We put equal pressure on every zone, unless one
2085 * zone has way too many pages free already.
2086 */
Mel Gorman41858962009-06-16 15:32:12 -07002087 if (!zone_watermark_ok(zone, order,
2088 8*high_wmark_pages(zone), end_zone, 0))
Rik van Riela79311c2009-01-06 14:40:01 -08002089 shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002091 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
2092 lru_pages);
Rik van Riela79311c2009-01-06 14:40:01 -08002093 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 total_scanned += sc.nr_scanned;
David Rientjese815af92007-10-16 23:25:54 -07002095 if (zone_is_all_unreclaimable(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 continue;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002097 if (nr_slab == 0 && zone->pages_scanned >=
Wu Fengguangadea02a2009-09-21 17:01:42 -07002098 (zone_reclaimable_pages(zone) * 6))
David Rientjese815af92007-10-16 23:25:54 -07002099 zone_set_flag(zone,
2100 ZONE_ALL_UNRECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 /*
2102 * If we've done a decent amount of scanning and
2103 * the reclaim ratio is low, start doing writepage
2104 * even in laptop mode
2105 */
2106 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Rik van Riela79311c2009-01-06 14:40:01 -08002107 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 sc.may_writepage = 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002109
2110 /*
2111 * We are still under min water mark. it mean we have
2112 * GFP_ATOMIC allocation failure risk. Hurry up!
2113 */
2114 if (!zone_watermark_ok(zone, order, min_wmark_pages(zone),
2115 end_zone, 0))
2116 has_under_min_watermark_zone = 1;
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (all_zones_ok)
2120 break; /* kswapd: all done */
2121 /*
2122 * OK, kswapd is getting into trouble. Take a nap, then take
2123 * another pass across the zones.
2124 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002125 if (total_scanned && (priority < DEF_PRIORITY - 2)) {
2126 if (has_under_min_watermark_zone)
2127 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT);
2128 else
2129 congestion_wait(BLK_RW_ASYNC, HZ/10);
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /*
2133 * We do this so kswapd doesn't build up large priorities for
2134 * example when it is freeing in parallel with allocators. It
2135 * matches the direct reclaim path behaviour in terms of impact
2136 * on zone->*_priority.
2137 */
Rik van Riela79311c2009-01-06 14:40:01 -08002138 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 break;
2140 }
2141out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07002142 /*
2143 * Note within each zone the priority level at which this zone was
2144 * brought into a happy state. So that the next thread which scans this
2145 * zone will start out at that priority level.
2146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 for (i = 0; i < pgdat->nr_zones; i++) {
2148 struct zone *zone = pgdat->node_zones + i;
2149
Martin Bligh3bb1a852006-10-28 10:38:24 -07002150 zone->prev_priority = temp_priority[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152 if (!all_zones_ok) {
2153 cond_resched();
Rafael J. Wysocki83573762006-12-06 20:34:18 -08002154
2155 try_to_freeze();
2156
KOSAKI Motohiro73ce02e2009-01-06 14:40:33 -08002157 /*
2158 * Fragmentation may mean that the system cannot be
2159 * rebalanced for high-order allocations in all zones.
2160 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2161 * it means the zones have been fully scanned and are still
2162 * not balanced. For high-order allocations, there is
2163 * little point trying all over again as kswapd may
2164 * infinite loop.
2165 *
2166 * Instead, recheck all watermarks at order-0 as they
2167 * are the most important. If watermarks are ok, kswapd will go
2168 * back to sleep. High-order users can still perform direct
2169 * reclaim if they wish.
2170 */
2171 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
2172 order = sc.order = 0;
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 goto loop_again;
2175 }
2176
Rik van Riela79311c2009-01-06 14:40:01 -08002177 return sc.nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
2180/*
2181 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002182 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 *
2184 * This basically trickles out pages so that we have _some_
2185 * free memory available even if there is no other activity
2186 * that frees anything up. This is needed for things like routing
2187 * etc, where we otherwise might have all activity going on in
2188 * asynchronous contexts that cannot page things out.
2189 *
2190 * If there are applications that are active memory-allocators
2191 * (most normal use), this basically shouldn't matter.
2192 */
2193static int kswapd(void *p)
2194{
2195 unsigned long order;
2196 pg_data_t *pgdat = (pg_data_t*)p;
2197 struct task_struct *tsk = current;
2198 DEFINE_WAIT(wait);
2199 struct reclaim_state reclaim_state = {
2200 .reclaimed_slab = 0,
2201 };
Rusty Russella70f7302009-03-13 14:49:46 +10302202 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Nick Piggincf40bd12009-01-21 08:12:39 +01002204 lockdep_set_current_reclaim_state(GFP_KERNEL);
2205
Rusty Russell174596a2009-01-01 10:12:29 +10302206 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07002207 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 current->reclaim_state = &reclaim_state;
2209
2210 /*
2211 * Tell the memory management that we're a "memory allocator",
2212 * and that if we need more memory we should get access to it
2213 * regardless (see "__alloc_pages()"). "kswapd" should
2214 * never get caught in the normal page freeing logic.
2215 *
2216 * (Kswapd normally doesn't need memory anyway, but sometimes
2217 * you need a small amount of memory in order to be able to
2218 * page out something else, and this flag essentially protects
2219 * us from recursively trying to free more memory as we're
2220 * trying to free the first piece of memory in the first place).
2221 */
Christoph Lameter930d9152006-01-08 01:00:47 -08002222 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07002223 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 order = 0;
2226 for ( ; ; ) {
2227 unsigned long new_order;
David Rientjes8fe23e02009-12-14 17:58:33 -08002228 int ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2231 new_order = pgdat->kswapd_max_order;
2232 pgdat->kswapd_max_order = 0;
2233 if (order < new_order) {
2234 /*
2235 * Don't sleep if someone wants a larger 'order'
2236 * allocation
2237 */
2238 order = new_order;
2239 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002240 if (!freezing(current) && !kthread_should_stop()) {
2241 long remaining = 0;
2242
2243 /* Try to sleep for a short interval */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002244 if (!sleeping_prematurely(pgdat, order, remaining)) {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002245 remaining = schedule_timeout(HZ/10);
2246 finish_wait(&pgdat->kswapd_wait, &wait);
2247 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2248 }
2249
2250 /*
2251 * After a short sleep, check if it was a
2252 * premature sleep. If not, then go fully
2253 * to sleep until explicitly woken up
2254 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002255 if (!sleeping_prematurely(pgdat, order, remaining))
Mel Gormanf50de2d2009-12-14 17:58:53 -08002256 schedule();
2257 else {
2258 if (remaining)
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002259 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002260 else
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002261 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002262 }
2263 }
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 order = pgdat->kswapd_max_order;
2266 }
2267 finish_wait(&pgdat->kswapd_wait, &wait);
2268
David Rientjes8fe23e02009-12-14 17:58:33 -08002269 ret = try_to_freeze();
2270 if (kthread_should_stop())
2271 break;
2272
2273 /*
2274 * We can speed up thawing tasks if we don't call balance_pgdat
2275 * after returning from the refrigerator
2276 */
2277 if (!ret)
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002278 balance_pgdat(pgdat, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280 return 0;
2281}
2282
2283/*
2284 * A zone is low on free memory, so wake its kswapd task to service it.
2285 */
2286void wakeup_kswapd(struct zone *zone, int order)
2287{
2288 pg_data_t *pgdat;
2289
Con Kolivasf3fe6512006-01-06 00:11:15 -08002290 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return;
2292
2293 pgdat = zone->zone_pgdat;
Mel Gorman41858962009-06-16 15:32:12 -07002294 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return;
2296 if (pgdat->kswapd_max_order < order)
2297 pgdat->kswapd_max_order = order;
Paul Jackson02a0e532006-12-13 00:34:25 -08002298 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002300 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002302 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
Wu Fengguangadea02a2009-09-21 17:01:42 -07002305/*
2306 * The reclaimable count would be mostly accurate.
2307 * The less reclaimable pages may be
2308 * - mlocked pages, which will be moved to unevictable list when encountered
2309 * - mapped pages, which may require several travels to be reclaimed
2310 * - dirty pages, which is not "instantly" reclaimable
2311 */
2312unsigned long global_reclaimable_pages(void)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002313{
Wu Fengguangadea02a2009-09-21 17:01:42 -07002314 int nr;
2315
2316 nr = global_page_state(NR_ACTIVE_FILE) +
2317 global_page_state(NR_INACTIVE_FILE);
2318
2319 if (nr_swap_pages > 0)
2320 nr += global_page_state(NR_ACTIVE_ANON) +
2321 global_page_state(NR_INACTIVE_ANON);
2322
2323 return nr;
2324}
2325
2326unsigned long zone_reclaimable_pages(struct zone *zone)
2327{
2328 int nr;
2329
2330 nr = zone_page_state(zone, NR_ACTIVE_FILE) +
2331 zone_page_state(zone, NR_INACTIVE_FILE);
2332
2333 if (nr_swap_pages > 0)
2334 nr += zone_page_state(zone, NR_ACTIVE_ANON) +
2335 zone_page_state(zone, NR_INACTIVE_ANON);
2336
2337 return nr;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002338}
2339
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002340#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002342 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002343 * freed pages.
2344 *
2345 * Rather than trying to age LRUs the aim is to preserve the overall
2346 * LRU order by reclaiming preferentially
2347 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002349unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002351 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002352 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002353 .gfp_mask = GFP_HIGHUSER_MOVABLE,
2354 .may_swap = 1,
2355 .may_unmap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002356 .may_writepage = 1,
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002357 .swap_cluster_max = SWAP_CLUSTER_MAX,
2358 .nr_to_reclaim = nr_to_reclaim,
2359 .hibernation_mode = 1,
2360 .swappiness = vm_swappiness,
2361 .order = 0,
Balbir Singh66e17072008-02-07 00:13:56 -08002362 .isolate_pages = isolate_pages_global,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 };
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002364 struct zonelist * zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
2365 struct task_struct *p = current;
2366 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002368 p->flags |= PF_MEMALLOC;
2369 lockdep_set_current_reclaim_state(sc.gfp_mask);
2370 reclaim_state.reclaimed_slab = 0;
2371 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08002372
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002373 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002374
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002375 p->reclaim_state = NULL;
2376 lockdep_clear_current_reclaim_state();
2377 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002378
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002379 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002381#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383/* It's optimal to keep kswapds on the same CPUs as their memory, but
2384 not required for correctness. So if the last cpu in a node goes
2385 away, we get changed to run anywhere: as the first one comes back,
2386 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07002387static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08002388 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002390 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002392 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002393 for_each_node_state(nid, N_HIGH_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07002394 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10302395 const struct cpumask *mask;
2396
2397 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07002398
Rusty Russell3e597942009-01-01 10:12:24 +10302399 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07002401 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403 }
2404 return NOTIFY_OK;
2405}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Yasunori Goto3218ae12006-06-27 02:53:33 -07002407/*
2408 * This kswapd start function will be called by init and node-hot-add.
2409 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2410 */
2411int kswapd_run(int nid)
2412{
2413 pg_data_t *pgdat = NODE_DATA(nid);
2414 int ret = 0;
2415
2416 if (pgdat->kswapd)
2417 return 0;
2418
2419 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2420 if (IS_ERR(pgdat->kswapd)) {
2421 /* failure at boot is fatal */
2422 BUG_ON(system_state == SYSTEM_BOOTING);
2423 printk("Failed to start kswapd on node %d\n",nid);
2424 ret = -1;
2425 }
2426 return ret;
2427}
2428
David Rientjes8fe23e02009-12-14 17:58:33 -08002429/*
2430 * Called by memory hotplug when all memory in a node is offlined.
2431 */
2432void kswapd_stop(int nid)
2433{
2434 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
2435
2436 if (kswapd)
2437 kthread_stop(kswapd);
2438}
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440static int __init kswapd_init(void)
2441{
Yasunori Goto3218ae12006-06-27 02:53:33 -07002442 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 swap_setup();
Christoph Lameter9422ffb2007-10-16 01:25:31 -07002445 for_each_node_state(nid, N_HIGH_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07002446 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 hotcpu_notifier(cpu_callback, 0);
2448 return 0;
2449}
2450
2451module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002452
2453#ifdef CONFIG_NUMA
2454/*
2455 * Zone reclaim mode
2456 *
2457 * If non-zero call zone_reclaim when the number of free pages falls below
2458 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08002459 */
2460int zone_reclaim_mode __read_mostly;
2461
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002462#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07002463#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002464#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2465#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2466
Christoph Lameter9eeff232006-01-18 17:42:31 -08002467/*
Christoph Lametera92f7122006-02-01 03:05:32 -08002468 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2469 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2470 * a zone.
2471 */
2472#define ZONE_RECLAIM_PRIORITY 4
2473
Christoph Lameter9eeff232006-01-18 17:42:31 -08002474/*
Christoph Lameter96146342006-07-03 00:24:13 -07002475 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2476 * occur.
2477 */
2478int sysctl_min_unmapped_ratio = 1;
2479
2480/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002481 * If the number of slab pages in a zone grows beyond this percentage then
2482 * slab reclaim needs to occur.
2483 */
2484int sysctl_min_slab_ratio = 5;
2485
Mel Gorman90afa5d2009-06-16 15:33:20 -07002486static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
2487{
2488 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
2489 unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
2490 zone_page_state(zone, NR_ACTIVE_FILE);
2491
2492 /*
2493 * It's possible for there to be more file mapped pages than
2494 * accounted for by the pages on the file LRU lists because
2495 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2496 */
2497 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
2498}
2499
2500/* Work out how many page cache pages we can reclaim in this reclaim_mode */
2501static long zone_pagecache_reclaimable(struct zone *zone)
2502{
2503 long nr_pagecache_reclaimable;
2504 long delta = 0;
2505
2506 /*
2507 * If RECLAIM_SWAP is set, then all file pages are considered
2508 * potentially reclaimable. Otherwise, we have to worry about
2509 * pages like swapcache and zone_unmapped_file_pages() provides
2510 * a better estimate
2511 */
2512 if (zone_reclaim_mode & RECLAIM_SWAP)
2513 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
2514 else
2515 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
2516
2517 /* If we can't clean pages, remove dirty pages from consideration */
2518 if (!(zone_reclaim_mode & RECLAIM_WRITE))
2519 delta += zone_page_state(zone, NR_FILE_DIRTY);
2520
2521 /* Watch for any possible underflows due to delta */
2522 if (unlikely(delta > nr_pagecache_reclaimable))
2523 delta = nr_pagecache_reclaimable;
2524
2525 return nr_pagecache_reclaimable - delta;
2526}
2527
Christoph Lameter0ff38492006-09-25 23:31:52 -07002528/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08002529 * Try to free up some pages from this zone through reclaim.
2530 */
Andrew Morton179e9632006-03-22 00:08:18 -08002531static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002532{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002533 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08002534 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002535 struct task_struct *p = current;
2536 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08002537 int priority;
Andrew Morton179e9632006-03-22 00:08:18 -08002538 struct scan_control sc = {
2539 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002540 .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002541 .may_swap = 1,
Andrew Morton69e05942006-03-22 00:08:19 -08002542 .swap_cluster_max = max_t(unsigned long, nr_pages,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002543 SWAP_CLUSTER_MAX),
2544 .nr_to_reclaim = max_t(unsigned long, nr_pages,
2545 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08002546 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002547 .swappiness = vm_swappiness,
Johannes Weinerbd2f6192009-03-31 15:19:38 -07002548 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002549 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08002550 };
Christoph Lameter83e33a42006-09-25 23:31:53 -07002551 unsigned long slab_reclaimable;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002552
2553 disable_swap_token();
Christoph Lameter9eeff232006-01-18 17:42:31 -08002554 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08002555 /*
2556 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2557 * and we also need to be able to write out pages for RECLAIM_WRITE
2558 * and RECLAIM_SWAP.
2559 */
2560 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002561 reclaim_state.reclaimed_slab = 0;
2562 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08002563
Mel Gorman90afa5d2009-06-16 15:33:20 -07002564 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07002565 /*
2566 * Free memory by calling shrink zone with increasing
2567 * priorities until we have enough memory freed.
2568 */
2569 priority = ZONE_RECLAIM_PRIORITY;
2570 do {
Martin Bligh3bb1a852006-10-28 10:38:24 -07002571 note_zone_scanning_priority(zone, priority);
Rik van Riela79311c2009-01-06 14:40:01 -08002572 shrink_zone(priority, zone, &sc);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002573 priority--;
Rik van Riela79311c2009-01-06 14:40:01 -08002574 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002575 }
Christoph Lameterc84db232006-02-01 03:05:29 -08002576
Christoph Lameter83e33a42006-09-25 23:31:53 -07002577 slab_reclaimable = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2578 if (slab_reclaimable > zone->min_slab_pages) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002579 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002580 * shrink_slab() does not currently allow us to determine how
Christoph Lameter0ff38492006-09-25 23:31:52 -07002581 * many pages were freed in this zone. So we take the current
2582 * number of slab pages and shake the slab until it is reduced
2583 * by the same nr_pages that we used for reclaiming unmapped
2584 * pages.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002585 *
Christoph Lameter0ff38492006-09-25 23:31:52 -07002586 * Note that shrink_slab will free memory on all zones and may
2587 * take a long time.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002588 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07002589 while (shrink_slab(sc.nr_scanned, gfp_mask, order) &&
Christoph Lameter83e33a42006-09-25 23:31:53 -07002590 zone_page_state(zone, NR_SLAB_RECLAIMABLE) >
2591 slab_reclaimable - nr_pages)
Christoph Lameter0ff38492006-09-25 23:31:52 -07002592 ;
Christoph Lameter83e33a42006-09-25 23:31:53 -07002593
2594 /*
2595 * Update nr_reclaimed by the number of slab pages we
2596 * reclaimed from this zone.
2597 */
Rik van Riela79311c2009-01-06 14:40:01 -08002598 sc.nr_reclaimed += slab_reclaimable -
Christoph Lameter83e33a42006-09-25 23:31:53 -07002599 zone_page_state(zone, NR_SLAB_RECLAIMABLE);
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002600 }
2601
Christoph Lameter9eeff232006-01-18 17:42:31 -08002602 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08002603 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
Rik van Riela79311c2009-01-06 14:40:01 -08002604 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002605}
Andrew Morton179e9632006-03-22 00:08:18 -08002606
2607int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2608{
Andrew Morton179e9632006-03-22 00:08:18 -08002609 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07002610 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002611
2612 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002613 * Zone reclaim reclaims unmapped file backed pages and
2614 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07002615 *
Christoph Lameter96146342006-07-03 00:24:13 -07002616 * A small portion of unmapped file backed pages is needed for
2617 * file I/O otherwise pages read by file I/O will be immediately
2618 * thrown out if the zone is overallocated. So we do not reclaim
2619 * if less than a specified percentage of the zone is used by
2620 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08002621 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07002622 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
2623 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002624 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08002625
David Rientjesd773ed62007-10-16 23:26:01 -07002626 if (zone_is_all_unreclaimable(zone))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002627 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07002628
Andrew Morton179e9632006-03-22 00:08:18 -08002629 /*
David Rientjesd773ed62007-10-16 23:26:01 -07002630 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08002631 */
David Rientjesd773ed62007-10-16 23:26:01 -07002632 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002633 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08002634
2635 /*
2636 * Only run zone reclaim on the local zone or on zones that do not
2637 * have associated processors. This will favor the local processor
2638 * over remote processors and spread off node memory allocations
2639 * as wide as possible.
2640 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07002641 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07002642 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07002643 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07002644
2645 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002646 return ZONE_RECLAIM_NOSCAN;
2647
David Rientjesd773ed62007-10-16 23:26:01 -07002648 ret = __zone_reclaim(zone, gfp_mask, order);
2649 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2650
Mel Gorman24cf725182009-06-16 15:33:23 -07002651 if (!ret)
2652 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
2653
David Rientjesd773ed62007-10-16 23:26:01 -07002654 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002655}
Christoph Lameter9eeff232006-01-18 17:42:31 -08002656#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002657
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002658/*
2659 * page_evictable - test whether a page is evictable
2660 * @page: the page to test
2661 * @vma: the VMA in which the page is or will be mapped, may be NULL
2662 *
2663 * Test whether page is evictable--i.e., should be placed on active/inactive
Nick Pigginb291f002008-10-18 20:26:44 -07002664 * lists vs unevictable list. The vma argument is !NULL when called from the
2665 * fault path to determine how to instantate a new page.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002666 *
2667 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002668 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07002669 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002670 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002671 */
2672int page_evictable(struct page *page, struct vm_area_struct *vma)
2673{
2674
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002675 if (mapping_unevictable(page_mapping(page)))
2676 return 0;
2677
Nick Pigginb291f002008-10-18 20:26:44 -07002678 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2679 return 0;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002680
2681 return 1;
2682}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002683
2684/**
2685 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2686 * @page: page to check evictability and move to appropriate lru list
2687 * @zone: zone page is in
2688 *
2689 * Checks a page for evictability and moves the page to the appropriate
2690 * zone lru list.
2691 *
2692 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2693 * have PageUnevictable set.
2694 */
2695static void check_move_unevictable_page(struct page *page, struct zone *zone)
2696{
2697 VM_BUG_ON(PageActive(page));
2698
2699retry:
2700 ClearPageUnevictable(page);
2701 if (page_evictable(page, NULL)) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07002702 enum lru_list l = page_lru_base_type(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002703
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002704 __dec_zone_state(zone, NR_UNEVICTABLE);
2705 list_move(&page->lru, &zone->lru[l].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002706 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002707 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2708 __count_vm_event(UNEVICTABLE_PGRESCUED);
2709 } else {
2710 /*
2711 * rotate unevictable list
2712 */
2713 SetPageUnevictable(page);
2714 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002715 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002716 if (page_evictable(page, NULL))
2717 goto retry;
2718 }
2719}
2720
2721/**
2722 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2723 * @mapping: struct address_space to scan for evictable pages
2724 *
2725 * Scan all pages in mapping. Check unevictable pages for
2726 * evictability and move them to the appropriate zone lru list.
2727 */
2728void scan_mapping_unevictable_pages(struct address_space *mapping)
2729{
2730 pgoff_t next = 0;
2731 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2732 PAGE_CACHE_SHIFT;
2733 struct zone *zone;
2734 struct pagevec pvec;
2735
2736 if (mapping->nrpages == 0)
2737 return;
2738
2739 pagevec_init(&pvec, 0);
2740 while (next < end &&
2741 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2742 int i;
2743 int pg_scanned = 0;
2744
2745 zone = NULL;
2746
2747 for (i = 0; i < pagevec_count(&pvec); i++) {
2748 struct page *page = pvec.pages[i];
2749 pgoff_t page_index = page->index;
2750 struct zone *pagezone = page_zone(page);
2751
2752 pg_scanned++;
2753 if (page_index > next)
2754 next = page_index;
2755 next++;
2756
2757 if (pagezone != zone) {
2758 if (zone)
2759 spin_unlock_irq(&zone->lru_lock);
2760 zone = pagezone;
2761 spin_lock_irq(&zone->lru_lock);
2762 }
2763
2764 if (PageLRU(page) && PageUnevictable(page))
2765 check_move_unevictable_page(page, zone);
2766 }
2767 if (zone)
2768 spin_unlock_irq(&zone->lru_lock);
2769 pagevec_release(&pvec);
2770
2771 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2772 }
2773
2774}
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002775
2776/**
2777 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2778 * @zone - zone of which to scan the unevictable list
2779 *
2780 * Scan @zone's unevictable LRU lists to check for pages that have become
2781 * evictable. Move those that have to @zone's inactive list where they
2782 * become candidates for reclaim, unless shrink_inactive_zone() decides
2783 * to reactivate them. Pages that are still unevictable are rotated
2784 * back onto @zone's unevictable list.
2785 */
2786#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
KOSAKI Motohiro14b90b22009-01-06 14:39:45 -08002787static void scan_zone_unevictable_pages(struct zone *zone)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002788{
2789 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2790 unsigned long scan;
2791 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2792
2793 while (nr_to_scan > 0) {
2794 unsigned long batch_size = min(nr_to_scan,
2795 SCAN_UNEVICTABLE_BATCH_SIZE);
2796
2797 spin_lock_irq(&zone->lru_lock);
2798 for (scan = 0; scan < batch_size; scan++) {
2799 struct page *page = lru_to_page(l_unevictable);
2800
2801 if (!trylock_page(page))
2802 continue;
2803
2804 prefetchw_prev_lru_page(page, l_unevictable, flags);
2805
2806 if (likely(PageLRU(page) && PageUnevictable(page)))
2807 check_move_unevictable_page(page, zone);
2808
2809 unlock_page(page);
2810 }
2811 spin_unlock_irq(&zone->lru_lock);
2812
2813 nr_to_scan -= batch_size;
2814 }
2815}
2816
2817
2818/**
2819 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2820 *
2821 * A really big hammer: scan all zones' unevictable LRU lists to check for
2822 * pages that have become evictable. Move those back to the zones'
2823 * inactive list where they become candidates for reclaim.
2824 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2825 * and we add swap to the system. As such, it runs in the context of a task
2826 * that has possibly/probably made some previously unevictable pages
2827 * evictable.
2828 */
KOSAKI Motohiroff301532009-01-06 14:39:44 -08002829static void scan_all_zones_unevictable_pages(void)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002830{
2831 struct zone *zone;
2832
2833 for_each_zone(zone) {
2834 scan_zone_unevictable_pages(zone);
2835 }
2836}
2837
2838/*
2839 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2840 * all nodes' unevictable lists for evictable pages
2841 */
2842unsigned long scan_unevictable_pages;
2843
2844int scan_unevictable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002845 void __user *buffer,
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002846 size_t *length, loff_t *ppos)
2847{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002848 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002849
2850 if (write && *(unsigned long *)table->data)
2851 scan_all_zones_unevictable_pages();
2852
2853 scan_unevictable_pages = 0;
2854 return 0;
2855}
2856
2857/*
2858 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2859 * a specified node's per zone unevictable lists for evictable pages.
2860 */
2861
2862static ssize_t read_scan_unevictable_node(struct sys_device *dev,
2863 struct sysdev_attribute *attr,
2864 char *buf)
2865{
2866 return sprintf(buf, "0\n"); /* always zero; should fit... */
2867}
2868
2869static ssize_t write_scan_unevictable_node(struct sys_device *dev,
2870 struct sysdev_attribute *attr,
2871 const char *buf, size_t count)
2872{
2873 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
2874 struct zone *zone;
2875 unsigned long res;
2876 unsigned long req = strict_strtoul(buf, 10, &res);
2877
2878 if (!req)
2879 return 1; /* zero is no-op */
2880
2881 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2882 if (!populated_zone(zone))
2883 continue;
2884 scan_zone_unevictable_pages(zone);
2885 }
2886 return 1;
2887}
2888
2889
2890static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
2891 read_scan_unevictable_node,
2892 write_scan_unevictable_node);
2893
2894int scan_unevictable_register_node(struct node *node)
2895{
2896 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
2897}
2898
2899void scan_unevictable_unregister_node(struct node *node)
2900{
2901 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
2902}
2903