blob: 885207a6b6b735cb7ca0dd276b907312300b5df1 [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
Rafael J. Wysockid6277db2006-06-23 02:03:18 -070074 int swappiness;
Nick Piggin408d8542006-09-25 23:31:27 -070075
76 int all_unreclaimable;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -070077
78 int order;
Balbir Singh66e17072008-02-07 00:13:56 -080079
80 /* Which cgroup do we reclaim from */
81 struct mem_cgroup *mem_cgroup;
82
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -070083 /*
84 * Nodemask of nodes allowed by the caller. If NULL, all nodes
85 * are scanned.
86 */
87 nodemask_t *nodemask;
88
Balbir Singh66e17072008-02-07 00:13:56 -080089 /* Pluggable isolate pages callback */
90 unsigned long (*isolate_pages)(unsigned long nr, struct list_head *dst,
91 unsigned long *scanned, int order, int mode,
92 struct zone *z, struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070093 int active, int file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
97
98#ifdef ARCH_HAS_PREFETCH
99#define prefetch_prev_lru_page(_page, _base, _field) \
100 do { \
101 if ((_page)->lru.prev != _base) { \
102 struct page *prev; \
103 \
104 prev = lru_to_page(&(_page->lru)); \
105 prefetch(&prev->_field); \
106 } \
107 } while (0)
108#else
109#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
110#endif
111
112#ifdef ARCH_HAS_PREFETCHW
113#define prefetchw_prev_lru_page(_page, _base, _field) \
114 do { \
115 if ((_page)->lru.prev != _base) { \
116 struct page *prev; \
117 \
118 prev = lru_to_page(&(_page->lru)); \
119 prefetchw(&prev->_field); \
120 } \
121 } while (0)
122#else
123#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
124#endif
125
126/*
127 * From 0 .. 100. Higher means more swappy.
128 */
129int vm_swappiness = 60;
Andrew Mortonbd1e22b2006-06-23 02:03:47 -0700130long vm_total_pages; /* The total number of pages which the VM controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132static LIST_HEAD(shrinker_list);
133static DECLARE_RWSEM(shrinker_rwsem);
134
Balbir Singh00f0b822008-03-04 14:28:39 -0800135#ifdef CONFIG_CGROUP_MEM_RES_CTLR
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800136#define scanning_global_lru(sc) (!(sc)->mem_cgroup)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800137#else
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800138#define scanning_global_lru(sc) (1)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800139#endif
140
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800141static struct zone_reclaim_stat *get_reclaim_stat(struct zone *zone,
142 struct scan_control *sc)
143{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800144 if (!scanning_global_lru(sc))
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800145 return mem_cgroup_get_reclaim_stat(sc->mem_cgroup, zone);
146
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800147 return &zone->reclaim_stat;
148}
149
Vincent Li0b217672009-09-21 17:03:09 -0700150static unsigned long zone_nr_lru_pages(struct zone *zone,
151 struct scan_control *sc, enum lru_list lru)
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800152{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800153 if (!scanning_global_lru(sc))
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800154 return mem_cgroup_zone_nr_pages(sc->mem_cgroup, zone, lru);
155
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800156 return zone_page_state(zone, NR_LRU_BASE + lru);
157}
158
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * Add a shrinker callback to be called from the vm
162 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700163void register_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700165 shrinker->nr = 0;
166 down_write(&shrinker_rwsem);
167 list_add_tail(&shrinker->list, &shrinker_list);
168 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700170EXPORT_SYMBOL(register_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/*
173 * Remove one
174 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700175void unregister_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 down_write(&shrinker_rwsem);
178 list_del(&shrinker->list);
179 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700181EXPORT_SYMBOL(unregister_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183#define SHRINK_BATCH 128
184/*
185 * Call the shrink functions to age shrinkable caches
186 *
187 * Here we assume it costs one seek to replace a lru page and that it also
188 * takes a seek to recreate a cache object. With this in mind we age equal
189 * percentages of the lru and ageable caches. This should balance the seeks
190 * generated by these structures.
191 *
Simon Arlott183ff222007-10-20 01:27:18 +0200192 * If the vm encountered mapped pages on the LRU it increase the pressure on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * slab to avoid swapping.
194 *
195 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
196 *
197 * `lru_pages' represents the number of on-LRU pages in all the zones which
198 * are eligible for the caller's allocation attempt. It is used for balancing
199 * slab reclaim versus page reclaim.
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700200 *
201 * Returns the number of slab objects which we shrunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
Andrew Morton69e05942006-03-22 00:08:19 -0800203unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask,
204 unsigned long lru_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 struct shrinker *shrinker;
Andrew Morton69e05942006-03-22 00:08:19 -0800207 unsigned long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (scanned == 0)
210 scanned = SWAP_CLUSTER_MAX;
211
212 if (!down_read_trylock(&shrinker_rwsem))
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700213 return 1; /* Assume we'll be able to shrink next time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 list_for_each_entry(shrinker, &shrinker_list, list) {
216 unsigned long long delta;
217 unsigned long total_scan;
Rusty Russell8e1f9362007-07-17 04:03:17 -0700218 unsigned long max_pass = (*shrinker->shrink)(0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 delta = (4 * scanned) / shrinker->seeks;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800221 delta *= max_pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 do_div(delta, lru_pages + 1);
223 shrinker->nr += delta;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800224 if (shrinker->nr < 0) {
David Rientjes88c3bd72009-03-31 15:23:29 -0700225 printk(KERN_ERR "shrink_slab: %pF negative objects to "
226 "delete nr=%ld\n",
227 shrinker->shrink, shrinker->nr);
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800228 shrinker->nr = max_pass;
229 }
230
231 /*
232 * Avoid risking looping forever due to too large nr value:
233 * never try to free more than twice the estimate number of
234 * freeable entries.
235 */
236 if (shrinker->nr > max_pass * 2)
237 shrinker->nr = max_pass * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 total_scan = shrinker->nr;
240 shrinker->nr = 0;
241
242 while (total_scan >= SHRINK_BATCH) {
243 long this_scan = SHRINK_BATCH;
244 int shrink_ret;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700245 int nr_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Rusty Russell8e1f9362007-07-17 04:03:17 -0700247 nr_before = (*shrinker->shrink)(0, gfp_mask);
248 shrink_ret = (*shrinker->shrink)(this_scan, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (shrink_ret == -1)
250 break;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700251 if (shrink_ret < nr_before)
252 ret += nr_before - shrink_ret;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700253 count_vm_events(SLABS_SCANNED, this_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 total_scan -= this_scan;
255
256 cond_resched();
257 }
258
259 shrinker->nr += total_scan;
260 }
261 up_read(&shrinker_rwsem);
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/* Called without lock on whether page is mapped, so answer is unstable */
266static inline int page_mapping_inuse(struct page *page)
267{
268 struct address_space *mapping;
269
270 /* Page is in somebody's page tables. */
271 if (page_mapped(page))
272 return 1;
273
274 /* Be more reluctant to reclaim swapcache than pagecache */
275 if (PageSwapCache(page))
276 return 1;
277
278 mapping = page_mapping(page);
279 if (!mapping)
280 return 0;
281
282 /* File is mmap'd by somebody? */
283 return mapping_mapped(mapping);
284}
285
286static inline int is_page_cache_freeable(struct page *page)
287{
Johannes Weinerceddc3a2009-09-21 17:03:00 -0700288 /*
289 * A freeable page cache page is referenced only by the caller
290 * that isolated the page, the page cache radix tree and
291 * optional buffer heads at page->private.
292 */
Johannes Weineredcf4742009-09-21 17:02:59 -0700293 return page_count(page) - page_has_private(page) == 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296static int may_write_to_queue(struct backing_dev_info *bdi)
297{
Christoph Lameter930d9152006-01-08 01:00:47 -0800298 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 1;
300 if (!bdi_write_congested(bdi))
301 return 1;
302 if (bdi == current->backing_dev_info)
303 return 1;
304 return 0;
305}
306
307/*
308 * We detected a synchronous write error writing a page out. Probably
309 * -ENOSPC. We need to propagate that into the address_space for a subsequent
310 * fsync(), msync() or close().
311 *
312 * The tricky part is that after writepage we cannot touch the mapping: nothing
313 * prevents it from being freed up. But we have a ref on the page and once
314 * that page is locked, the mapping is pinned.
315 *
316 * We're allowed to run sleeping lock_page() here because we know the caller has
317 * __GFP_FS.
318 */
319static void handle_write_error(struct address_space *mapping,
320 struct page *page, int error)
321{
322 lock_page(page);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700323 if (page_mapping(page) == mapping)
324 mapping_set_error(mapping, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 unlock_page(page);
326}
327
Andy Whitcroftc661b072007-08-22 14:01:26 -0700328/* Request for sync pageout. */
329enum pageout_io {
330 PAGEOUT_IO_ASYNC,
331 PAGEOUT_IO_SYNC,
332};
333
Christoph Lameter04e62a22006-06-23 02:03:38 -0700334/* possible outcome of pageout() */
335typedef enum {
336 /* failed to write page out, page is locked */
337 PAGE_KEEP,
338 /* move page to the active list, page is locked */
339 PAGE_ACTIVATE,
340 /* page has been sent to the disk successfully, page is unlocked */
341 PAGE_SUCCESS,
342 /* page is clean and locked */
343 PAGE_CLEAN,
344} pageout_t;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/*
Andrew Morton1742f192006-03-22 00:08:21 -0800347 * pageout is called by shrink_page_list() for each dirty page.
348 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700350static pageout_t pageout(struct page *page, struct address_space *mapping,
351 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 /*
354 * If the page is dirty, only perform writeback if that write
355 * will be non-blocking. To prevent this allocation from being
356 * stalled by pagecache activity. But note that there may be
357 * stalls if we need to run get_block(). We could test
358 * PagePrivate for that.
359 *
Vincent Li6aceb532009-12-14 17:58:49 -0800360 * If this process is currently in __generic_file_aio_write() against
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * this page's queue, we can perform writeback even if that
362 * will block.
363 *
364 * If the page is swapcache, write it back even if that would
365 * block, for some throttling. This happens by accident, because
366 * swap_backing_dev_info is bust: it doesn't reflect the
367 * congestion state of the swapdevs. Easy to fix, if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
369 if (!is_page_cache_freeable(page))
370 return PAGE_KEEP;
371 if (!mapping) {
372 /*
373 * Some data journaling orphaned pages can have
374 * page->mapping == NULL while being dirty with clean buffers.
375 */
David Howells266cf652009-04-03 16:42:36 +0100376 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (try_to_free_buffers(page)) {
378 ClearPageDirty(page);
Harvey Harrisond40cee22008-04-30 00:55:07 -0700379 printk("%s: orphaned page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return PAGE_CLEAN;
381 }
382 }
383 return PAGE_KEEP;
384 }
385 if (mapping->a_ops->writepage == NULL)
386 return PAGE_ACTIVATE;
387 if (!may_write_to_queue(mapping->backing_dev_info))
388 return PAGE_KEEP;
389
390 if (clear_page_dirty_for_io(page)) {
391 int res;
392 struct writeback_control wbc = {
393 .sync_mode = WB_SYNC_NONE,
394 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700395 .range_start = 0,
396 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 .nonblocking = 1,
398 .for_reclaim = 1,
399 };
400
401 SetPageReclaim(page);
402 res = mapping->a_ops->writepage(page, &wbc);
403 if (res < 0)
404 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800405 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 ClearPageReclaim(page);
407 return PAGE_ACTIVATE;
408 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700409
410 /*
411 * Wait on writeback if requested to. This happens when
412 * direct reclaiming a large contiguous area and the
413 * first attempt to free a range of pages fails.
414 */
415 if (PageWriteback(page) && sync_writeback == PAGEOUT_IO_SYNC)
416 wait_on_page_writeback(page);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!PageWriteback(page)) {
419 /* synchronous write or broken a_ops? */
420 ClearPageReclaim(page);
421 }
Andrew Mortone129b5c2006-09-27 01:50:00 -0700422 inc_zone_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return PAGE_SUCCESS;
424 }
425
426 return PAGE_CLEAN;
427}
428
Andrew Mortona649fd92006-10-17 00:09:36 -0700429/*
Nick Piggine2867812008-07-25 19:45:30 -0700430 * Same as remove_mapping, but if the page is removed from the mapping, it
431 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700432 */
Nick Piggine2867812008-07-25 19:45:30 -0700433static int __remove_mapping(struct address_space *mapping, struct page *page)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800434{
Nick Piggin28e4d962006-09-25 23:31:23 -0700435 BUG_ON(!PageLocked(page));
436 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800437
Nick Piggin19fd6232008-07-25 19:45:32 -0700438 spin_lock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800439 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700440 * The non racy check for a busy page.
441 *
442 * Must be careful with the order of the tests. When someone has
443 * a ref to the page, it may be possible that they dirty it then
444 * drop the reference. So if PageDirty is tested before page_count
445 * here, then the following race may occur:
446 *
447 * get_user_pages(&page);
448 * [user mapping goes away]
449 * write_to(page);
450 * !PageDirty(page) [good]
451 * SetPageDirty(page);
452 * put_page(page);
453 * !page_count(page) [good, discard it]
454 *
455 * [oops, our write_to data is lost]
456 *
457 * Reversing the order of the tests ensures such a situation cannot
458 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
459 * load is not satisfied before that of page->_count.
460 *
461 * Note that if SetPageDirty is always performed via set_page_dirty,
462 * and thus under tree_lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800463 */
Nick Piggine2867812008-07-25 19:45:30 -0700464 if (!page_freeze_refs(page, 2))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800465 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700466 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
467 if (unlikely(PageDirty(page))) {
468 page_unfreeze_refs(page, 2);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800469 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700470 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800471
472 if (PageSwapCache(page)) {
473 swp_entry_t swap = { .val = page_private(page) };
474 __delete_from_swap_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700475 spin_unlock_irq(&mapping->tree_lock);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700476 swapcache_free(swap, page);
Nick Piggine2867812008-07-25 19:45:30 -0700477 } else {
478 __remove_from_page_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700479 spin_unlock_irq(&mapping->tree_lock);
Daisuke Nishimurae767e052009-05-28 14:34:28 -0700480 mem_cgroup_uncharge_cache_page(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800481 }
482
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800483 return 1;
484
485cannot_free:
Nick Piggin19fd6232008-07-25 19:45:32 -0700486 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800487 return 0;
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*
Nick Piggine2867812008-07-25 19:45:30 -0700491 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
492 * someone else has a ref on the page, abort and return 0. If it was
493 * successfully detached, return 1. Assumes the caller has a single ref on
494 * this page.
495 */
496int remove_mapping(struct address_space *mapping, struct page *page)
497{
498 if (__remove_mapping(mapping, page)) {
499 /*
500 * Unfreezing the refcount with 1 rather than 2 effectively
501 * drops the pagecache ref for us without requiring another
502 * atomic operation.
503 */
504 page_unfreeze_refs(page, 1);
505 return 1;
506 }
507 return 0;
508}
509
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700510/**
511 * putback_lru_page - put previously isolated page onto appropriate LRU list
512 * @page: page to be put back to appropriate lru list
513 *
514 * Add previously isolated @page to appropriate LRU list.
515 * Page may still be unevictable for other reasons.
516 *
517 * lru_lock must not be held, interrupts must be enabled.
518 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700519void putback_lru_page(struct page *page)
520{
521 int lru;
522 int active = !!TestClearPageActive(page);
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700523 int was_unevictable = PageUnevictable(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700524
525 VM_BUG_ON(PageLRU(page));
526
527redo:
528 ClearPageUnevictable(page);
529
530 if (page_evictable(page, NULL)) {
531 /*
532 * For evictable pages, we can use the cache.
533 * In event of a race, worst case is we end up with an
534 * unevictable page on [in]active list.
535 * We know how to handle that.
536 */
Johannes Weiner401a8e12009-09-21 17:02:58 -0700537 lru = active + page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700538 lru_cache_add_lru(page, lru);
539 } else {
540 /*
541 * Put unevictable pages directly on zone's unevictable
542 * list.
543 */
544 lru = LRU_UNEVICTABLE;
545 add_page_to_unevictable_list(page);
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700546 /*
547 * When racing with an mlock clearing (page is
548 * unlocked), make sure that if the other thread does
549 * not observe our setting of PG_lru and fails
550 * isolation, we see PG_mlocked cleared below and move
551 * the page back to the evictable list.
552 *
553 * The other side is TestClearPageMlocked().
554 */
555 smp_mb();
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700556 }
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700557
558 /*
559 * page's status can change while we move it among lru. If an evictable
560 * page is on unevictable list, it never be freed. To avoid that,
561 * check after we added it to the list, again.
562 */
563 if (lru == LRU_UNEVICTABLE && page_evictable(page, NULL)) {
564 if (!isolate_lru_page(page)) {
565 put_page(page);
566 goto redo;
567 }
568 /* This means someone else dropped this page from LRU
569 * So, it will be freed or putback to LRU again. There is
570 * nothing to do here.
571 */
572 }
573
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700574 if (was_unevictable && lru != LRU_UNEVICTABLE)
575 count_vm_event(UNEVICTABLE_PGRESCUED);
576 else if (!was_unevictable && lru == LRU_UNEVICTABLE)
577 count_vm_event(UNEVICTABLE_PGCULLED);
578
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700579 put_page(page); /* drop ref from isolate */
580}
581
Nick Piggine2867812008-07-25 19:45:30 -0700582/*
Andrew Morton1742f192006-03-22 00:08:21 -0800583 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Andrew Morton1742f192006-03-22 00:08:21 -0800585static unsigned long shrink_page_list(struct list_head *page_list,
Andy Whitcroftc661b072007-08-22 14:01:26 -0700586 struct scan_control *sc,
587 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 LIST_HEAD(ret_pages);
590 struct pagevec freed_pvec;
591 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800592 unsigned long nr_reclaimed = 0;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -0700593 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 cond_resched();
596
597 pagevec_init(&freed_pvec, 1);
598 while (!list_empty(page_list)) {
599 struct address_space *mapping;
600 struct page *page;
601 int may_enter_fs;
602 int referenced;
603
604 cond_resched();
605
606 page = lru_to_page(page_list);
607 list_del(&page->lru);
608
Nick Piggin529ae9a2008-08-02 12:01:03 +0200609 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto keep;
611
Nick Piggin725d7042006-09-25 23:30:55 -0700612 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800615
Nick Pigginb291f002008-10-18 20:26:44 -0700616 if (unlikely(!page_evictable(page, NULL)))
617 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700618
Johannes Weinera6dc60f2009-03-31 15:19:30 -0700619 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800620 goto keep_locked;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Double the slab pressure for mapped and swapcache pages */
623 if (page_mapped(page) || PageSwapCache(page))
624 sc->nr_scanned++;
625
Andy Whitcroftc661b072007-08-22 14:01:26 -0700626 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
627 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
628
629 if (PageWriteback(page)) {
630 /*
631 * Synchronous reclaim is performed in two passes,
632 * first an asynchronous pass over the list to
633 * start parallel writeback, and a second synchronous
634 * pass to wait for the IO to complete. Wait here
635 * for any page for which writeback has already
636 * started.
637 */
638 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
639 wait_on_page_writeback(page);
Andrew Morton4dd4b922008-03-24 12:29:52 -0700640 else
Andy Whitcroftc661b072007-08-22 14:01:26 -0700641 goto keep_locked;
642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -0700644 referenced = page_referenced(page, 1,
645 sc->mem_cgroup, &vm_flags);
Minchan Kim03ef83a2009-08-26 14:29:23 -0700646 /*
647 * In active use or really unfreeable? Activate it.
648 * If page which have PG_mlocked lost isoltation race,
649 * try_to_unmap moves it to unevictable list
650 */
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700651 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER &&
Minchan Kim03ef83a2009-08-26 14:29:23 -0700652 referenced && page_mapping_inuse(page)
653 && !(vm_flags & VM_LOCKED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 goto activate_locked;
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
657 * Anonymous process memory has backing store?
658 * Try to allocate it some swap space here.
659 */
Nick Pigginb291f002008-10-18 20:26:44 -0700660 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800661 if (!(sc->gfp_mask & __GFP_IO))
662 goto keep_locked;
Hugh Dickinsac47b002009-01-06 14:39:39 -0800663 if (!add_to_swap(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 goto activate_locked;
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800665 may_enter_fs = 1;
Nick Pigginb291f002008-10-18 20:26:44 -0700666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /*
671 * The page is mapped into the page tables of one or more
672 * processes. Try to unmap it here.
673 */
674 if (page_mapped(page) && mapping) {
Andi Kleen14fa31b2009-09-16 11:50:10 +0200675 switch (try_to_unmap(page, TTU_UNMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 case SWAP_FAIL:
677 goto activate_locked;
678 case SWAP_AGAIN:
679 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -0700680 case SWAP_MLOCK:
681 goto cull_mlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 case SWAP_SUCCESS:
683 ; /* try to free the page below */
684 }
685 }
686
687 if (PageDirty(page)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700688 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -0700690 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800692 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 goto keep_locked;
694
695 /* Page is dirty, try to write it out here */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700696 switch (pageout(page, mapping, sync_writeback)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 case PAGE_KEEP:
698 goto keep_locked;
699 case PAGE_ACTIVATE:
700 goto activate_locked;
701 case PAGE_SUCCESS:
Andrew Morton4dd4b922008-03-24 12:29:52 -0700702 if (PageWriteback(page) || PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto keep;
704 /*
705 * A synchronous write - probably a ramdisk. Go
706 * ahead and try to reclaim the page.
707 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200708 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto keep;
710 if (PageDirty(page) || PageWriteback(page))
711 goto keep_locked;
712 mapping = page_mapping(page);
713 case PAGE_CLEAN:
714 ; /* try to free the page below */
715 }
716 }
717
718 /*
719 * If the page has buffers, try to free the buffer mappings
720 * associated with this page. If we succeed we try to free
721 * the page as well.
722 *
723 * We do this even if the page is PageDirty().
724 * try_to_release_page() does not perform I/O, but it is
725 * possible for a page to have PageDirty set, but it is actually
726 * clean (all its buffers are clean). This happens if the
727 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700728 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * try_to_release_page() will discover that cleanness and will
730 * drop the buffers and mark the page clean - it can be freed.
731 *
732 * Rarely, pages can have buffers and no ->mapping. These are
733 * the pages which were not successfully invalidated in
734 * truncate_complete_page(). We try to drop those buffers here
735 * and if that worked, and the page is no longer mapped into
736 * process address space (page_count == 1) it can be freed.
737 * Otherwise, leave the page on the LRU so it is swappable.
738 */
David Howells266cf652009-04-03 16:42:36 +0100739 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!try_to_release_page(page, sc->gfp_mask))
741 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -0700742 if (!mapping && page_count(page) == 1) {
743 unlock_page(page);
744 if (put_page_testzero(page))
745 goto free_it;
746 else {
747 /*
748 * rare race with speculative reference.
749 * the speculative reference will free
750 * this page shortly, so we may
751 * increment nr_reclaimed here (and
752 * leave it off the LRU).
753 */
754 nr_reclaimed++;
755 continue;
756 }
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759
Nick Piggine2867812008-07-25 19:45:30 -0700760 if (!mapping || !__remove_mapping(mapping, page))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800761 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Nick Piggina978d6f2008-10-18 20:26:58 -0700763 /*
764 * At this point, we have no other references and there is
765 * no way to pick any more up (removed from LRU, removed
766 * from pagecache). Can use non-atomic bitops now (and
767 * we obviously don't have to worry about waking up a process
768 * waiting on the page lock, because there are no references.
769 */
770 __clear_page_locked(page);
Nick Piggine2867812008-07-25 19:45:30 -0700771free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -0800772 nr_reclaimed++;
Nick Piggine2867812008-07-25 19:45:30 -0700773 if (!pagevec_add(&freed_pvec, page)) {
774 __pagevec_free(&freed_pvec);
775 pagevec_reinit(&freed_pvec);
776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 continue;
778
Nick Pigginb291f002008-10-18 20:26:44 -0700779cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -0800780 if (PageSwapCache(page))
781 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -0700782 unlock_page(page);
783 putback_lru_page(page);
784 continue;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -0700787 /* Not a candidate for swapping, so reclaim swap space. */
788 if (PageSwapCache(page) && vm_swap_full())
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800789 try_to_free_swap(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700790 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 SetPageActive(page);
792 pgactivate++;
793keep_locked:
794 unlock_page(page);
795keep:
796 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -0700797 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 list_splice(&ret_pages, page_list);
800 if (pagevec_count(&freed_pvec))
Nick Piggine2867812008-07-25 19:45:30 -0700801 __pagevec_free(&freed_pvec);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700802 count_vm_events(PGACTIVATE, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800803 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700806/* LRU Isolation modes. */
807#define ISOLATE_INACTIVE 0 /* Isolate inactive pages. */
808#define ISOLATE_ACTIVE 1 /* Isolate active pages. */
809#define ISOLATE_BOTH 2 /* Isolate both active and inactive pages. */
810
811/*
812 * Attempt to remove the specified page from its LRU. Only take this page
813 * if it is of the appropriate PageActive status. Pages which are being
814 * freed elsewhere are also ignored.
815 *
816 * page: page to consider
817 * mode: one of the LRU isolation modes defined above
818 *
819 * returns 0 on success, -ve errno on failure.
820 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700821int __isolate_lru_page(struct page *page, int mode, int file)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700822{
823 int ret = -EINVAL;
824
825 /* Only take pages on the LRU. */
826 if (!PageLRU(page))
827 return ret;
828
829 /*
830 * When checking the active state, we need to be sure we are
831 * dealing with comparible boolean values. Take the logical not
832 * of each.
833 */
834 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
835 return ret;
836
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700837 if (mode != ISOLATE_BOTH && page_is_file_cache(page) != file)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700838 return ret;
839
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700840 /*
841 * When this function is being called for lumpy reclaim, we
842 * initially look into all LRU pages, active, inactive and
843 * unevictable; only give shrink_page_list evictable pages.
844 */
845 if (PageUnevictable(page))
846 return ret;
847
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700848 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800849
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700850 if (likely(get_page_unless_zero(page))) {
851 /*
852 * Be careful not to clear PageLRU until after we're
853 * sure the page is not being freed elsewhere -- the
854 * page release code relies on it.
855 */
856 ClearPageLRU(page);
857 ret = 0;
858 }
859
860 return ret;
861}
862
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800863/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * zone->lru_lock is heavily contended. Some of the functions that
865 * shrink the lists perform better by taking out a batch of pages
866 * and working on them outside the LRU lock.
867 *
868 * For pagecache intensive workloads, this function is the hottest
869 * spot in the kernel (apart from copy_*_user functions).
870 *
871 * Appropriate locks must be held before calling this function.
872 *
873 * @nr_to_scan: The number of pages to look through on the list.
874 * @src: The LRU list to pull pages off.
875 * @dst: The temp list to put pages on to.
876 * @scanned: The number of pages that were scanned.
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700877 * @order: The caller's attempted allocation order
878 * @mode: One of the LRU isolation modes
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700879 * @file: True [1] if isolating file [!anon] pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 *
881 * returns how many pages were moved onto *@dst.
882 */
Andrew Morton69e05942006-03-22 00:08:19 -0800883static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
884 struct list_head *src, struct list_head *dst,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700885 unsigned long *scanned, int order, int mode, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Andrew Morton69e05942006-03-22 00:08:19 -0800887 unsigned long nr_taken = 0;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800888 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800890 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700891 struct page *page;
892 unsigned long pfn;
893 unsigned long end_pfn;
894 unsigned long page_pfn;
895 int zone_id;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 page = lru_to_page(src);
898 prefetchw_prev_lru_page(page, src, flags);
899
Nick Piggin725d7042006-09-25 23:30:55 -0700900 VM_BUG_ON(!PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800901
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700902 switch (__isolate_lru_page(page, mode, file)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700903 case 0:
904 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700905 mem_cgroup_del_lru(page);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800906 nr_taken++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700907 break;
Nick Piggin46453a62006-03-22 00:07:58 -0800908
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700909 case -EBUSY:
910 /* else it is being freed elsewhere */
911 list_move(&page->lru, src);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700912 mem_cgroup_rotate_lru_list(page, page_lru(page));
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700913 continue;
914
915 default:
916 BUG();
917 }
918
919 if (!order)
920 continue;
921
922 /*
923 * Attempt to take all pages in the order aligned region
924 * surrounding the tag page. Only take those pages of
925 * the same active state as that tag page. We may safely
926 * round the target page pfn down to the requested order
927 * as the mem_map is guarenteed valid out to MAX_ORDER,
928 * where that page is in a different zone we will detect
929 * it from its zone id and abort this block scan.
930 */
931 zone_id = page_zone_id(page);
932 page_pfn = page_to_pfn(page);
933 pfn = page_pfn & ~((1 << order) - 1);
934 end_pfn = pfn + (1 << order);
935 for (; pfn < end_pfn; pfn++) {
936 struct page *cursor_page;
937
938 /* The target page is in the block, ignore it. */
939 if (unlikely(pfn == page_pfn))
940 continue;
941
942 /* Avoid holes within the zone. */
943 if (unlikely(!pfn_valid_within(pfn)))
944 break;
945
946 cursor_page = pfn_to_page(pfn);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700947
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700948 /* Check that we have not crossed a zone boundary. */
949 if (unlikely(page_zone_id(cursor_page) != zone_id))
950 continue;
Minchan Kimde2e7562009-09-21 17:01:43 -0700951
952 /*
953 * If we don't have enough swap space, reclaiming of
954 * anon page which don't already have a swap slot is
955 * pointless.
956 */
957 if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
958 !PageSwapCache(cursor_page))
959 continue;
960
KAMEZAWA Hiroyukiee993b12009-06-16 15:33:24 -0700961 if (__isolate_lru_page(cursor_page, mode, file) == 0) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700962 list_move(&cursor_page->lru, dst);
KAMEZAWA Hiroyukicb4cbcf2009-06-23 08:57:55 +0900963 mem_cgroup_del_lru(cursor_page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700964 nr_taken++;
965 scan++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700966 }
967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
970 *scanned = scan;
971 return nr_taken;
972}
973
Balbir Singh66e17072008-02-07 00:13:56 -0800974static unsigned long isolate_pages_global(unsigned long nr,
975 struct list_head *dst,
976 unsigned long *scanned, int order,
977 int mode, struct zone *z,
978 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700979 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -0800980{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700981 int lru = LRU_BASE;
Balbir Singh66e17072008-02-07 00:13:56 -0800982 if (active)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700983 lru += LRU_ACTIVE;
984 if (file)
985 lru += LRU_FILE;
986 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
Johannes Weinerb7c46d12009-09-21 17:02:56 -0700987 mode, file);
Balbir Singh66e17072008-02-07 00:13:56 -0800988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/*
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700991 * clear_active_flags() is a helper for shrink_active_list(), clearing
992 * any active bits from the pages in the list.
993 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700994static unsigned long clear_active_flags(struct list_head *page_list,
995 unsigned int *count)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700996{
997 int nr_active = 0;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700998 int lru;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700999 struct page *page;
1000
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001001 list_for_each_entry(page, page_list, lru) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07001002 lru = page_lru_base_type(page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001003 if (PageActive(page)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001004 lru += LRU_ACTIVE;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001005 ClearPageActive(page);
1006 nr_active++;
1007 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001008 count[lru]++;
1009 }
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001010
1011 return nr_active;
1012}
1013
Nick Piggin62695a82008-10-18 20:26:09 -07001014/**
1015 * isolate_lru_page - tries to isolate a page from its LRU list
1016 * @page: page to isolate from its LRU list
1017 *
1018 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1019 * vmstat statistic corresponding to whatever LRU list the page was on.
1020 *
1021 * Returns 0 if the page was removed from an LRU list.
1022 * Returns -EBUSY if the page was not on an LRU list.
1023 *
1024 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001025 * the active list, it will have PageActive set. If it was found on
1026 * the unevictable list, it will have the PageUnevictable bit set. That flag
1027 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001028 *
1029 * The vmstat statistic corresponding to the list on which the page was
1030 * found will be decremented.
1031 *
1032 * Restrictions:
1033 * (1) Must be called with an elevated refcount on the page. This is a
1034 * fundamentnal difference from isolate_lru_pages (which is called
1035 * without a stable reference).
1036 * (2) the lru_lock must not be held.
1037 * (3) interrupts must be enabled.
1038 */
1039int isolate_lru_page(struct page *page)
1040{
1041 int ret = -EBUSY;
1042
1043 if (PageLRU(page)) {
1044 struct zone *zone = page_zone(page);
1045
1046 spin_lock_irq(&zone->lru_lock);
1047 if (PageLRU(page) && get_page_unless_zero(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001048 int lru = page_lru(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001049 ret = 0;
1050 ClearPageLRU(page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001051
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001052 del_page_from_lru_list(zone, page, lru);
Nick Piggin62695a82008-10-18 20:26:09 -07001053 }
1054 spin_unlock_irq(&zone->lru_lock);
1055 }
1056 return ret;
1057}
1058
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001059/*
Rik van Riel35cd7812009-09-21 17:01:38 -07001060 * Are there way too many processes in the direct reclaim path already?
1061 */
1062static int too_many_isolated(struct zone *zone, int file,
1063 struct scan_control *sc)
1064{
1065 unsigned long inactive, isolated;
1066
1067 if (current_is_kswapd())
1068 return 0;
1069
1070 if (!scanning_global_lru(sc))
1071 return 0;
1072
1073 if (file) {
1074 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1075 isolated = zone_page_state(zone, NR_ISOLATED_FILE);
1076 } else {
1077 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1078 isolated = zone_page_state(zone, NR_ISOLATED_ANON);
1079 }
1080
1081 return isolated > inactive;
1082}
1083
1084/*
Andrew Morton1742f192006-03-22 00:08:21 -08001085 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1086 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 */
Andrew Morton1742f192006-03-22 00:08:21 -08001088static unsigned long shrink_inactive_list(unsigned long max_scan,
Rik van Riel33c120e2008-10-18 20:26:36 -07001089 struct zone *zone, struct scan_control *sc,
1090 int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 LIST_HEAD(page_list);
1093 struct pagevec pvec;
Andrew Morton69e05942006-03-22 00:08:19 -08001094 unsigned long nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001095 unsigned long nr_reclaimed = 0;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001096 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001097 int lumpy_reclaim = 0;
1098
Rik van Riel35cd7812009-09-21 17:01:38 -07001099 while (unlikely(too_many_isolated(zone, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001100 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001101
1102 /* We are about to die and free our memory. Return now. */
1103 if (fatal_signal_pending(current))
1104 return SWAP_CLUSTER_MAX;
1105 }
1106
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001107 /*
1108 * If we need a large contiguous chunk of memory, or have
1109 * trouble getting a small set of contiguous pages, we
1110 * will reclaim both active and inactive pages.
1111 *
1112 * We use the same threshold as pageout congestion_wait below.
1113 */
1114 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1115 lumpy_reclaim = 1;
1116 else if (sc->order && priority < DEF_PRIORITY - 2)
1117 lumpy_reclaim = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 pagevec_init(&pvec, 1);
1120
1121 lru_add_drain();
1122 spin_lock_irq(&zone->lru_lock);
Andrew Morton69e05942006-03-22 00:08:19 -08001123 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct page *page;
Andrew Morton69e05942006-03-22 00:08:19 -08001125 unsigned long nr_taken;
1126 unsigned long nr_scan;
1127 unsigned long nr_freed;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001128 unsigned long nr_active;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001129 unsigned int count[NR_LRU_LISTS] = { 0, };
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001130 int mode = lumpy_reclaim ? ISOLATE_BOTH : ISOLATE_INACTIVE;
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001131 unsigned long nr_anon;
1132 unsigned long nr_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001134 nr_taken = sc->isolate_pages(SWAP_CLUSTER_MAX,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001135 &page_list, &nr_scan, sc->order, mode,
1136 zone, sc->mem_cgroup, 0, file);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001137
1138 if (scanning_global_lru(sc)) {
1139 zone->pages_scanned += nr_scan;
1140 if (current_is_kswapd())
1141 __count_zone_vm_events(PGSCAN_KSWAPD, zone,
1142 nr_scan);
1143 else
1144 __count_zone_vm_events(PGSCAN_DIRECT, zone,
1145 nr_scan);
1146 }
1147
1148 if (nr_taken == 0)
1149 goto done;
1150
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001151 nr_active = clear_active_flags(&page_list, count);
Andy Whitcrofte9187bd2007-08-22 14:01:25 -07001152 __count_vm_events(PGDEACTIVATE, nr_active);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001153
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001154 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1155 -count[LRU_ACTIVE_FILE]);
1156 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1157 -count[LRU_INACTIVE_FILE]);
1158 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1159 -count[LRU_ACTIVE_ANON]);
1160 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1161 -count[LRU_INACTIVE_ANON]);
1162
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001163 nr_anon = count[LRU_ACTIVE_ANON] + count[LRU_INACTIVE_ANON];
1164 nr_file = count[LRU_ACTIVE_FILE] + count[LRU_INACTIVE_FILE];
1165 __mod_zone_page_state(zone, NR_ISOLATED_ANON, nr_anon);
1166 __mod_zone_page_state(zone, NR_ISOLATED_FILE, nr_file);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001167
Huang Shijie62c0c2f2009-12-14 17:59:48 -08001168 reclaim_stat->recent_scanned[0] += nr_anon;
1169 reclaim_stat->recent_scanned[1] += nr_file;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 spin_unlock_irq(&zone->lru_lock);
1172
Andrew Morton69e05942006-03-22 00:08:19 -08001173 nr_scanned += nr_scan;
Andy Whitcroftc661b072007-08-22 14:01:26 -07001174 nr_freed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1175
1176 /*
1177 * If we are direct reclaiming for contiguous pages and we do
1178 * not reclaim everything in the list, try again and wait
1179 * for IO to complete. This will stall high-order allocations
1180 * but that should be acceptable to the caller
1181 */
1182 if (nr_freed < nr_taken && !current_is_kswapd() &&
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001183 lumpy_reclaim) {
Jens Axboe8aa7e842009-07-09 14:52:32 +02001184 congestion_wait(BLK_RW_ASYNC, HZ/10);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001185
1186 /*
1187 * The attempt at page out may have made some
1188 * of the pages active, mark them inactive again.
1189 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001190 nr_active = clear_active_flags(&page_list, count);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001191 count_vm_events(PGDEACTIVATE, nr_active);
1192
1193 nr_freed += shrink_page_list(&page_list, sc,
1194 PAGEOUT_IO_SYNC);
1195 }
1196
Andrew Morton05ff5132006-03-22 00:08:20 -08001197 nr_reclaimed += nr_freed;
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001198
Nick Piggina74609f2006-01-06 00:11:20 -08001199 local_irq_disable();
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001200 if (current_is_kswapd())
Christoph Lameterf8891e52006-06-30 01:55:45 -07001201 __count_vm_events(KSWAPD_STEAL, nr_freed);
Shantanu Goel918d3f92006-12-29 16:48:59 -08001202 __count_zone_vm_events(PGSTEAL, zone, nr_freed);
Nick Piggina74609f2006-01-06 00:11:20 -08001203
1204 spin_lock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 /*
1206 * Put back any unfreeable pages.
1207 */
1208 while (!list_empty(&page_list)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001209 int lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 page = lru_to_page(&page_list);
Nick Piggin725d7042006-09-25 23:30:55 -07001211 VM_BUG_ON(PageLRU(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001213 if (unlikely(!page_evictable(page, NULL))) {
1214 spin_unlock_irq(&zone->lru_lock);
1215 putback_lru_page(page);
1216 spin_lock_irq(&zone->lru_lock);
1217 continue;
1218 }
1219 SetPageLRU(page);
1220 lru = page_lru(page);
1221 add_page_to_lru_list(zone, page, lru);
KOSAKI Motohiro74a1c482009-09-21 17:01:45 -07001222 if (is_active_lru(lru)) {
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001223 int file = is_file_lru(lru);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001224 reclaim_stat->recent_rotated[file]++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!pagevec_add(&pvec, page)) {
1227 spin_unlock_irq(&zone->lru_lock);
1228 __pagevec_release(&pvec);
1229 spin_lock_irq(&zone->lru_lock);
1230 }
1231 }
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001232 __mod_zone_page_state(zone, NR_ISOLATED_ANON, -nr_anon);
1233 __mod_zone_page_state(zone, NR_ISOLATED_FILE, -nr_file);
1234
Andrew Morton69e05942006-03-22 00:08:19 -08001235 } while (nr_scanned < max_scan);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237done:
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001238 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 pagevec_release(&pvec);
Andrew Morton05ff5132006-03-22 00:08:20 -08001240 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Martin Bligh3bb1a852006-10-28 10:38:24 -07001243/*
1244 * We are about to scan this zone at a certain priority level. If that priority
1245 * level is smaller (ie: more urgent) than the previous priority, then note
1246 * that priority level within the zone. This is done so that when the next
1247 * process comes in to scan this zone, it will immediately start out at this
1248 * priority level rather than having to build up its own scanning priority.
1249 * Here, this priority affects only the reclaim-mapped threshold.
1250 */
1251static inline void note_zone_scanning_priority(struct zone *zone, int priority)
1252{
1253 if (priority < zone->prev_priority)
1254 zone->prev_priority = priority;
1255}
1256
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001257/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 * This moves pages from the active list to the inactive list.
1259 *
1260 * We move them the other way if the page is referenced by one or more
1261 * processes, from rmap.
1262 *
1263 * If the pages are mostly unmapped, the processing is fast and it is
1264 * appropriate to hold zone->lru_lock across the whole operation. But if
1265 * the pages are mapped, the processing is slow (page_referenced()) so we
1266 * should drop zone->lru_lock around each page. It's impossible to balance
1267 * this, so instead we remove the pages from the LRU while processing them.
1268 * It is safe to rely on PG_active against the non-LRU pages in here because
1269 * nobody will play with that bit on a non-LRU page.
1270 *
1271 * The downside is that we have to touch page->_count against each page.
1272 * But we had to alter page->flags anyway.
1273 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001274
Wu Fengguang3eb41402009-06-16 15:33:13 -07001275static void move_active_pages_to_lru(struct zone *zone,
1276 struct list_head *list,
1277 enum lru_list lru)
1278{
1279 unsigned long pgmoved = 0;
1280 struct pagevec pvec;
1281 struct page *page;
1282
1283 pagevec_init(&pvec, 1);
1284
1285 while (!list_empty(list)) {
1286 page = lru_to_page(list);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001287
1288 VM_BUG_ON(PageLRU(page));
1289 SetPageLRU(page);
1290
Wu Fengguang3eb41402009-06-16 15:33:13 -07001291 list_move(&page->lru, &zone->lru[lru].list);
1292 mem_cgroup_add_lru_list(page, lru);
1293 pgmoved++;
1294
1295 if (!pagevec_add(&pvec, page) || list_empty(list)) {
1296 spin_unlock_irq(&zone->lru_lock);
1297 if (buffer_heads_over_limit)
1298 pagevec_strip(&pvec);
1299 __pagevec_release(&pvec);
1300 spin_lock_irq(&zone->lru_lock);
1301 }
1302 }
1303 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1304 if (!is_active_lru(lru))
1305 __count_vm_events(PGDEACTIVATE, pgmoved);
1306}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001307
Andrew Morton1742f192006-03-22 00:08:21 -08001308static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001309 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001311 unsigned long nr_taken;
Andrew Morton69e05942006-03-22 00:08:19 -08001312 unsigned long pgscanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001313 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001315 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001316 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 struct page *page;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001318 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001319 unsigned long nr_rotated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 lru_add_drain();
1322 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001323 nr_taken = sc->isolate_pages(nr_pages, &l_hold, &pgscanned, sc->order,
Balbir Singh66e17072008-02-07 00:13:56 -08001324 ISOLATE_ACTIVE, zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001325 sc->mem_cgroup, 1, file);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001326 /*
1327 * zone->pages_scanned is used for detect zone's oom
1328 * mem_cgroup remembers nr_scan by itself.
1329 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001330 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001331 zone->pages_scanned += pgscanned;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001332 }
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001333 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001334
Wu Fengguang3eb41402009-06-16 15:33:13 -07001335 __count_zone_vm_events(PGREFILL, zone, pgscanned);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001336 if (file)
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001337 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001338 else
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001339 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001340 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 spin_unlock_irq(&zone->lru_lock);
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 while (!list_empty(&l_hold)) {
1344 cond_resched();
1345 page = lru_to_page(&l_hold);
1346 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001347
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001348 if (unlikely(!page_evictable(page, NULL))) {
1349 putback_lru_page(page);
1350 continue;
1351 }
1352
Rik van Riel7e9cd482008-10-18 20:26:35 -07001353 /* page_referenced clears PageReferenced */
1354 if (page_mapping_inuse(page) &&
Wu Fengguang8cab4752009-06-16 15:33:12 -07001355 page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) {
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001356 nr_rotated++;
Wu Fengguang8cab4752009-06-16 15:33:12 -07001357 /*
1358 * Identify referenced, file-backed active pages and
1359 * give them one more trip around the active list. So
1360 * that executable code get better chances to stay in
1361 * memory under moderate memory pressure. Anon pages
1362 * are not likely to be evicted by use-once streaming
1363 * IO, plus JVM can create lots of anon VM_EXEC pages,
1364 * so we ignore them here.
1365 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001366 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001367 list_add(&page->lru, &l_active);
1368 continue;
1369 }
1370 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001371
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001372 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 list_add(&page->lru, &l_inactive);
1374 }
1375
Andrew Mortonb5557492009-01-06 14:40:13 -08001376 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001377 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001378 */
Johannes Weiner2a1dc502008-12-01 03:00:35 +01001379 spin_lock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001380 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001381 * Count referenced pages from currently used mappings as rotated,
1382 * even though only some of them are actually re-activated. This
1383 * helps balance scan pressure between file and anonymous pages in
1384 * get_scan_ratio.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001385 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001386 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001387
Wu Fengguang3eb41402009-06-16 15:33:13 -07001388 move_active_pages_to_lru(zone, &l_active,
1389 LRU_ACTIVE + file * LRU_FILE);
1390 move_active_pages_to_lru(zone, &l_inactive,
1391 LRU_BASE + file * LRU_FILE);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001392 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001393 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001396static int inactive_anon_is_low_global(struct zone *zone)
KOSAKI Motohirof89eb902009-01-07 18:08:14 -08001397{
1398 unsigned long active, inactive;
1399
1400 active = zone_page_state(zone, NR_ACTIVE_ANON);
1401 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1402
1403 if (inactive * zone->inactive_ratio < active)
1404 return 1;
1405
1406 return 0;
1407}
1408
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001409/**
1410 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1411 * @zone: zone to check
1412 * @sc: scan control of this context
1413 *
1414 * Returns true if the zone does not have enough inactive anon pages,
1415 * meaning some active anon pages need to be deactivated.
1416 */
1417static int inactive_anon_is_low(struct zone *zone, struct scan_control *sc)
1418{
1419 int low;
1420
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001421 if (scanning_global_lru(sc))
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001422 low = inactive_anon_is_low_global(zone);
1423 else
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001424 low = mem_cgroup_inactive_anon_is_low(sc->mem_cgroup);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001425 return low;
1426}
1427
Rik van Riel56e49d22009-06-16 15:32:28 -07001428static int inactive_file_is_low_global(struct zone *zone)
1429{
1430 unsigned long active, inactive;
1431
1432 active = zone_page_state(zone, NR_ACTIVE_FILE);
1433 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1434
1435 return (active > inactive);
1436}
1437
1438/**
1439 * inactive_file_is_low - check if file pages need to be deactivated
1440 * @zone: zone to check
1441 * @sc: scan control of this context
1442 *
1443 * When the system is doing streaming IO, memory pressure here
1444 * ensures that active file pages get deactivated, until more
1445 * than half of the file pages are on the inactive list.
1446 *
1447 * Once we get to that situation, protect the system's working
1448 * set from being evicted by disabling active file page aging.
1449 *
1450 * This uses a different ratio than the anonymous pages, because
1451 * the page cache uses a use-once replacement algorithm.
1452 */
1453static int inactive_file_is_low(struct zone *zone, struct scan_control *sc)
1454{
1455 int low;
1456
1457 if (scanning_global_lru(sc))
1458 low = inactive_file_is_low_global(zone);
1459 else
1460 low = mem_cgroup_inactive_file_is_low(sc->mem_cgroup);
1461 return low;
1462}
1463
Rik van Rielb39415b2009-12-14 17:59:48 -08001464static int inactive_list_is_low(struct zone *zone, struct scan_control *sc,
1465 int file)
1466{
1467 if (file)
1468 return inactive_file_is_low(zone, sc);
1469 else
1470 return inactive_anon_is_low(zone, sc);
1471}
1472
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001473static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Christoph Lameterb69408e2008-10-18 20:26:14 -07001474 struct zone *zone, struct scan_control *sc, int priority)
1475{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001476 int file = is_file_lru(lru);
1477
Rik van Rielb39415b2009-12-14 17:59:48 -08001478 if (is_active_lru(lru)) {
1479 if (inactive_list_is_low(zone, sc, file))
1480 shrink_active_list(nr_to_scan, zone, sc, priority, file);
Rik van Riel556adec2008-10-18 20:26:34 -07001481 return 0;
1482 }
1483
Rik van Riel33c120e2008-10-18 20:26:36 -07001484 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001485}
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001488 * Determine how aggressively the anon and file LRU lists should be
1489 * scanned. The relative value of each set of LRU lists is determined
1490 * by looking at the fraction of the pages scanned we did rotate back
1491 * onto the active list instead of evict.
1492 *
1493 * percent[0] specifies how much pressure to put on ram/swap backed
1494 * memory, while percent[1] determines pressure on the file LRUs.
1495 */
1496static void get_scan_ratio(struct zone *zone, struct scan_control *sc,
1497 unsigned long *percent)
1498{
1499 unsigned long anon, file, free;
1500 unsigned long anon_prio, file_prio;
1501 unsigned long ap, fp;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001502 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001503
Vincent Li0b217672009-09-21 17:03:09 -07001504 anon = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_ANON) +
1505 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_ANON);
1506 file = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_FILE) +
1507 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_FILE);
Hugh Dickinsb9627162009-01-06 14:39:41 -08001508
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001509 if (scanning_global_lru(sc)) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001510 free = zone_page_state(zone, NR_FREE_PAGES);
1511 /* If we have very few page cache pages,
1512 force-scan anon pages. */
Mel Gorman41858962009-06-16 15:32:12 -07001513 if (unlikely(file + free <= high_wmark_pages(zone))) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001514 percent[0] = 100;
1515 percent[1] = 0;
1516 return;
1517 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001518 }
1519
1520 /*
1521 * OK, so we have swap space and a fair amount of page cache
1522 * pages. We use the recently rotated / recently scanned
1523 * ratios to determine how valuable each cache is.
1524 *
1525 * Because workloads change over time (and to avoid overflow)
1526 * we keep these statistics as a floating average, which ends
1527 * up weighing recent references more than old ones.
1528 *
1529 * anon in [0], file in [1]
1530 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001531 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001532 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001533 reclaim_stat->recent_scanned[0] /= 2;
1534 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001535 spin_unlock_irq(&zone->lru_lock);
1536 }
1537
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001538 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001539 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001540 reclaim_stat->recent_scanned[1] /= 2;
1541 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001542 spin_unlock_irq(&zone->lru_lock);
1543 }
1544
1545 /*
1546 * With swappiness at 100, anonymous and file have the same priority.
1547 * This scanning priority is essentially the inverse of IO cost.
1548 */
1549 anon_prio = sc->swappiness;
1550 file_prio = 200 - sc->swappiness;
1551
1552 /*
Rik van Riel00d80892008-11-19 15:36:44 -08001553 * The amount of pressure on anon vs file pages is inversely
1554 * proportional to the fraction of recently scanned pages on
1555 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001556 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001557 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1558 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001559
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001560 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1561 fp /= reclaim_stat->recent_rotated[1] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001562
1563 /* Normalize to percentages */
1564 percent[0] = 100 * ap / (ap + fp + 1);
1565 percent[1] = 100 - percent[0];
1566}
1567
Wu Fengguang6e08a362009-06-16 15:32:29 -07001568/*
1569 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1570 * until we collected @swap_cluster_max pages to scan.
1571 */
1572static unsigned long nr_scan_try_batch(unsigned long nr_to_scan,
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001573 unsigned long *nr_saved_scan)
Wu Fengguang6e08a362009-06-16 15:32:29 -07001574{
1575 unsigned long nr;
1576
1577 *nr_saved_scan += nr_to_scan;
1578 nr = *nr_saved_scan;
1579
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001580 if (nr >= SWAP_CLUSTER_MAX)
Wu Fengguang6e08a362009-06-16 15:32:29 -07001581 *nr_saved_scan = 0;
1582 else
1583 nr = 0;
1584
1585 return nr;
1586}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001587
1588/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1590 */
Rik van Riela79311c2009-01-06 14:40:01 -08001591static void shrink_zone(int priority, struct zone *zone,
Andrew Morton05ff5132006-03-22 00:08:20 -08001592 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Christoph Lameterb69408e2008-10-18 20:26:14 -07001594 unsigned long nr[NR_LRU_LISTS];
Christoph Lameter86959492006-03-22 00:08:18 -08001595 unsigned long nr_to_scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001596 unsigned long percent[2]; /* anon @ 0; file @ 1 */
Christoph Lameterb69408e2008-10-18 20:26:14 -07001597 enum lru_list l;
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001598 unsigned long nr_reclaimed = sc->nr_reclaimed;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001599 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
Wu Fengguangf8629632009-09-21 17:03:11 -07001600 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001601 int noswap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001603 /* If we have no swap space, do not bother scanning anon pages. */
1604 if (!sc->may_swap || (nr_swap_pages <= 0)) {
1605 noswap = 1;
1606 percent[0] = 0;
1607 percent[1] = 100;
1608 } else
1609 get_scan_ratio(zone, sc, percent);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001610
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001611 for_each_evictable_lru(l) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001612 int file = is_file_lru(l);
Andrew Morton8713e012009-04-30 15:08:55 -07001613 unsigned long scan;
Johannes Weinere0f79b82008-10-18 20:26:55 -07001614
Vincent Li0b217672009-09-21 17:03:09 -07001615 scan = zone_nr_lru_pages(zone, sc, l);
Daisuke Nishimura9198e962009-06-16 15:33:15 -07001616 if (priority || noswap) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001617 scan >>= priority;
1618 scan = (scan * percent[file]) / 100;
1619 }
Wu Fengguangf8629632009-09-21 17:03:11 -07001620 nr[l] = nr_scan_try_batch(scan,
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001621 &reclaim_stat->nr_saved_scan[l]);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001622 }
1623
Rik van Riel556adec2008-10-18 20:26:34 -07001624 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1625 nr[LRU_INACTIVE_FILE]) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001626 for_each_evictable_lru(l) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001627 if (nr[l]) {
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001628 nr_to_scan = min_t(unsigned long,
1629 nr[l], SWAP_CLUSTER_MAX);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001630 nr[l] -= nr_to_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001632 nr_reclaimed += shrink_list(l, nr_to_scan,
1633 zone, sc, priority);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
Rik van Riela79311c2009-01-06 14:40:01 -08001636 /*
1637 * On large memory systems, scan >> priority can become
1638 * really large. This is fine for the starting priority;
1639 * we want to put equal scanning pressure on each zone.
1640 * However, if the VM has a harder time of freeing pages,
1641 * with multiple processes reclaiming pages, the total
1642 * freeing target can get unreasonably large.
1643 */
KOSAKI Motohiro338fde92009-12-14 17:59:15 -08001644 if (nr_reclaimed >= nr_to_reclaim && priority < DEF_PRIORITY)
Rik van Riela79311c2009-01-06 14:40:01 -08001645 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001648 sc->nr_reclaimed = nr_reclaimed;
1649
Rik van Riel556adec2008-10-18 20:26:34 -07001650 /*
1651 * Even if we did not try to evict anon pages at all, we want to
1652 * rebalance the anon lru active/inactive ratio.
1653 */
MinChan Kim69c85482009-06-16 15:32:44 -07001654 if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
Rik van Riel556adec2008-10-18 20:26:34 -07001655 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1656
Andrew Morton232ea4d2007-02-28 20:13:21 -08001657 throttle_vm_writeout(sc->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
1660/*
1661 * This is the direct reclaim path, for page-allocating processes. We only
1662 * try to reclaim pages from zones which will satisfy the caller's allocation
1663 * request.
1664 *
Mel Gorman41858962009-06-16 15:32:12 -07001665 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1666 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1668 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07001669 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1670 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1671 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 * If a zone is deemed to be full of pinned pages then just give it a light
1674 * scan then give up on it.
1675 */
Rik van Riela79311c2009-01-06 14:40:01 -08001676static void shrink_zones(int priority, struct zonelist *zonelist,
Andrew Morton05ff5132006-03-22 00:08:20 -08001677 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Mel Gorman54a6eb52008-04-28 02:12:16 -07001679 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
Mel Gormandd1a2392008-04-28 02:12:17 -07001680 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001681 struct zone *zone;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001682
Nick Piggin408d8542006-09-25 23:31:27 -07001683 sc->all_unreclaimable = 1;
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001684 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1685 sc->nodemask) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08001686 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 continue;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001688 /*
1689 * Take care memory controller reclaiming has small influence
1690 * to global LRU.
1691 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001692 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001693 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1694 continue;
1695 note_zone_scanning_priority(zone, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001697 if (zone_is_all_unreclaimable(zone) &&
1698 priority != DEF_PRIORITY)
1699 continue; /* Let kswapd poll it */
1700 sc->all_unreclaimable = 0;
1701 } else {
1702 /*
1703 * Ignore cpuset limitation here. We just want to reduce
1704 * # of used pages by us regardless of memory shortage.
1705 */
1706 sc->all_unreclaimable = 0;
1707 mem_cgroup_note_reclaim_priority(sc->mem_cgroup,
1708 priority);
1709 }
Nick Piggin408d8542006-09-25 23:31:27 -07001710
Rik van Riela79311c2009-01-06 14:40:01 -08001711 shrink_zone(priority, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
1713}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715/*
1716 * This is the main entry point to direct page reclaim.
1717 *
1718 * If a full scan of the inactive list fails to free enough memory then we
1719 * are "out of memory" and something needs to be killed.
1720 *
1721 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1722 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02001723 * caller can't do much about. We kick the writeback threads and take explicit
1724 * naps in the hope that some of these pages can be written. But if the
1725 * allocating task holds filesystem locks which prevent writeout this might not
1726 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07001727 *
1728 * returns: 0, if no pages reclaimed
1729 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 */
Mel Gormandac1d272008-04-28 02:12:12 -07001731static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Mel Gormandd1a2392008-04-28 02:12:17 -07001732 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 int priority;
kosaki.motohiro@jp.fujitsu.comc700be32008-06-12 15:21:27 -07001735 unsigned long ret = 0;
Andrew Morton69e05942006-03-22 00:08:19 -08001736 unsigned long total_scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 struct reclaim_state *reclaim_state = current->reclaim_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 unsigned long lru_pages = 0;
Mel Gormandd1a2392008-04-28 02:12:17 -07001739 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001740 struct zone *zone;
Mel Gormandd1a2392008-04-28 02:12:17 -07001741 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001742 unsigned long writeback_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Keika Kobayashi873b4772008-07-25 01:48:52 -07001744 delayacct_freepages_start();
1745
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001746 if (scanning_global_lru(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001747 count_vm_event(ALLOCSTALL);
1748 /*
1749 * mem_cgroup will not do shrink_slab.
1750 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001751 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001752 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001754 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1755 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Wu Fengguangadea02a2009-09-21 17:01:42 -07001757 lru_pages += zone_reclaimable_pages(zone);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
1760
1761 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Balbir Singh66e17072008-02-07 00:13:56 -08001762 sc->nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001763 if (!priority)
1764 disable_swap_token();
Rik van Riela79311c2009-01-06 14:40:01 -08001765 shrink_zones(priority, zonelist, sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001766 /*
1767 * Don't shrink slabs when reclaiming memory from
1768 * over limit cgroups
1769 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001770 if (scanning_global_lru(sc)) {
Mel Gormandd1a2392008-04-28 02:12:17 -07001771 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001772 if (reclaim_state) {
Rik van Riela79311c2009-01-06 14:40:01 -08001773 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001774 reclaim_state->reclaimed_slab = 0;
1775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
Balbir Singh66e17072008-02-07 00:13:56 -08001777 total_scanned += sc->nr_scanned;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001778 if (sc->nr_reclaimed >= sc->nr_to_reclaim) {
Rik van Riela79311c2009-01-06 14:40:01 -08001779 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 goto out;
1781 }
1782
1783 /*
1784 * Try to write back as many pages as we just scanned. This
1785 * tends to cause slow streaming writers to write data to the
1786 * disk smoothly, at the dirtying rate, which is nice. But
1787 * that's undesirable in laptop mode, where we *want* lumpy
1788 * writeout. So in laptop mode, write out the whole world.
1789 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001790 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
1791 if (total_scanned > writeback_threshold) {
Jens Axboe03ba3782009-09-09 09:08:54 +02001792 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned);
Balbir Singh66e17072008-02-07 00:13:56 -08001793 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
1796 /* Take a nap, wait for some writeback to complete */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08001797 if (!sc->hibernation_mode && sc->nr_scanned &&
1798 priority < DEF_PRIORITY - 2)
Jens Axboe8aa7e842009-07-09 14:52:32 +02001799 congestion_wait(BLK_RW_ASYNC, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
Fernando Luis Vazquez Cao87547ee2008-07-29 22:33:42 -07001801 /* top priority shrink_zones still had more to do? don't OOM, then */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001802 if (!sc->all_unreclaimable && scanning_global_lru(sc))
Rik van Riela79311c2009-01-06 14:40:01 -08001803 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07001805 /*
1806 * Now that we've scanned all the zones at this priority level, note
1807 * that level within the zone so that the next thread which performs
1808 * scanning of this zone will immediately start out at this priority
1809 * level. This affects only the decision whether or not to bring
1810 * mapped pages onto the inactive list.
1811 */
1812 if (priority < 0)
1813 priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001815 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001816 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001818 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1819 continue;
1820
1821 zone->prev_priority = priority;
1822 }
1823 } else
1824 mem_cgroup_record_reclaim_priority(sc->mem_cgroup, priority);
1825
Keika Kobayashi873b4772008-07-25 01:48:52 -07001826 delayacct_freepages_end();
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return ret;
1829}
1830
Mel Gormandac1d272008-04-28 02:12:12 -07001831unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001832 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08001833{
1834 struct scan_control sc = {
1835 .gfp_mask = gfp_mask,
1836 .may_writepage = !laptop_mode,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001837 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001838 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001839 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08001840 .swappiness = vm_swappiness,
1841 .order = order,
1842 .mem_cgroup = NULL,
1843 .isolate_pages = isolate_pages_global,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001844 .nodemask = nodemask,
Balbir Singh66e17072008-02-07 00:13:56 -08001845 };
1846
Mel Gormandd1a2392008-04-28 02:12:17 -07001847 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001848}
1849
Balbir Singh00f0b822008-03-04 14:28:39 -08001850#ifdef CONFIG_CGROUP_MEM_RES_CTLR
Balbir Singh66e17072008-02-07 00:13:56 -08001851
Balbir Singh4e416952009-09-23 15:56:39 -07001852unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
1853 gfp_t gfp_mask, bool noswap,
1854 unsigned int swappiness,
1855 struct zone *zone, int nid)
1856{
1857 struct scan_control sc = {
1858 .may_writepage = !laptop_mode,
1859 .may_unmap = 1,
1860 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07001861 .swappiness = swappiness,
1862 .order = 0,
1863 .mem_cgroup = mem,
1864 .isolate_pages = mem_cgroup_isolate_pages,
1865 };
1866 nodemask_t nm = nodemask_of_node(nid);
1867
1868 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1869 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1870 sc.nodemask = &nm;
1871 sc.nr_reclaimed = 0;
1872 sc.nr_scanned = 0;
1873 /*
1874 * NOTE: Although we can get the priority field, using it
1875 * here is not a good idea, since it limits the pages we can scan.
1876 * if we don't reclaim here, the shrink_zone from balance_pgdat
1877 * will pick up pages from other mem cgroup's as well. We hack
1878 * the priority and make it zero.
1879 */
1880 shrink_zone(0, zone, &sc);
1881 return sc.nr_reclaimed;
1882}
1883
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001884unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001885 gfp_t gfp_mask,
1886 bool noswap,
1887 unsigned int swappiness)
Balbir Singh66e17072008-02-07 00:13:56 -08001888{
Balbir Singh4e416952009-09-23 15:56:39 -07001889 struct zonelist *zonelist;
Balbir Singh66e17072008-02-07 00:13:56 -08001890 struct scan_control sc = {
Balbir Singh66e17072008-02-07 00:13:56 -08001891 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001892 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001893 .may_swap = !noswap,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001894 .nr_to_reclaim = SWAP_CLUSTER_MAX,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001895 .swappiness = swappiness,
Balbir Singh66e17072008-02-07 00:13:56 -08001896 .order = 0,
1897 .mem_cgroup = mem_cont,
1898 .isolate_pages = mem_cgroup_isolate_pages,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001899 .nodemask = NULL, /* we don't care the placement */
Balbir Singh66e17072008-02-07 00:13:56 -08001900 };
Balbir Singh66e17072008-02-07 00:13:56 -08001901
Mel Gormandd1a2392008-04-28 02:12:17 -07001902 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1903 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1904 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
1905 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001906}
1907#endif
1908
Mel Gormanf50de2d2009-12-14 17:58:53 -08001909/* is kswapd sleeping prematurely? */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001910static int sleeping_prematurely(pg_data_t *pgdat, int order, long remaining)
Mel Gormanf50de2d2009-12-14 17:58:53 -08001911{
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001912 int i;
Mel Gormanf50de2d2009-12-14 17:58:53 -08001913
1914 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
1915 if (remaining)
1916 return 1;
1917
1918 /* If after HZ/10, a zone is below the high mark, it's premature */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001919 for (i = 0; i < pgdat->nr_zones; i++) {
1920 struct zone *zone = pgdat->node_zones + i;
1921
1922 if (!populated_zone(zone))
1923 continue;
1924
Mel Gormanf50de2d2009-12-14 17:58:53 -08001925 if (!zone_watermark_ok(zone, order, high_wmark_pages(zone),
1926 0, 0))
1927 return 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001928 }
Mel Gormanf50de2d2009-12-14 17:58:53 -08001929
1930 return 0;
1931}
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/*
1934 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07001935 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 * Returns the number of pages which were actually freed.
1938 *
1939 * There is special handling here for zones which are full of pinned pages.
1940 * This can happen if the pages are all mlocked, or if they are all used by
1941 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1942 * What we do is to detect the case where all pages in the zone have been
1943 * scanned twice and there has been zero successful reclaim. Mark the zone as
1944 * dead and from now on, only perform a short scan. Basically we're polling
1945 * the zone for when the problem goes away.
1946 *
1947 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07001948 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
1949 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
1950 * lower zones regardless of the number of free pages in the lower zones. This
1951 * interoperates with the page allocator fallback scheme to ensure that aging
1952 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001954static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 int all_zones_ok;
1957 int priority;
1958 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08001959 unsigned long total_scanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08001961 struct scan_control sc = {
1962 .gfp_mask = GFP_KERNEL,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001963 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001964 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001965 /*
1966 * kswapd doesn't want to be bailed out while reclaim. because
1967 * we want to put equal scanning pressure on each zone.
1968 */
1969 .nr_to_reclaim = ULONG_MAX,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001970 .swappiness = vm_swappiness,
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001971 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08001972 .mem_cgroup = NULL,
1973 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08001974 };
Martin Bligh3bb1a852006-10-28 10:38:24 -07001975 /*
1976 * temp_priority is used to remember the scanning priority at which
Mel Gorman41858962009-06-16 15:32:12 -07001977 * this zone was successfully refilled to
1978 * free_pages == high_wmark_pages(zone).
Martin Bligh3bb1a852006-10-28 10:38:24 -07001979 */
1980 int temp_priority[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982loop_again:
1983 total_scanned = 0;
Rik van Riela79311c2009-01-06 14:40:01 -08001984 sc.nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07001985 sc.may_writepage = !laptop_mode;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001986 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Martin Bligh3bb1a852006-10-28 10:38:24 -07001988 for (i = 0; i < pgdat->nr_zones; i++)
1989 temp_priority[i] = DEF_PRIORITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
1992 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
1993 unsigned long lru_pages = 0;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001994 int has_under_min_watermark_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001996 /* The swap token gets in the way of swapout... */
1997 if (!priority)
1998 disable_swap_token();
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 all_zones_ok = 1;
2001
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002002 /*
2003 * Scan in the highmem->dma direction for the highest
2004 * zone which needs scanning
2005 */
2006 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
2007 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002009 if (!populated_zone(zone))
2010 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
David Rientjese815af92007-10-16 23:25:54 -07002012 if (zone_is_all_unreclaimable(zone) &&
2013 priority != DEF_PRIORITY)
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002014 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Rik van Riel556adec2008-10-18 20:26:34 -07002016 /*
2017 * Do some background aging of the anon list, to give
2018 * pages a chance to be referenced before reclaiming.
2019 */
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002020 if (inactive_anon_is_low(zone, &sc))
Rik van Riel556adec2008-10-18 20:26:34 -07002021 shrink_active_list(SWAP_CLUSTER_MAX, zone,
2022 &sc, priority, 0);
2023
Mel Gorman41858962009-06-16 15:32:12 -07002024 if (!zone_watermark_ok(zone, order,
2025 high_wmark_pages(zone), 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002026 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002027 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002030 if (i < 0)
2031 goto out;
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 for (i = 0; i <= end_zone; i++) {
2034 struct zone *zone = pgdat->node_zones + i;
2035
Wu Fengguangadea02a2009-09-21 17:01:42 -07002036 lru_pages += zone_reclaimable_pages(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
2039 /*
2040 * Now scan the zone in the dma->highmem direction, stopping
2041 * at the last zone which needs scanning.
2042 *
2043 * We do this because the page allocator works in the opposite
2044 * direction. This prevents the page allocator from allocating
2045 * pages behind kswapd's direction of progress, which would
2046 * cause too much scanning of the lower zones.
2047 */
2048 for (i = 0; i <= end_zone; i++) {
2049 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002050 int nr_slab;
Balbir Singh4e416952009-09-23 15:56:39 -07002051 int nid, zid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Con Kolivasf3fe6512006-01-06 00:11:15 -08002053 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 continue;
2055
David Rientjese815af92007-10-16 23:25:54 -07002056 if (zone_is_all_unreclaimable(zone) &&
2057 priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 continue;
2059
Mel Gorman41858962009-06-16 15:32:12 -07002060 if (!zone_watermark_ok(zone, order,
2061 high_wmark_pages(zone), end_zone, 0))
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002062 all_zones_ok = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002063 temp_priority[i] = priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 sc.nr_scanned = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002065 note_zone_scanning_priority(zone, priority);
Balbir Singh4e416952009-09-23 15:56:39 -07002066
2067 nid = pgdat->node_id;
2068 zid = zone_idx(zone);
2069 /*
2070 * Call soft limit reclaim before calling shrink_zone.
2071 * For now we ignore the return value
2072 */
2073 mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask,
2074 nid, zid);
Rik van Riel32a43302007-10-16 01:24:50 -07002075 /*
2076 * We put equal pressure on every zone, unless one
2077 * zone has way too many pages free already.
2078 */
Mel Gorman41858962009-06-16 15:32:12 -07002079 if (!zone_watermark_ok(zone, order,
2080 8*high_wmark_pages(zone), end_zone, 0))
Rik van Riela79311c2009-01-06 14:40:01 -08002081 shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002083 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
2084 lru_pages);
Rik van Riela79311c2009-01-06 14:40:01 -08002085 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 total_scanned += sc.nr_scanned;
David Rientjese815af92007-10-16 23:25:54 -07002087 if (zone_is_all_unreclaimable(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 continue;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002089 if (nr_slab == 0 && zone->pages_scanned >=
Wu Fengguangadea02a2009-09-21 17:01:42 -07002090 (zone_reclaimable_pages(zone) * 6))
David Rientjese815af92007-10-16 23:25:54 -07002091 zone_set_flag(zone,
2092 ZONE_ALL_UNRECLAIMABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /*
2094 * If we've done a decent amount of scanning and
2095 * the reclaim ratio is low, start doing writepage
2096 * even in laptop mode
2097 */
2098 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Rik van Riela79311c2009-01-06 14:40:01 -08002099 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 sc.may_writepage = 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002101
2102 /*
2103 * We are still under min water mark. it mean we have
2104 * GFP_ATOMIC allocation failure risk. Hurry up!
2105 */
2106 if (!zone_watermark_ok(zone, order, min_wmark_pages(zone),
2107 end_zone, 0))
2108 has_under_min_watermark_zone = 1;
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if (all_zones_ok)
2112 break; /* kswapd: all done */
2113 /*
2114 * OK, kswapd is getting into trouble. Take a nap, then take
2115 * another pass across the zones.
2116 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002117 if (total_scanned && (priority < DEF_PRIORITY - 2)) {
2118 if (has_under_min_watermark_zone)
2119 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT);
2120 else
2121 congestion_wait(BLK_RW_ASYNC, HZ/10);
2122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 /*
2125 * We do this so kswapd doesn't build up large priorities for
2126 * example when it is freeing in parallel with allocators. It
2127 * matches the direct reclaim path behaviour in terms of impact
2128 * on zone->*_priority.
2129 */
Rik van Riela79311c2009-01-06 14:40:01 -08002130 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 break;
2132 }
2133out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07002134 /*
2135 * Note within each zone the priority level at which this zone was
2136 * brought into a happy state. So that the next thread which scans this
2137 * zone will start out at that priority level.
2138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 for (i = 0; i < pgdat->nr_zones; i++) {
2140 struct zone *zone = pgdat->node_zones + i;
2141
Martin Bligh3bb1a852006-10-28 10:38:24 -07002142 zone->prev_priority = temp_priority[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
2144 if (!all_zones_ok) {
2145 cond_resched();
Rafael J. Wysocki83573762006-12-06 20:34:18 -08002146
2147 try_to_freeze();
2148
KOSAKI Motohiro73ce02e2009-01-06 14:40:33 -08002149 /*
2150 * Fragmentation may mean that the system cannot be
2151 * rebalanced for high-order allocations in all zones.
2152 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2153 * it means the zones have been fully scanned and are still
2154 * not balanced. For high-order allocations, there is
2155 * little point trying all over again as kswapd may
2156 * infinite loop.
2157 *
2158 * Instead, recheck all watermarks at order-0 as they
2159 * are the most important. If watermarks are ok, kswapd will go
2160 * back to sleep. High-order users can still perform direct
2161 * reclaim if they wish.
2162 */
2163 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
2164 order = sc.order = 0;
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 goto loop_again;
2167 }
2168
Rik van Riela79311c2009-01-06 14:40:01 -08002169 return sc.nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
2172/*
2173 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002174 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 *
2176 * This basically trickles out pages so that we have _some_
2177 * free memory available even if there is no other activity
2178 * that frees anything up. This is needed for things like routing
2179 * etc, where we otherwise might have all activity going on in
2180 * asynchronous contexts that cannot page things out.
2181 *
2182 * If there are applications that are active memory-allocators
2183 * (most normal use), this basically shouldn't matter.
2184 */
2185static int kswapd(void *p)
2186{
2187 unsigned long order;
2188 pg_data_t *pgdat = (pg_data_t*)p;
2189 struct task_struct *tsk = current;
2190 DEFINE_WAIT(wait);
2191 struct reclaim_state reclaim_state = {
2192 .reclaimed_slab = 0,
2193 };
Rusty Russella70f7302009-03-13 14:49:46 +10302194 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Nick Piggincf40bd12009-01-21 08:12:39 +01002196 lockdep_set_current_reclaim_state(GFP_KERNEL);
2197
Rusty Russell174596a2009-01-01 10:12:29 +10302198 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07002199 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 current->reclaim_state = &reclaim_state;
2201
2202 /*
2203 * Tell the memory management that we're a "memory allocator",
2204 * and that if we need more memory we should get access to it
2205 * regardless (see "__alloc_pages()"). "kswapd" should
2206 * never get caught in the normal page freeing logic.
2207 *
2208 * (Kswapd normally doesn't need memory anyway, but sometimes
2209 * you need a small amount of memory in order to be able to
2210 * page out something else, and this flag essentially protects
2211 * us from recursively trying to free more memory as we're
2212 * trying to free the first piece of memory in the first place).
2213 */
Christoph Lameter930d9152006-01-08 01:00:47 -08002214 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07002215 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 order = 0;
2218 for ( ; ; ) {
2219 unsigned long new_order;
David Rientjes8fe23e02009-12-14 17:58:33 -08002220 int ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2223 new_order = pgdat->kswapd_max_order;
2224 pgdat->kswapd_max_order = 0;
2225 if (order < new_order) {
2226 /*
2227 * Don't sleep if someone wants a larger 'order'
2228 * allocation
2229 */
2230 order = new_order;
2231 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002232 if (!freezing(current) && !kthread_should_stop()) {
2233 long remaining = 0;
2234
2235 /* Try to sleep for a short interval */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002236 if (!sleeping_prematurely(pgdat, order, remaining)) {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002237 remaining = schedule_timeout(HZ/10);
2238 finish_wait(&pgdat->kswapd_wait, &wait);
2239 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2240 }
2241
2242 /*
2243 * After a short sleep, check if it was a
2244 * premature sleep. If not, then go fully
2245 * to sleep until explicitly woken up
2246 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002247 if (!sleeping_prematurely(pgdat, order, remaining))
Mel Gormanf50de2d2009-12-14 17:58:53 -08002248 schedule();
2249 else {
2250 if (remaining)
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002251 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002252 else
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002253 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002254 }
2255 }
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 order = pgdat->kswapd_max_order;
2258 }
2259 finish_wait(&pgdat->kswapd_wait, &wait);
2260
David Rientjes8fe23e02009-12-14 17:58:33 -08002261 ret = try_to_freeze();
2262 if (kthread_should_stop())
2263 break;
2264
2265 /*
2266 * We can speed up thawing tasks if we don't call balance_pgdat
2267 * after returning from the refrigerator
2268 */
2269 if (!ret)
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002270 balance_pgdat(pgdat, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272 return 0;
2273}
2274
2275/*
2276 * A zone is low on free memory, so wake its kswapd task to service it.
2277 */
2278void wakeup_kswapd(struct zone *zone, int order)
2279{
2280 pg_data_t *pgdat;
2281
Con Kolivasf3fe6512006-01-06 00:11:15 -08002282 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return;
2284
2285 pgdat = zone->zone_pgdat;
Mel Gorman41858962009-06-16 15:32:12 -07002286 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return;
2288 if (pgdat->kswapd_max_order < order)
2289 pgdat->kswapd_max_order = order;
Paul Jackson02a0e532006-12-13 00:34:25 -08002290 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002292 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002294 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
Wu Fengguangadea02a2009-09-21 17:01:42 -07002297/*
2298 * The reclaimable count would be mostly accurate.
2299 * The less reclaimable pages may be
2300 * - mlocked pages, which will be moved to unevictable list when encountered
2301 * - mapped pages, which may require several travels to be reclaimed
2302 * - dirty pages, which is not "instantly" reclaimable
2303 */
2304unsigned long global_reclaimable_pages(void)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002305{
Wu Fengguangadea02a2009-09-21 17:01:42 -07002306 int nr;
2307
2308 nr = global_page_state(NR_ACTIVE_FILE) +
2309 global_page_state(NR_INACTIVE_FILE);
2310
2311 if (nr_swap_pages > 0)
2312 nr += global_page_state(NR_ACTIVE_ANON) +
2313 global_page_state(NR_INACTIVE_ANON);
2314
2315 return nr;
2316}
2317
2318unsigned long zone_reclaimable_pages(struct zone *zone)
2319{
2320 int nr;
2321
2322 nr = zone_page_state(zone, NR_ACTIVE_FILE) +
2323 zone_page_state(zone, NR_INACTIVE_FILE);
2324
2325 if (nr_swap_pages > 0)
2326 nr += zone_page_state(zone, NR_ACTIVE_ANON) +
2327 zone_page_state(zone, NR_INACTIVE_ANON);
2328
2329 return nr;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002330}
2331
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002332#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002334 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002335 * freed pages.
2336 *
2337 * Rather than trying to age LRUs the aim is to preserve the overall
2338 * LRU order by reclaiming preferentially
2339 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002341unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002343 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002344 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002345 .gfp_mask = GFP_HIGHUSER_MOVABLE,
2346 .may_swap = 1,
2347 .may_unmap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002348 .may_writepage = 1,
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002349 .nr_to_reclaim = nr_to_reclaim,
2350 .hibernation_mode = 1,
2351 .swappiness = vm_swappiness,
2352 .order = 0,
Balbir Singh66e17072008-02-07 00:13:56 -08002353 .isolate_pages = isolate_pages_global,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 };
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002355 struct zonelist * zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
2356 struct task_struct *p = current;
2357 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002359 p->flags |= PF_MEMALLOC;
2360 lockdep_set_current_reclaim_state(sc.gfp_mask);
2361 reclaim_state.reclaimed_slab = 0;
2362 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08002363
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002364 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002365
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002366 p->reclaim_state = NULL;
2367 lockdep_clear_current_reclaim_state();
2368 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002369
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002370 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002372#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374/* It's optimal to keep kswapds on the same CPUs as their memory, but
2375 not required for correctness. So if the last cpu in a node goes
2376 away, we get changed to run anywhere: as the first one comes back,
2377 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07002378static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08002379 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002381 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002383 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002384 for_each_node_state(nid, N_HIGH_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07002385 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10302386 const struct cpumask *mask;
2387
2388 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07002389
Rusty Russell3e597942009-01-01 10:12:24 +10302390 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07002392 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394 }
2395 return NOTIFY_OK;
2396}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Yasunori Goto3218ae12006-06-27 02:53:33 -07002398/*
2399 * This kswapd start function will be called by init and node-hot-add.
2400 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2401 */
2402int kswapd_run(int nid)
2403{
2404 pg_data_t *pgdat = NODE_DATA(nid);
2405 int ret = 0;
2406
2407 if (pgdat->kswapd)
2408 return 0;
2409
2410 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2411 if (IS_ERR(pgdat->kswapd)) {
2412 /* failure at boot is fatal */
2413 BUG_ON(system_state == SYSTEM_BOOTING);
2414 printk("Failed to start kswapd on node %d\n",nid);
2415 ret = -1;
2416 }
2417 return ret;
2418}
2419
David Rientjes8fe23e02009-12-14 17:58:33 -08002420/*
2421 * Called by memory hotplug when all memory in a node is offlined.
2422 */
2423void kswapd_stop(int nid)
2424{
2425 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
2426
2427 if (kswapd)
2428 kthread_stop(kswapd);
2429}
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431static int __init kswapd_init(void)
2432{
Yasunori Goto3218ae12006-06-27 02:53:33 -07002433 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 swap_setup();
Christoph Lameter9422ffb2007-10-16 01:25:31 -07002436 for_each_node_state(nid, N_HIGH_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07002437 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 hotcpu_notifier(cpu_callback, 0);
2439 return 0;
2440}
2441
2442module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002443
2444#ifdef CONFIG_NUMA
2445/*
2446 * Zone reclaim mode
2447 *
2448 * If non-zero call zone_reclaim when the number of free pages falls below
2449 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08002450 */
2451int zone_reclaim_mode __read_mostly;
2452
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002453#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07002454#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002455#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2456#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2457
Christoph Lameter9eeff232006-01-18 17:42:31 -08002458/*
Christoph Lametera92f7122006-02-01 03:05:32 -08002459 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2460 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2461 * a zone.
2462 */
2463#define ZONE_RECLAIM_PRIORITY 4
2464
Christoph Lameter9eeff232006-01-18 17:42:31 -08002465/*
Christoph Lameter96146342006-07-03 00:24:13 -07002466 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2467 * occur.
2468 */
2469int sysctl_min_unmapped_ratio = 1;
2470
2471/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002472 * If the number of slab pages in a zone grows beyond this percentage then
2473 * slab reclaim needs to occur.
2474 */
2475int sysctl_min_slab_ratio = 5;
2476
Mel Gorman90afa5d2009-06-16 15:33:20 -07002477static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
2478{
2479 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
2480 unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
2481 zone_page_state(zone, NR_ACTIVE_FILE);
2482
2483 /*
2484 * It's possible for there to be more file mapped pages than
2485 * accounted for by the pages on the file LRU lists because
2486 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2487 */
2488 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
2489}
2490
2491/* Work out how many page cache pages we can reclaim in this reclaim_mode */
2492static long zone_pagecache_reclaimable(struct zone *zone)
2493{
2494 long nr_pagecache_reclaimable;
2495 long delta = 0;
2496
2497 /*
2498 * If RECLAIM_SWAP is set, then all file pages are considered
2499 * potentially reclaimable. Otherwise, we have to worry about
2500 * pages like swapcache and zone_unmapped_file_pages() provides
2501 * a better estimate
2502 */
2503 if (zone_reclaim_mode & RECLAIM_SWAP)
2504 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
2505 else
2506 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
2507
2508 /* If we can't clean pages, remove dirty pages from consideration */
2509 if (!(zone_reclaim_mode & RECLAIM_WRITE))
2510 delta += zone_page_state(zone, NR_FILE_DIRTY);
2511
2512 /* Watch for any possible underflows due to delta */
2513 if (unlikely(delta > nr_pagecache_reclaimable))
2514 delta = nr_pagecache_reclaimable;
2515
2516 return nr_pagecache_reclaimable - delta;
2517}
2518
Christoph Lameter0ff38492006-09-25 23:31:52 -07002519/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08002520 * Try to free up some pages from this zone through reclaim.
2521 */
Andrew Morton179e9632006-03-22 00:08:18 -08002522static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002523{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002524 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08002525 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002526 struct task_struct *p = current;
2527 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08002528 int priority;
Andrew Morton179e9632006-03-22 00:08:18 -08002529 struct scan_control sc = {
2530 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002531 .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002532 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002533 .nr_to_reclaim = max_t(unsigned long, nr_pages,
2534 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08002535 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002536 .swappiness = vm_swappiness,
Johannes Weinerbd2f6192009-03-31 15:19:38 -07002537 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002538 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08002539 };
Christoph Lameter83e33a42006-09-25 23:31:53 -07002540 unsigned long slab_reclaimable;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002541
2542 disable_swap_token();
Christoph Lameter9eeff232006-01-18 17:42:31 -08002543 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08002544 /*
2545 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2546 * and we also need to be able to write out pages for RECLAIM_WRITE
2547 * and RECLAIM_SWAP.
2548 */
2549 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002550 reclaim_state.reclaimed_slab = 0;
2551 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08002552
Mel Gorman90afa5d2009-06-16 15:33:20 -07002553 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07002554 /*
2555 * Free memory by calling shrink zone with increasing
2556 * priorities until we have enough memory freed.
2557 */
2558 priority = ZONE_RECLAIM_PRIORITY;
2559 do {
Martin Bligh3bb1a852006-10-28 10:38:24 -07002560 note_zone_scanning_priority(zone, priority);
Rik van Riela79311c2009-01-06 14:40:01 -08002561 shrink_zone(priority, zone, &sc);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002562 priority--;
Rik van Riela79311c2009-01-06 14:40:01 -08002563 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002564 }
Christoph Lameterc84db232006-02-01 03:05:29 -08002565
Christoph Lameter83e33a42006-09-25 23:31:53 -07002566 slab_reclaimable = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2567 if (slab_reclaimable > zone->min_slab_pages) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002568 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002569 * shrink_slab() does not currently allow us to determine how
Christoph Lameter0ff38492006-09-25 23:31:52 -07002570 * many pages were freed in this zone. So we take the current
2571 * number of slab pages and shake the slab until it is reduced
2572 * by the same nr_pages that we used for reclaiming unmapped
2573 * pages.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002574 *
Christoph Lameter0ff38492006-09-25 23:31:52 -07002575 * Note that shrink_slab will free memory on all zones and may
2576 * take a long time.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002577 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07002578 while (shrink_slab(sc.nr_scanned, gfp_mask, order) &&
Christoph Lameter83e33a42006-09-25 23:31:53 -07002579 zone_page_state(zone, NR_SLAB_RECLAIMABLE) >
2580 slab_reclaimable - nr_pages)
Christoph Lameter0ff38492006-09-25 23:31:52 -07002581 ;
Christoph Lameter83e33a42006-09-25 23:31:53 -07002582
2583 /*
2584 * Update nr_reclaimed by the number of slab pages we
2585 * reclaimed from this zone.
2586 */
Rik van Riela79311c2009-01-06 14:40:01 -08002587 sc.nr_reclaimed += slab_reclaimable -
Christoph Lameter83e33a42006-09-25 23:31:53 -07002588 zone_page_state(zone, NR_SLAB_RECLAIMABLE);
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002589 }
2590
Christoph Lameter9eeff232006-01-18 17:42:31 -08002591 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08002592 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
Rik van Riela79311c2009-01-06 14:40:01 -08002593 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002594}
Andrew Morton179e9632006-03-22 00:08:18 -08002595
2596int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2597{
Andrew Morton179e9632006-03-22 00:08:18 -08002598 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07002599 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002600
2601 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002602 * Zone reclaim reclaims unmapped file backed pages and
2603 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07002604 *
Christoph Lameter96146342006-07-03 00:24:13 -07002605 * A small portion of unmapped file backed pages is needed for
2606 * file I/O otherwise pages read by file I/O will be immediately
2607 * thrown out if the zone is overallocated. So we do not reclaim
2608 * if less than a specified percentage of the zone is used by
2609 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08002610 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07002611 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
2612 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002613 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08002614
David Rientjesd773ed62007-10-16 23:26:01 -07002615 if (zone_is_all_unreclaimable(zone))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002616 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07002617
Andrew Morton179e9632006-03-22 00:08:18 -08002618 /*
David Rientjesd773ed62007-10-16 23:26:01 -07002619 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08002620 */
David Rientjesd773ed62007-10-16 23:26:01 -07002621 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002622 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08002623
2624 /*
2625 * Only run zone reclaim on the local zone or on zones that do not
2626 * have associated processors. This will favor the local processor
2627 * over remote processors and spread off node memory allocations
2628 * as wide as possible.
2629 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07002630 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07002631 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07002632 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07002633
2634 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002635 return ZONE_RECLAIM_NOSCAN;
2636
David Rientjesd773ed62007-10-16 23:26:01 -07002637 ret = __zone_reclaim(zone, gfp_mask, order);
2638 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2639
Mel Gorman24cf725182009-06-16 15:33:23 -07002640 if (!ret)
2641 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
2642
David Rientjesd773ed62007-10-16 23:26:01 -07002643 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002644}
Christoph Lameter9eeff232006-01-18 17:42:31 -08002645#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002646
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002647/*
2648 * page_evictable - test whether a page is evictable
2649 * @page: the page to test
2650 * @vma: the VMA in which the page is or will be mapped, may be NULL
2651 *
2652 * Test whether page is evictable--i.e., should be placed on active/inactive
Nick Pigginb291f002008-10-18 20:26:44 -07002653 * lists vs unevictable list. The vma argument is !NULL when called from the
2654 * fault path to determine how to instantate a new page.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002655 *
2656 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002657 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07002658 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002659 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002660 */
2661int page_evictable(struct page *page, struct vm_area_struct *vma)
2662{
2663
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002664 if (mapping_unevictable(page_mapping(page)))
2665 return 0;
2666
Nick Pigginb291f002008-10-18 20:26:44 -07002667 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2668 return 0;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002669
2670 return 1;
2671}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002672
2673/**
2674 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2675 * @page: page to check evictability and move to appropriate lru list
2676 * @zone: zone page is in
2677 *
2678 * Checks a page for evictability and moves the page to the appropriate
2679 * zone lru list.
2680 *
2681 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2682 * have PageUnevictable set.
2683 */
2684static void check_move_unevictable_page(struct page *page, struct zone *zone)
2685{
2686 VM_BUG_ON(PageActive(page));
2687
2688retry:
2689 ClearPageUnevictable(page);
2690 if (page_evictable(page, NULL)) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07002691 enum lru_list l = page_lru_base_type(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002692
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002693 __dec_zone_state(zone, NR_UNEVICTABLE);
2694 list_move(&page->lru, &zone->lru[l].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002695 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002696 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2697 __count_vm_event(UNEVICTABLE_PGRESCUED);
2698 } else {
2699 /*
2700 * rotate unevictable list
2701 */
2702 SetPageUnevictable(page);
2703 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002704 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002705 if (page_evictable(page, NULL))
2706 goto retry;
2707 }
2708}
2709
2710/**
2711 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2712 * @mapping: struct address_space to scan for evictable pages
2713 *
2714 * Scan all pages in mapping. Check unevictable pages for
2715 * evictability and move them to the appropriate zone lru list.
2716 */
2717void scan_mapping_unevictable_pages(struct address_space *mapping)
2718{
2719 pgoff_t next = 0;
2720 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2721 PAGE_CACHE_SHIFT;
2722 struct zone *zone;
2723 struct pagevec pvec;
2724
2725 if (mapping->nrpages == 0)
2726 return;
2727
2728 pagevec_init(&pvec, 0);
2729 while (next < end &&
2730 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2731 int i;
2732 int pg_scanned = 0;
2733
2734 zone = NULL;
2735
2736 for (i = 0; i < pagevec_count(&pvec); i++) {
2737 struct page *page = pvec.pages[i];
2738 pgoff_t page_index = page->index;
2739 struct zone *pagezone = page_zone(page);
2740
2741 pg_scanned++;
2742 if (page_index > next)
2743 next = page_index;
2744 next++;
2745
2746 if (pagezone != zone) {
2747 if (zone)
2748 spin_unlock_irq(&zone->lru_lock);
2749 zone = pagezone;
2750 spin_lock_irq(&zone->lru_lock);
2751 }
2752
2753 if (PageLRU(page) && PageUnevictable(page))
2754 check_move_unevictable_page(page, zone);
2755 }
2756 if (zone)
2757 spin_unlock_irq(&zone->lru_lock);
2758 pagevec_release(&pvec);
2759
2760 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2761 }
2762
2763}
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002764
2765/**
2766 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2767 * @zone - zone of which to scan the unevictable list
2768 *
2769 * Scan @zone's unevictable LRU lists to check for pages that have become
2770 * evictable. Move those that have to @zone's inactive list where they
2771 * become candidates for reclaim, unless shrink_inactive_zone() decides
2772 * to reactivate them. Pages that are still unevictable are rotated
2773 * back onto @zone's unevictable list.
2774 */
2775#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
KOSAKI Motohiro14b90b22009-01-06 14:39:45 -08002776static void scan_zone_unevictable_pages(struct zone *zone)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002777{
2778 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2779 unsigned long scan;
2780 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2781
2782 while (nr_to_scan > 0) {
2783 unsigned long batch_size = min(nr_to_scan,
2784 SCAN_UNEVICTABLE_BATCH_SIZE);
2785
2786 spin_lock_irq(&zone->lru_lock);
2787 for (scan = 0; scan < batch_size; scan++) {
2788 struct page *page = lru_to_page(l_unevictable);
2789
2790 if (!trylock_page(page))
2791 continue;
2792
2793 prefetchw_prev_lru_page(page, l_unevictable, flags);
2794
2795 if (likely(PageLRU(page) && PageUnevictable(page)))
2796 check_move_unevictable_page(page, zone);
2797
2798 unlock_page(page);
2799 }
2800 spin_unlock_irq(&zone->lru_lock);
2801
2802 nr_to_scan -= batch_size;
2803 }
2804}
2805
2806
2807/**
2808 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2809 *
2810 * A really big hammer: scan all zones' unevictable LRU lists to check for
2811 * pages that have become evictable. Move those back to the zones'
2812 * inactive list where they become candidates for reclaim.
2813 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2814 * and we add swap to the system. As such, it runs in the context of a task
2815 * that has possibly/probably made some previously unevictable pages
2816 * evictable.
2817 */
KOSAKI Motohiroff301532009-01-06 14:39:44 -08002818static void scan_all_zones_unevictable_pages(void)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002819{
2820 struct zone *zone;
2821
2822 for_each_zone(zone) {
2823 scan_zone_unevictable_pages(zone);
2824 }
2825}
2826
2827/*
2828 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2829 * all nodes' unevictable lists for evictable pages
2830 */
2831unsigned long scan_unevictable_pages;
2832
2833int scan_unevictable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002834 void __user *buffer,
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002835 size_t *length, loff_t *ppos)
2836{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002837 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002838
2839 if (write && *(unsigned long *)table->data)
2840 scan_all_zones_unevictable_pages();
2841
2842 scan_unevictable_pages = 0;
2843 return 0;
2844}
2845
2846/*
2847 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2848 * a specified node's per zone unevictable lists for evictable pages.
2849 */
2850
2851static ssize_t read_scan_unevictable_node(struct sys_device *dev,
2852 struct sysdev_attribute *attr,
2853 char *buf)
2854{
2855 return sprintf(buf, "0\n"); /* always zero; should fit... */
2856}
2857
2858static ssize_t write_scan_unevictable_node(struct sys_device *dev,
2859 struct sysdev_attribute *attr,
2860 const char *buf, size_t count)
2861{
2862 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
2863 struct zone *zone;
2864 unsigned long res;
2865 unsigned long req = strict_strtoul(buf, 10, &res);
2866
2867 if (!req)
2868 return 1; /* zero is no-op */
2869
2870 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2871 if (!populated_zone(zone))
2872 continue;
2873 scan_zone_unevictable_pages(zone);
2874 }
2875 return 1;
2876}
2877
2878
2879static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
2880 read_scan_unevictable_node,
2881 write_scan_unevictable_node);
2882
2883int scan_unevictable_register_node(struct node *node)
2884{
2885 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
2886}
2887
2888void scan_unevictable_unregister_node(struct node *node)
2889{
2890 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
2891}
2892