blob: 4a6dccb57586f73596dd8c00311acb229274eee0 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#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
Mel Gorman33906bc2010-08-09 17:19:16 -070051#define CREATE_TRACE_POINTS
52#include <trace/events/vmscan.h>
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct scan_control {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 /* Incremented by the number of inactive pages that were scanned */
56 unsigned long nr_scanned;
57
Rik van Riela79311c2009-01-06 14:40:01 -080058 /* Number of pages freed so far during a call to shrink_zones() */
59 unsigned long nr_reclaimed;
60
KOSAKI Motohiro22fba332009-12-14 17:59:10 -080061 /* How many pages shrink_list() should reclaim */
62 unsigned long nr_to_reclaim;
63
KOSAKI Motohiro7b517552009-12-14 17:59:12 -080064 unsigned long hibernation_mode;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* This context's GFP mask */
Al Viro6daa0e22005-10-21 03:18:50 -040067 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 int may_writepage;
70
Johannes Weinera6dc60f2009-03-31 15:19:30 -070071 /* Can mapped pages be reclaimed? */
72 int may_unmap;
Christoph Lameterf1fd1062006-01-18 17:42:30 -080073
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -070074 /* Can pages be swapped as part of reclaim? */
75 int may_swap;
76
Rafael J. Wysockid6277db2006-06-23 02:03:18 -070077 int swappiness;
Nick Piggin408d8542006-09-25 23:31:27 -070078
Andy Whitcroft5ad333e2007-07-17 04:03:16 -070079 int order;
Balbir Singh66e17072008-02-07 00:13:56 -080080
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -070081 /*
Nikanth Karthikesan415b54e2010-08-17 15:39:09 +053082 * Intend to reclaim enough continuous memory rather than reclaim
83 * enough amount of memory. i.e, mode for high order allocation.
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -070084 */
85 bool lumpy_reclaim_mode;
86
Balbir Singh66e17072008-02-07 00:13:56 -080087 /* Which cgroup do we reclaim from */
88 struct mem_cgroup *mem_cgroup;
89
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -070090 /*
91 * Nodemask of nodes allowed by the caller. If NULL, all nodes
92 * are scanned.
93 */
94 nodemask_t *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
98
99#ifdef ARCH_HAS_PREFETCH
100#define prefetch_prev_lru_page(_page, _base, _field) \
101 do { \
102 if ((_page)->lru.prev != _base) { \
103 struct page *prev; \
104 \
105 prev = lru_to_page(&(_page->lru)); \
106 prefetch(&prev->_field); \
107 } \
108 } while (0)
109#else
110#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
111#endif
112
113#ifdef ARCH_HAS_PREFETCHW
114#define prefetchw_prev_lru_page(_page, _base, _field) \
115 do { \
116 if ((_page)->lru.prev != _base) { \
117 struct page *prev; \
118 \
119 prev = lru_to_page(&(_page->lru)); \
120 prefetchw(&prev->_field); \
121 } \
122 } while (0)
123#else
124#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
125#endif
126
127/*
128 * From 0 .. 100. Higher means more swappy.
129 */
130int vm_swappiness = 60;
Andrew Mortonbd1e22b2006-06-23 02:03:47 -0700131long vm_total_pages; /* The total number of pages which the VM controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static LIST_HEAD(shrinker_list);
134static DECLARE_RWSEM(shrinker_rwsem);
135
Balbir Singh00f0b822008-03-04 14:28:39 -0800136#ifdef CONFIG_CGROUP_MEM_RES_CTLR
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800137#define scanning_global_lru(sc) (!(sc)->mem_cgroup)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800138#else
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800139#define scanning_global_lru(sc) (1)
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800140#endif
141
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800142static struct zone_reclaim_stat *get_reclaim_stat(struct zone *zone,
143 struct scan_control *sc)
144{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800145 if (!scanning_global_lru(sc))
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800146 return mem_cgroup_get_reclaim_stat(sc->mem_cgroup, zone);
147
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800148 return &zone->reclaim_stat;
149}
150
Vincent Li0b217672009-09-21 17:03:09 -0700151static unsigned long zone_nr_lru_pages(struct zone *zone,
152 struct scan_control *sc, enum lru_list lru)
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800153{
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -0800154 if (!scanning_global_lru(sc))
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800155 return mem_cgroup_zone_nr_pages(sc->mem_cgroup, zone, lru);
156
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800157 return zone_page_state(zone, NR_LRU_BASE + lru);
158}
159
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Add a shrinker callback to be called from the vm
163 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700164void register_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700166 shrinker->nr = 0;
167 down_write(&shrinker_rwsem);
168 list_add_tail(&shrinker->list, &shrinker_list);
169 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700171EXPORT_SYMBOL(register_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/*
174 * Remove one
175 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700176void unregister_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 down_write(&shrinker_rwsem);
179 list_del(&shrinker->list);
180 up_write(&shrinker_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700182EXPORT_SYMBOL(unregister_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184#define SHRINK_BATCH 128
185/*
186 * Call the shrink functions to age shrinkable caches
187 *
188 * Here we assume it costs one seek to replace a lru page and that it also
189 * takes a seek to recreate a cache object. With this in mind we age equal
190 * percentages of the lru and ageable caches. This should balance the seeks
191 * generated by these structures.
192 *
Simon Arlott183ff222007-10-20 01:27:18 +0200193 * If the vm encountered mapped pages on the LRU it increase the pressure on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * slab to avoid swapping.
195 *
196 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
197 *
198 * `lru_pages' represents the number of on-LRU pages in all the zones which
199 * are eligible for the caller's allocation attempt. It is used for balancing
200 * slab reclaim versus page reclaim.
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700201 *
202 * Returns the number of slab objects which we shrunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
Andrew Morton69e05942006-03-22 00:08:19 -0800204unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask,
205 unsigned long lru_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct shrinker *shrinker;
Andrew Morton69e05942006-03-22 00:08:19 -0800208 unsigned long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (scanned == 0)
211 scanned = SWAP_CLUSTER_MAX;
212
213 if (!down_read_trylock(&shrinker_rwsem))
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700214 return 1; /* Assume we'll be able to shrink next time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 list_for_each_entry(shrinker, &shrinker_list, list) {
217 unsigned long long delta;
218 unsigned long total_scan;
Dave Chinner7f8275d2010-07-19 14:56:17 +1000219 unsigned long max_pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Dave Chinner7f8275d2010-07-19 14:56:17 +1000221 max_pass = (*shrinker->shrink)(shrinker, 0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 delta = (4 * scanned) / shrinker->seeks;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800223 delta *= max_pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 do_div(delta, lru_pages + 1);
225 shrinker->nr += delta;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800226 if (shrinker->nr < 0) {
David Rientjes88c3bd72009-03-31 15:23:29 -0700227 printk(KERN_ERR "shrink_slab: %pF negative objects to "
228 "delete nr=%ld\n",
229 shrinker->shrink, shrinker->nr);
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800230 shrinker->nr = max_pass;
231 }
232
233 /*
234 * Avoid risking looping forever due to too large nr value:
235 * never try to free more than twice the estimate number of
236 * freeable entries.
237 */
238 if (shrinker->nr > max_pass * 2)
239 shrinker->nr = max_pass * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 total_scan = shrinker->nr;
242 shrinker->nr = 0;
243
244 while (total_scan >= SHRINK_BATCH) {
245 long this_scan = SHRINK_BATCH;
246 int shrink_ret;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700247 int nr_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Dave Chinner7f8275d2010-07-19 14:56:17 +1000249 nr_before = (*shrinker->shrink)(shrinker, 0, gfp_mask);
250 shrink_ret = (*shrinker->shrink)(shrinker, this_scan,
251 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (shrink_ret == -1)
253 break;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700254 if (shrink_ret < nr_before)
255 ret += nr_before - shrink_ret;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700256 count_vm_events(SLABS_SCANNED, this_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 total_scan -= this_scan;
258
259 cond_resched();
260 }
261
262 shrinker->nr += total_scan;
263 }
264 up_read(&shrinker_rwsem);
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700265 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static inline int is_page_cache_freeable(struct page *page)
269{
Johannes Weinerceddc3a2009-09-21 17:03:00 -0700270 /*
271 * A freeable page cache page is referenced only by the caller
272 * that isolated the page, the page cache radix tree and
273 * optional buffer heads at page->private.
274 */
Johannes Weineredcf4742009-09-21 17:02:59 -0700275 return page_count(page) - page_has_private(page) == 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278static int may_write_to_queue(struct backing_dev_info *bdi)
279{
Christoph Lameter930d9152006-01-08 01:00:47 -0800280 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 1;
282 if (!bdi_write_congested(bdi))
283 return 1;
284 if (bdi == current->backing_dev_info)
285 return 1;
286 return 0;
287}
288
289/*
290 * We detected a synchronous write error writing a page out. Probably
291 * -ENOSPC. We need to propagate that into the address_space for a subsequent
292 * fsync(), msync() or close().
293 *
294 * The tricky part is that after writepage we cannot touch the mapping: nothing
295 * prevents it from being freed up. But we have a ref on the page and once
296 * that page is locked, the mapping is pinned.
297 *
298 * We're allowed to run sleeping lock_page() here because we know the caller has
299 * __GFP_FS.
300 */
301static void handle_write_error(struct address_space *mapping,
302 struct page *page, int error)
303{
Nick Piggina6aa62a2010-07-20 13:24:25 -0700304 lock_page_nosync(page);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700305 if (page_mapping(page) == mapping)
306 mapping_set_error(mapping, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unlock_page(page);
308}
309
Andy Whitcroftc661b072007-08-22 14:01:26 -0700310/* Request for sync pageout. */
311enum pageout_io {
312 PAGEOUT_IO_ASYNC,
313 PAGEOUT_IO_SYNC,
314};
315
Christoph Lameter04e62a22006-06-23 02:03:38 -0700316/* possible outcome of pageout() */
317typedef enum {
318 /* failed to write page out, page is locked */
319 PAGE_KEEP,
320 /* move page to the active list, page is locked */
321 PAGE_ACTIVATE,
322 /* page has been sent to the disk successfully, page is unlocked */
323 PAGE_SUCCESS,
324 /* page is clean and locked */
325 PAGE_CLEAN,
326} pageout_t;
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/*
Andrew Morton1742f192006-03-22 00:08:21 -0800329 * pageout is called by shrink_page_list() for each dirty page.
330 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700332static pageout_t pageout(struct page *page, struct address_space *mapping,
333 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 /*
336 * If the page is dirty, only perform writeback if that write
337 * will be non-blocking. To prevent this allocation from being
338 * stalled by pagecache activity. But note that there may be
339 * stalls if we need to run get_block(). We could test
340 * PagePrivate for that.
341 *
Vincent Li6aceb532009-12-14 17:58:49 -0800342 * If this process is currently in __generic_file_aio_write() against
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * this page's queue, we can perform writeback even if that
344 * will block.
345 *
346 * If the page is swapcache, write it back even if that would
347 * block, for some throttling. This happens by accident, because
348 * swap_backing_dev_info is bust: it doesn't reflect the
349 * congestion state of the swapdevs. Easy to fix, if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
351 if (!is_page_cache_freeable(page))
352 return PAGE_KEEP;
353 if (!mapping) {
354 /*
355 * Some data journaling orphaned pages can have
356 * page->mapping == NULL while being dirty with clean buffers.
357 */
David Howells266cf652009-04-03 16:42:36 +0100358 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (try_to_free_buffers(page)) {
360 ClearPageDirty(page);
Harvey Harrisond40cee22008-04-30 00:55:07 -0700361 printk("%s: orphaned page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return PAGE_CLEAN;
363 }
364 }
365 return PAGE_KEEP;
366 }
367 if (mapping->a_ops->writepage == NULL)
368 return PAGE_ACTIVATE;
369 if (!may_write_to_queue(mapping->backing_dev_info))
370 return PAGE_KEEP;
371
372 if (clear_page_dirty_for_io(page)) {
373 int res;
374 struct writeback_control wbc = {
375 .sync_mode = WB_SYNC_NONE,
376 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700377 .range_start = 0,
378 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 .for_reclaim = 1,
380 };
381
382 SetPageReclaim(page);
383 res = mapping->a_ops->writepage(page, &wbc);
384 if (res < 0)
385 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800386 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 ClearPageReclaim(page);
388 return PAGE_ACTIVATE;
389 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700390
391 /*
392 * Wait on writeback if requested to. This happens when
393 * direct reclaiming a large contiguous area and the
394 * first attempt to free a range of pages fails.
395 */
396 if (PageWriteback(page) && sync_writeback == PAGEOUT_IO_SYNC)
397 wait_on_page_writeback(page);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!PageWriteback(page)) {
400 /* synchronous write or broken a_ops? */
401 ClearPageReclaim(page);
402 }
Mel Gorman755f0222010-08-09 17:19:18 -0700403 trace_mm_vmscan_writepage(page,
404 trace_reclaim_flags(page, sync_writeback));
Andrew Mortone129b5c2006-09-27 01:50:00 -0700405 inc_zone_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return PAGE_SUCCESS;
407 }
408
409 return PAGE_CLEAN;
410}
411
Andrew Mortona649fd92006-10-17 00:09:36 -0700412/*
Nick Piggine2867812008-07-25 19:45:30 -0700413 * Same as remove_mapping, but if the page is removed from the mapping, it
414 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700415 */
Nick Piggine2867812008-07-25 19:45:30 -0700416static int __remove_mapping(struct address_space *mapping, struct page *page)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800417{
Nick Piggin28e4d962006-09-25 23:31:23 -0700418 BUG_ON(!PageLocked(page));
419 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800420
Nick Piggin19fd6232008-07-25 19:45:32 -0700421 spin_lock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800422 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700423 * The non racy check for a busy page.
424 *
425 * Must be careful with the order of the tests. When someone has
426 * a ref to the page, it may be possible that they dirty it then
427 * drop the reference. So if PageDirty is tested before page_count
428 * here, then the following race may occur:
429 *
430 * get_user_pages(&page);
431 * [user mapping goes away]
432 * write_to(page);
433 * !PageDirty(page) [good]
434 * SetPageDirty(page);
435 * put_page(page);
436 * !page_count(page) [good, discard it]
437 *
438 * [oops, our write_to data is lost]
439 *
440 * Reversing the order of the tests ensures such a situation cannot
441 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
442 * load is not satisfied before that of page->_count.
443 *
444 * Note that if SetPageDirty is always performed via set_page_dirty,
445 * and thus under tree_lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800446 */
Nick Piggine2867812008-07-25 19:45:30 -0700447 if (!page_freeze_refs(page, 2))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800448 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700449 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
450 if (unlikely(PageDirty(page))) {
451 page_unfreeze_refs(page, 2);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800452 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700453 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800454
455 if (PageSwapCache(page)) {
456 swp_entry_t swap = { .val = page_private(page) };
457 __delete_from_swap_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700458 spin_unlock_irq(&mapping->tree_lock);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700459 swapcache_free(swap, page);
Nick Piggine2867812008-07-25 19:45:30 -0700460 } else {
461 __remove_from_page_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700462 spin_unlock_irq(&mapping->tree_lock);
Daisuke Nishimurae767e052009-05-28 14:34:28 -0700463 mem_cgroup_uncharge_cache_page(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800464 }
465
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800466 return 1;
467
468cannot_free:
Nick Piggin19fd6232008-07-25 19:45:32 -0700469 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800470 return 0;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
Nick Piggine2867812008-07-25 19:45:30 -0700474 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
475 * someone else has a ref on the page, abort and return 0. If it was
476 * successfully detached, return 1. Assumes the caller has a single ref on
477 * this page.
478 */
479int remove_mapping(struct address_space *mapping, struct page *page)
480{
481 if (__remove_mapping(mapping, page)) {
482 /*
483 * Unfreezing the refcount with 1 rather than 2 effectively
484 * drops the pagecache ref for us without requiring another
485 * atomic operation.
486 */
487 page_unfreeze_refs(page, 1);
488 return 1;
489 }
490 return 0;
491}
492
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700493/**
494 * putback_lru_page - put previously isolated page onto appropriate LRU list
495 * @page: page to be put back to appropriate lru list
496 *
497 * Add previously isolated @page to appropriate LRU list.
498 * Page may still be unevictable for other reasons.
499 *
500 * lru_lock must not be held, interrupts must be enabled.
501 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700502void putback_lru_page(struct page *page)
503{
504 int lru;
505 int active = !!TestClearPageActive(page);
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700506 int was_unevictable = PageUnevictable(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700507
508 VM_BUG_ON(PageLRU(page));
509
510redo:
511 ClearPageUnevictable(page);
512
513 if (page_evictable(page, NULL)) {
514 /*
515 * For evictable pages, we can use the cache.
516 * In event of a race, worst case is we end up with an
517 * unevictable page on [in]active list.
518 * We know how to handle that.
519 */
Johannes Weiner401a8e12009-09-21 17:02:58 -0700520 lru = active + page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700521 lru_cache_add_lru(page, lru);
522 } else {
523 /*
524 * Put unevictable pages directly on zone's unevictable
525 * list.
526 */
527 lru = LRU_UNEVICTABLE;
528 add_page_to_unevictable_list(page);
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700529 /*
530 * When racing with an mlock clearing (page is
531 * unlocked), make sure that if the other thread does
532 * not observe our setting of PG_lru and fails
533 * isolation, we see PG_mlocked cleared below and move
534 * the page back to the evictable list.
535 *
536 * The other side is TestClearPageMlocked().
537 */
538 smp_mb();
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700539 }
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700540
541 /*
542 * page's status can change while we move it among lru. If an evictable
543 * page is on unevictable list, it never be freed. To avoid that,
544 * check after we added it to the list, again.
545 */
546 if (lru == LRU_UNEVICTABLE && page_evictable(page, NULL)) {
547 if (!isolate_lru_page(page)) {
548 put_page(page);
549 goto redo;
550 }
551 /* This means someone else dropped this page from LRU
552 * So, it will be freed or putback to LRU again. There is
553 * nothing to do here.
554 */
555 }
556
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700557 if (was_unevictable && lru != LRU_UNEVICTABLE)
558 count_vm_event(UNEVICTABLE_PGRESCUED);
559 else if (!was_unevictable && lru == LRU_UNEVICTABLE)
560 count_vm_event(UNEVICTABLE_PGCULLED);
561
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700562 put_page(page); /* drop ref from isolate */
563}
564
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800565enum page_references {
566 PAGEREF_RECLAIM,
567 PAGEREF_RECLAIM_CLEAN,
Johannes Weiner64574742010-03-05 13:42:22 -0800568 PAGEREF_KEEP,
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800569 PAGEREF_ACTIVATE,
570};
571
572static enum page_references page_check_references(struct page *page,
573 struct scan_control *sc)
574{
Johannes Weiner64574742010-03-05 13:42:22 -0800575 int referenced_ptes, referenced_page;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800576 unsigned long vm_flags;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800577
Johannes Weiner64574742010-03-05 13:42:22 -0800578 referenced_ptes = page_referenced(page, 1, sc->mem_cgroup, &vm_flags);
579 referenced_page = TestClearPageReferenced(page);
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800580
581 /* Lumpy reclaim - ignore references */
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -0700582 if (sc->lumpy_reclaim_mode)
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800583 return PAGEREF_RECLAIM;
584
585 /*
586 * Mlock lost the isolation race with us. Let try_to_unmap()
587 * move the page to the unevictable list.
588 */
589 if (vm_flags & VM_LOCKED)
590 return PAGEREF_RECLAIM;
591
Johannes Weiner64574742010-03-05 13:42:22 -0800592 if (referenced_ptes) {
593 if (PageAnon(page))
594 return PAGEREF_ACTIVATE;
595 /*
596 * All mapped pages start out with page table
597 * references from the instantiating fault, so we need
598 * to look twice if a mapped file page is used more
599 * than once.
600 *
601 * Mark it and spare it for another trip around the
602 * inactive list. Another page table reference will
603 * lead to its activation.
604 *
605 * Note: the mark is set for activated pages as well
606 * so that recently deactivated but used pages are
607 * quickly recovered.
608 */
609 SetPageReferenced(page);
610
611 if (referenced_page)
612 return PAGEREF_ACTIVATE;
613
614 return PAGEREF_KEEP;
615 }
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800616
617 /* Reclaim if clean, defer dirty pages to writeback */
Johannes Weiner64574742010-03-05 13:42:22 -0800618 if (referenced_page)
619 return PAGEREF_RECLAIM_CLEAN;
620
621 return PAGEREF_RECLAIM;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800622}
623
Mel Gormanabe4c3b2010-08-09 17:19:31 -0700624static noinline_for_stack void free_page_list(struct list_head *free_pages)
625{
626 struct pagevec freed_pvec;
627 struct page *page, *tmp;
628
629 pagevec_init(&freed_pvec, 1);
630
631 list_for_each_entry_safe(page, tmp, free_pages, lru) {
632 list_del(&page->lru);
633 if (!pagevec_add(&freed_pvec, page)) {
634 __pagevec_free(&freed_pvec);
635 pagevec_reinit(&freed_pvec);
636 }
637 }
638
639 pagevec_free(&freed_pvec);
640}
641
Nick Piggine2867812008-07-25 19:45:30 -0700642/*
Andrew Morton1742f192006-03-22 00:08:21 -0800643 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
Andrew Morton1742f192006-03-22 00:08:21 -0800645static unsigned long shrink_page_list(struct list_head *page_list,
Andy Whitcroftc661b072007-08-22 14:01:26 -0700646 struct scan_control *sc,
647 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 LIST_HEAD(ret_pages);
Mel Gormanabe4c3b2010-08-09 17:19:31 -0700650 LIST_HEAD(free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800652 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 cond_resched();
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 while (!list_empty(page_list)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800657 enum page_references references;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 struct address_space *mapping;
659 struct page *page;
660 int may_enter_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 cond_resched();
663
664 page = lru_to_page(page_list);
665 list_del(&page->lru);
666
Nick Piggin529ae9a2008-08-02 12:01:03 +0200667 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto keep;
669
Nick Piggin725d7042006-09-25 23:30:55 -0700670 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800673
Nick Pigginb291f002008-10-18 20:26:44 -0700674 if (unlikely(!page_evictable(page, NULL)))
675 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700676
Johannes Weinera6dc60f2009-03-31 15:19:30 -0700677 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800678 goto keep_locked;
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* Double the slab pressure for mapped and swapcache pages */
681 if (page_mapped(page) || PageSwapCache(page))
682 sc->nr_scanned++;
683
Andy Whitcroftc661b072007-08-22 14:01:26 -0700684 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
685 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
686
687 if (PageWriteback(page)) {
688 /*
689 * Synchronous reclaim is performed in two passes,
690 * first an asynchronous pass over the list to
691 * start parallel writeback, and a second synchronous
692 * pass to wait for the IO to complete. Wait here
693 * for any page for which writeback has already
694 * started.
695 */
696 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
697 wait_on_page_writeback(page);
Andrew Morton4dd4b922008-03-24 12:29:52 -0700698 else
Andy Whitcroftc661b072007-08-22 14:01:26 -0700699 goto keep_locked;
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800702 references = page_check_references(page, sc);
703 switch (references) {
704 case PAGEREF_ACTIVATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 goto activate_locked;
Johannes Weiner64574742010-03-05 13:42:22 -0800706 case PAGEREF_KEEP:
707 goto keep_locked;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800708 case PAGEREF_RECLAIM:
709 case PAGEREF_RECLAIM_CLEAN:
710 ; /* try to reclaim the page below */
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
714 * Anonymous process memory has backing store?
715 * Try to allocate it some swap space here.
716 */
Nick Pigginb291f002008-10-18 20:26:44 -0700717 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800718 if (!(sc->gfp_mask & __GFP_IO))
719 goto keep_locked;
Hugh Dickinsac47b002009-01-06 14:39:39 -0800720 if (!add_to_swap(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 goto activate_locked;
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800722 may_enter_fs = 1;
Nick Pigginb291f002008-10-18 20:26:44 -0700723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /*
728 * The page is mapped into the page tables of one or more
729 * processes. Try to unmap it here.
730 */
731 if (page_mapped(page) && mapping) {
Andi Kleen14fa31b2009-09-16 11:50:10 +0200732 switch (try_to_unmap(page, TTU_UNMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 case SWAP_FAIL:
734 goto activate_locked;
735 case SWAP_AGAIN:
736 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -0700737 case SWAP_MLOCK:
738 goto cull_mlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 case SWAP_SUCCESS:
740 ; /* try to free the page below */
741 }
742 }
743
744 if (PageDirty(page)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800745 if (references == PAGEREF_RECLAIM_CLEAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -0700747 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800749 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto keep_locked;
751
752 /* Page is dirty, try to write it out here */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700753 switch (pageout(page, mapping, sync_writeback)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 case PAGE_KEEP:
755 goto keep_locked;
756 case PAGE_ACTIVATE:
757 goto activate_locked;
758 case PAGE_SUCCESS:
Andrew Morton4dd4b922008-03-24 12:29:52 -0700759 if (PageWriteback(page) || PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto keep;
761 /*
762 * A synchronous write - probably a ramdisk. Go
763 * ahead and try to reclaim the page.
764 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200765 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 goto keep;
767 if (PageDirty(page) || PageWriteback(page))
768 goto keep_locked;
769 mapping = page_mapping(page);
770 case PAGE_CLEAN:
771 ; /* try to free the page below */
772 }
773 }
774
775 /*
776 * If the page has buffers, try to free the buffer mappings
777 * associated with this page. If we succeed we try to free
778 * the page as well.
779 *
780 * We do this even if the page is PageDirty().
781 * try_to_release_page() does not perform I/O, but it is
782 * possible for a page to have PageDirty set, but it is actually
783 * clean (all its buffers are clean). This happens if the
784 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700785 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * try_to_release_page() will discover that cleanness and will
787 * drop the buffers and mark the page clean - it can be freed.
788 *
789 * Rarely, pages can have buffers and no ->mapping. These are
790 * the pages which were not successfully invalidated in
791 * truncate_complete_page(). We try to drop those buffers here
792 * and if that worked, and the page is no longer mapped into
793 * process address space (page_count == 1) it can be freed.
794 * Otherwise, leave the page on the LRU so it is swappable.
795 */
David Howells266cf652009-04-03 16:42:36 +0100796 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!try_to_release_page(page, sc->gfp_mask))
798 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -0700799 if (!mapping && page_count(page) == 1) {
800 unlock_page(page);
801 if (put_page_testzero(page))
802 goto free_it;
803 else {
804 /*
805 * rare race with speculative reference.
806 * the speculative reference will free
807 * this page shortly, so we may
808 * increment nr_reclaimed here (and
809 * leave it off the LRU).
810 */
811 nr_reclaimed++;
812 continue;
813 }
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
Nick Piggine2867812008-07-25 19:45:30 -0700817 if (!mapping || !__remove_mapping(mapping, page))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800818 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Nick Piggina978d6f2008-10-18 20:26:58 -0700820 /*
821 * At this point, we have no other references and there is
822 * no way to pick any more up (removed from LRU, removed
823 * from pagecache). Can use non-atomic bitops now (and
824 * we obviously don't have to worry about waking up a process
825 * waiting on the page lock, because there are no references.
826 */
827 __clear_page_locked(page);
Nick Piggine2867812008-07-25 19:45:30 -0700828free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -0800829 nr_reclaimed++;
Mel Gormanabe4c3b2010-08-09 17:19:31 -0700830
831 /*
832 * Is there need to periodically free_page_list? It would
833 * appear not as the counts should be low
834 */
835 list_add(&page->lru, &free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 continue;
837
Nick Pigginb291f002008-10-18 20:26:44 -0700838cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -0800839 if (PageSwapCache(page))
840 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -0700841 unlock_page(page);
842 putback_lru_page(page);
843 continue;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -0700846 /* Not a candidate for swapping, so reclaim swap space. */
847 if (PageSwapCache(page) && vm_swap_full())
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800848 try_to_free_swap(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700849 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 SetPageActive(page);
851 pgactivate++;
852keep_locked:
853 unlock_page(page);
854keep:
855 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -0700856 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Mel Gormanabe4c3b2010-08-09 17:19:31 -0700858
859 free_page_list(&free_pages);
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 list_splice(&ret_pages, page_list);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700862 count_vm_events(PGACTIVATE, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800863 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700866/*
867 * Attempt to remove the specified page from its LRU. Only take this page
868 * if it is of the appropriate PageActive status. Pages which are being
869 * freed elsewhere are also ignored.
870 *
871 * page: page to consider
872 * mode: one of the LRU isolation modes defined above
873 *
874 * returns 0 on success, -ve errno on failure.
875 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700876int __isolate_lru_page(struct page *page, int mode, int file)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700877{
878 int ret = -EINVAL;
879
880 /* Only take pages on the LRU. */
881 if (!PageLRU(page))
882 return ret;
883
884 /*
885 * When checking the active state, we need to be sure we are
886 * dealing with comparible boolean values. Take the logical not
887 * of each.
888 */
889 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
890 return ret;
891
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700892 if (mode != ISOLATE_BOTH && page_is_file_cache(page) != file)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700893 return ret;
894
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700895 /*
896 * When this function is being called for lumpy reclaim, we
897 * initially look into all LRU pages, active, inactive and
898 * unevictable; only give shrink_page_list evictable pages.
899 */
900 if (PageUnevictable(page))
901 return ret;
902
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700903 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800904
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700905 if (likely(get_page_unless_zero(page))) {
906 /*
907 * Be careful not to clear PageLRU until after we're
908 * sure the page is not being freed elsewhere -- the
909 * page release code relies on it.
910 */
911 ClearPageLRU(page);
912 ret = 0;
913 }
914
915 return ret;
916}
917
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800918/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * zone->lru_lock is heavily contended. Some of the functions that
920 * shrink the lists perform better by taking out a batch of pages
921 * and working on them outside the LRU lock.
922 *
923 * For pagecache intensive workloads, this function is the hottest
924 * spot in the kernel (apart from copy_*_user functions).
925 *
926 * Appropriate locks must be held before calling this function.
927 *
928 * @nr_to_scan: The number of pages to look through on the list.
929 * @src: The LRU list to pull pages off.
930 * @dst: The temp list to put pages on to.
931 * @scanned: The number of pages that were scanned.
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700932 * @order: The caller's attempted allocation order
933 * @mode: One of the LRU isolation modes
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700934 * @file: True [1] if isolating file [!anon] pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
936 * returns how many pages were moved onto *@dst.
937 */
Andrew Morton69e05942006-03-22 00:08:19 -0800938static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
939 struct list_head *src, struct list_head *dst,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700940 unsigned long *scanned, int order, int mode, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Andrew Morton69e05942006-03-22 00:08:19 -0800942 unsigned long nr_taken = 0;
Mel Gormana8a94d12010-08-09 17:19:17 -0700943 unsigned long nr_lumpy_taken = 0;
944 unsigned long nr_lumpy_dirty = 0;
945 unsigned long nr_lumpy_failed = 0;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800946 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800948 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700949 struct page *page;
950 unsigned long pfn;
951 unsigned long end_pfn;
952 unsigned long page_pfn;
953 int zone_id;
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 page = lru_to_page(src);
956 prefetchw_prev_lru_page(page, src, flags);
957
Nick Piggin725d7042006-09-25 23:30:55 -0700958 VM_BUG_ON(!PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800959
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700960 switch (__isolate_lru_page(page, mode, file)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700961 case 0:
962 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700963 mem_cgroup_del_lru(page);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800964 nr_taken++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700965 break;
Nick Piggin46453a62006-03-22 00:07:58 -0800966
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700967 case -EBUSY:
968 /* else it is being freed elsewhere */
969 list_move(&page->lru, src);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700970 mem_cgroup_rotate_lru_list(page, page_lru(page));
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700971 continue;
972
973 default:
974 BUG();
975 }
976
977 if (!order)
978 continue;
979
980 /*
981 * Attempt to take all pages in the order aligned region
982 * surrounding the tag page. Only take those pages of
983 * the same active state as that tag page. We may safely
984 * round the target page pfn down to the requested order
985 * as the mem_map is guarenteed valid out to MAX_ORDER,
986 * where that page is in a different zone we will detect
987 * it from its zone id and abort this block scan.
988 */
989 zone_id = page_zone_id(page);
990 page_pfn = page_to_pfn(page);
991 pfn = page_pfn & ~((1 << order) - 1);
992 end_pfn = pfn + (1 << order);
993 for (; pfn < end_pfn; pfn++) {
994 struct page *cursor_page;
995
996 /* The target page is in the block, ignore it. */
997 if (unlikely(pfn == page_pfn))
998 continue;
999
1000 /* Avoid holes within the zone. */
1001 if (unlikely(!pfn_valid_within(pfn)))
1002 break;
1003
1004 cursor_page = pfn_to_page(pfn);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001005
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001006 /* Check that we have not crossed a zone boundary. */
1007 if (unlikely(page_zone_id(cursor_page) != zone_id))
1008 continue;
Minchan Kimde2e7562009-09-21 17:01:43 -07001009
1010 /*
1011 * If we don't have enough swap space, reclaiming of
1012 * anon page which don't already have a swap slot is
1013 * pointless.
1014 */
1015 if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
1016 !PageSwapCache(cursor_page))
1017 continue;
1018
KAMEZAWA Hiroyukiee993b12009-06-16 15:33:24 -07001019 if (__isolate_lru_page(cursor_page, mode, file) == 0) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001020 list_move(&cursor_page->lru, dst);
KAMEZAWA Hiroyukicb4cbcf2009-06-23 08:57:55 +09001021 mem_cgroup_del_lru(cursor_page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001022 nr_taken++;
Mel Gormana8a94d12010-08-09 17:19:17 -07001023 nr_lumpy_taken++;
1024 if (PageDirty(cursor_page))
1025 nr_lumpy_dirty++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001026 scan++;
Mel Gormana8a94d12010-08-09 17:19:17 -07001027 } else {
1028 if (mode == ISOLATE_BOTH &&
1029 page_count(cursor_page))
1030 nr_lumpy_failed++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001031 }
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034
1035 *scanned = scan;
Mel Gormana8a94d12010-08-09 17:19:17 -07001036
1037 trace_mm_vmscan_lru_isolate(order,
1038 nr_to_scan, scan,
1039 nr_taken,
1040 nr_lumpy_taken, nr_lumpy_dirty, nr_lumpy_failed,
1041 mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return nr_taken;
1043}
1044
Balbir Singh66e17072008-02-07 00:13:56 -08001045static unsigned long isolate_pages_global(unsigned long nr,
1046 struct list_head *dst,
1047 unsigned long *scanned, int order,
1048 int mode, struct zone *z,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001049 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -08001050{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001051 int lru = LRU_BASE;
Balbir Singh66e17072008-02-07 00:13:56 -08001052 if (active)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001053 lru += LRU_ACTIVE;
1054 if (file)
1055 lru += LRU_FILE;
1056 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001057 mode, file);
Balbir Singh66e17072008-02-07 00:13:56 -08001058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/*
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001061 * clear_active_flags() is a helper for shrink_active_list(), clearing
1062 * any active bits from the pages in the list.
1063 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001064static unsigned long clear_active_flags(struct list_head *page_list,
1065 unsigned int *count)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001066{
1067 int nr_active = 0;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001068 int lru;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001069 struct page *page;
1070
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001071 list_for_each_entry(page, page_list, lru) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07001072 lru = page_lru_base_type(page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001073 if (PageActive(page)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001074 lru += LRU_ACTIVE;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001075 ClearPageActive(page);
1076 nr_active++;
1077 }
Mel Gorman1489fa12010-08-09 17:19:33 -07001078 if (count)
1079 count[lru]++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001080 }
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001081
1082 return nr_active;
1083}
1084
Nick Piggin62695a82008-10-18 20:26:09 -07001085/**
1086 * isolate_lru_page - tries to isolate a page from its LRU list
1087 * @page: page to isolate from its LRU list
1088 *
1089 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1090 * vmstat statistic corresponding to whatever LRU list the page was on.
1091 *
1092 * Returns 0 if the page was removed from an LRU list.
1093 * Returns -EBUSY if the page was not on an LRU list.
1094 *
1095 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001096 * the active list, it will have PageActive set. If it was found on
1097 * the unevictable list, it will have the PageUnevictable bit set. That flag
1098 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001099 *
1100 * The vmstat statistic corresponding to the list on which the page was
1101 * found will be decremented.
1102 *
1103 * Restrictions:
1104 * (1) Must be called with an elevated refcount on the page. This is a
1105 * fundamentnal difference from isolate_lru_pages (which is called
1106 * without a stable reference).
1107 * (2) the lru_lock must not be held.
1108 * (3) interrupts must be enabled.
1109 */
1110int isolate_lru_page(struct page *page)
1111{
1112 int ret = -EBUSY;
1113
1114 if (PageLRU(page)) {
1115 struct zone *zone = page_zone(page);
1116
1117 spin_lock_irq(&zone->lru_lock);
1118 if (PageLRU(page) && get_page_unless_zero(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001119 int lru = page_lru(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001120 ret = 0;
1121 ClearPageLRU(page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001122
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001123 del_page_from_lru_list(zone, page, lru);
Nick Piggin62695a82008-10-18 20:26:09 -07001124 }
1125 spin_unlock_irq(&zone->lru_lock);
1126 }
1127 return ret;
1128}
1129
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001130/*
Rik van Riel35cd7812009-09-21 17:01:38 -07001131 * Are there way too many processes in the direct reclaim path already?
1132 */
1133static int too_many_isolated(struct zone *zone, int file,
1134 struct scan_control *sc)
1135{
1136 unsigned long inactive, isolated;
1137
1138 if (current_is_kswapd())
1139 return 0;
1140
1141 if (!scanning_global_lru(sc))
1142 return 0;
1143
1144 if (file) {
1145 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1146 isolated = zone_page_state(zone, NR_ISOLATED_FILE);
1147 } else {
1148 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1149 isolated = zone_page_state(zone, NR_ISOLATED_ANON);
1150 }
1151
1152 return isolated > inactive;
1153}
1154
1155/*
Mel Gorman66635622010-08-09 17:19:30 -07001156 * TODO: Try merging with migrations version of putback_lru_pages
1157 */
1158static noinline_for_stack void
Mel Gorman1489fa12010-08-09 17:19:33 -07001159putback_lru_pages(struct zone *zone, struct scan_control *sc,
Mel Gorman66635622010-08-09 17:19:30 -07001160 unsigned long nr_anon, unsigned long nr_file,
1161 struct list_head *page_list)
1162{
1163 struct page *page;
1164 struct pagevec pvec;
Mel Gorman1489fa12010-08-09 17:19:33 -07001165 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Mel Gorman66635622010-08-09 17:19:30 -07001166
1167 pagevec_init(&pvec, 1);
1168
1169 /*
1170 * Put back any unfreeable pages.
1171 */
1172 spin_lock(&zone->lru_lock);
1173 while (!list_empty(page_list)) {
1174 int lru;
1175 page = lru_to_page(page_list);
1176 VM_BUG_ON(PageLRU(page));
1177 list_del(&page->lru);
1178 if (unlikely(!page_evictable(page, NULL))) {
1179 spin_unlock_irq(&zone->lru_lock);
1180 putback_lru_page(page);
1181 spin_lock_irq(&zone->lru_lock);
1182 continue;
1183 }
1184 SetPageLRU(page);
1185 lru = page_lru(page);
1186 add_page_to_lru_list(zone, page, lru);
1187 if (is_active_lru(lru)) {
1188 int file = is_file_lru(lru);
1189 reclaim_stat->recent_rotated[file]++;
1190 }
1191 if (!pagevec_add(&pvec, page)) {
1192 spin_unlock_irq(&zone->lru_lock);
1193 __pagevec_release(&pvec);
1194 spin_lock_irq(&zone->lru_lock);
1195 }
1196 }
1197 __mod_zone_page_state(zone, NR_ISOLATED_ANON, -nr_anon);
1198 __mod_zone_page_state(zone, NR_ISOLATED_FILE, -nr_file);
1199
1200 spin_unlock_irq(&zone->lru_lock);
1201 pagevec_release(&pvec);
1202}
1203
Mel Gorman1489fa12010-08-09 17:19:33 -07001204static noinline_for_stack void update_isolated_counts(struct zone *zone,
1205 struct scan_control *sc,
1206 unsigned long *nr_anon,
1207 unsigned long *nr_file,
1208 struct list_head *isolated_list)
1209{
1210 unsigned long nr_active;
1211 unsigned int count[NR_LRU_LISTS] = { 0, };
1212 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
1213
1214 nr_active = clear_active_flags(isolated_list, count);
1215 __count_vm_events(PGDEACTIVATE, nr_active);
1216
1217 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1218 -count[LRU_ACTIVE_FILE]);
1219 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1220 -count[LRU_INACTIVE_FILE]);
1221 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1222 -count[LRU_ACTIVE_ANON]);
1223 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1224 -count[LRU_INACTIVE_ANON]);
1225
1226 *nr_anon = count[LRU_ACTIVE_ANON] + count[LRU_INACTIVE_ANON];
1227 *nr_file = count[LRU_ACTIVE_FILE] + count[LRU_INACTIVE_FILE];
1228 __mod_zone_page_state(zone, NR_ISOLATED_ANON, *nr_anon);
1229 __mod_zone_page_state(zone, NR_ISOLATED_FILE, *nr_file);
1230
1231 reclaim_stat->recent_scanned[0] += *nr_anon;
1232 reclaim_stat->recent_scanned[1] += *nr_file;
1233}
1234
Mel Gorman66635622010-08-09 17:19:30 -07001235/*
Wu Fengguange31f36982010-08-09 17:20:01 -07001236 * Returns true if the caller should wait to clean dirty/writeback pages.
1237 *
1238 * If we are direct reclaiming for contiguous pages and we do not reclaim
1239 * everything in the list, try again and wait for writeback IO to complete.
1240 * This will stall high-order allocations noticeably. Only do that when really
1241 * need to free the pages under high memory pressure.
1242 */
1243static inline bool should_reclaim_stall(unsigned long nr_taken,
1244 unsigned long nr_freed,
1245 int priority,
1246 struct scan_control *sc)
1247{
1248 int lumpy_stall_priority;
1249
1250 /* kswapd should not stall on sync IO */
1251 if (current_is_kswapd())
1252 return false;
1253
1254 /* Only stall on lumpy reclaim */
1255 if (!sc->lumpy_reclaim_mode)
1256 return false;
1257
1258 /* If we have relaimed everything on the isolated list, no stall */
1259 if (nr_freed == nr_taken)
1260 return false;
1261
1262 /*
1263 * For high-order allocations, there are two stall thresholds.
1264 * High-cost allocations stall immediately where as lower
1265 * order allocations such as stacks require the scanning
1266 * priority to be much higher before stalling.
1267 */
1268 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1269 lumpy_stall_priority = DEF_PRIORITY;
1270 else
1271 lumpy_stall_priority = DEF_PRIORITY / 3;
1272
1273 return priority <= lumpy_stall_priority;
1274}
1275
1276/*
Andrew Morton1742f192006-03-22 00:08:21 -08001277 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1278 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 */
Mel Gorman66635622010-08-09 17:19:30 -07001280static noinline_for_stack unsigned long
1281shrink_inactive_list(unsigned long nr_to_scan, struct zone *zone,
1282 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 LIST_HEAD(page_list);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001285 unsigned long nr_scanned;
Andrew Morton05ff5132006-03-22 00:08:20 -08001286 unsigned long nr_reclaimed = 0;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001287 unsigned long nr_taken;
1288 unsigned long nr_active;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001289 unsigned long nr_anon;
1290 unsigned long nr_file;
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001291
Rik van Riel35cd7812009-09-21 17:01:38 -07001292 while (unlikely(too_many_isolated(zone, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001293 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001294
1295 /* We are about to die and free our memory. Return now. */
1296 if (fatal_signal_pending(current))
1297 return SWAP_CLUSTER_MAX;
1298 }
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 lru_add_drain();
1302 spin_lock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001304 if (scanning_global_lru(sc)) {
1305 nr_taken = isolate_pages_global(nr_to_scan,
1306 &page_list, &nr_scanned, sc->order,
1307 sc->lumpy_reclaim_mode ?
1308 ISOLATE_BOTH : ISOLATE_INACTIVE,
1309 zone, 0, file);
1310 zone->pages_scanned += nr_scanned;
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001311 if (current_is_kswapd())
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001312 __count_zone_vm_events(PGSCAN_KSWAPD, zone,
1313 nr_scanned);
1314 else
1315 __count_zone_vm_events(PGSCAN_DIRECT, zone,
1316 nr_scanned);
1317 } else {
1318 nr_taken = mem_cgroup_isolate_pages(nr_to_scan,
1319 &page_list, &nr_scanned, sc->order,
1320 sc->lumpy_reclaim_mode ?
1321 ISOLATE_BOTH : ISOLATE_INACTIVE,
1322 zone, sc->mem_cgroup,
1323 0, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 /*
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001325 * mem_cgroup_isolate_pages() keeps track of
1326 * scanned pages on its own.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001328 }
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001329
Mel Gorman66635622010-08-09 17:19:30 -07001330 if (nr_taken == 0) {
1331 spin_unlock_irq(&zone->lru_lock);
1332 return 0;
1333 }
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001334
Mel Gorman1489fa12010-08-09 17:19:33 -07001335 update_isolated_counts(zone, sc, &nr_anon, &nr_file, &page_list);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001336
1337 spin_unlock_irq(&zone->lru_lock);
1338
1339 nr_reclaimed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1340
Wu Fengguange31f36982010-08-09 17:20:01 -07001341 /* Check if we should syncronously wait for writeback */
1342 if (should_reclaim_stall(nr_taken, nr_reclaimed, priority, sc)) {
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001343 congestion_wait(BLK_RW_ASYNC, HZ/10);
1344
1345 /*
1346 * The attempt at page out may have made some
1347 * of the pages active, mark them inactive again.
1348 */
Mel Gorman1489fa12010-08-09 17:19:33 -07001349 nr_active = clear_active_flags(&page_list, NULL);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001350 count_vm_events(PGDEACTIVATE, nr_active);
1351
1352 nr_reclaimed += shrink_page_list(&page_list, sc, PAGEOUT_IO_SYNC);
1353 }
1354
1355 local_irq_disable();
1356 if (current_is_kswapd())
1357 __count_vm_events(KSWAPD_STEAL, nr_reclaimed);
1358 __count_zone_vm_events(PGSTEAL, zone, nr_reclaimed);
1359
Mel Gorman1489fa12010-08-09 17:19:33 -07001360 putback_lru_pages(zone, sc, nr_anon, nr_file, &page_list);
Mel Gormane11da5b2010-10-26 14:21:40 -07001361
1362 trace_mm_vmscan_lru_shrink_inactive(zone->zone_pgdat->node_id,
1363 zone_idx(zone),
1364 nr_scanned, nr_reclaimed,
1365 priority,
1366 trace_shrink_flags(file, sc->lumpy_reclaim_mode));
Andrew Morton05ff5132006-03-22 00:08:20 -08001367 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Martin Bligh3bb1a852006-10-28 10:38:24 -07001370/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * This moves pages from the active list to the inactive list.
1372 *
1373 * We move them the other way if the page is referenced by one or more
1374 * processes, from rmap.
1375 *
1376 * If the pages are mostly unmapped, the processing is fast and it is
1377 * appropriate to hold zone->lru_lock across the whole operation. But if
1378 * the pages are mapped, the processing is slow (page_referenced()) so we
1379 * should drop zone->lru_lock around each page. It's impossible to balance
1380 * this, so instead we remove the pages from the LRU while processing them.
1381 * It is safe to rely on PG_active against the non-LRU pages in here because
1382 * nobody will play with that bit on a non-LRU page.
1383 *
1384 * The downside is that we have to touch page->_count against each page.
1385 * But we had to alter page->flags anyway.
1386 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001387
Wu Fengguang3eb41402009-06-16 15:33:13 -07001388static void move_active_pages_to_lru(struct zone *zone,
1389 struct list_head *list,
1390 enum lru_list lru)
1391{
1392 unsigned long pgmoved = 0;
1393 struct pagevec pvec;
1394 struct page *page;
1395
1396 pagevec_init(&pvec, 1);
1397
1398 while (!list_empty(list)) {
1399 page = lru_to_page(list);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001400
1401 VM_BUG_ON(PageLRU(page));
1402 SetPageLRU(page);
1403
Wu Fengguang3eb41402009-06-16 15:33:13 -07001404 list_move(&page->lru, &zone->lru[lru].list);
1405 mem_cgroup_add_lru_list(page, lru);
1406 pgmoved++;
1407
1408 if (!pagevec_add(&pvec, page) || list_empty(list)) {
1409 spin_unlock_irq(&zone->lru_lock);
1410 if (buffer_heads_over_limit)
1411 pagevec_strip(&pvec);
1412 __pagevec_release(&pvec);
1413 spin_lock_irq(&zone->lru_lock);
1414 }
1415 }
1416 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1417 if (!is_active_lru(lru))
1418 __count_vm_events(PGDEACTIVATE, pgmoved);
1419}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001420
Andrew Morton1742f192006-03-22 00:08:21 -08001421static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001422 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001424 unsigned long nr_taken;
Andrew Morton69e05942006-03-22 00:08:19 -08001425 unsigned long pgscanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001426 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001428 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001429 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 struct page *page;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001431 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001432 unsigned long nr_rotated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 lru_add_drain();
1435 spin_lock_irq(&zone->lru_lock);
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001436 if (scanning_global_lru(sc)) {
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001437 nr_taken = isolate_pages_global(nr_pages, &l_hold,
1438 &pgscanned, sc->order,
1439 ISOLATE_ACTIVE, zone,
1440 1, file);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001441 zone->pages_scanned += pgscanned;
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001442 } else {
1443 nr_taken = mem_cgroup_isolate_pages(nr_pages, &l_hold,
1444 &pgscanned, sc->order,
1445 ISOLATE_ACTIVE, zone,
1446 sc->mem_cgroup, 1, file);
1447 /*
1448 * mem_cgroup_isolate_pages() keeps track of
1449 * scanned pages on its own.
1450 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001451 }
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001452
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001453 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001454
Wu Fengguang3eb41402009-06-16 15:33:13 -07001455 __count_zone_vm_events(PGREFILL, zone, pgscanned);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001456 if (file)
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001457 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001458 else
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001459 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001460 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 spin_unlock_irq(&zone->lru_lock);
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 while (!list_empty(&l_hold)) {
1464 cond_resched();
1465 page = lru_to_page(&l_hold);
1466 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001467
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001468 if (unlikely(!page_evictable(page, NULL))) {
1469 putback_lru_page(page);
1470 continue;
1471 }
1472
Johannes Weiner64574742010-03-05 13:42:22 -08001473 if (page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) {
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001474 nr_rotated++;
Wu Fengguang8cab4752009-06-16 15:33:12 -07001475 /*
1476 * Identify referenced, file-backed active pages and
1477 * give them one more trip around the active list. So
1478 * that executable code get better chances to stay in
1479 * memory under moderate memory pressure. Anon pages
1480 * are not likely to be evicted by use-once streaming
1481 * IO, plus JVM can create lots of anon VM_EXEC pages,
1482 * so we ignore them here.
1483 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001484 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001485 list_add(&page->lru, &l_active);
1486 continue;
1487 }
1488 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001489
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001490 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 list_add(&page->lru, &l_inactive);
1492 }
1493
Andrew Mortonb5557492009-01-06 14:40:13 -08001494 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001495 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001496 */
Johannes Weiner2a1dc502008-12-01 03:00:35 +01001497 spin_lock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001498 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001499 * Count referenced pages from currently used mappings as rotated,
1500 * even though only some of them are actually re-activated. This
1501 * helps balance scan pressure between file and anonymous pages in
1502 * get_scan_ratio.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001503 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001504 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001505
Wu Fengguang3eb41402009-06-16 15:33:13 -07001506 move_active_pages_to_lru(zone, &l_active,
1507 LRU_ACTIVE + file * LRU_FILE);
1508 move_active_pages_to_lru(zone, &l_inactive,
1509 LRU_BASE + file * LRU_FILE);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001510 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001511 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001514#ifdef CONFIG_SWAP
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001515static int inactive_anon_is_low_global(struct zone *zone)
KOSAKI Motohirof89eb902009-01-07 18:08:14 -08001516{
1517 unsigned long active, inactive;
1518
1519 active = zone_page_state(zone, NR_ACTIVE_ANON);
1520 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1521
1522 if (inactive * zone->inactive_ratio < active)
1523 return 1;
1524
1525 return 0;
1526}
1527
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001528/**
1529 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1530 * @zone: zone to check
1531 * @sc: scan control of this context
1532 *
1533 * Returns true if the zone does not have enough inactive anon pages,
1534 * meaning some active anon pages need to be deactivated.
1535 */
1536static int inactive_anon_is_low(struct zone *zone, struct scan_control *sc)
1537{
1538 int low;
1539
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001540 /*
1541 * If we don't have swap space, anonymous page deactivation
1542 * is pointless.
1543 */
1544 if (!total_swap_pages)
1545 return 0;
1546
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001547 if (scanning_global_lru(sc))
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001548 low = inactive_anon_is_low_global(zone);
1549 else
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001550 low = mem_cgroup_inactive_anon_is_low(sc->mem_cgroup);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001551 return low;
1552}
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001553#else
1554static inline int inactive_anon_is_low(struct zone *zone,
1555 struct scan_control *sc)
1556{
1557 return 0;
1558}
1559#endif
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001560
Rik van Riel56e49d22009-06-16 15:32:28 -07001561static int inactive_file_is_low_global(struct zone *zone)
1562{
1563 unsigned long active, inactive;
1564
1565 active = zone_page_state(zone, NR_ACTIVE_FILE);
1566 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1567
1568 return (active > inactive);
1569}
1570
1571/**
1572 * inactive_file_is_low - check if file pages need to be deactivated
1573 * @zone: zone to check
1574 * @sc: scan control of this context
1575 *
1576 * When the system is doing streaming IO, memory pressure here
1577 * ensures that active file pages get deactivated, until more
1578 * than half of the file pages are on the inactive list.
1579 *
1580 * Once we get to that situation, protect the system's working
1581 * set from being evicted by disabling active file page aging.
1582 *
1583 * This uses a different ratio than the anonymous pages, because
1584 * the page cache uses a use-once replacement algorithm.
1585 */
1586static int inactive_file_is_low(struct zone *zone, struct scan_control *sc)
1587{
1588 int low;
1589
1590 if (scanning_global_lru(sc))
1591 low = inactive_file_is_low_global(zone);
1592 else
1593 low = mem_cgroup_inactive_file_is_low(sc->mem_cgroup);
1594 return low;
1595}
1596
Rik van Rielb39415b2009-12-14 17:59:48 -08001597static int inactive_list_is_low(struct zone *zone, struct scan_control *sc,
1598 int file)
1599{
1600 if (file)
1601 return inactive_file_is_low(zone, sc);
1602 else
1603 return inactive_anon_is_low(zone, sc);
1604}
1605
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001606static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Christoph Lameterb69408e2008-10-18 20:26:14 -07001607 struct zone *zone, struct scan_control *sc, int priority)
1608{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001609 int file = is_file_lru(lru);
1610
Rik van Rielb39415b2009-12-14 17:59:48 -08001611 if (is_active_lru(lru)) {
1612 if (inactive_list_is_low(zone, sc, file))
1613 shrink_active_list(nr_to_scan, zone, sc, priority, file);
Rik van Riel556adec2008-10-18 20:26:34 -07001614 return 0;
1615 }
1616
Rik van Riel33c120e2008-10-18 20:26:36 -07001617 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001618}
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620/*
Shaohua Li76a33fc2010-05-24 14:32:36 -07001621 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1622 * until we collected @swap_cluster_max pages to scan.
1623 */
1624static unsigned long nr_scan_try_batch(unsigned long nr_to_scan,
1625 unsigned long *nr_saved_scan)
1626{
1627 unsigned long nr;
1628
1629 *nr_saved_scan += nr_to_scan;
1630 nr = *nr_saved_scan;
1631
1632 if (nr >= SWAP_CLUSTER_MAX)
1633 *nr_saved_scan = 0;
1634 else
1635 nr = 0;
1636
1637 return nr;
1638}
1639
1640/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001641 * Determine how aggressively the anon and file LRU lists should be
1642 * scanned. The relative value of each set of LRU lists is determined
1643 * by looking at the fraction of the pages scanned we did rotate back
1644 * onto the active list instead of evict.
1645 *
Shaohua Li76a33fc2010-05-24 14:32:36 -07001646 * nr[0] = anon pages to scan; nr[1] = file pages to scan
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001647 */
Shaohua Li76a33fc2010-05-24 14:32:36 -07001648static void get_scan_count(struct zone *zone, struct scan_control *sc,
1649 unsigned long *nr, int priority)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001650{
1651 unsigned long anon, file, free;
1652 unsigned long anon_prio, file_prio;
1653 unsigned long ap, fp;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001654 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Shaohua Li76a33fc2010-05-24 14:32:36 -07001655 u64 fraction[2], denominator;
1656 enum lru_list l;
1657 int noswap = 0;
1658
1659 /* If we have no swap space, do not bother scanning anon pages. */
1660 if (!sc->may_swap || (nr_swap_pages <= 0)) {
1661 noswap = 1;
1662 fraction[0] = 0;
1663 fraction[1] = 1;
1664 denominator = 1;
1665 goto out;
1666 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001667
Vincent Li0b217672009-09-21 17:03:09 -07001668 anon = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_ANON) +
1669 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_ANON);
1670 file = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_FILE) +
1671 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_FILE);
Hugh Dickinsb9627162009-01-06 14:39:41 -08001672
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001673 if (scanning_global_lru(sc)) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001674 free = zone_page_state(zone, NR_FREE_PAGES);
1675 /* If we have very few page cache pages,
1676 force-scan anon pages. */
Mel Gorman41858962009-06-16 15:32:12 -07001677 if (unlikely(file + free <= high_wmark_pages(zone))) {
Shaohua Li76a33fc2010-05-24 14:32:36 -07001678 fraction[0] = 1;
1679 fraction[1] = 0;
1680 denominator = 1;
1681 goto out;
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001682 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001683 }
1684
1685 /*
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07001686 * With swappiness at 100, anonymous and file have the same priority.
1687 * This scanning priority is essentially the inverse of IO cost.
1688 */
1689 anon_prio = sc->swappiness;
1690 file_prio = 200 - sc->swappiness;
1691
1692 /*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001693 * OK, so we have swap space and a fair amount of page cache
1694 * pages. We use the recently rotated / recently scanned
1695 * ratios to determine how valuable each cache is.
1696 *
1697 * Because workloads change over time (and to avoid overflow)
1698 * we keep these statistics as a floating average, which ends
1699 * up weighing recent references more than old ones.
1700 *
1701 * anon in [0], file in [1]
1702 */
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07001703 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001704 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001705 reclaim_stat->recent_scanned[0] /= 2;
1706 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001707 }
1708
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001709 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001710 reclaim_stat->recent_scanned[1] /= 2;
1711 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001712 }
1713
1714 /*
Rik van Riel00d80892008-11-19 15:36:44 -08001715 * The amount of pressure on anon vs file pages is inversely
1716 * proportional to the fraction of recently scanned pages on
1717 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001718 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001719 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1720 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001721
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001722 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1723 fp /= reclaim_stat->recent_rotated[1] + 1;
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07001724 spin_unlock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001725
Shaohua Li76a33fc2010-05-24 14:32:36 -07001726 fraction[0] = ap;
1727 fraction[1] = fp;
1728 denominator = ap + fp + 1;
1729out:
1730 for_each_evictable_lru(l) {
1731 int file = is_file_lru(l);
1732 unsigned long scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001733
Shaohua Li76a33fc2010-05-24 14:32:36 -07001734 scan = zone_nr_lru_pages(zone, sc, l);
1735 if (priority || noswap) {
1736 scan >>= priority;
1737 scan = div64_u64(scan * fraction[file], denominator);
1738 }
1739 nr[l] = nr_scan_try_batch(scan,
1740 &reclaim_stat->nr_saved_scan[l]);
1741 }
Wu Fengguang6e08a362009-06-16 15:32:29 -07001742}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001743
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001744static void set_lumpy_reclaim_mode(int priority, struct scan_control *sc)
1745{
1746 /*
1747 * If we need a large contiguous chunk of memory, or have
1748 * trouble getting a small set of contiguous pages, we
1749 * will reclaim both active and inactive pages.
1750 */
1751 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1752 sc->lumpy_reclaim_mode = 1;
1753 else if (sc->order && priority < DEF_PRIORITY - 2)
1754 sc->lumpy_reclaim_mode = 1;
1755 else
1756 sc->lumpy_reclaim_mode = 0;
1757}
1758
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001759/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1761 */
Rik van Riela79311c2009-01-06 14:40:01 -08001762static void shrink_zone(int priority, struct zone *zone,
Andrew Morton05ff5132006-03-22 00:08:20 -08001763 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
Christoph Lameterb69408e2008-10-18 20:26:14 -07001765 unsigned long nr[NR_LRU_LISTS];
Christoph Lameter86959492006-03-22 00:08:18 -08001766 unsigned long nr_to_scan;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001767 enum lru_list l;
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001768 unsigned long nr_reclaimed = sc->nr_reclaimed;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001769 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Shaohua Li76a33fc2010-05-24 14:32:36 -07001771 get_scan_count(zone, sc, nr, priority);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001772
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001773 set_lumpy_reclaim_mode(priority, sc);
1774
Rik van Riel556adec2008-10-18 20:26:34 -07001775 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1776 nr[LRU_INACTIVE_FILE]) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001777 for_each_evictable_lru(l) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001778 if (nr[l]) {
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001779 nr_to_scan = min_t(unsigned long,
1780 nr[l], SWAP_CLUSTER_MAX);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001781 nr[l] -= nr_to_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001783 nr_reclaimed += shrink_list(l, nr_to_scan,
1784 zone, sc, priority);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
Rik van Riela79311c2009-01-06 14:40:01 -08001787 /*
1788 * On large memory systems, scan >> priority can become
1789 * really large. This is fine for the starting priority;
1790 * we want to put equal scanning pressure on each zone.
1791 * However, if the VM has a harder time of freeing pages,
1792 * with multiple processes reclaiming pages, the total
1793 * freeing target can get unreasonably large.
1794 */
KOSAKI Motohiro338fde92009-12-14 17:59:15 -08001795 if (nr_reclaimed >= nr_to_reclaim && priority < DEF_PRIORITY)
Rik van Riela79311c2009-01-06 14:40:01 -08001796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001799 sc->nr_reclaimed = nr_reclaimed;
1800
Rik van Riel556adec2008-10-18 20:26:34 -07001801 /*
1802 * Even if we did not try to evict anon pages at all, we want to
1803 * rebalance the anon lru active/inactive ratio.
1804 */
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001805 if (inactive_anon_is_low(zone, sc))
Rik van Riel556adec2008-10-18 20:26:34 -07001806 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1807
Andrew Morton232ea4d2007-02-28 20:13:21 -08001808 throttle_vm_writeout(sc->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
1811/*
1812 * This is the direct reclaim path, for page-allocating processes. We only
1813 * try to reclaim pages from zones which will satisfy the caller's allocation
1814 * request.
1815 *
Mel Gorman41858962009-06-16 15:32:12 -07001816 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1817 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1819 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07001820 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1821 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1822 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 * If a zone is deemed to be full of pinned pages then just give it a light
1825 * scan then give up on it.
1826 */
Minchan Kimd1908362010-09-22 13:05:01 -07001827static void shrink_zones(int priority, struct zonelist *zonelist,
Andrew Morton05ff5132006-03-22 00:08:20 -08001828 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Mel Gormandd1a2392008-04-28 02:12:17 -07001830 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001831 struct zone *zone;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001832
Mel Gormand4debc62010-08-09 17:19:29 -07001833 for_each_zone_zonelist_nodemask(zone, z, zonelist,
1834 gfp_zone(sc->gfp_mask), sc->nodemask) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08001835 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 continue;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001837 /*
1838 * Take care memory controller reclaiming has small influence
1839 * to global LRU.
1840 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001841 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001842 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1843 continue;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08001844 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001845 continue; /* Let kswapd poll it */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001846 }
Nick Piggin408d8542006-09-25 23:31:27 -07001847
Rik van Riela79311c2009-01-06 14:40:01 -08001848 shrink_zone(priority, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
Minchan Kimd1908362010-09-22 13:05:01 -07001850}
1851
1852static bool zone_reclaimable(struct zone *zone)
1853{
1854 return zone->pages_scanned < zone_reclaimable_pages(zone) * 6;
1855}
1856
1857/*
1858 * As hibernation is going on, kswapd is freezed so that it can't mark
1859 * the zone into all_unreclaimable. It can't handle OOM during hibernation.
1860 * So let's check zone's unreclaimable in direct reclaim as well as kswapd.
1861 */
1862static bool all_unreclaimable(struct zonelist *zonelist,
1863 struct scan_control *sc)
1864{
1865 struct zoneref *z;
1866 struct zone *zone;
1867 bool all_unreclaimable = true;
1868
1869 for_each_zone_zonelist_nodemask(zone, z, zonelist,
1870 gfp_zone(sc->gfp_mask), sc->nodemask) {
1871 if (!populated_zone(zone))
1872 continue;
1873 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1874 continue;
1875 if (zone_reclaimable(zone)) {
1876 all_unreclaimable = false;
1877 break;
1878 }
1879 }
1880
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001881 return all_unreclaimable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/*
1885 * This is the main entry point to direct page reclaim.
1886 *
1887 * If a full scan of the inactive list fails to free enough memory then we
1888 * are "out of memory" and something needs to be killed.
1889 *
1890 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1891 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02001892 * caller can't do much about. We kick the writeback threads and take explicit
1893 * naps in the hope that some of these pages can be written. But if the
1894 * allocating task holds filesystem locks which prevent writeout this might not
1895 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07001896 *
1897 * returns: 0, if no pages reclaimed
1898 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 */
Mel Gormandac1d272008-04-28 02:12:12 -07001900static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Mel Gormandd1a2392008-04-28 02:12:17 -07001901 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
1903 int priority;
Andrew Morton69e05942006-03-22 00:08:19 -08001904 unsigned long total_scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 struct reclaim_state *reclaim_state = current->reclaim_state;
Mel Gormandd1a2392008-04-28 02:12:17 -07001906 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001907 struct zone *zone;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001908 unsigned long writeback_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Miao Xiec0ff7452010-05-24 14:32:08 -07001910 get_mems_allowed();
Keika Kobayashi873b4772008-07-25 01:48:52 -07001911 delayacct_freepages_start();
1912
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001913 if (scanning_global_lru(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001914 count_vm_event(ALLOCSTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Balbir Singh66e17072008-02-07 00:13:56 -08001917 sc->nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001918 if (!priority)
1919 disable_swap_token();
Minchan Kimd1908362010-09-22 13:05:01 -07001920 shrink_zones(priority, zonelist, sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001921 /*
1922 * Don't shrink slabs when reclaiming memory from
1923 * over limit cgroups
1924 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001925 if (scanning_global_lru(sc)) {
KOSAKI Motohiroc6a8a8c2010-08-09 17:19:14 -07001926 unsigned long lru_pages = 0;
Mel Gormand4debc62010-08-09 17:19:29 -07001927 for_each_zone_zonelist(zone, z, zonelist,
1928 gfp_zone(sc->gfp_mask)) {
KOSAKI Motohiroc6a8a8c2010-08-09 17:19:14 -07001929 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1930 continue;
1931
1932 lru_pages += zone_reclaimable_pages(zone);
1933 }
1934
Mel Gormandd1a2392008-04-28 02:12:17 -07001935 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001936 if (reclaim_state) {
Rik van Riela79311c2009-01-06 14:40:01 -08001937 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001938 reclaim_state->reclaimed_slab = 0;
1939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
Balbir Singh66e17072008-02-07 00:13:56 -08001941 total_scanned += sc->nr_scanned;
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001942 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /*
1946 * Try to write back as many pages as we just scanned. This
1947 * tends to cause slow streaming writers to write data to the
1948 * disk smoothly, at the dirtying rate, which is nice. But
1949 * that's undesirable in laptop mode, where we *want* lumpy
1950 * writeout. So in laptop mode, write out the whole world.
1951 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001952 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
1953 if (total_scanned > writeback_threshold) {
Jens Axboe03ba3782009-09-09 09:08:54 +02001954 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned);
Balbir Singh66e17072008-02-07 00:13:56 -08001955 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957
1958 /* Take a nap, wait for some writeback to complete */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08001959 if (!sc->hibernation_mode && sc->nr_scanned &&
1960 priority < DEF_PRIORITY - 2)
Jens Axboe8aa7e842009-07-09 14:52:32 +02001961 congestion_wait(BLK_RW_ASYNC, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964out:
Keika Kobayashi873b4772008-07-25 01:48:52 -07001965 delayacct_freepages_end();
Miao Xiec0ff7452010-05-24 14:32:08 -07001966 put_mems_allowed();
Keika Kobayashi873b4772008-07-25 01:48:52 -07001967
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001968 if (sc->nr_reclaimed)
1969 return sc->nr_reclaimed;
1970
1971 /* top priority shrink_zones still had more to do? don't OOM, then */
Minchan Kimd1908362010-09-22 13:05:01 -07001972 if (scanning_global_lru(sc) && !all_unreclaimable(zonelist, sc))
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001973 return 1;
1974
1975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Mel Gormandac1d272008-04-28 02:12:12 -07001978unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001979 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08001980{
Mel Gorman33906bc2010-08-09 17:19:16 -07001981 unsigned long nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08001982 struct scan_control sc = {
1983 .gfp_mask = gfp_mask,
1984 .may_writepage = !laptop_mode,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001985 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001986 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001987 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08001988 .swappiness = vm_swappiness,
1989 .order = order,
1990 .mem_cgroup = NULL,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001991 .nodemask = nodemask,
Balbir Singh66e17072008-02-07 00:13:56 -08001992 };
1993
Mel Gorman33906bc2010-08-09 17:19:16 -07001994 trace_mm_vmscan_direct_reclaim_begin(order,
1995 sc.may_writepage,
1996 gfp_mask);
1997
1998 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
1999
2000 trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
2001
2002 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002003}
2004
Balbir Singh00f0b822008-03-04 14:28:39 -08002005#ifdef CONFIG_CGROUP_MEM_RES_CTLR
Balbir Singh66e17072008-02-07 00:13:56 -08002006
Balbir Singh4e416952009-09-23 15:56:39 -07002007unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
2008 gfp_t gfp_mask, bool noswap,
2009 unsigned int swappiness,
KOSAKI Motohiro14fec792010-08-10 18:03:05 -07002010 struct zone *zone)
Balbir Singh4e416952009-09-23 15:56:39 -07002011{
2012 struct scan_control sc = {
KOSAKI Motohirob8f5c562010-08-10 18:03:02 -07002013 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Balbir Singh4e416952009-09-23 15:56:39 -07002014 .may_writepage = !laptop_mode,
2015 .may_unmap = 1,
2016 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07002017 .swappiness = swappiness,
2018 .order = 0,
2019 .mem_cgroup = mem,
Balbir Singh4e416952009-09-23 15:56:39 -07002020 };
Balbir Singh4e416952009-09-23 15:56:39 -07002021 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
2022 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002023
2024 trace_mm_vmscan_memcg_softlimit_reclaim_begin(0,
2025 sc.may_writepage,
2026 sc.gfp_mask);
2027
Balbir Singh4e416952009-09-23 15:56:39 -07002028 /*
2029 * NOTE: Although we can get the priority field, using it
2030 * here is not a good idea, since it limits the pages we can scan.
2031 * if we don't reclaim here, the shrink_zone from balance_pgdat
2032 * will pick up pages from other mem cgroup's as well. We hack
2033 * the priority and make it zero.
2034 */
2035 shrink_zone(0, zone, &sc);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002036
2037 trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
2038
Balbir Singh4e416952009-09-23 15:56:39 -07002039 return sc.nr_reclaimed;
2040}
2041
Balbir Singhe1a1cd52008-02-07 00:14:02 -08002042unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002043 gfp_t gfp_mask,
2044 bool noswap,
2045 unsigned int swappiness)
Balbir Singh66e17072008-02-07 00:13:56 -08002046{
Balbir Singh4e416952009-09-23 15:56:39 -07002047 struct zonelist *zonelist;
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002048 unsigned long nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002049 struct scan_control sc = {
Balbir Singh66e17072008-02-07 00:13:56 -08002050 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002051 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002052 .may_swap = !noswap,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002053 .nr_to_reclaim = SWAP_CLUSTER_MAX,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002054 .swappiness = swappiness,
Balbir Singh66e17072008-02-07 00:13:56 -08002055 .order = 0,
2056 .mem_cgroup = mem_cont,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07002057 .nodemask = NULL, /* we don't care the placement */
Balbir Singh66e17072008-02-07 00:13:56 -08002058 };
Balbir Singh66e17072008-02-07 00:13:56 -08002059
Mel Gormandd1a2392008-04-28 02:12:17 -07002060 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
2061 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
2062 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002063
2064 trace_mm_vmscan_memcg_reclaim_begin(0,
2065 sc.may_writepage,
2066 sc.gfp_mask);
2067
2068 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
2069
2070 trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
2071
2072 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002073}
2074#endif
2075
Mel Gormanf50de2d2009-12-14 17:58:53 -08002076/* is kswapd sleeping prematurely? */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002077static int sleeping_prematurely(pg_data_t *pgdat, int order, long remaining)
Mel Gormanf50de2d2009-12-14 17:58:53 -08002078{
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002079 int i;
Mel Gormanf50de2d2009-12-14 17:58:53 -08002080
2081 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
2082 if (remaining)
2083 return 1;
2084
2085 /* If after HZ/10, a zone is below the high mark, it's premature */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002086 for (i = 0; i < pgdat->nr_zones; i++) {
2087 struct zone *zone = pgdat->node_zones + i;
2088
2089 if (!populated_zone(zone))
2090 continue;
2091
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002092 if (zone->all_unreclaimable)
KOSAKI Motohirode3fab32010-01-15 17:01:25 -08002093 continue;
2094
Mel Gormanf50de2d2009-12-14 17:58:53 -08002095 if (!zone_watermark_ok(zone, order, high_wmark_pages(zone),
2096 0, 0))
2097 return 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002098 }
Mel Gormanf50de2d2009-12-14 17:58:53 -08002099
2100 return 0;
2101}
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103/*
2104 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07002105 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * Returns the number of pages which were actually freed.
2108 *
2109 * There is special handling here for zones which are full of pinned pages.
2110 * This can happen if the pages are all mlocked, or if they are all used by
2111 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
2112 * What we do is to detect the case where all pages in the zone have been
2113 * scanned twice and there has been zero successful reclaim. Mark the zone as
2114 * dead and from now on, only perform a short scan. Basically we're polling
2115 * the zone for when the problem goes away.
2116 *
2117 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07002118 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
2119 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
2120 * lower zones regardless of the number of free pages in the lower zones. This
2121 * interoperates with the page allocator fallback scheme to ensure that aging
2122 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002124static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 int all_zones_ok;
2127 int priority;
2128 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08002129 unsigned long total_scanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08002131 struct scan_control sc = {
2132 .gfp_mask = GFP_KERNEL,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002133 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002134 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002135 /*
2136 * kswapd doesn't want to be bailed out while reclaim. because
2137 * we want to put equal scanning pressure on each zone.
2138 */
2139 .nr_to_reclaim = ULONG_MAX,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002140 .swappiness = vm_swappiness,
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07002141 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002142 .mem_cgroup = NULL,
Andrew Morton179e9632006-03-22 00:08:18 -08002143 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144loop_again:
2145 total_scanned = 0;
Rik van Riela79311c2009-01-06 14:40:01 -08002146 sc.nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07002147 sc.may_writepage = !laptop_mode;
Christoph Lameterf8891e52006-06-30 01:55:45 -07002148 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
2151 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
2152 unsigned long lru_pages = 0;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002153 int has_under_min_watermark_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Rik van Rielf7b7fd82005-11-28 13:44:07 -08002155 /* The swap token gets in the way of swapout... */
2156 if (!priority)
2157 disable_swap_token();
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 all_zones_ok = 1;
2160
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002161 /*
2162 * Scan in the highmem->dma direction for the highest
2163 * zone which needs scanning
2164 */
2165 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
2166 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002168 if (!populated_zone(zone))
2169 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002171 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002172 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Rik van Riel556adec2008-10-18 20:26:34 -07002174 /*
2175 * Do some background aging of the anon list, to give
2176 * pages a chance to be referenced before reclaiming.
2177 */
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002178 if (inactive_anon_is_low(zone, &sc))
Rik van Riel556adec2008-10-18 20:26:34 -07002179 shrink_active_list(SWAP_CLUSTER_MAX, zone,
2180 &sc, priority, 0);
2181
Mel Gorman41858962009-06-16 15:32:12 -07002182 if (!zone_watermark_ok(zone, order,
2183 high_wmark_pages(zone), 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002184 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002188 if (i < 0)
2189 goto out;
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 for (i = 0; i <= end_zone; i++) {
2192 struct zone *zone = pgdat->node_zones + i;
2193
Wu Fengguangadea02a2009-09-21 17:01:42 -07002194 lru_pages += zone_reclaimable_pages(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196
2197 /*
2198 * Now scan the zone in the dma->highmem direction, stopping
2199 * at the last zone which needs scanning.
2200 *
2201 * We do this because the page allocator works in the opposite
2202 * direction. This prevents the page allocator from allocating
2203 * pages behind kswapd's direction of progress, which would
2204 * cause too much scanning of the lower zones.
2205 */
2206 for (i = 0; i <= end_zone; i++) {
2207 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002208 int nr_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Con Kolivasf3fe6512006-01-06 00:11:15 -08002210 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 continue;
2212
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002213 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 continue;
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 sc.nr_scanned = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07002217
Balbir Singh4e416952009-09-23 15:56:39 -07002218 /*
2219 * Call soft limit reclaim before calling shrink_zone.
2220 * For now we ignore the return value
2221 */
KOSAKI Motohiro00918b62010-08-10 18:03:05 -07002222 mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask);
2223
Rik van Riel32a43302007-10-16 01:24:50 -07002224 /*
2225 * We put equal pressure on every zone, unless one
2226 * zone has way too many pages free already.
2227 */
Mel Gorman41858962009-06-16 15:32:12 -07002228 if (!zone_watermark_ok(zone, order,
2229 8*high_wmark_pages(zone), end_zone, 0))
Rik van Riela79311c2009-01-06 14:40:01 -08002230 shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002232 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
2233 lru_pages);
Rik van Riela79311c2009-01-06 14:40:01 -08002234 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 total_scanned += sc.nr_scanned;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002236 if (zone->all_unreclaimable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 continue;
Minchan Kimd1908362010-09-22 13:05:01 -07002238 if (nr_slab == 0 && !zone_reclaimable(zone))
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002239 zone->all_unreclaimable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /*
2241 * If we've done a decent amount of scanning and
2242 * the reclaim ratio is low, start doing writepage
2243 * even in laptop mode
2244 */
2245 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Rik van Riela79311c2009-01-06 14:40:01 -08002246 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 sc.may_writepage = 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002248
Minchan Kim45973d72010-03-05 13:41:45 -08002249 if (!zone_watermark_ok(zone, order,
2250 high_wmark_pages(zone), end_zone, 0)) {
2251 all_zones_ok = 0;
2252 /*
2253 * We are still under min water mark. This
2254 * means that we have a GFP_ATOMIC allocation
2255 * failure risk. Hurry up!
2256 */
2257 if (!zone_watermark_ok(zone, order,
2258 min_wmark_pages(zone), end_zone, 0))
2259 has_under_min_watermark_zone = 1;
2260 }
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (all_zones_ok)
2264 break; /* kswapd: all done */
2265 /*
2266 * OK, kswapd is getting into trouble. Take a nap, then take
2267 * another pass across the zones.
2268 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002269 if (total_scanned && (priority < DEF_PRIORITY - 2)) {
2270 if (has_under_min_watermark_zone)
2271 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT);
2272 else
2273 congestion_wait(BLK_RW_ASYNC, HZ/10);
2274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 /*
2277 * We do this so kswapd doesn't build up large priorities for
2278 * example when it is freeing in parallel with allocators. It
2279 * matches the direct reclaim path behaviour in terms of impact
2280 * on zone->*_priority.
2281 */
Rik van Riela79311c2009-01-06 14:40:01 -08002282 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 break;
2284 }
2285out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (!all_zones_ok) {
2287 cond_resched();
Rafael J. Wysocki83573762006-12-06 20:34:18 -08002288
2289 try_to_freeze();
2290
KOSAKI Motohiro73ce02e2009-01-06 14:40:33 -08002291 /*
2292 * Fragmentation may mean that the system cannot be
2293 * rebalanced for high-order allocations in all zones.
2294 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2295 * it means the zones have been fully scanned and are still
2296 * not balanced. For high-order allocations, there is
2297 * little point trying all over again as kswapd may
2298 * infinite loop.
2299 *
2300 * Instead, recheck all watermarks at order-0 as they
2301 * are the most important. If watermarks are ok, kswapd will go
2302 * back to sleep. High-order users can still perform direct
2303 * reclaim if they wish.
2304 */
2305 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
2306 order = sc.order = 0;
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto loop_again;
2309 }
2310
Rik van Riela79311c2009-01-06 14:40:01 -08002311 return sc.nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312}
2313
2314/*
2315 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002316 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 *
2318 * This basically trickles out pages so that we have _some_
2319 * free memory available even if there is no other activity
2320 * that frees anything up. This is needed for things like routing
2321 * etc, where we otherwise might have all activity going on in
2322 * asynchronous contexts that cannot page things out.
2323 *
2324 * If there are applications that are active memory-allocators
2325 * (most normal use), this basically shouldn't matter.
2326 */
2327static int kswapd(void *p)
2328{
2329 unsigned long order;
2330 pg_data_t *pgdat = (pg_data_t*)p;
2331 struct task_struct *tsk = current;
2332 DEFINE_WAIT(wait);
2333 struct reclaim_state reclaim_state = {
2334 .reclaimed_slab = 0,
2335 };
Rusty Russella70f7302009-03-13 14:49:46 +10302336 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Nick Piggincf40bd12009-01-21 08:12:39 +01002338 lockdep_set_current_reclaim_state(GFP_KERNEL);
2339
Rusty Russell174596a2009-01-01 10:12:29 +10302340 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07002341 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 current->reclaim_state = &reclaim_state;
2343
2344 /*
2345 * Tell the memory management that we're a "memory allocator",
2346 * and that if we need more memory we should get access to it
2347 * regardless (see "__alloc_pages()"). "kswapd" should
2348 * never get caught in the normal page freeing logic.
2349 *
2350 * (Kswapd normally doesn't need memory anyway, but sometimes
2351 * you need a small amount of memory in order to be able to
2352 * page out something else, and this flag essentially protects
2353 * us from recursively trying to free more memory as we're
2354 * trying to free the first piece of memory in the first place).
2355 */
Christoph Lameter930d9152006-01-08 01:00:47 -08002356 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07002357 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 order = 0;
2360 for ( ; ; ) {
2361 unsigned long new_order;
David Rientjes8fe23e02009-12-14 17:58:33 -08002362 int ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2365 new_order = pgdat->kswapd_max_order;
2366 pgdat->kswapd_max_order = 0;
2367 if (order < new_order) {
2368 /*
2369 * Don't sleep if someone wants a larger 'order'
2370 * allocation
2371 */
2372 order = new_order;
2373 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002374 if (!freezing(current) && !kthread_should_stop()) {
2375 long remaining = 0;
2376
2377 /* Try to sleep for a short interval */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002378 if (!sleeping_prematurely(pgdat, order, remaining)) {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002379 remaining = schedule_timeout(HZ/10);
2380 finish_wait(&pgdat->kswapd_wait, &wait);
2381 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2382 }
2383
2384 /*
2385 * After a short sleep, check if it was a
2386 * premature sleep. If not, then go fully
2387 * to sleep until explicitly woken up
2388 */
Mel Gorman33906bc2010-08-09 17:19:16 -07002389 if (!sleeping_prematurely(pgdat, order, remaining)) {
2390 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002391 schedule();
Mel Gorman33906bc2010-08-09 17:19:16 -07002392 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002393 if (remaining)
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002394 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002395 else
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002396 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002397 }
2398 }
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 order = pgdat->kswapd_max_order;
2401 }
2402 finish_wait(&pgdat->kswapd_wait, &wait);
2403
David Rientjes8fe23e02009-12-14 17:58:33 -08002404 ret = try_to_freeze();
2405 if (kthread_should_stop())
2406 break;
2407
2408 /*
2409 * We can speed up thawing tasks if we don't call balance_pgdat
2410 * after returning from the refrigerator
2411 */
Mel Gorman33906bc2010-08-09 17:19:16 -07002412 if (!ret) {
2413 trace_mm_vmscan_kswapd_wake(pgdat->node_id, order);
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002414 balance_pgdat(pgdat, order);
Mel Gorman33906bc2010-08-09 17:19:16 -07002415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417 return 0;
2418}
2419
2420/*
2421 * A zone is low on free memory, so wake its kswapd task to service it.
2422 */
2423void wakeup_kswapd(struct zone *zone, int order)
2424{
2425 pg_data_t *pgdat;
2426
Con Kolivasf3fe6512006-01-06 00:11:15 -08002427 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 return;
2429
2430 pgdat = zone->zone_pgdat;
Mel Gorman41858962009-06-16 15:32:12 -07002431 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 return;
2433 if (pgdat->kswapd_max_order < order)
2434 pgdat->kswapd_max_order = order;
Mel Gorman33906bc2010-08-09 17:19:16 -07002435 trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order);
Paul Jackson02a0e532006-12-13 00:34:25 -08002436 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002438 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002440 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Wu Fengguangadea02a2009-09-21 17:01:42 -07002443/*
2444 * The reclaimable count would be mostly accurate.
2445 * The less reclaimable pages may be
2446 * - mlocked pages, which will be moved to unevictable list when encountered
2447 * - mapped pages, which may require several travels to be reclaimed
2448 * - dirty pages, which is not "instantly" reclaimable
2449 */
2450unsigned long global_reclaimable_pages(void)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002451{
Wu Fengguangadea02a2009-09-21 17:01:42 -07002452 int nr;
2453
2454 nr = global_page_state(NR_ACTIVE_FILE) +
2455 global_page_state(NR_INACTIVE_FILE);
2456
2457 if (nr_swap_pages > 0)
2458 nr += global_page_state(NR_ACTIVE_ANON) +
2459 global_page_state(NR_INACTIVE_ANON);
2460
2461 return nr;
2462}
2463
2464unsigned long zone_reclaimable_pages(struct zone *zone)
2465{
2466 int nr;
2467
2468 nr = zone_page_state(zone, NR_ACTIVE_FILE) +
2469 zone_page_state(zone, NR_INACTIVE_FILE);
2470
2471 if (nr_swap_pages > 0)
2472 nr += zone_page_state(zone, NR_ACTIVE_ANON) +
2473 zone_page_state(zone, NR_INACTIVE_ANON);
2474
2475 return nr;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002476}
2477
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002478#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002480 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002481 * freed pages.
2482 *
2483 * Rather than trying to age LRUs the aim is to preserve the overall
2484 * LRU order by reclaiming preferentially
2485 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002487unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002489 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002490 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002491 .gfp_mask = GFP_HIGHUSER_MOVABLE,
2492 .may_swap = 1,
2493 .may_unmap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002494 .may_writepage = 1,
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002495 .nr_to_reclaim = nr_to_reclaim,
2496 .hibernation_mode = 1,
2497 .swappiness = vm_swappiness,
2498 .order = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 };
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002500 struct zonelist * zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
2501 struct task_struct *p = current;
2502 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002504 p->flags |= PF_MEMALLOC;
2505 lockdep_set_current_reclaim_state(sc.gfp_mask);
2506 reclaim_state.reclaimed_slab = 0;
2507 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08002508
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002509 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002510
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002511 p->reclaim_state = NULL;
2512 lockdep_clear_current_reclaim_state();
2513 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002514
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002515 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002517#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519/* It's optimal to keep kswapds on the same CPUs as their memory, but
2520 not required for correctness. So if the last cpu in a node goes
2521 away, we get changed to run anywhere: as the first one comes back,
2522 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07002523static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08002524 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002526 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002528 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002529 for_each_node_state(nid, N_HIGH_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07002530 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10302531 const struct cpumask *mask;
2532
2533 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07002534
Rusty Russell3e597942009-01-01 10:12:24 +10302535 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07002537 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
2539 }
2540 return NOTIFY_OK;
2541}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Yasunori Goto3218ae12006-06-27 02:53:33 -07002543/*
2544 * This kswapd start function will be called by init and node-hot-add.
2545 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2546 */
2547int kswapd_run(int nid)
2548{
2549 pg_data_t *pgdat = NODE_DATA(nid);
2550 int ret = 0;
2551
2552 if (pgdat->kswapd)
2553 return 0;
2554
2555 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2556 if (IS_ERR(pgdat->kswapd)) {
2557 /* failure at boot is fatal */
2558 BUG_ON(system_state == SYSTEM_BOOTING);
2559 printk("Failed to start kswapd on node %d\n",nid);
2560 ret = -1;
2561 }
2562 return ret;
2563}
2564
David Rientjes8fe23e02009-12-14 17:58:33 -08002565/*
2566 * Called by memory hotplug when all memory in a node is offlined.
2567 */
2568void kswapd_stop(int nid)
2569{
2570 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
2571
2572 if (kswapd)
2573 kthread_stop(kswapd);
2574}
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576static int __init kswapd_init(void)
2577{
Yasunori Goto3218ae12006-06-27 02:53:33 -07002578 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08002579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 swap_setup();
Christoph Lameter9422ffb2007-10-16 01:25:31 -07002581 for_each_node_state(nid, N_HIGH_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07002582 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 hotcpu_notifier(cpu_callback, 0);
2584 return 0;
2585}
2586
2587module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002588
2589#ifdef CONFIG_NUMA
2590/*
2591 * Zone reclaim mode
2592 *
2593 * If non-zero call zone_reclaim when the number of free pages falls below
2594 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08002595 */
2596int zone_reclaim_mode __read_mostly;
2597
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002598#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07002599#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002600#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2601#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2602
Christoph Lameter9eeff232006-01-18 17:42:31 -08002603/*
Christoph Lametera92f7122006-02-01 03:05:32 -08002604 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2605 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2606 * a zone.
2607 */
2608#define ZONE_RECLAIM_PRIORITY 4
2609
Christoph Lameter9eeff232006-01-18 17:42:31 -08002610/*
Christoph Lameter96146342006-07-03 00:24:13 -07002611 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2612 * occur.
2613 */
2614int sysctl_min_unmapped_ratio = 1;
2615
2616/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002617 * If the number of slab pages in a zone grows beyond this percentage then
2618 * slab reclaim needs to occur.
2619 */
2620int sysctl_min_slab_ratio = 5;
2621
Mel Gorman90afa5d2009-06-16 15:33:20 -07002622static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
2623{
2624 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
2625 unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
2626 zone_page_state(zone, NR_ACTIVE_FILE);
2627
2628 /*
2629 * It's possible for there to be more file mapped pages than
2630 * accounted for by the pages on the file LRU lists because
2631 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2632 */
2633 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
2634}
2635
2636/* Work out how many page cache pages we can reclaim in this reclaim_mode */
2637static long zone_pagecache_reclaimable(struct zone *zone)
2638{
2639 long nr_pagecache_reclaimable;
2640 long delta = 0;
2641
2642 /*
2643 * If RECLAIM_SWAP is set, then all file pages are considered
2644 * potentially reclaimable. Otherwise, we have to worry about
2645 * pages like swapcache and zone_unmapped_file_pages() provides
2646 * a better estimate
2647 */
2648 if (zone_reclaim_mode & RECLAIM_SWAP)
2649 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
2650 else
2651 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
2652
2653 /* If we can't clean pages, remove dirty pages from consideration */
2654 if (!(zone_reclaim_mode & RECLAIM_WRITE))
2655 delta += zone_page_state(zone, NR_FILE_DIRTY);
2656
2657 /* Watch for any possible underflows due to delta */
2658 if (unlikely(delta > nr_pagecache_reclaimable))
2659 delta = nr_pagecache_reclaimable;
2660
2661 return nr_pagecache_reclaimable - delta;
2662}
2663
Christoph Lameter0ff38492006-09-25 23:31:52 -07002664/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08002665 * Try to free up some pages from this zone through reclaim.
2666 */
Andrew Morton179e9632006-03-22 00:08:18 -08002667static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002668{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002669 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08002670 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002671 struct task_struct *p = current;
2672 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08002673 int priority;
Andrew Morton179e9632006-03-22 00:08:18 -08002674 struct scan_control sc = {
2675 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002676 .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002677 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002678 .nr_to_reclaim = max_t(unsigned long, nr_pages,
2679 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08002680 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002681 .swappiness = vm_swappiness,
Johannes Weinerbd2f6192009-03-31 15:19:38 -07002682 .order = order,
Andrew Morton179e9632006-03-22 00:08:18 -08002683 };
KOSAKI Motohiro15748042010-08-09 17:19:50 -07002684 unsigned long nr_slab_pages0, nr_slab_pages1;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002685
Christoph Lameter9eeff232006-01-18 17:42:31 -08002686 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08002687 /*
2688 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2689 * and we also need to be able to write out pages for RECLAIM_WRITE
2690 * and RECLAIM_SWAP.
2691 */
2692 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002693 lockdep_set_current_reclaim_state(gfp_mask);
Christoph Lameter9eeff232006-01-18 17:42:31 -08002694 reclaim_state.reclaimed_slab = 0;
2695 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08002696
Mel Gorman90afa5d2009-06-16 15:33:20 -07002697 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07002698 /*
2699 * Free memory by calling shrink zone with increasing
2700 * priorities until we have enough memory freed.
2701 */
2702 priority = ZONE_RECLAIM_PRIORITY;
2703 do {
Rik van Riela79311c2009-01-06 14:40:01 -08002704 shrink_zone(priority, zone, &sc);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002705 priority--;
Rik van Riela79311c2009-01-06 14:40:01 -08002706 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002707 }
Christoph Lameterc84db232006-02-01 03:05:29 -08002708
KOSAKI Motohiro15748042010-08-09 17:19:50 -07002709 nr_slab_pages0 = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2710 if (nr_slab_pages0 > zone->min_slab_pages) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002711 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002712 * shrink_slab() does not currently allow us to determine how
Christoph Lameter0ff38492006-09-25 23:31:52 -07002713 * many pages were freed in this zone. So we take the current
2714 * number of slab pages and shake the slab until it is reduced
2715 * by the same nr_pages that we used for reclaiming unmapped
2716 * pages.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002717 *
Christoph Lameter0ff38492006-09-25 23:31:52 -07002718 * Note that shrink_slab will free memory on all zones and may
2719 * take a long time.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002720 */
KOSAKI Motohiro4dc4b3d2010-08-09 17:19:54 -07002721 for (;;) {
2722 unsigned long lru_pages = zone_reclaimable_pages(zone);
2723
2724 /* No reclaimable slab or very low memory pressure */
2725 if (!shrink_slab(sc.nr_scanned, gfp_mask, lru_pages))
2726 break;
2727
2728 /* Freed enough memory */
2729 nr_slab_pages1 = zone_page_state(zone,
2730 NR_SLAB_RECLAIMABLE);
2731 if (nr_slab_pages1 + nr_pages <= nr_slab_pages0)
2732 break;
2733 }
Christoph Lameter83e33a42006-09-25 23:31:53 -07002734
2735 /*
2736 * Update nr_reclaimed by the number of slab pages we
2737 * reclaimed from this zone.
2738 */
KOSAKI Motohiro15748042010-08-09 17:19:50 -07002739 nr_slab_pages1 = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2740 if (nr_slab_pages1 < nr_slab_pages0)
2741 sc.nr_reclaimed += nr_slab_pages0 - nr_slab_pages1;
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002742 }
2743
Christoph Lameter9eeff232006-01-18 17:42:31 -08002744 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08002745 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002746 lockdep_clear_current_reclaim_state();
Rik van Riela79311c2009-01-06 14:40:01 -08002747 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002748}
Andrew Morton179e9632006-03-22 00:08:18 -08002749
2750int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2751{
Andrew Morton179e9632006-03-22 00:08:18 -08002752 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07002753 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002754
2755 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002756 * Zone reclaim reclaims unmapped file backed pages and
2757 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07002758 *
Christoph Lameter96146342006-07-03 00:24:13 -07002759 * A small portion of unmapped file backed pages is needed for
2760 * file I/O otherwise pages read by file I/O will be immediately
2761 * thrown out if the zone is overallocated. So we do not reclaim
2762 * if less than a specified percentage of the zone is used by
2763 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08002764 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07002765 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
2766 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002767 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08002768
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002769 if (zone->all_unreclaimable)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002770 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07002771
Andrew Morton179e9632006-03-22 00:08:18 -08002772 /*
David Rientjesd773ed62007-10-16 23:26:01 -07002773 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08002774 */
David Rientjesd773ed62007-10-16 23:26:01 -07002775 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002776 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08002777
2778 /*
2779 * Only run zone reclaim on the local zone or on zones that do not
2780 * have associated processors. This will favor the local processor
2781 * over remote processors and spread off node memory allocations
2782 * as wide as possible.
2783 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07002784 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07002785 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07002786 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07002787
2788 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002789 return ZONE_RECLAIM_NOSCAN;
2790
David Rientjesd773ed62007-10-16 23:26:01 -07002791 ret = __zone_reclaim(zone, gfp_mask, order);
2792 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2793
Mel Gorman24cf725182009-06-16 15:33:23 -07002794 if (!ret)
2795 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
2796
David Rientjesd773ed62007-10-16 23:26:01 -07002797 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002798}
Christoph Lameter9eeff232006-01-18 17:42:31 -08002799#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002800
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002801/*
2802 * page_evictable - test whether a page is evictable
2803 * @page: the page to test
2804 * @vma: the VMA in which the page is or will be mapped, may be NULL
2805 *
2806 * Test whether page is evictable--i.e., should be placed on active/inactive
Nick Pigginb291f002008-10-18 20:26:44 -07002807 * lists vs unevictable list. The vma argument is !NULL when called from the
2808 * fault path to determine how to instantate a new page.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002809 *
2810 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002811 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07002812 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002813 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002814 */
2815int page_evictable(struct page *page, struct vm_area_struct *vma)
2816{
2817
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002818 if (mapping_unevictable(page_mapping(page)))
2819 return 0;
2820
Nick Pigginb291f002008-10-18 20:26:44 -07002821 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2822 return 0;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002823
2824 return 1;
2825}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002826
2827/**
2828 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2829 * @page: page to check evictability and move to appropriate lru list
2830 * @zone: zone page is in
2831 *
2832 * Checks a page for evictability and moves the page to the appropriate
2833 * zone lru list.
2834 *
2835 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2836 * have PageUnevictable set.
2837 */
2838static void check_move_unevictable_page(struct page *page, struct zone *zone)
2839{
2840 VM_BUG_ON(PageActive(page));
2841
2842retry:
2843 ClearPageUnevictable(page);
2844 if (page_evictable(page, NULL)) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07002845 enum lru_list l = page_lru_base_type(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002846
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002847 __dec_zone_state(zone, NR_UNEVICTABLE);
2848 list_move(&page->lru, &zone->lru[l].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002849 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002850 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2851 __count_vm_event(UNEVICTABLE_PGRESCUED);
2852 } else {
2853 /*
2854 * rotate unevictable list
2855 */
2856 SetPageUnevictable(page);
2857 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002858 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002859 if (page_evictable(page, NULL))
2860 goto retry;
2861 }
2862}
2863
2864/**
2865 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2866 * @mapping: struct address_space to scan for evictable pages
2867 *
2868 * Scan all pages in mapping. Check unevictable pages for
2869 * evictability and move them to the appropriate zone lru list.
2870 */
2871void scan_mapping_unevictable_pages(struct address_space *mapping)
2872{
2873 pgoff_t next = 0;
2874 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2875 PAGE_CACHE_SHIFT;
2876 struct zone *zone;
2877 struct pagevec pvec;
2878
2879 if (mapping->nrpages == 0)
2880 return;
2881
2882 pagevec_init(&pvec, 0);
2883 while (next < end &&
2884 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2885 int i;
2886 int pg_scanned = 0;
2887
2888 zone = NULL;
2889
2890 for (i = 0; i < pagevec_count(&pvec); i++) {
2891 struct page *page = pvec.pages[i];
2892 pgoff_t page_index = page->index;
2893 struct zone *pagezone = page_zone(page);
2894
2895 pg_scanned++;
2896 if (page_index > next)
2897 next = page_index;
2898 next++;
2899
2900 if (pagezone != zone) {
2901 if (zone)
2902 spin_unlock_irq(&zone->lru_lock);
2903 zone = pagezone;
2904 spin_lock_irq(&zone->lru_lock);
2905 }
2906
2907 if (PageLRU(page) && PageUnevictable(page))
2908 check_move_unevictable_page(page, zone);
2909 }
2910 if (zone)
2911 spin_unlock_irq(&zone->lru_lock);
2912 pagevec_release(&pvec);
2913
2914 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2915 }
2916
2917}
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002918
2919/**
2920 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2921 * @zone - zone of which to scan the unevictable list
2922 *
2923 * Scan @zone's unevictable LRU lists to check for pages that have become
2924 * evictable. Move those that have to @zone's inactive list where they
2925 * become candidates for reclaim, unless shrink_inactive_zone() decides
2926 * to reactivate them. Pages that are still unevictable are rotated
2927 * back onto @zone's unevictable list.
2928 */
2929#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
KOSAKI Motohiro14b90b22009-01-06 14:39:45 -08002930static void scan_zone_unevictable_pages(struct zone *zone)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002931{
2932 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2933 unsigned long scan;
2934 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2935
2936 while (nr_to_scan > 0) {
2937 unsigned long batch_size = min(nr_to_scan,
2938 SCAN_UNEVICTABLE_BATCH_SIZE);
2939
2940 spin_lock_irq(&zone->lru_lock);
2941 for (scan = 0; scan < batch_size; scan++) {
2942 struct page *page = lru_to_page(l_unevictable);
2943
2944 if (!trylock_page(page))
2945 continue;
2946
2947 prefetchw_prev_lru_page(page, l_unevictable, flags);
2948
2949 if (likely(PageLRU(page) && PageUnevictable(page)))
2950 check_move_unevictable_page(page, zone);
2951
2952 unlock_page(page);
2953 }
2954 spin_unlock_irq(&zone->lru_lock);
2955
2956 nr_to_scan -= batch_size;
2957 }
2958}
2959
2960
2961/**
2962 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2963 *
2964 * A really big hammer: scan all zones' unevictable LRU lists to check for
2965 * pages that have become evictable. Move those back to the zones'
2966 * inactive list where they become candidates for reclaim.
2967 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2968 * and we add swap to the system. As such, it runs in the context of a task
2969 * that has possibly/probably made some previously unevictable pages
2970 * evictable.
2971 */
KOSAKI Motohiroff301532009-01-06 14:39:44 -08002972static void scan_all_zones_unevictable_pages(void)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002973{
2974 struct zone *zone;
2975
2976 for_each_zone(zone) {
2977 scan_zone_unevictable_pages(zone);
2978 }
2979}
2980
2981/*
2982 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2983 * all nodes' unevictable lists for evictable pages
2984 */
2985unsigned long scan_unevictable_pages;
2986
2987int scan_unevictable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002988 void __user *buffer,
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002989 size_t *length, loff_t *ppos)
2990{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002991 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002992
2993 if (write && *(unsigned long *)table->data)
2994 scan_all_zones_unevictable_pages();
2995
2996 scan_unevictable_pages = 0;
2997 return 0;
2998}
2999
Thadeu Lima de Souza Cascardoe4455ab2010-10-26 14:21:28 -07003000#ifdef CONFIG_NUMA
Lee Schermerhornaf936a12008-10-18 20:26:53 -07003001/*
3002 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
3003 * a specified node's per zone unevictable lists for evictable pages.
3004 */
3005
3006static ssize_t read_scan_unevictable_node(struct sys_device *dev,
3007 struct sysdev_attribute *attr,
3008 char *buf)
3009{
3010 return sprintf(buf, "0\n"); /* always zero; should fit... */
3011}
3012
3013static ssize_t write_scan_unevictable_node(struct sys_device *dev,
3014 struct sysdev_attribute *attr,
3015 const char *buf, size_t count)
3016{
3017 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
3018 struct zone *zone;
3019 unsigned long res;
3020 unsigned long req = strict_strtoul(buf, 10, &res);
3021
3022 if (!req)
3023 return 1; /* zero is no-op */
3024
3025 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
3026 if (!populated_zone(zone))
3027 continue;
3028 scan_zone_unevictable_pages(zone);
3029 }
3030 return 1;
3031}
3032
3033
3034static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
3035 read_scan_unevictable_node,
3036 write_scan_unevictable_node);
3037
3038int scan_unevictable_register_node(struct node *node)
3039{
3040 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
3041}
3042
3043void scan_unevictable_unregister_node(struct node *node)
3044{
3045 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
3046}
Thadeu Lima de Souza Cascardoe4455ab2010-10-26 14:21:28 -07003047#endif