blob: ba4e87df3fc6b0ce9739fe9700f2efc570776e57 [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
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800582enum page_references {
583 PAGEREF_RECLAIM,
584 PAGEREF_RECLAIM_CLEAN,
585 PAGEREF_ACTIVATE,
586};
587
588static enum page_references page_check_references(struct page *page,
589 struct scan_control *sc)
590{
591 unsigned long vm_flags;
592 int referenced;
593
594 referenced = page_referenced(page, 1, sc->mem_cgroup, &vm_flags);
595 if (!referenced)
596 return PAGEREF_RECLAIM;
597
598 /* Lumpy reclaim - ignore references */
599 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
600 return PAGEREF_RECLAIM;
601
602 /*
603 * Mlock lost the isolation race with us. Let try_to_unmap()
604 * move the page to the unevictable list.
605 */
606 if (vm_flags & VM_LOCKED)
607 return PAGEREF_RECLAIM;
608
609 if (page_mapping_inuse(page))
610 return PAGEREF_ACTIVATE;
611
612 /* Reclaim if clean, defer dirty pages to writeback */
613 return PAGEREF_RECLAIM_CLEAN;
614}
615
Nick Piggine2867812008-07-25 19:45:30 -0700616/*
Andrew Morton1742f192006-03-22 00:08:21 -0800617 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
Andrew Morton1742f192006-03-22 00:08:21 -0800619static unsigned long shrink_page_list(struct list_head *page_list,
Andy Whitcroftc661b072007-08-22 14:01:26 -0700620 struct scan_control *sc,
621 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 LIST_HEAD(ret_pages);
624 struct pagevec freed_pvec;
625 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800626 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 cond_resched();
629
630 pagevec_init(&freed_pvec, 1);
631 while (!list_empty(page_list)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800632 enum page_references references;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct address_space *mapping;
634 struct page *page;
635 int may_enter_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 cond_resched();
638
639 page = lru_to_page(page_list);
640 list_del(&page->lru);
641
Nick Piggin529ae9a2008-08-02 12:01:03 +0200642 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto keep;
644
Nick Piggin725d7042006-09-25 23:30:55 -0700645 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800648
Nick Pigginb291f002008-10-18 20:26:44 -0700649 if (unlikely(!page_evictable(page, NULL)))
650 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700651
Johannes Weinera6dc60f2009-03-31 15:19:30 -0700652 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800653 goto keep_locked;
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /* Double the slab pressure for mapped and swapcache pages */
656 if (page_mapped(page) || PageSwapCache(page))
657 sc->nr_scanned++;
658
Andy Whitcroftc661b072007-08-22 14:01:26 -0700659 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
660 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
661
662 if (PageWriteback(page)) {
663 /*
664 * Synchronous reclaim is performed in two passes,
665 * first an asynchronous pass over the list to
666 * start parallel writeback, and a second synchronous
667 * pass to wait for the IO to complete. Wait here
668 * for any page for which writeback has already
669 * started.
670 */
671 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
672 wait_on_page_writeback(page);
Andrew Morton4dd4b922008-03-24 12:29:52 -0700673 else
Andy Whitcroftc661b072007-08-22 14:01:26 -0700674 goto keep_locked;
675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800677 references = page_check_references(page, sc);
678 switch (references) {
679 case PAGEREF_ACTIVATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto activate_locked;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800681 case PAGEREF_RECLAIM:
682 case PAGEREF_RECLAIM_CLEAN:
683 ; /* try to reclaim the page below */
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * Anonymous process memory has backing store?
688 * Try to allocate it some swap space here.
689 */
Nick Pigginb291f002008-10-18 20:26:44 -0700690 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800691 if (!(sc->gfp_mask & __GFP_IO))
692 goto keep_locked;
Hugh Dickinsac47b002009-01-06 14:39:39 -0800693 if (!add_to_swap(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto activate_locked;
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800695 may_enter_fs = 1;
Nick Pigginb291f002008-10-18 20:26:44 -0700696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
701 * The page is mapped into the page tables of one or more
702 * processes. Try to unmap it here.
703 */
704 if (page_mapped(page) && mapping) {
Andi Kleen14fa31b2009-09-16 11:50:10 +0200705 switch (try_to_unmap(page, TTU_UNMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 case SWAP_FAIL:
707 goto activate_locked;
708 case SWAP_AGAIN:
709 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -0700710 case SWAP_MLOCK:
711 goto cull_mlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 case SWAP_SUCCESS:
713 ; /* try to free the page below */
714 }
715 }
716
717 if (PageDirty(page)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800718 if (references == PAGEREF_RECLAIM_CLEAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -0700720 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800722 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto keep_locked;
724
725 /* Page is dirty, try to write it out here */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700726 switch (pageout(page, mapping, sync_writeback)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 case PAGE_KEEP:
728 goto keep_locked;
729 case PAGE_ACTIVATE:
730 goto activate_locked;
731 case PAGE_SUCCESS:
Andrew Morton4dd4b922008-03-24 12:29:52 -0700732 if (PageWriteback(page) || PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto keep;
734 /*
735 * A synchronous write - probably a ramdisk. Go
736 * ahead and try to reclaim the page.
737 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200738 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto keep;
740 if (PageDirty(page) || PageWriteback(page))
741 goto keep_locked;
742 mapping = page_mapping(page);
743 case PAGE_CLEAN:
744 ; /* try to free the page below */
745 }
746 }
747
748 /*
749 * If the page has buffers, try to free the buffer mappings
750 * associated with this page. If we succeed we try to free
751 * the page as well.
752 *
753 * We do this even if the page is PageDirty().
754 * try_to_release_page() does not perform I/O, but it is
755 * possible for a page to have PageDirty set, but it is actually
756 * clean (all its buffers are clean). This happens if the
757 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700758 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 * try_to_release_page() will discover that cleanness and will
760 * drop the buffers and mark the page clean - it can be freed.
761 *
762 * Rarely, pages can have buffers and no ->mapping. These are
763 * the pages which were not successfully invalidated in
764 * truncate_complete_page(). We try to drop those buffers here
765 * and if that worked, and the page is no longer mapped into
766 * process address space (page_count == 1) it can be freed.
767 * Otherwise, leave the page on the LRU so it is swappable.
768 */
David Howells266cf652009-04-03 16:42:36 +0100769 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!try_to_release_page(page, sc->gfp_mask))
771 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -0700772 if (!mapping && page_count(page) == 1) {
773 unlock_page(page);
774 if (put_page_testzero(page))
775 goto free_it;
776 else {
777 /*
778 * rare race with speculative reference.
779 * the speculative reference will free
780 * this page shortly, so we may
781 * increment nr_reclaimed here (and
782 * leave it off the LRU).
783 */
784 nr_reclaimed++;
785 continue;
786 }
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
Nick Piggine2867812008-07-25 19:45:30 -0700790 if (!mapping || !__remove_mapping(mapping, page))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800791 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Nick Piggina978d6f2008-10-18 20:26:58 -0700793 /*
794 * At this point, we have no other references and there is
795 * no way to pick any more up (removed from LRU, removed
796 * from pagecache). Can use non-atomic bitops now (and
797 * we obviously don't have to worry about waking up a process
798 * waiting on the page lock, because there are no references.
799 */
800 __clear_page_locked(page);
Nick Piggine2867812008-07-25 19:45:30 -0700801free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -0800802 nr_reclaimed++;
Nick Piggine2867812008-07-25 19:45:30 -0700803 if (!pagevec_add(&freed_pvec, page)) {
804 __pagevec_free(&freed_pvec);
805 pagevec_reinit(&freed_pvec);
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 continue;
808
Nick Pigginb291f002008-10-18 20:26:44 -0700809cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -0800810 if (PageSwapCache(page))
811 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -0700812 unlock_page(page);
813 putback_lru_page(page);
814 continue;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -0700817 /* Not a candidate for swapping, so reclaim swap space. */
818 if (PageSwapCache(page) && vm_swap_full())
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800819 try_to_free_swap(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700820 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 SetPageActive(page);
822 pgactivate++;
823keep_locked:
824 unlock_page(page);
825keep:
826 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -0700827 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 list_splice(&ret_pages, page_list);
830 if (pagevec_count(&freed_pvec))
Nick Piggine2867812008-07-25 19:45:30 -0700831 __pagevec_free(&freed_pvec);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700832 count_vm_events(PGACTIVATE, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800833 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700836/* LRU Isolation modes. */
837#define ISOLATE_INACTIVE 0 /* Isolate inactive pages. */
838#define ISOLATE_ACTIVE 1 /* Isolate active pages. */
839#define ISOLATE_BOTH 2 /* Isolate both active and inactive pages. */
840
841/*
842 * Attempt to remove the specified page from its LRU. Only take this page
843 * if it is of the appropriate PageActive status. Pages which are being
844 * freed elsewhere are also ignored.
845 *
846 * page: page to consider
847 * mode: one of the LRU isolation modes defined above
848 *
849 * returns 0 on success, -ve errno on failure.
850 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700851int __isolate_lru_page(struct page *page, int mode, int file)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700852{
853 int ret = -EINVAL;
854
855 /* Only take pages on the LRU. */
856 if (!PageLRU(page))
857 return ret;
858
859 /*
860 * When checking the active state, we need to be sure we are
861 * dealing with comparible boolean values. Take the logical not
862 * of each.
863 */
864 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
865 return ret;
866
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700867 if (mode != ISOLATE_BOTH && page_is_file_cache(page) != file)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700868 return ret;
869
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700870 /*
871 * When this function is being called for lumpy reclaim, we
872 * initially look into all LRU pages, active, inactive and
873 * unevictable; only give shrink_page_list evictable pages.
874 */
875 if (PageUnevictable(page))
876 return ret;
877
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700878 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800879
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700880 if (likely(get_page_unless_zero(page))) {
881 /*
882 * Be careful not to clear PageLRU until after we're
883 * sure the page is not being freed elsewhere -- the
884 * page release code relies on it.
885 */
886 ClearPageLRU(page);
887 ret = 0;
888 }
889
890 return ret;
891}
892
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800893/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * zone->lru_lock is heavily contended. Some of the functions that
895 * shrink the lists perform better by taking out a batch of pages
896 * and working on them outside the LRU lock.
897 *
898 * For pagecache intensive workloads, this function is the hottest
899 * spot in the kernel (apart from copy_*_user functions).
900 *
901 * Appropriate locks must be held before calling this function.
902 *
903 * @nr_to_scan: The number of pages to look through on the list.
904 * @src: The LRU list to pull pages off.
905 * @dst: The temp list to put pages on to.
906 * @scanned: The number of pages that were scanned.
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700907 * @order: The caller's attempted allocation order
908 * @mode: One of the LRU isolation modes
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700909 * @file: True [1] if isolating file [!anon] pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 *
911 * returns how many pages were moved onto *@dst.
912 */
Andrew Morton69e05942006-03-22 00:08:19 -0800913static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
914 struct list_head *src, struct list_head *dst,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700915 unsigned long *scanned, int order, int mode, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Andrew Morton69e05942006-03-22 00:08:19 -0800917 unsigned long nr_taken = 0;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800918 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800920 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700921 struct page *page;
922 unsigned long pfn;
923 unsigned long end_pfn;
924 unsigned long page_pfn;
925 int zone_id;
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 page = lru_to_page(src);
928 prefetchw_prev_lru_page(page, src, flags);
929
Nick Piggin725d7042006-09-25 23:30:55 -0700930 VM_BUG_ON(!PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800931
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700932 switch (__isolate_lru_page(page, mode, file)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700933 case 0:
934 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700935 mem_cgroup_del_lru(page);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800936 nr_taken++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700937 break;
Nick Piggin46453a62006-03-22 00:07:58 -0800938
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700939 case -EBUSY:
940 /* else it is being freed elsewhere */
941 list_move(&page->lru, src);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700942 mem_cgroup_rotate_lru_list(page, page_lru(page));
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700943 continue;
944
945 default:
946 BUG();
947 }
948
949 if (!order)
950 continue;
951
952 /*
953 * Attempt to take all pages in the order aligned region
954 * surrounding the tag page. Only take those pages of
955 * the same active state as that tag page. We may safely
956 * round the target page pfn down to the requested order
957 * as the mem_map is guarenteed valid out to MAX_ORDER,
958 * where that page is in a different zone we will detect
959 * it from its zone id and abort this block scan.
960 */
961 zone_id = page_zone_id(page);
962 page_pfn = page_to_pfn(page);
963 pfn = page_pfn & ~((1 << order) - 1);
964 end_pfn = pfn + (1 << order);
965 for (; pfn < end_pfn; pfn++) {
966 struct page *cursor_page;
967
968 /* The target page is in the block, ignore it. */
969 if (unlikely(pfn == page_pfn))
970 continue;
971
972 /* Avoid holes within the zone. */
973 if (unlikely(!pfn_valid_within(pfn)))
974 break;
975
976 cursor_page = pfn_to_page(pfn);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700977
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700978 /* Check that we have not crossed a zone boundary. */
979 if (unlikely(page_zone_id(cursor_page) != zone_id))
980 continue;
Minchan Kimde2e7562009-09-21 17:01:43 -0700981
982 /*
983 * If we don't have enough swap space, reclaiming of
984 * anon page which don't already have a swap slot is
985 * pointless.
986 */
987 if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
988 !PageSwapCache(cursor_page))
989 continue;
990
KAMEZAWA Hiroyukiee993b12009-06-16 15:33:24 -0700991 if (__isolate_lru_page(cursor_page, mode, file) == 0) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700992 list_move(&cursor_page->lru, dst);
KAMEZAWA Hiroyukicb4cbcf2009-06-23 08:57:55 +0900993 mem_cgroup_del_lru(cursor_page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700994 nr_taken++;
995 scan++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700996 }
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
1000 *scanned = scan;
1001 return nr_taken;
1002}
1003
Balbir Singh66e17072008-02-07 00:13:56 -08001004static unsigned long isolate_pages_global(unsigned long nr,
1005 struct list_head *dst,
1006 unsigned long *scanned, int order,
1007 int mode, struct zone *z,
1008 struct mem_cgroup *mem_cont,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001009 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -08001010{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001011 int lru = LRU_BASE;
Balbir Singh66e17072008-02-07 00:13:56 -08001012 if (active)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001013 lru += LRU_ACTIVE;
1014 if (file)
1015 lru += LRU_FILE;
1016 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001017 mode, file);
Balbir Singh66e17072008-02-07 00:13:56 -08001018}
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020/*
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001021 * clear_active_flags() is a helper for shrink_active_list(), clearing
1022 * any active bits from the pages in the list.
1023 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001024static unsigned long clear_active_flags(struct list_head *page_list,
1025 unsigned int *count)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001026{
1027 int nr_active = 0;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001028 int lru;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001029 struct page *page;
1030
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001031 list_for_each_entry(page, page_list, lru) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07001032 lru = page_lru_base_type(page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001033 if (PageActive(page)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001034 lru += LRU_ACTIVE;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001035 ClearPageActive(page);
1036 nr_active++;
1037 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001038 count[lru]++;
1039 }
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001040
1041 return nr_active;
1042}
1043
Nick Piggin62695a82008-10-18 20:26:09 -07001044/**
1045 * isolate_lru_page - tries to isolate a page from its LRU list
1046 * @page: page to isolate from its LRU list
1047 *
1048 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1049 * vmstat statistic corresponding to whatever LRU list the page was on.
1050 *
1051 * Returns 0 if the page was removed from an LRU list.
1052 * Returns -EBUSY if the page was not on an LRU list.
1053 *
1054 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001055 * the active list, it will have PageActive set. If it was found on
1056 * the unevictable list, it will have the PageUnevictable bit set. That flag
1057 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001058 *
1059 * The vmstat statistic corresponding to the list on which the page was
1060 * found will be decremented.
1061 *
1062 * Restrictions:
1063 * (1) Must be called with an elevated refcount on the page. This is a
1064 * fundamentnal difference from isolate_lru_pages (which is called
1065 * without a stable reference).
1066 * (2) the lru_lock must not be held.
1067 * (3) interrupts must be enabled.
1068 */
1069int isolate_lru_page(struct page *page)
1070{
1071 int ret = -EBUSY;
1072
1073 if (PageLRU(page)) {
1074 struct zone *zone = page_zone(page);
1075
1076 spin_lock_irq(&zone->lru_lock);
1077 if (PageLRU(page) && get_page_unless_zero(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001078 int lru = page_lru(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001079 ret = 0;
1080 ClearPageLRU(page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001081
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001082 del_page_from_lru_list(zone, page, lru);
Nick Piggin62695a82008-10-18 20:26:09 -07001083 }
1084 spin_unlock_irq(&zone->lru_lock);
1085 }
1086 return ret;
1087}
1088
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001089/*
Rik van Riel35cd7812009-09-21 17:01:38 -07001090 * Are there way too many processes in the direct reclaim path already?
1091 */
1092static int too_many_isolated(struct zone *zone, int file,
1093 struct scan_control *sc)
1094{
1095 unsigned long inactive, isolated;
1096
1097 if (current_is_kswapd())
1098 return 0;
1099
1100 if (!scanning_global_lru(sc))
1101 return 0;
1102
1103 if (file) {
1104 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1105 isolated = zone_page_state(zone, NR_ISOLATED_FILE);
1106 } else {
1107 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1108 isolated = zone_page_state(zone, NR_ISOLATED_ANON);
1109 }
1110
1111 return isolated > inactive;
1112}
1113
1114/*
Andrew Morton1742f192006-03-22 00:08:21 -08001115 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1116 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 */
Andrew Morton1742f192006-03-22 00:08:21 -08001118static unsigned long shrink_inactive_list(unsigned long max_scan,
Rik van Riel33c120e2008-10-18 20:26:36 -07001119 struct zone *zone, struct scan_control *sc,
1120 int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 LIST_HEAD(page_list);
1123 struct pagevec pvec;
Andrew Morton69e05942006-03-22 00:08:19 -08001124 unsigned long nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001125 unsigned long nr_reclaimed = 0;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001126 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001127 int lumpy_reclaim = 0;
1128
Rik van Riel35cd7812009-09-21 17:01:38 -07001129 while (unlikely(too_many_isolated(zone, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001130 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001131
1132 /* We are about to die and free our memory. Return now. */
1133 if (fatal_signal_pending(current))
1134 return SWAP_CLUSTER_MAX;
1135 }
1136
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001137 /*
1138 * If we need a large contiguous chunk of memory, or have
1139 * trouble getting a small set of contiguous pages, we
1140 * will reclaim both active and inactive pages.
1141 *
1142 * We use the same threshold as pageout congestion_wait below.
1143 */
1144 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1145 lumpy_reclaim = 1;
1146 else if (sc->order && priority < DEF_PRIORITY - 2)
1147 lumpy_reclaim = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 pagevec_init(&pvec, 1);
1150
1151 lru_add_drain();
1152 spin_lock_irq(&zone->lru_lock);
Andrew Morton69e05942006-03-22 00:08:19 -08001153 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 struct page *page;
Andrew Morton69e05942006-03-22 00:08:19 -08001155 unsigned long nr_taken;
1156 unsigned long nr_scan;
1157 unsigned long nr_freed;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001158 unsigned long nr_active;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001159 unsigned int count[NR_LRU_LISTS] = { 0, };
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001160 int mode = lumpy_reclaim ? ISOLATE_BOTH : ISOLATE_INACTIVE;
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001161 unsigned long nr_anon;
1162 unsigned long nr_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001164 nr_taken = sc->isolate_pages(SWAP_CLUSTER_MAX,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001165 &page_list, &nr_scan, sc->order, mode,
1166 zone, sc->mem_cgroup, 0, file);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001167
1168 if (scanning_global_lru(sc)) {
1169 zone->pages_scanned += nr_scan;
1170 if (current_is_kswapd())
1171 __count_zone_vm_events(PGSCAN_KSWAPD, zone,
1172 nr_scan);
1173 else
1174 __count_zone_vm_events(PGSCAN_DIRECT, zone,
1175 nr_scan);
1176 }
1177
1178 if (nr_taken == 0)
1179 goto done;
1180
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001181 nr_active = clear_active_flags(&page_list, count);
Andy Whitcrofte9187bd2007-08-22 14:01:25 -07001182 __count_vm_events(PGDEACTIVATE, nr_active);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001183
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001184 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1185 -count[LRU_ACTIVE_FILE]);
1186 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1187 -count[LRU_INACTIVE_FILE]);
1188 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1189 -count[LRU_ACTIVE_ANON]);
1190 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1191 -count[LRU_INACTIVE_ANON]);
1192
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001193 nr_anon = count[LRU_ACTIVE_ANON] + count[LRU_INACTIVE_ANON];
1194 nr_file = count[LRU_ACTIVE_FILE] + count[LRU_INACTIVE_FILE];
1195 __mod_zone_page_state(zone, NR_ISOLATED_ANON, nr_anon);
1196 __mod_zone_page_state(zone, NR_ISOLATED_FILE, nr_file);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001197
Huang Shijie62c0c2f2009-12-14 17:59:48 -08001198 reclaim_stat->recent_scanned[0] += nr_anon;
1199 reclaim_stat->recent_scanned[1] += nr_file;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 spin_unlock_irq(&zone->lru_lock);
1202
Andrew Morton69e05942006-03-22 00:08:19 -08001203 nr_scanned += nr_scan;
Andy Whitcroftc661b072007-08-22 14:01:26 -07001204 nr_freed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1205
1206 /*
1207 * If we are direct reclaiming for contiguous pages and we do
1208 * not reclaim everything in the list, try again and wait
1209 * for IO to complete. This will stall high-order allocations
1210 * but that should be acceptable to the caller
1211 */
1212 if (nr_freed < nr_taken && !current_is_kswapd() &&
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001213 lumpy_reclaim) {
Jens Axboe8aa7e842009-07-09 14:52:32 +02001214 congestion_wait(BLK_RW_ASYNC, HZ/10);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001215
1216 /*
1217 * The attempt at page out may have made some
1218 * of the pages active, mark them inactive again.
1219 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001220 nr_active = clear_active_flags(&page_list, count);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001221 count_vm_events(PGDEACTIVATE, nr_active);
1222
1223 nr_freed += shrink_page_list(&page_list, sc,
1224 PAGEOUT_IO_SYNC);
1225 }
1226
Andrew Morton05ff5132006-03-22 00:08:20 -08001227 nr_reclaimed += nr_freed;
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001228
Nick Piggina74609f2006-01-06 00:11:20 -08001229 local_irq_disable();
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001230 if (current_is_kswapd())
Christoph Lameterf8891e52006-06-30 01:55:45 -07001231 __count_vm_events(KSWAPD_STEAL, nr_freed);
Shantanu Goel918d3f92006-12-29 16:48:59 -08001232 __count_zone_vm_events(PGSTEAL, zone, nr_freed);
Nick Piggina74609f2006-01-06 00:11:20 -08001233
1234 spin_lock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /*
1236 * Put back any unfreeable pages.
1237 */
1238 while (!list_empty(&page_list)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001239 int lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 page = lru_to_page(&page_list);
Nick Piggin725d7042006-09-25 23:30:55 -07001241 VM_BUG_ON(PageLRU(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001243 if (unlikely(!page_evictable(page, NULL))) {
1244 spin_unlock_irq(&zone->lru_lock);
1245 putback_lru_page(page);
1246 spin_lock_irq(&zone->lru_lock);
1247 continue;
1248 }
1249 SetPageLRU(page);
1250 lru = page_lru(page);
1251 add_page_to_lru_list(zone, page, lru);
KOSAKI Motohiro74a1c482009-09-21 17:01:45 -07001252 if (is_active_lru(lru)) {
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001253 int file = is_file_lru(lru);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001254 reclaim_stat->recent_rotated[file]++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (!pagevec_add(&pvec, page)) {
1257 spin_unlock_irq(&zone->lru_lock);
1258 __pagevec_release(&pvec);
1259 spin_lock_irq(&zone->lru_lock);
1260 }
1261 }
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001262 __mod_zone_page_state(zone, NR_ISOLATED_ANON, -nr_anon);
1263 __mod_zone_page_state(zone, NR_ISOLATED_FILE, -nr_file);
1264
Andrew Morton69e05942006-03-22 00:08:19 -08001265 } while (nr_scanned < max_scan);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267done:
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001268 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 pagevec_release(&pvec);
Andrew Morton05ff5132006-03-22 00:08:20 -08001270 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Martin Bligh3bb1a852006-10-28 10:38:24 -07001273/*
1274 * We are about to scan this zone at a certain priority level. If that priority
1275 * level is smaller (ie: more urgent) than the previous priority, then note
1276 * that priority level within the zone. This is done so that when the next
1277 * process comes in to scan this zone, it will immediately start out at this
1278 * priority level rather than having to build up its own scanning priority.
1279 * Here, this priority affects only the reclaim-mapped threshold.
1280 */
1281static inline void note_zone_scanning_priority(struct zone *zone, int priority)
1282{
1283 if (priority < zone->prev_priority)
1284 zone->prev_priority = priority;
1285}
1286
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001287/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 * This moves pages from the active list to the inactive list.
1289 *
1290 * We move them the other way if the page is referenced by one or more
1291 * processes, from rmap.
1292 *
1293 * If the pages are mostly unmapped, the processing is fast and it is
1294 * appropriate to hold zone->lru_lock across the whole operation. But if
1295 * the pages are mapped, the processing is slow (page_referenced()) so we
1296 * should drop zone->lru_lock around each page. It's impossible to balance
1297 * this, so instead we remove the pages from the LRU while processing them.
1298 * It is safe to rely on PG_active against the non-LRU pages in here because
1299 * nobody will play with that bit on a non-LRU page.
1300 *
1301 * The downside is that we have to touch page->_count against each page.
1302 * But we had to alter page->flags anyway.
1303 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001304
Wu Fengguang3eb41402009-06-16 15:33:13 -07001305static void move_active_pages_to_lru(struct zone *zone,
1306 struct list_head *list,
1307 enum lru_list lru)
1308{
1309 unsigned long pgmoved = 0;
1310 struct pagevec pvec;
1311 struct page *page;
1312
1313 pagevec_init(&pvec, 1);
1314
1315 while (!list_empty(list)) {
1316 page = lru_to_page(list);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001317
1318 VM_BUG_ON(PageLRU(page));
1319 SetPageLRU(page);
1320
Wu Fengguang3eb41402009-06-16 15:33:13 -07001321 list_move(&page->lru, &zone->lru[lru].list);
1322 mem_cgroup_add_lru_list(page, lru);
1323 pgmoved++;
1324
1325 if (!pagevec_add(&pvec, page) || list_empty(list)) {
1326 spin_unlock_irq(&zone->lru_lock);
1327 if (buffer_heads_over_limit)
1328 pagevec_strip(&pvec);
1329 __pagevec_release(&pvec);
1330 spin_lock_irq(&zone->lru_lock);
1331 }
1332 }
1333 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1334 if (!is_active_lru(lru))
1335 __count_vm_events(PGDEACTIVATE, pgmoved);
1336}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001337
Andrew Morton1742f192006-03-22 00:08:21 -08001338static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001339 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001341 unsigned long nr_taken;
Andrew Morton69e05942006-03-22 00:08:19 -08001342 unsigned long pgscanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001343 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001345 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001346 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct page *page;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001348 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001349 unsigned long nr_rotated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 lru_add_drain();
1352 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001353 nr_taken = sc->isolate_pages(nr_pages, &l_hold, &pgscanned, sc->order,
Balbir Singh66e17072008-02-07 00:13:56 -08001354 ISOLATE_ACTIVE, zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001355 sc->mem_cgroup, 1, file);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001356 /*
1357 * zone->pages_scanned is used for detect zone's oom
1358 * mem_cgroup remembers nr_scan by itself.
1359 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001360 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001361 zone->pages_scanned += pgscanned;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001362 }
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001363 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001364
Wu Fengguang3eb41402009-06-16 15:33:13 -07001365 __count_zone_vm_events(PGREFILL, zone, pgscanned);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001366 if (file)
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001367 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001368 else
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001369 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001370 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 spin_unlock_irq(&zone->lru_lock);
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 while (!list_empty(&l_hold)) {
1374 cond_resched();
1375 page = lru_to_page(&l_hold);
1376 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001377
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001378 if (unlikely(!page_evictable(page, NULL))) {
1379 putback_lru_page(page);
1380 continue;
1381 }
1382
Rik van Riel7e9cd482008-10-18 20:26:35 -07001383 /* page_referenced clears PageReferenced */
1384 if (page_mapping_inuse(page) &&
Wu Fengguang8cab4752009-06-16 15:33:12 -07001385 page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) {
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001386 nr_rotated++;
Wu Fengguang8cab4752009-06-16 15:33:12 -07001387 /*
1388 * Identify referenced, file-backed active pages and
1389 * give them one more trip around the active list. So
1390 * that executable code get better chances to stay in
1391 * memory under moderate memory pressure. Anon pages
1392 * are not likely to be evicted by use-once streaming
1393 * IO, plus JVM can create lots of anon VM_EXEC pages,
1394 * so we ignore them here.
1395 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001396 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001397 list_add(&page->lru, &l_active);
1398 continue;
1399 }
1400 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001401
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001402 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 list_add(&page->lru, &l_inactive);
1404 }
1405
Andrew Mortonb5557492009-01-06 14:40:13 -08001406 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001407 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001408 */
Johannes Weiner2a1dc502008-12-01 03:00:35 +01001409 spin_lock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001410 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001411 * Count referenced pages from currently used mappings as rotated,
1412 * even though only some of them are actually re-activated. This
1413 * helps balance scan pressure between file and anonymous pages in
1414 * get_scan_ratio.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001415 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001416 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001417
Wu Fengguang3eb41402009-06-16 15:33:13 -07001418 move_active_pages_to_lru(zone, &l_active,
1419 LRU_ACTIVE + file * LRU_FILE);
1420 move_active_pages_to_lru(zone, &l_inactive,
1421 LRU_BASE + file * LRU_FILE);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001422 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001423 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001426static int inactive_anon_is_low_global(struct zone *zone)
KOSAKI Motohirof89eb902009-01-07 18:08:14 -08001427{
1428 unsigned long active, inactive;
1429
1430 active = zone_page_state(zone, NR_ACTIVE_ANON);
1431 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1432
1433 if (inactive * zone->inactive_ratio < active)
1434 return 1;
1435
1436 return 0;
1437}
1438
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001439/**
1440 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1441 * @zone: zone to check
1442 * @sc: scan control of this context
1443 *
1444 * Returns true if the zone does not have enough inactive anon pages,
1445 * meaning some active anon pages need to be deactivated.
1446 */
1447static int inactive_anon_is_low(struct zone *zone, struct scan_control *sc)
1448{
1449 int low;
1450
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001451 if (scanning_global_lru(sc))
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001452 low = inactive_anon_is_low_global(zone);
1453 else
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001454 low = mem_cgroup_inactive_anon_is_low(sc->mem_cgroup);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001455 return low;
1456}
1457
Rik van Riel56e49d22009-06-16 15:32:28 -07001458static int inactive_file_is_low_global(struct zone *zone)
1459{
1460 unsigned long active, inactive;
1461
1462 active = zone_page_state(zone, NR_ACTIVE_FILE);
1463 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1464
1465 return (active > inactive);
1466}
1467
1468/**
1469 * inactive_file_is_low - check if file pages need to be deactivated
1470 * @zone: zone to check
1471 * @sc: scan control of this context
1472 *
1473 * When the system is doing streaming IO, memory pressure here
1474 * ensures that active file pages get deactivated, until more
1475 * than half of the file pages are on the inactive list.
1476 *
1477 * Once we get to that situation, protect the system's working
1478 * set from being evicted by disabling active file page aging.
1479 *
1480 * This uses a different ratio than the anonymous pages, because
1481 * the page cache uses a use-once replacement algorithm.
1482 */
1483static int inactive_file_is_low(struct zone *zone, struct scan_control *sc)
1484{
1485 int low;
1486
1487 if (scanning_global_lru(sc))
1488 low = inactive_file_is_low_global(zone);
1489 else
1490 low = mem_cgroup_inactive_file_is_low(sc->mem_cgroup);
1491 return low;
1492}
1493
Rik van Rielb39415b2009-12-14 17:59:48 -08001494static int inactive_list_is_low(struct zone *zone, struct scan_control *sc,
1495 int file)
1496{
1497 if (file)
1498 return inactive_file_is_low(zone, sc);
1499 else
1500 return inactive_anon_is_low(zone, sc);
1501}
1502
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001503static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Christoph Lameterb69408e2008-10-18 20:26:14 -07001504 struct zone *zone, struct scan_control *sc, int priority)
1505{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001506 int file = is_file_lru(lru);
1507
Rik van Rielb39415b2009-12-14 17:59:48 -08001508 if (is_active_lru(lru)) {
1509 if (inactive_list_is_low(zone, sc, file))
1510 shrink_active_list(nr_to_scan, zone, sc, priority, file);
Rik van Riel556adec2008-10-18 20:26:34 -07001511 return 0;
1512 }
1513
Rik van Riel33c120e2008-10-18 20:26:36 -07001514 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001515}
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001518 * Determine how aggressively the anon and file LRU lists should be
1519 * scanned. The relative value of each set of LRU lists is determined
1520 * by looking at the fraction of the pages scanned we did rotate back
1521 * onto the active list instead of evict.
1522 *
1523 * percent[0] specifies how much pressure to put on ram/swap backed
1524 * memory, while percent[1] determines pressure on the file LRUs.
1525 */
1526static void get_scan_ratio(struct zone *zone, struct scan_control *sc,
1527 unsigned long *percent)
1528{
1529 unsigned long anon, file, free;
1530 unsigned long anon_prio, file_prio;
1531 unsigned long ap, fp;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001532 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001533
KOSAKI Motohiro84b18492010-03-05 13:41:47 -08001534 /* If we have no swap space, do not bother scanning anon pages. */
1535 if (!sc->may_swap || (nr_swap_pages <= 0)) {
1536 percent[0] = 0;
1537 percent[1] = 100;
1538 return;
1539 }
1540
Vincent Li0b217672009-09-21 17:03:09 -07001541 anon = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_ANON) +
1542 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_ANON);
1543 file = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_FILE) +
1544 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_FILE);
Hugh Dickinsb9627162009-01-06 14:39:41 -08001545
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001546 if (scanning_global_lru(sc)) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001547 free = zone_page_state(zone, NR_FREE_PAGES);
1548 /* If we have very few page cache pages,
1549 force-scan anon pages. */
Mel Gorman41858962009-06-16 15:32:12 -07001550 if (unlikely(file + free <= high_wmark_pages(zone))) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001551 percent[0] = 100;
1552 percent[1] = 0;
1553 return;
1554 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001555 }
1556
1557 /*
1558 * OK, so we have swap space and a fair amount of page cache
1559 * pages. We use the recently rotated / recently scanned
1560 * ratios to determine how valuable each cache is.
1561 *
1562 * Because workloads change over time (and to avoid overflow)
1563 * we keep these statistics as a floating average, which ends
1564 * up weighing recent references more than old ones.
1565 *
1566 * anon in [0], file in [1]
1567 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001568 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001569 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001570 reclaim_stat->recent_scanned[0] /= 2;
1571 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001572 spin_unlock_irq(&zone->lru_lock);
1573 }
1574
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001575 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001576 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001577 reclaim_stat->recent_scanned[1] /= 2;
1578 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001579 spin_unlock_irq(&zone->lru_lock);
1580 }
1581
1582 /*
1583 * With swappiness at 100, anonymous and file have the same priority.
1584 * This scanning priority is essentially the inverse of IO cost.
1585 */
1586 anon_prio = sc->swappiness;
1587 file_prio = 200 - sc->swappiness;
1588
1589 /*
Rik van Riel00d80892008-11-19 15:36:44 -08001590 * The amount of pressure on anon vs file pages is inversely
1591 * proportional to the fraction of recently scanned pages on
1592 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001593 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001594 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1595 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001596
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001597 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1598 fp /= reclaim_stat->recent_rotated[1] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001599
1600 /* Normalize to percentages */
1601 percent[0] = 100 * ap / (ap + fp + 1);
1602 percent[1] = 100 - percent[0];
1603}
1604
Wu Fengguang6e08a362009-06-16 15:32:29 -07001605/*
1606 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1607 * until we collected @swap_cluster_max pages to scan.
1608 */
1609static unsigned long nr_scan_try_batch(unsigned long nr_to_scan,
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001610 unsigned long *nr_saved_scan)
Wu Fengguang6e08a362009-06-16 15:32:29 -07001611{
1612 unsigned long nr;
1613
1614 *nr_saved_scan += nr_to_scan;
1615 nr = *nr_saved_scan;
1616
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001617 if (nr >= SWAP_CLUSTER_MAX)
Wu Fengguang6e08a362009-06-16 15:32:29 -07001618 *nr_saved_scan = 0;
1619 else
1620 nr = 0;
1621
1622 return nr;
1623}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001624
1625/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1627 */
Rik van Riela79311c2009-01-06 14:40:01 -08001628static void shrink_zone(int priority, struct zone *zone,
Andrew Morton05ff5132006-03-22 00:08:20 -08001629 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Christoph Lameterb69408e2008-10-18 20:26:14 -07001631 unsigned long nr[NR_LRU_LISTS];
Christoph Lameter86959492006-03-22 00:08:18 -08001632 unsigned long nr_to_scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001633 unsigned long percent[2]; /* anon @ 0; file @ 1 */
Christoph Lameterb69408e2008-10-18 20:26:14 -07001634 enum lru_list l;
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001635 unsigned long nr_reclaimed = sc->nr_reclaimed;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001636 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
Wu Fengguangf8629632009-09-21 17:03:11 -07001637 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
KOSAKI Motohiro84b18492010-03-05 13:41:47 -08001639 get_scan_ratio(zone, sc, percent);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001640
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001641 for_each_evictable_lru(l) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001642 int file = is_file_lru(l);
Andrew Morton8713e012009-04-30 15:08:55 -07001643 unsigned long scan;
Johannes Weinere0f79b82008-10-18 20:26:55 -07001644
KOSAKI Motohiro84b18492010-03-05 13:41:47 -08001645 if (percent[file] == 0) {
1646 nr[l] = 0;
1647 continue;
1648 }
1649
Vincent Li0b217672009-09-21 17:03:09 -07001650 scan = zone_nr_lru_pages(zone, sc, l);
KOSAKI Motohiro84b18492010-03-05 13:41:47 -08001651 if (priority) {
KOSAKI Motohiro9439c1c2009-01-07 18:08:21 -08001652 scan >>= priority;
1653 scan = (scan * percent[file]) / 100;
1654 }
Wu Fengguangf8629632009-09-21 17:03:11 -07001655 nr[l] = nr_scan_try_batch(scan,
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001656 &reclaim_stat->nr_saved_scan[l]);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001657 }
1658
Rik van Riel556adec2008-10-18 20:26:34 -07001659 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1660 nr[LRU_INACTIVE_FILE]) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001661 for_each_evictable_lru(l) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001662 if (nr[l]) {
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001663 nr_to_scan = min_t(unsigned long,
1664 nr[l], SWAP_CLUSTER_MAX);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001665 nr[l] -= nr_to_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001667 nr_reclaimed += shrink_list(l, nr_to_scan,
1668 zone, sc, priority);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
Rik van Riela79311c2009-01-06 14:40:01 -08001671 /*
1672 * On large memory systems, scan >> priority can become
1673 * really large. This is fine for the starting priority;
1674 * we want to put equal scanning pressure on each zone.
1675 * However, if the VM has a harder time of freeing pages,
1676 * with multiple processes reclaiming pages, the total
1677 * freeing target can get unreasonably large.
1678 */
KOSAKI Motohiro338fde92009-12-14 17:59:15 -08001679 if (nr_reclaimed >= nr_to_reclaim && priority < DEF_PRIORITY)
Rik van Riela79311c2009-01-06 14:40:01 -08001680 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001683 sc->nr_reclaimed = nr_reclaimed;
1684
Rik van Riel556adec2008-10-18 20:26:34 -07001685 /*
1686 * Even if we did not try to evict anon pages at all, we want to
1687 * rebalance the anon lru active/inactive ratio.
1688 */
MinChan Kim69c85482009-06-16 15:32:44 -07001689 if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
Rik van Riel556adec2008-10-18 20:26:34 -07001690 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1691
Andrew Morton232ea4d2007-02-28 20:13:21 -08001692 throttle_vm_writeout(sc->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695/*
1696 * This is the direct reclaim path, for page-allocating processes. We only
1697 * try to reclaim pages from zones which will satisfy the caller's allocation
1698 * request.
1699 *
Mel Gorman41858962009-06-16 15:32:12 -07001700 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1701 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1703 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07001704 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1705 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1706 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * If a zone is deemed to be full of pinned pages then just give it a light
1709 * scan then give up on it.
1710 */
Rik van Riela79311c2009-01-06 14:40:01 -08001711static void shrink_zones(int priority, struct zonelist *zonelist,
Andrew Morton05ff5132006-03-22 00:08:20 -08001712 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Mel Gorman54a6eb52008-04-28 02:12:16 -07001714 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
Mel Gormandd1a2392008-04-28 02:12:17 -07001715 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001716 struct zone *zone;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001717
Nick Piggin408d8542006-09-25 23:31:27 -07001718 sc->all_unreclaimable = 1;
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001719 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1720 sc->nodemask) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08001721 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 continue;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001723 /*
1724 * Take care memory controller reclaiming has small influence
1725 * to global LRU.
1726 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001727 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001728 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1729 continue;
1730 note_zone_scanning_priority(zone, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08001732 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001733 continue; /* Let kswapd poll it */
1734 sc->all_unreclaimable = 0;
1735 } else {
1736 /*
1737 * Ignore cpuset limitation here. We just want to reduce
1738 * # of used pages by us regardless of memory shortage.
1739 */
1740 sc->all_unreclaimable = 0;
1741 mem_cgroup_note_reclaim_priority(sc->mem_cgroup,
1742 priority);
1743 }
Nick Piggin408d8542006-09-25 23:31:27 -07001744
Rik van Riela79311c2009-01-06 14:40:01 -08001745 shrink_zone(priority, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749/*
1750 * This is the main entry point to direct page reclaim.
1751 *
1752 * If a full scan of the inactive list fails to free enough memory then we
1753 * are "out of memory" and something needs to be killed.
1754 *
1755 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1756 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02001757 * caller can't do much about. We kick the writeback threads and take explicit
1758 * naps in the hope that some of these pages can be written. But if the
1759 * allocating task holds filesystem locks which prevent writeout this might not
1760 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07001761 *
1762 * returns: 0, if no pages reclaimed
1763 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 */
Mel Gormandac1d272008-04-28 02:12:12 -07001765static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Mel Gormandd1a2392008-04-28 02:12:17 -07001766 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
1768 int priority;
kosaki.motohiro@jp.fujitsu.comc700be32008-06-12 15:21:27 -07001769 unsigned long ret = 0;
Andrew Morton69e05942006-03-22 00:08:19 -08001770 unsigned long total_scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct reclaim_state *reclaim_state = current->reclaim_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 unsigned long lru_pages = 0;
Mel Gormandd1a2392008-04-28 02:12:17 -07001773 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001774 struct zone *zone;
Mel Gormandd1a2392008-04-28 02:12:17 -07001775 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001776 unsigned long writeback_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Keika Kobayashi873b4772008-07-25 01:48:52 -07001778 delayacct_freepages_start();
1779
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001780 if (scanning_global_lru(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001781 count_vm_event(ALLOCSTALL);
1782 /*
1783 * mem_cgroup will not do shrink_slab.
1784 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001785 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001786 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001788 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1789 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Wu Fengguangadea02a2009-09-21 17:01:42 -07001791 lru_pages += zone_reclaimable_pages(zone);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794
1795 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Balbir Singh66e17072008-02-07 00:13:56 -08001796 sc->nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001797 if (!priority)
1798 disable_swap_token();
Rik van Riela79311c2009-01-06 14:40:01 -08001799 shrink_zones(priority, zonelist, sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001800 /*
1801 * Don't shrink slabs when reclaiming memory from
1802 * over limit cgroups
1803 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001804 if (scanning_global_lru(sc)) {
Mel Gormandd1a2392008-04-28 02:12:17 -07001805 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001806 if (reclaim_state) {
Rik van Riela79311c2009-01-06 14:40:01 -08001807 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001808 reclaim_state->reclaimed_slab = 0;
1809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Balbir Singh66e17072008-02-07 00:13:56 -08001811 total_scanned += sc->nr_scanned;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001812 if (sc->nr_reclaimed >= sc->nr_to_reclaim) {
Rik van Riela79311c2009-01-06 14:40:01 -08001813 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 goto out;
1815 }
1816
1817 /*
1818 * Try to write back as many pages as we just scanned. This
1819 * tends to cause slow streaming writers to write data to the
1820 * disk smoothly, at the dirtying rate, which is nice. But
1821 * that's undesirable in laptop mode, where we *want* lumpy
1822 * writeout. So in laptop mode, write out the whole world.
1823 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001824 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
1825 if (total_scanned > writeback_threshold) {
Jens Axboe03ba3782009-09-09 09:08:54 +02001826 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned);
Balbir Singh66e17072008-02-07 00:13:56 -08001827 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829
1830 /* Take a nap, wait for some writeback to complete */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08001831 if (!sc->hibernation_mode && sc->nr_scanned &&
1832 priority < DEF_PRIORITY - 2)
Jens Axboe8aa7e842009-07-09 14:52:32 +02001833 congestion_wait(BLK_RW_ASYNC, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
Fernando Luis Vazquez Cao87547ee2008-07-29 22:33:42 -07001835 /* top priority shrink_zones still had more to do? don't OOM, then */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001836 if (!sc->all_unreclaimable && scanning_global_lru(sc))
Rik van Riela79311c2009-01-06 14:40:01 -08001837 ret = sc->nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07001839 /*
1840 * Now that we've scanned all the zones at this priority level, note
1841 * that level within the zone so that the next thread which performs
1842 * scanning of this zone will immediately start out at this priority
1843 * level. This affects only the decision whether or not to bring
1844 * mapped pages onto the inactive list.
1845 */
1846 if (priority < 0)
1847 priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001849 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001850 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001852 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1853 continue;
1854
1855 zone->prev_priority = priority;
1856 }
1857 } else
1858 mem_cgroup_record_reclaim_priority(sc->mem_cgroup, priority);
1859
Keika Kobayashi873b4772008-07-25 01:48:52 -07001860 delayacct_freepages_end();
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return ret;
1863}
1864
Mel Gormandac1d272008-04-28 02:12:12 -07001865unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001866 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08001867{
1868 struct scan_control sc = {
1869 .gfp_mask = gfp_mask,
1870 .may_writepage = !laptop_mode,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001871 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001872 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001873 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08001874 .swappiness = vm_swappiness,
1875 .order = order,
1876 .mem_cgroup = NULL,
1877 .isolate_pages = isolate_pages_global,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001878 .nodemask = nodemask,
Balbir Singh66e17072008-02-07 00:13:56 -08001879 };
1880
Mel Gormandd1a2392008-04-28 02:12:17 -07001881 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001882}
1883
Balbir Singh00f0b822008-03-04 14:28:39 -08001884#ifdef CONFIG_CGROUP_MEM_RES_CTLR
Balbir Singh66e17072008-02-07 00:13:56 -08001885
Balbir Singh4e416952009-09-23 15:56:39 -07001886unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
1887 gfp_t gfp_mask, bool noswap,
1888 unsigned int swappiness,
1889 struct zone *zone, int nid)
1890{
1891 struct scan_control sc = {
1892 .may_writepage = !laptop_mode,
1893 .may_unmap = 1,
1894 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07001895 .swappiness = swappiness,
1896 .order = 0,
1897 .mem_cgroup = mem,
1898 .isolate_pages = mem_cgroup_isolate_pages,
1899 };
1900 nodemask_t nm = nodemask_of_node(nid);
1901
1902 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1903 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1904 sc.nodemask = &nm;
1905 sc.nr_reclaimed = 0;
1906 sc.nr_scanned = 0;
1907 /*
1908 * NOTE: Although we can get the priority field, using it
1909 * here is not a good idea, since it limits the pages we can scan.
1910 * if we don't reclaim here, the shrink_zone from balance_pgdat
1911 * will pick up pages from other mem cgroup's as well. We hack
1912 * the priority and make it zero.
1913 */
1914 shrink_zone(0, zone, &sc);
1915 return sc.nr_reclaimed;
1916}
1917
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001918unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001919 gfp_t gfp_mask,
1920 bool noswap,
1921 unsigned int swappiness)
Balbir Singh66e17072008-02-07 00:13:56 -08001922{
Balbir Singh4e416952009-09-23 15:56:39 -07001923 struct zonelist *zonelist;
Balbir Singh66e17072008-02-07 00:13:56 -08001924 struct scan_control sc = {
Balbir Singh66e17072008-02-07 00:13:56 -08001925 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001926 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001927 .may_swap = !noswap,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001928 .nr_to_reclaim = SWAP_CLUSTER_MAX,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001929 .swappiness = swappiness,
Balbir Singh66e17072008-02-07 00:13:56 -08001930 .order = 0,
1931 .mem_cgroup = mem_cont,
1932 .isolate_pages = mem_cgroup_isolate_pages,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001933 .nodemask = NULL, /* we don't care the placement */
Balbir Singh66e17072008-02-07 00:13:56 -08001934 };
Balbir Singh66e17072008-02-07 00:13:56 -08001935
Mel Gormandd1a2392008-04-28 02:12:17 -07001936 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1937 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1938 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
1939 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001940}
1941#endif
1942
Mel Gormanf50de2d2009-12-14 17:58:53 -08001943/* is kswapd sleeping prematurely? */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001944static int sleeping_prematurely(pg_data_t *pgdat, int order, long remaining)
Mel Gormanf50de2d2009-12-14 17:58:53 -08001945{
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001946 int i;
Mel Gormanf50de2d2009-12-14 17:58:53 -08001947
1948 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
1949 if (remaining)
1950 return 1;
1951
1952 /* If after HZ/10, a zone is below the high mark, it's premature */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001953 for (i = 0; i < pgdat->nr_zones; i++) {
1954 struct zone *zone = pgdat->node_zones + i;
1955
1956 if (!populated_zone(zone))
1957 continue;
1958
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08001959 if (zone->all_unreclaimable)
KOSAKI Motohirode3fab32010-01-15 17:01:25 -08001960 continue;
1961
Mel Gormanf50de2d2009-12-14 17:58:53 -08001962 if (!zone_watermark_ok(zone, order, high_wmark_pages(zone),
1963 0, 0))
1964 return 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001965 }
Mel Gormanf50de2d2009-12-14 17:58:53 -08001966
1967 return 0;
1968}
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970/*
1971 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07001972 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * Returns the number of pages which were actually freed.
1975 *
1976 * There is special handling here for zones which are full of pinned pages.
1977 * This can happen if the pages are all mlocked, or if they are all used by
1978 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1979 * What we do is to detect the case where all pages in the zone have been
1980 * scanned twice and there has been zero successful reclaim. Mark the zone as
1981 * dead and from now on, only perform a short scan. Basically we're polling
1982 * the zone for when the problem goes away.
1983 *
1984 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07001985 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
1986 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
1987 * lower zones regardless of the number of free pages in the lower zones. This
1988 * interoperates with the page allocator fallback scheme to ensure that aging
1989 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001991static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 int all_zones_ok;
1994 int priority;
1995 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08001996 unsigned long total_scanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08001998 struct scan_control sc = {
1999 .gfp_mask = GFP_KERNEL,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002000 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002001 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002002 /*
2003 * kswapd doesn't want to be bailed out while reclaim. because
2004 * we want to put equal scanning pressure on each zone.
2005 */
2006 .nr_to_reclaim = ULONG_MAX,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002007 .swappiness = vm_swappiness,
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07002008 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002009 .mem_cgroup = NULL,
2010 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08002011 };
Martin Bligh3bb1a852006-10-28 10:38:24 -07002012 /*
2013 * temp_priority is used to remember the scanning priority at which
Mel Gorman41858962009-06-16 15:32:12 -07002014 * this zone was successfully refilled to
2015 * free_pages == high_wmark_pages(zone).
Martin Bligh3bb1a852006-10-28 10:38:24 -07002016 */
2017 int temp_priority[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019loop_again:
2020 total_scanned = 0;
Rik van Riela79311c2009-01-06 14:40:01 -08002021 sc.nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07002022 sc.may_writepage = !laptop_mode;
Christoph Lameterf8891e52006-06-30 01:55:45 -07002023 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Martin Bligh3bb1a852006-10-28 10:38:24 -07002025 for (i = 0; i < pgdat->nr_zones; i++)
2026 temp_priority[i] = DEF_PRIORITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
2029 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
2030 unsigned long lru_pages = 0;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002031 int has_under_min_watermark_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Rik van Rielf7b7fd82005-11-28 13:44:07 -08002033 /* The swap token gets in the way of swapout... */
2034 if (!priority)
2035 disable_swap_token();
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 all_zones_ok = 1;
2038
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002039 /*
2040 * Scan in the highmem->dma direction for the highest
2041 * zone which needs scanning
2042 */
2043 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
2044 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002046 if (!populated_zone(zone))
2047 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002049 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002050 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Rik van Riel556adec2008-10-18 20:26:34 -07002052 /*
2053 * Do some background aging of the anon list, to give
2054 * pages a chance to be referenced before reclaiming.
2055 */
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002056 if (inactive_anon_is_low(zone, &sc))
Rik van Riel556adec2008-10-18 20:26:34 -07002057 shrink_active_list(SWAP_CLUSTER_MAX, zone,
2058 &sc, priority, 0);
2059
Mel Gorman41858962009-06-16 15:32:12 -07002060 if (!zone_watermark_ok(zone, order,
2061 high_wmark_pages(zone), 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002062 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002063 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002066 if (i < 0)
2067 goto out;
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 for (i = 0; i <= end_zone; i++) {
2070 struct zone *zone = pgdat->node_zones + i;
2071
Wu Fengguangadea02a2009-09-21 17:01:42 -07002072 lru_pages += zone_reclaimable_pages(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
2074
2075 /*
2076 * Now scan the zone in the dma->highmem direction, stopping
2077 * at the last zone which needs scanning.
2078 *
2079 * We do this because the page allocator works in the opposite
2080 * direction. This prevents the page allocator from allocating
2081 * pages behind kswapd's direction of progress, which would
2082 * cause too much scanning of the lower zones.
2083 */
2084 for (i = 0; i <= end_zone; i++) {
2085 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002086 int nr_slab;
Balbir Singh4e416952009-09-23 15:56:39 -07002087 int nid, zid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Con Kolivasf3fe6512006-01-06 00:11:15 -08002089 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 continue;
2091
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002092 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 continue;
2094
Martin Bligh3bb1a852006-10-28 10:38:24 -07002095 temp_priority[i] = priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 sc.nr_scanned = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002097 note_zone_scanning_priority(zone, priority);
Balbir Singh4e416952009-09-23 15:56:39 -07002098
2099 nid = pgdat->node_id;
2100 zid = zone_idx(zone);
2101 /*
2102 * Call soft limit reclaim before calling shrink_zone.
2103 * For now we ignore the return value
2104 */
2105 mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask,
2106 nid, zid);
Rik van Riel32a43302007-10-16 01:24:50 -07002107 /*
2108 * We put equal pressure on every zone, unless one
2109 * zone has way too many pages free already.
2110 */
Mel Gorman41858962009-06-16 15:32:12 -07002111 if (!zone_watermark_ok(zone, order,
2112 8*high_wmark_pages(zone), end_zone, 0))
Rik van Riela79311c2009-01-06 14:40:01 -08002113 shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002115 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
2116 lru_pages);
Rik van Riela79311c2009-01-06 14:40:01 -08002117 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 total_scanned += sc.nr_scanned;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002119 if (zone->all_unreclaimable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 continue;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002121 if (nr_slab == 0 &&
2122 zone->pages_scanned >= (zone_reclaimable_pages(zone) * 6))
2123 zone->all_unreclaimable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /*
2125 * If we've done a decent amount of scanning and
2126 * the reclaim ratio is low, start doing writepage
2127 * even in laptop mode
2128 */
2129 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Rik van Riela79311c2009-01-06 14:40:01 -08002130 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 sc.may_writepage = 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002132
Minchan Kim45973d72010-03-05 13:41:45 -08002133 if (!zone_watermark_ok(zone, order,
2134 high_wmark_pages(zone), end_zone, 0)) {
2135 all_zones_ok = 0;
2136 /*
2137 * We are still under min water mark. This
2138 * means that we have a GFP_ATOMIC allocation
2139 * failure risk. Hurry up!
2140 */
2141 if (!zone_watermark_ok(zone, order,
2142 min_wmark_pages(zone), end_zone, 0))
2143 has_under_min_watermark_zone = 1;
2144 }
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (all_zones_ok)
2148 break; /* kswapd: all done */
2149 /*
2150 * OK, kswapd is getting into trouble. Take a nap, then take
2151 * another pass across the zones.
2152 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002153 if (total_scanned && (priority < DEF_PRIORITY - 2)) {
2154 if (has_under_min_watermark_zone)
2155 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT);
2156 else
2157 congestion_wait(BLK_RW_ASYNC, HZ/10);
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /*
2161 * We do this so kswapd doesn't build up large priorities for
2162 * example when it is freeing in parallel with allocators. It
2163 * matches the direct reclaim path behaviour in terms of impact
2164 * on zone->*_priority.
2165 */
Rik van Riela79311c2009-01-06 14:40:01 -08002166 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 break;
2168 }
2169out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07002170 /*
2171 * Note within each zone the priority level at which this zone was
2172 * brought into a happy state. So that the next thread which scans this
2173 * zone will start out at that priority level.
2174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 for (i = 0; i < pgdat->nr_zones; i++) {
2176 struct zone *zone = pgdat->node_zones + i;
2177
Martin Bligh3bb1a852006-10-28 10:38:24 -07002178 zone->prev_priority = temp_priority[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
2180 if (!all_zones_ok) {
2181 cond_resched();
Rafael J. Wysocki83573762006-12-06 20:34:18 -08002182
2183 try_to_freeze();
2184
KOSAKI Motohiro73ce02e2009-01-06 14:40:33 -08002185 /*
2186 * Fragmentation may mean that the system cannot be
2187 * rebalanced for high-order allocations in all zones.
2188 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2189 * it means the zones have been fully scanned and are still
2190 * not balanced. For high-order allocations, there is
2191 * little point trying all over again as kswapd may
2192 * infinite loop.
2193 *
2194 * Instead, recheck all watermarks at order-0 as they
2195 * are the most important. If watermarks are ok, kswapd will go
2196 * back to sleep. High-order users can still perform direct
2197 * reclaim if they wish.
2198 */
2199 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
2200 order = sc.order = 0;
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 goto loop_again;
2203 }
2204
Rik van Riela79311c2009-01-06 14:40:01 -08002205 return sc.nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
2208/*
2209 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002210 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 *
2212 * This basically trickles out pages so that we have _some_
2213 * free memory available even if there is no other activity
2214 * that frees anything up. This is needed for things like routing
2215 * etc, where we otherwise might have all activity going on in
2216 * asynchronous contexts that cannot page things out.
2217 *
2218 * If there are applications that are active memory-allocators
2219 * (most normal use), this basically shouldn't matter.
2220 */
2221static int kswapd(void *p)
2222{
2223 unsigned long order;
2224 pg_data_t *pgdat = (pg_data_t*)p;
2225 struct task_struct *tsk = current;
2226 DEFINE_WAIT(wait);
2227 struct reclaim_state reclaim_state = {
2228 .reclaimed_slab = 0,
2229 };
Rusty Russella70f7302009-03-13 14:49:46 +10302230 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Nick Piggincf40bd12009-01-21 08:12:39 +01002232 lockdep_set_current_reclaim_state(GFP_KERNEL);
2233
Rusty Russell174596a2009-01-01 10:12:29 +10302234 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07002235 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 current->reclaim_state = &reclaim_state;
2237
2238 /*
2239 * Tell the memory management that we're a "memory allocator",
2240 * and that if we need more memory we should get access to it
2241 * regardless (see "__alloc_pages()"). "kswapd" should
2242 * never get caught in the normal page freeing logic.
2243 *
2244 * (Kswapd normally doesn't need memory anyway, but sometimes
2245 * you need a small amount of memory in order to be able to
2246 * page out something else, and this flag essentially protects
2247 * us from recursively trying to free more memory as we're
2248 * trying to free the first piece of memory in the first place).
2249 */
Christoph Lameter930d9152006-01-08 01:00:47 -08002250 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07002251 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 order = 0;
2254 for ( ; ; ) {
2255 unsigned long new_order;
David Rientjes8fe23e02009-12-14 17:58:33 -08002256 int ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2259 new_order = pgdat->kswapd_max_order;
2260 pgdat->kswapd_max_order = 0;
2261 if (order < new_order) {
2262 /*
2263 * Don't sleep if someone wants a larger 'order'
2264 * allocation
2265 */
2266 order = new_order;
2267 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002268 if (!freezing(current) && !kthread_should_stop()) {
2269 long remaining = 0;
2270
2271 /* Try to sleep for a short interval */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002272 if (!sleeping_prematurely(pgdat, order, remaining)) {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002273 remaining = schedule_timeout(HZ/10);
2274 finish_wait(&pgdat->kswapd_wait, &wait);
2275 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2276 }
2277
2278 /*
2279 * After a short sleep, check if it was a
2280 * premature sleep. If not, then go fully
2281 * to sleep until explicitly woken up
2282 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002283 if (!sleeping_prematurely(pgdat, order, remaining))
Mel Gormanf50de2d2009-12-14 17:58:53 -08002284 schedule();
2285 else {
2286 if (remaining)
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002287 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002288 else
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002289 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002290 }
2291 }
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 order = pgdat->kswapd_max_order;
2294 }
2295 finish_wait(&pgdat->kswapd_wait, &wait);
2296
David Rientjes8fe23e02009-12-14 17:58:33 -08002297 ret = try_to_freeze();
2298 if (kthread_should_stop())
2299 break;
2300
2301 /*
2302 * We can speed up thawing tasks if we don't call balance_pgdat
2303 * after returning from the refrigerator
2304 */
2305 if (!ret)
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002306 balance_pgdat(pgdat, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 return 0;
2309}
2310
2311/*
2312 * A zone is low on free memory, so wake its kswapd task to service it.
2313 */
2314void wakeup_kswapd(struct zone *zone, int order)
2315{
2316 pg_data_t *pgdat;
2317
Con Kolivasf3fe6512006-01-06 00:11:15 -08002318 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return;
2320
2321 pgdat = zone->zone_pgdat;
Mel Gorman41858962009-06-16 15:32:12 -07002322 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return;
2324 if (pgdat->kswapd_max_order < order)
2325 pgdat->kswapd_max_order = order;
Paul Jackson02a0e532006-12-13 00:34:25 -08002326 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002328 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002330 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331}
2332
Wu Fengguangadea02a2009-09-21 17:01:42 -07002333/*
2334 * The reclaimable count would be mostly accurate.
2335 * The less reclaimable pages may be
2336 * - mlocked pages, which will be moved to unevictable list when encountered
2337 * - mapped pages, which may require several travels to be reclaimed
2338 * - dirty pages, which is not "instantly" reclaimable
2339 */
2340unsigned long global_reclaimable_pages(void)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002341{
Wu Fengguangadea02a2009-09-21 17:01:42 -07002342 int nr;
2343
2344 nr = global_page_state(NR_ACTIVE_FILE) +
2345 global_page_state(NR_INACTIVE_FILE);
2346
2347 if (nr_swap_pages > 0)
2348 nr += global_page_state(NR_ACTIVE_ANON) +
2349 global_page_state(NR_INACTIVE_ANON);
2350
2351 return nr;
2352}
2353
2354unsigned long zone_reclaimable_pages(struct zone *zone)
2355{
2356 int nr;
2357
2358 nr = zone_page_state(zone, NR_ACTIVE_FILE) +
2359 zone_page_state(zone, NR_INACTIVE_FILE);
2360
2361 if (nr_swap_pages > 0)
2362 nr += zone_page_state(zone, NR_ACTIVE_ANON) +
2363 zone_page_state(zone, NR_INACTIVE_ANON);
2364
2365 return nr;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002366}
2367
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002368#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002370 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002371 * freed pages.
2372 *
2373 * Rather than trying to age LRUs the aim is to preserve the overall
2374 * LRU order by reclaiming preferentially
2375 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002377unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002379 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002380 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002381 .gfp_mask = GFP_HIGHUSER_MOVABLE,
2382 .may_swap = 1,
2383 .may_unmap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002384 .may_writepage = 1,
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002385 .nr_to_reclaim = nr_to_reclaim,
2386 .hibernation_mode = 1,
2387 .swappiness = vm_swappiness,
2388 .order = 0,
Balbir Singh66e17072008-02-07 00:13:56 -08002389 .isolate_pages = isolate_pages_global,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 };
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002391 struct zonelist * zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
2392 struct task_struct *p = current;
2393 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002395 p->flags |= PF_MEMALLOC;
2396 lockdep_set_current_reclaim_state(sc.gfp_mask);
2397 reclaim_state.reclaimed_slab = 0;
2398 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08002399
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002400 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002401
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002402 p->reclaim_state = NULL;
2403 lockdep_clear_current_reclaim_state();
2404 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002405
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002406 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002408#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410/* It's optimal to keep kswapds on the same CPUs as their memory, but
2411 not required for correctness. So if the last cpu in a node goes
2412 away, we get changed to run anywhere: as the first one comes back,
2413 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07002414static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08002415 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002417 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002419 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002420 for_each_node_state(nid, N_HIGH_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07002421 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10302422 const struct cpumask *mask;
2423
2424 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07002425
Rusty Russell3e597942009-01-01 10:12:24 +10302426 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07002428 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 }
2431 return NOTIFY_OK;
2432}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Yasunori Goto3218ae12006-06-27 02:53:33 -07002434/*
2435 * This kswapd start function will be called by init and node-hot-add.
2436 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2437 */
2438int kswapd_run(int nid)
2439{
2440 pg_data_t *pgdat = NODE_DATA(nid);
2441 int ret = 0;
2442
2443 if (pgdat->kswapd)
2444 return 0;
2445
2446 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2447 if (IS_ERR(pgdat->kswapd)) {
2448 /* failure at boot is fatal */
2449 BUG_ON(system_state == SYSTEM_BOOTING);
2450 printk("Failed to start kswapd on node %d\n",nid);
2451 ret = -1;
2452 }
2453 return ret;
2454}
2455
David Rientjes8fe23e02009-12-14 17:58:33 -08002456/*
2457 * Called by memory hotplug when all memory in a node is offlined.
2458 */
2459void kswapd_stop(int nid)
2460{
2461 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
2462
2463 if (kswapd)
2464 kthread_stop(kswapd);
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467static int __init kswapd_init(void)
2468{
Yasunori Goto3218ae12006-06-27 02:53:33 -07002469 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08002470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 swap_setup();
Christoph Lameter9422ffb2007-10-16 01:25:31 -07002472 for_each_node_state(nid, N_HIGH_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07002473 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 hotcpu_notifier(cpu_callback, 0);
2475 return 0;
2476}
2477
2478module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002479
2480#ifdef CONFIG_NUMA
2481/*
2482 * Zone reclaim mode
2483 *
2484 * If non-zero call zone_reclaim when the number of free pages falls below
2485 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08002486 */
2487int zone_reclaim_mode __read_mostly;
2488
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002489#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07002490#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002491#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2492#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2493
Christoph Lameter9eeff232006-01-18 17:42:31 -08002494/*
Christoph Lametera92f7122006-02-01 03:05:32 -08002495 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2496 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2497 * a zone.
2498 */
2499#define ZONE_RECLAIM_PRIORITY 4
2500
Christoph Lameter9eeff232006-01-18 17:42:31 -08002501/*
Christoph Lameter96146342006-07-03 00:24:13 -07002502 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2503 * occur.
2504 */
2505int sysctl_min_unmapped_ratio = 1;
2506
2507/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002508 * If the number of slab pages in a zone grows beyond this percentage then
2509 * slab reclaim needs to occur.
2510 */
2511int sysctl_min_slab_ratio = 5;
2512
Mel Gorman90afa5d2009-06-16 15:33:20 -07002513static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
2514{
2515 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
2516 unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
2517 zone_page_state(zone, NR_ACTIVE_FILE);
2518
2519 /*
2520 * It's possible for there to be more file mapped pages than
2521 * accounted for by the pages on the file LRU lists because
2522 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2523 */
2524 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
2525}
2526
2527/* Work out how many page cache pages we can reclaim in this reclaim_mode */
2528static long zone_pagecache_reclaimable(struct zone *zone)
2529{
2530 long nr_pagecache_reclaimable;
2531 long delta = 0;
2532
2533 /*
2534 * If RECLAIM_SWAP is set, then all file pages are considered
2535 * potentially reclaimable. Otherwise, we have to worry about
2536 * pages like swapcache and zone_unmapped_file_pages() provides
2537 * a better estimate
2538 */
2539 if (zone_reclaim_mode & RECLAIM_SWAP)
2540 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
2541 else
2542 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
2543
2544 /* If we can't clean pages, remove dirty pages from consideration */
2545 if (!(zone_reclaim_mode & RECLAIM_WRITE))
2546 delta += zone_page_state(zone, NR_FILE_DIRTY);
2547
2548 /* Watch for any possible underflows due to delta */
2549 if (unlikely(delta > nr_pagecache_reclaimable))
2550 delta = nr_pagecache_reclaimable;
2551
2552 return nr_pagecache_reclaimable - delta;
2553}
2554
Christoph Lameter0ff38492006-09-25 23:31:52 -07002555/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08002556 * Try to free up some pages from this zone through reclaim.
2557 */
Andrew Morton179e9632006-03-22 00:08:18 -08002558static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002559{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002560 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08002561 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002562 struct task_struct *p = current;
2563 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08002564 int priority;
Andrew Morton179e9632006-03-22 00:08:18 -08002565 struct scan_control sc = {
2566 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002567 .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002568 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002569 .nr_to_reclaim = max_t(unsigned long, nr_pages,
2570 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08002571 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002572 .swappiness = vm_swappiness,
Johannes Weinerbd2f6192009-03-31 15:19:38 -07002573 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002574 .isolate_pages = isolate_pages_global,
Andrew Morton179e9632006-03-22 00:08:18 -08002575 };
Christoph Lameter83e33a42006-09-25 23:31:53 -07002576 unsigned long slab_reclaimable;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002577
2578 disable_swap_token();
Christoph Lameter9eeff232006-01-18 17:42:31 -08002579 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08002580 /*
2581 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2582 * and we also need to be able to write out pages for RECLAIM_WRITE
2583 * and RECLAIM_SWAP.
2584 */
2585 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002586 lockdep_set_current_reclaim_state(gfp_mask);
Christoph Lameter9eeff232006-01-18 17:42:31 -08002587 reclaim_state.reclaimed_slab = 0;
2588 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08002589
Mel Gorman90afa5d2009-06-16 15:33:20 -07002590 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07002591 /*
2592 * Free memory by calling shrink zone with increasing
2593 * priorities until we have enough memory freed.
2594 */
2595 priority = ZONE_RECLAIM_PRIORITY;
2596 do {
Martin Bligh3bb1a852006-10-28 10:38:24 -07002597 note_zone_scanning_priority(zone, priority);
Rik van Riela79311c2009-01-06 14:40:01 -08002598 shrink_zone(priority, zone, &sc);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002599 priority--;
Rik van Riela79311c2009-01-06 14:40:01 -08002600 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002601 }
Christoph Lameterc84db232006-02-01 03:05:29 -08002602
Christoph Lameter83e33a42006-09-25 23:31:53 -07002603 slab_reclaimable = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2604 if (slab_reclaimable > zone->min_slab_pages) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002605 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002606 * shrink_slab() does not currently allow us to determine how
Christoph Lameter0ff38492006-09-25 23:31:52 -07002607 * many pages were freed in this zone. So we take the current
2608 * number of slab pages and shake the slab until it is reduced
2609 * by the same nr_pages that we used for reclaiming unmapped
2610 * pages.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002611 *
Christoph Lameter0ff38492006-09-25 23:31:52 -07002612 * Note that shrink_slab will free memory on all zones and may
2613 * take a long time.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002614 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07002615 while (shrink_slab(sc.nr_scanned, gfp_mask, order) &&
Christoph Lameter83e33a42006-09-25 23:31:53 -07002616 zone_page_state(zone, NR_SLAB_RECLAIMABLE) >
2617 slab_reclaimable - nr_pages)
Christoph Lameter0ff38492006-09-25 23:31:52 -07002618 ;
Christoph Lameter83e33a42006-09-25 23:31:53 -07002619
2620 /*
2621 * Update nr_reclaimed by the number of slab pages we
2622 * reclaimed from this zone.
2623 */
Rik van Riela79311c2009-01-06 14:40:01 -08002624 sc.nr_reclaimed += slab_reclaimable -
Christoph Lameter83e33a42006-09-25 23:31:53 -07002625 zone_page_state(zone, NR_SLAB_RECLAIMABLE);
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002626 }
2627
Christoph Lameter9eeff232006-01-18 17:42:31 -08002628 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08002629 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002630 lockdep_clear_current_reclaim_state();
Rik van Riela79311c2009-01-06 14:40:01 -08002631 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002632}
Andrew Morton179e9632006-03-22 00:08:18 -08002633
2634int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2635{
Andrew Morton179e9632006-03-22 00:08:18 -08002636 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07002637 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002638
2639 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002640 * Zone reclaim reclaims unmapped file backed pages and
2641 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07002642 *
Christoph Lameter96146342006-07-03 00:24:13 -07002643 * A small portion of unmapped file backed pages is needed for
2644 * file I/O otherwise pages read by file I/O will be immediately
2645 * thrown out if the zone is overallocated. So we do not reclaim
2646 * if less than a specified percentage of the zone is used by
2647 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08002648 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07002649 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
2650 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002651 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08002652
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002653 if (zone->all_unreclaimable)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002654 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07002655
Andrew Morton179e9632006-03-22 00:08:18 -08002656 /*
David Rientjesd773ed62007-10-16 23:26:01 -07002657 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08002658 */
David Rientjesd773ed62007-10-16 23:26:01 -07002659 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002660 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08002661
2662 /*
2663 * Only run zone reclaim on the local zone or on zones that do not
2664 * have associated processors. This will favor the local processor
2665 * over remote processors and spread off node memory allocations
2666 * as wide as possible.
2667 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07002668 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07002669 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07002670 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07002671
2672 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002673 return ZONE_RECLAIM_NOSCAN;
2674
David Rientjesd773ed62007-10-16 23:26:01 -07002675 ret = __zone_reclaim(zone, gfp_mask, order);
2676 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2677
Mel Gorman24cf725182009-06-16 15:33:23 -07002678 if (!ret)
2679 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
2680
David Rientjesd773ed62007-10-16 23:26:01 -07002681 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002682}
Christoph Lameter9eeff232006-01-18 17:42:31 -08002683#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002684
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002685/*
2686 * page_evictable - test whether a page is evictable
2687 * @page: the page to test
2688 * @vma: the VMA in which the page is or will be mapped, may be NULL
2689 *
2690 * Test whether page is evictable--i.e., should be placed on active/inactive
Nick Pigginb291f002008-10-18 20:26:44 -07002691 * lists vs unevictable list. The vma argument is !NULL when called from the
2692 * fault path to determine how to instantate a new page.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002693 *
2694 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002695 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07002696 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002697 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002698 */
2699int page_evictable(struct page *page, struct vm_area_struct *vma)
2700{
2701
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002702 if (mapping_unevictable(page_mapping(page)))
2703 return 0;
2704
Nick Pigginb291f002008-10-18 20:26:44 -07002705 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2706 return 0;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002707
2708 return 1;
2709}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002710
2711/**
2712 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2713 * @page: page to check evictability and move to appropriate lru list
2714 * @zone: zone page is in
2715 *
2716 * Checks a page for evictability and moves the page to the appropriate
2717 * zone lru list.
2718 *
2719 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2720 * have PageUnevictable set.
2721 */
2722static void check_move_unevictable_page(struct page *page, struct zone *zone)
2723{
2724 VM_BUG_ON(PageActive(page));
2725
2726retry:
2727 ClearPageUnevictable(page);
2728 if (page_evictable(page, NULL)) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07002729 enum lru_list l = page_lru_base_type(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002730
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002731 __dec_zone_state(zone, NR_UNEVICTABLE);
2732 list_move(&page->lru, &zone->lru[l].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002733 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002734 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2735 __count_vm_event(UNEVICTABLE_PGRESCUED);
2736 } else {
2737 /*
2738 * rotate unevictable list
2739 */
2740 SetPageUnevictable(page);
2741 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002742 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002743 if (page_evictable(page, NULL))
2744 goto retry;
2745 }
2746}
2747
2748/**
2749 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2750 * @mapping: struct address_space to scan for evictable pages
2751 *
2752 * Scan all pages in mapping. Check unevictable pages for
2753 * evictability and move them to the appropriate zone lru list.
2754 */
2755void scan_mapping_unevictable_pages(struct address_space *mapping)
2756{
2757 pgoff_t next = 0;
2758 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2759 PAGE_CACHE_SHIFT;
2760 struct zone *zone;
2761 struct pagevec pvec;
2762
2763 if (mapping->nrpages == 0)
2764 return;
2765
2766 pagevec_init(&pvec, 0);
2767 while (next < end &&
2768 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2769 int i;
2770 int pg_scanned = 0;
2771
2772 zone = NULL;
2773
2774 for (i = 0; i < pagevec_count(&pvec); i++) {
2775 struct page *page = pvec.pages[i];
2776 pgoff_t page_index = page->index;
2777 struct zone *pagezone = page_zone(page);
2778
2779 pg_scanned++;
2780 if (page_index > next)
2781 next = page_index;
2782 next++;
2783
2784 if (pagezone != zone) {
2785 if (zone)
2786 spin_unlock_irq(&zone->lru_lock);
2787 zone = pagezone;
2788 spin_lock_irq(&zone->lru_lock);
2789 }
2790
2791 if (PageLRU(page) && PageUnevictable(page))
2792 check_move_unevictable_page(page, zone);
2793 }
2794 if (zone)
2795 spin_unlock_irq(&zone->lru_lock);
2796 pagevec_release(&pvec);
2797
2798 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2799 }
2800
2801}
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002802
2803/**
2804 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2805 * @zone - zone of which to scan the unevictable list
2806 *
2807 * Scan @zone's unevictable LRU lists to check for pages that have become
2808 * evictable. Move those that have to @zone's inactive list where they
2809 * become candidates for reclaim, unless shrink_inactive_zone() decides
2810 * to reactivate them. Pages that are still unevictable are rotated
2811 * back onto @zone's unevictable list.
2812 */
2813#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
KOSAKI Motohiro14b90b22009-01-06 14:39:45 -08002814static void scan_zone_unevictable_pages(struct zone *zone)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002815{
2816 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2817 unsigned long scan;
2818 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2819
2820 while (nr_to_scan > 0) {
2821 unsigned long batch_size = min(nr_to_scan,
2822 SCAN_UNEVICTABLE_BATCH_SIZE);
2823
2824 spin_lock_irq(&zone->lru_lock);
2825 for (scan = 0; scan < batch_size; scan++) {
2826 struct page *page = lru_to_page(l_unevictable);
2827
2828 if (!trylock_page(page))
2829 continue;
2830
2831 prefetchw_prev_lru_page(page, l_unevictable, flags);
2832
2833 if (likely(PageLRU(page) && PageUnevictable(page)))
2834 check_move_unevictable_page(page, zone);
2835
2836 unlock_page(page);
2837 }
2838 spin_unlock_irq(&zone->lru_lock);
2839
2840 nr_to_scan -= batch_size;
2841 }
2842}
2843
2844
2845/**
2846 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2847 *
2848 * A really big hammer: scan all zones' unevictable LRU lists to check for
2849 * pages that have become evictable. Move those back to the zones'
2850 * inactive list where they become candidates for reclaim.
2851 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2852 * and we add swap to the system. As such, it runs in the context of a task
2853 * that has possibly/probably made some previously unevictable pages
2854 * evictable.
2855 */
KOSAKI Motohiroff301532009-01-06 14:39:44 -08002856static void scan_all_zones_unevictable_pages(void)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002857{
2858 struct zone *zone;
2859
2860 for_each_zone(zone) {
2861 scan_zone_unevictable_pages(zone);
2862 }
2863}
2864
2865/*
2866 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2867 * all nodes' unevictable lists for evictable pages
2868 */
2869unsigned long scan_unevictable_pages;
2870
2871int scan_unevictable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002872 void __user *buffer,
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002873 size_t *length, loff_t *ppos)
2874{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002875 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002876
2877 if (write && *(unsigned long *)table->data)
2878 scan_all_zones_unevictable_pages();
2879
2880 scan_unevictable_pages = 0;
2881 return 0;
2882}
2883
2884/*
2885 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2886 * a specified node's per zone unevictable lists for evictable pages.
2887 */
2888
2889static ssize_t read_scan_unevictable_node(struct sys_device *dev,
2890 struct sysdev_attribute *attr,
2891 char *buf)
2892{
2893 return sprintf(buf, "0\n"); /* always zero; should fit... */
2894}
2895
2896static ssize_t write_scan_unevictable_node(struct sys_device *dev,
2897 struct sysdev_attribute *attr,
2898 const char *buf, size_t count)
2899{
2900 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
2901 struct zone *zone;
2902 unsigned long res;
2903 unsigned long req = strict_strtoul(buf, 10, &res);
2904
2905 if (!req)
2906 return 1; /* zero is no-op */
2907
2908 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2909 if (!populated_zone(zone))
2910 continue;
2911 scan_zone_unevictable_pages(zone);
2912 }
2913 return 1;
2914}
2915
2916
2917static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
2918 read_scan_unevictable_node,
2919 write_scan_unevictable_node);
2920
2921int scan_unevictable_register_node(struct node *node)
2922{
2923 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
2924}
2925
2926void scan_unevictable_unregister_node(struct node *node)
2927{
2928 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
2929}
2930