blob: b7a4e6a3cf89acbbc973493acf2498c51fa668a9 [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 /*
82 * Intend to reclaim enough contenious memory rather than to reclaim
83 * enough amount memory. I.e, it's the mode for high order allocation.
84 */
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 .nonblocking = 1,
380 .for_reclaim = 1,
381 };
382
383 SetPageReclaim(page);
384 res = mapping->a_ops->writepage(page, &wbc);
385 if (res < 0)
386 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800387 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ClearPageReclaim(page);
389 return PAGE_ACTIVATE;
390 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700391
392 /*
393 * Wait on writeback if requested to. This happens when
394 * direct reclaiming a large contiguous area and the
395 * first attempt to free a range of pages fails.
396 */
397 if (PageWriteback(page) && sync_writeback == PAGEOUT_IO_SYNC)
398 wait_on_page_writeback(page);
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (!PageWriteback(page)) {
401 /* synchronous write or broken a_ops? */
402 ClearPageReclaim(page);
403 }
Mel Gorman755f0222010-08-09 17:19:18 -0700404 trace_mm_vmscan_writepage(page,
405 trace_reclaim_flags(page, sync_writeback));
Andrew Mortone129b5c2006-09-27 01:50:00 -0700406 inc_zone_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return PAGE_SUCCESS;
408 }
409
410 return PAGE_CLEAN;
411}
412
Andrew Mortona649fd92006-10-17 00:09:36 -0700413/*
Nick Piggine2867812008-07-25 19:45:30 -0700414 * Same as remove_mapping, but if the page is removed from the mapping, it
415 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700416 */
Nick Piggine2867812008-07-25 19:45:30 -0700417static int __remove_mapping(struct address_space *mapping, struct page *page)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800418{
Nick Piggin28e4d962006-09-25 23:31:23 -0700419 BUG_ON(!PageLocked(page));
420 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800421
Nick Piggin19fd6232008-07-25 19:45:32 -0700422 spin_lock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800423 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700424 * The non racy check for a busy page.
425 *
426 * Must be careful with the order of the tests. When someone has
427 * a ref to the page, it may be possible that they dirty it then
428 * drop the reference. So if PageDirty is tested before page_count
429 * here, then the following race may occur:
430 *
431 * get_user_pages(&page);
432 * [user mapping goes away]
433 * write_to(page);
434 * !PageDirty(page) [good]
435 * SetPageDirty(page);
436 * put_page(page);
437 * !page_count(page) [good, discard it]
438 *
439 * [oops, our write_to data is lost]
440 *
441 * Reversing the order of the tests ensures such a situation cannot
442 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
443 * load is not satisfied before that of page->_count.
444 *
445 * Note that if SetPageDirty is always performed via set_page_dirty,
446 * and thus under tree_lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800447 */
Nick Piggine2867812008-07-25 19:45:30 -0700448 if (!page_freeze_refs(page, 2))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800449 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700450 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
451 if (unlikely(PageDirty(page))) {
452 page_unfreeze_refs(page, 2);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800453 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700454 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800455
456 if (PageSwapCache(page)) {
457 swp_entry_t swap = { .val = page_private(page) };
458 __delete_from_swap_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700459 spin_unlock_irq(&mapping->tree_lock);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700460 swapcache_free(swap, page);
Nick Piggine2867812008-07-25 19:45:30 -0700461 } else {
462 __remove_from_page_cache(page);
Nick Piggin19fd6232008-07-25 19:45:32 -0700463 spin_unlock_irq(&mapping->tree_lock);
Daisuke Nishimurae767e052009-05-28 14:34:28 -0700464 mem_cgroup_uncharge_cache_page(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800465 }
466
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800467 return 1;
468
469cannot_free:
Nick Piggin19fd6232008-07-25 19:45:32 -0700470 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800471 return 0;
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
Nick Piggine2867812008-07-25 19:45:30 -0700475 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
476 * someone else has a ref on the page, abort and return 0. If it was
477 * successfully detached, return 1. Assumes the caller has a single ref on
478 * this page.
479 */
480int remove_mapping(struct address_space *mapping, struct page *page)
481{
482 if (__remove_mapping(mapping, page)) {
483 /*
484 * Unfreezing the refcount with 1 rather than 2 effectively
485 * drops the pagecache ref for us without requiring another
486 * atomic operation.
487 */
488 page_unfreeze_refs(page, 1);
489 return 1;
490 }
491 return 0;
492}
493
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700494/**
495 * putback_lru_page - put previously isolated page onto appropriate LRU list
496 * @page: page to be put back to appropriate lru list
497 *
498 * Add previously isolated @page to appropriate LRU list.
499 * Page may still be unevictable for other reasons.
500 *
501 * lru_lock must not be held, interrupts must be enabled.
502 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700503void putback_lru_page(struct page *page)
504{
505 int lru;
506 int active = !!TestClearPageActive(page);
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700507 int was_unevictable = PageUnevictable(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700508
509 VM_BUG_ON(PageLRU(page));
510
511redo:
512 ClearPageUnevictable(page);
513
514 if (page_evictable(page, NULL)) {
515 /*
516 * For evictable pages, we can use the cache.
517 * In event of a race, worst case is we end up with an
518 * unevictable page on [in]active list.
519 * We know how to handle that.
520 */
Johannes Weiner401a8e12009-09-21 17:02:58 -0700521 lru = active + page_lru_base_type(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700522 lru_cache_add_lru(page, lru);
523 } else {
524 /*
525 * Put unevictable pages directly on zone's unevictable
526 * list.
527 */
528 lru = LRU_UNEVICTABLE;
529 add_page_to_unevictable_list(page);
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700530 /*
531 * When racing with an mlock clearing (page is
532 * unlocked), make sure that if the other thread does
533 * not observe our setting of PG_lru and fails
534 * isolation, we see PG_mlocked cleared below and move
535 * the page back to the evictable list.
536 *
537 * The other side is TestClearPageMlocked().
538 */
539 smp_mb();
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700540 }
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700541
542 /*
543 * page's status can change while we move it among lru. If an evictable
544 * page is on unevictable list, it never be freed. To avoid that,
545 * check after we added it to the list, again.
546 */
547 if (lru == LRU_UNEVICTABLE && page_evictable(page, NULL)) {
548 if (!isolate_lru_page(page)) {
549 put_page(page);
550 goto redo;
551 }
552 /* This means someone else dropped this page from LRU
553 * So, it will be freed or putback to LRU again. There is
554 * nothing to do here.
555 */
556 }
557
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700558 if (was_unevictable && lru != LRU_UNEVICTABLE)
559 count_vm_event(UNEVICTABLE_PGRESCUED);
560 else if (!was_unevictable && lru == LRU_UNEVICTABLE)
561 count_vm_event(UNEVICTABLE_PGCULLED);
562
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700563 put_page(page); /* drop ref from isolate */
564}
565
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800566enum page_references {
567 PAGEREF_RECLAIM,
568 PAGEREF_RECLAIM_CLEAN,
Johannes Weiner64574742010-03-05 13:42:22 -0800569 PAGEREF_KEEP,
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800570 PAGEREF_ACTIVATE,
571};
572
573static enum page_references page_check_references(struct page *page,
574 struct scan_control *sc)
575{
Johannes Weiner64574742010-03-05 13:42:22 -0800576 int referenced_ptes, referenced_page;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800577 unsigned long vm_flags;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800578
Johannes Weiner64574742010-03-05 13:42:22 -0800579 referenced_ptes = page_referenced(page, 1, sc->mem_cgroup, &vm_flags);
580 referenced_page = TestClearPageReferenced(page);
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800581
582 /* Lumpy reclaim - ignore references */
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -0700583 if (sc->lumpy_reclaim_mode)
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800584 return PAGEREF_RECLAIM;
585
586 /*
587 * Mlock lost the isolation race with us. Let try_to_unmap()
588 * move the page to the unevictable list.
589 */
590 if (vm_flags & VM_LOCKED)
591 return PAGEREF_RECLAIM;
592
Johannes Weiner64574742010-03-05 13:42:22 -0800593 if (referenced_ptes) {
594 if (PageAnon(page))
595 return PAGEREF_ACTIVATE;
596 /*
597 * All mapped pages start out with page table
598 * references from the instantiating fault, so we need
599 * to look twice if a mapped file page is used more
600 * than once.
601 *
602 * Mark it and spare it for another trip around the
603 * inactive list. Another page table reference will
604 * lead to its activation.
605 *
606 * Note: the mark is set for activated pages as well
607 * so that recently deactivated but used pages are
608 * quickly recovered.
609 */
610 SetPageReferenced(page);
611
612 if (referenced_page)
613 return PAGEREF_ACTIVATE;
614
615 return PAGEREF_KEEP;
616 }
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800617
618 /* Reclaim if clean, defer dirty pages to writeback */
Johannes Weiner64574742010-03-05 13:42:22 -0800619 if (referenced_page)
620 return PAGEREF_RECLAIM_CLEAN;
621
622 return PAGEREF_RECLAIM;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800623}
624
Nick Piggine2867812008-07-25 19:45:30 -0700625/*
Andrew Morton1742f192006-03-22 00:08:21 -0800626 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Andrew Morton1742f192006-03-22 00:08:21 -0800628static unsigned long shrink_page_list(struct list_head *page_list,
Andy Whitcroftc661b072007-08-22 14:01:26 -0700629 struct scan_control *sc,
630 enum pageout_io sync_writeback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 LIST_HEAD(ret_pages);
633 struct pagevec freed_pvec;
634 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800635 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 cond_resched();
638
639 pagevec_init(&freed_pvec, 1);
640 while (!list_empty(page_list)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800641 enum page_references references;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct address_space *mapping;
643 struct page *page;
644 int may_enter_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 cond_resched();
647
648 page = lru_to_page(page_list);
649 list_del(&page->lru);
650
Nick Piggin529ae9a2008-08-02 12:01:03 +0200651 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto keep;
653
Nick Piggin725d7042006-09-25 23:30:55 -0700654 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800657
Nick Pigginb291f002008-10-18 20:26:44 -0700658 if (unlikely(!page_evictable(page, NULL)))
659 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700660
Johannes Weinera6dc60f2009-03-31 15:19:30 -0700661 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800662 goto keep_locked;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* Double the slab pressure for mapped and swapcache pages */
665 if (page_mapped(page) || PageSwapCache(page))
666 sc->nr_scanned++;
667
Andy Whitcroftc661b072007-08-22 14:01:26 -0700668 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
669 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
670
671 if (PageWriteback(page)) {
672 /*
673 * Synchronous reclaim is performed in two passes,
674 * first an asynchronous pass over the list to
675 * start parallel writeback, and a second synchronous
676 * pass to wait for the IO to complete. Wait here
677 * for any page for which writeback has already
678 * started.
679 */
680 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
681 wait_on_page_writeback(page);
Andrew Morton4dd4b922008-03-24 12:29:52 -0700682 else
Andy Whitcroftc661b072007-08-22 14:01:26 -0700683 goto keep_locked;
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800686 references = page_check_references(page, sc);
687 switch (references) {
688 case PAGEREF_ACTIVATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto activate_locked;
Johannes Weiner64574742010-03-05 13:42:22 -0800690 case PAGEREF_KEEP:
691 goto keep_locked;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800692 case PAGEREF_RECLAIM:
693 case PAGEREF_RECLAIM_CLEAN:
694 ; /* try to reclaim the page below */
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /*
698 * Anonymous process memory has backing store?
699 * Try to allocate it some swap space here.
700 */
Nick Pigginb291f002008-10-18 20:26:44 -0700701 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800702 if (!(sc->gfp_mask & __GFP_IO))
703 goto keep_locked;
Hugh Dickinsac47b002009-01-06 14:39:39 -0800704 if (!add_to_swap(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 goto activate_locked;
Hugh Dickins63eb6b92008-11-19 15:36:37 -0800706 may_enter_fs = 1;
Nick Pigginb291f002008-10-18 20:26:44 -0700707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 /*
712 * The page is mapped into the page tables of one or more
713 * processes. Try to unmap it here.
714 */
715 if (page_mapped(page) && mapping) {
Andi Kleen14fa31b2009-09-16 11:50:10 +0200716 switch (try_to_unmap(page, TTU_UNMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 case SWAP_FAIL:
718 goto activate_locked;
719 case SWAP_AGAIN:
720 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -0700721 case SWAP_MLOCK:
722 goto cull_mlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 case SWAP_SUCCESS:
724 ; /* try to free the page below */
725 }
726 }
727
728 if (PageDirty(page)) {
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800729 if (references == PAGEREF_RECLAIM_CLEAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -0700731 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800733 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto keep_locked;
735
736 /* Page is dirty, try to write it out here */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700737 switch (pageout(page, mapping, sync_writeback)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 case PAGE_KEEP:
739 goto keep_locked;
740 case PAGE_ACTIVATE:
741 goto activate_locked;
742 case PAGE_SUCCESS:
Andrew Morton4dd4b922008-03-24 12:29:52 -0700743 if (PageWriteback(page) || PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 goto keep;
745 /*
746 * A synchronous write - probably a ramdisk. Go
747 * ahead and try to reclaim the page.
748 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200749 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto keep;
751 if (PageDirty(page) || PageWriteback(page))
752 goto keep_locked;
753 mapping = page_mapping(page);
754 case PAGE_CLEAN:
755 ; /* try to free the page below */
756 }
757 }
758
759 /*
760 * If the page has buffers, try to free the buffer mappings
761 * associated with this page. If we succeed we try to free
762 * the page as well.
763 *
764 * We do this even if the page is PageDirty().
765 * try_to_release_page() does not perform I/O, but it is
766 * possible for a page to have PageDirty set, but it is actually
767 * clean (all its buffers are clean). This happens if the
768 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700769 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * try_to_release_page() will discover that cleanness and will
771 * drop the buffers and mark the page clean - it can be freed.
772 *
773 * Rarely, pages can have buffers and no ->mapping. These are
774 * the pages which were not successfully invalidated in
775 * truncate_complete_page(). We try to drop those buffers here
776 * and if that worked, and the page is no longer mapped into
777 * process address space (page_count == 1) it can be freed.
778 * Otherwise, leave the page on the LRU so it is swappable.
779 */
David Howells266cf652009-04-03 16:42:36 +0100780 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!try_to_release_page(page, sc->gfp_mask))
782 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -0700783 if (!mapping && page_count(page) == 1) {
784 unlock_page(page);
785 if (put_page_testzero(page))
786 goto free_it;
787 else {
788 /*
789 * rare race with speculative reference.
790 * the speculative reference will free
791 * this page shortly, so we may
792 * increment nr_reclaimed here (and
793 * leave it off the LRU).
794 */
795 nr_reclaimed++;
796 continue;
797 }
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Nick Piggine2867812008-07-25 19:45:30 -0700801 if (!mapping || !__remove_mapping(mapping, page))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800802 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Nick Piggina978d6f2008-10-18 20:26:58 -0700804 /*
805 * At this point, we have no other references and there is
806 * no way to pick any more up (removed from LRU, removed
807 * from pagecache). Can use non-atomic bitops now (and
808 * we obviously don't have to worry about waking up a process
809 * waiting on the page lock, because there are no references.
810 */
811 __clear_page_locked(page);
Nick Piggine2867812008-07-25 19:45:30 -0700812free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -0800813 nr_reclaimed++;
Nick Piggine2867812008-07-25 19:45:30 -0700814 if (!pagevec_add(&freed_pvec, page)) {
815 __pagevec_free(&freed_pvec);
816 pagevec_reinit(&freed_pvec);
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 continue;
819
Nick Pigginb291f002008-10-18 20:26:44 -0700820cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -0800821 if (PageSwapCache(page))
822 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -0700823 unlock_page(page);
824 putback_lru_page(page);
825 continue;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -0700828 /* Not a candidate for swapping, so reclaim swap space. */
829 if (PageSwapCache(page) && vm_swap_full())
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800830 try_to_free_swap(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700831 VM_BUG_ON(PageActive(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 SetPageActive(page);
833 pgactivate++;
834keep_locked:
835 unlock_page(page);
836keep:
837 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -0700838 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 list_splice(&ret_pages, page_list);
841 if (pagevec_count(&freed_pvec))
Nick Piggine2867812008-07-25 19:45:30 -0700842 __pagevec_free(&freed_pvec);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700843 count_vm_events(PGACTIVATE, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800844 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700847/*
848 * Attempt to remove the specified page from its LRU. Only take this page
849 * if it is of the appropriate PageActive status. Pages which are being
850 * freed elsewhere are also ignored.
851 *
852 * page: page to consider
853 * mode: one of the LRU isolation modes defined above
854 *
855 * returns 0 on success, -ve errno on failure.
856 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700857int __isolate_lru_page(struct page *page, int mode, int file)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700858{
859 int ret = -EINVAL;
860
861 /* Only take pages on the LRU. */
862 if (!PageLRU(page))
863 return ret;
864
865 /*
866 * When checking the active state, we need to be sure we are
867 * dealing with comparible boolean values. Take the logical not
868 * of each.
869 */
870 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
871 return ret;
872
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700873 if (mode != ISOLATE_BOTH && page_is_file_cache(page) != file)
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700874 return ret;
875
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700876 /*
877 * When this function is being called for lumpy reclaim, we
878 * initially look into all LRU pages, active, inactive and
879 * unevictable; only give shrink_page_list evictable pages.
880 */
881 if (PageUnevictable(page))
882 return ret;
883
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700884 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -0800885
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700886 if (likely(get_page_unless_zero(page))) {
887 /*
888 * Be careful not to clear PageLRU until after we're
889 * sure the page is not being freed elsewhere -- the
890 * page release code relies on it.
891 */
892 ClearPageLRU(page);
893 ret = 0;
894 }
895
896 return ret;
897}
898
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * zone->lru_lock is heavily contended. Some of the functions that
901 * shrink the lists perform better by taking out a batch of pages
902 * and working on them outside the LRU lock.
903 *
904 * For pagecache intensive workloads, this function is the hottest
905 * spot in the kernel (apart from copy_*_user functions).
906 *
907 * Appropriate locks must be held before calling this function.
908 *
909 * @nr_to_scan: The number of pages to look through on the list.
910 * @src: The LRU list to pull pages off.
911 * @dst: The temp list to put pages on to.
912 * @scanned: The number of pages that were scanned.
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700913 * @order: The caller's attempted allocation order
914 * @mode: One of the LRU isolation modes
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700915 * @file: True [1] if isolating file [!anon] pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 *
917 * returns how many pages were moved onto *@dst.
918 */
Andrew Morton69e05942006-03-22 00:08:19 -0800919static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
920 struct list_head *src, struct list_head *dst,
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700921 unsigned long *scanned, int order, int mode, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Andrew Morton69e05942006-03-22 00:08:19 -0800923 unsigned long nr_taken = 0;
Mel Gormana8a94d12010-08-09 17:19:17 -0700924 unsigned long nr_lumpy_taken = 0;
925 unsigned long nr_lumpy_dirty = 0;
926 unsigned long nr_lumpy_failed = 0;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800927 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800929 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700930 struct page *page;
931 unsigned long pfn;
932 unsigned long end_pfn;
933 unsigned long page_pfn;
934 int zone_id;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 page = lru_to_page(src);
937 prefetchw_prev_lru_page(page, src, flags);
938
Nick Piggin725d7042006-09-25 23:30:55 -0700939 VM_BUG_ON(!PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800940
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700941 switch (__isolate_lru_page(page, mode, file)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700942 case 0:
943 list_move(&page->lru, dst);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700944 mem_cgroup_del_lru(page);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800945 nr_taken++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700946 break;
Nick Piggin46453a62006-03-22 00:07:58 -0800947
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700948 case -EBUSY:
949 /* else it is being freed elsewhere */
950 list_move(&page->lru, src);
KAMEZAWA Hiroyuki2ffebca2009-06-17 16:27:21 -0700951 mem_cgroup_rotate_lru_list(page, page_lru(page));
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700952 continue;
953
954 default:
955 BUG();
956 }
957
958 if (!order)
959 continue;
960
961 /*
962 * Attempt to take all pages in the order aligned region
963 * surrounding the tag page. Only take those pages of
964 * the same active state as that tag page. We may safely
965 * round the target page pfn down to the requested order
966 * as the mem_map is guarenteed valid out to MAX_ORDER,
967 * where that page is in a different zone we will detect
968 * it from its zone id and abort this block scan.
969 */
970 zone_id = page_zone_id(page);
971 page_pfn = page_to_pfn(page);
972 pfn = page_pfn & ~((1 << order) - 1);
973 end_pfn = pfn + (1 << order);
974 for (; pfn < end_pfn; pfn++) {
975 struct page *cursor_page;
976
977 /* The target page is in the block, ignore it. */
978 if (unlikely(pfn == page_pfn))
979 continue;
980
981 /* Avoid holes within the zone. */
982 if (unlikely(!pfn_valid_within(pfn)))
983 break;
984
985 cursor_page = pfn_to_page(pfn);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700986
Andy Whitcroft5ad333e2007-07-17 04:03:16 -0700987 /* Check that we have not crossed a zone boundary. */
988 if (unlikely(page_zone_id(cursor_page) != zone_id))
989 continue;
Minchan Kimde2e7562009-09-21 17:01:43 -0700990
991 /*
992 * If we don't have enough swap space, reclaiming of
993 * anon page which don't already have a swap slot is
994 * pointless.
995 */
996 if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
997 !PageSwapCache(cursor_page))
998 continue;
999
KAMEZAWA Hiroyukiee993b12009-06-16 15:33:24 -07001000 if (__isolate_lru_page(cursor_page, mode, file) == 0) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001001 list_move(&cursor_page->lru, dst);
KAMEZAWA Hiroyukicb4cbcf2009-06-23 08:57:55 +09001002 mem_cgroup_del_lru(cursor_page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001003 nr_taken++;
Mel Gormana8a94d12010-08-09 17:19:17 -07001004 nr_lumpy_taken++;
1005 if (PageDirty(cursor_page))
1006 nr_lumpy_dirty++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001007 scan++;
Mel Gormana8a94d12010-08-09 17:19:17 -07001008 } else {
1009 if (mode == ISOLATE_BOTH &&
1010 page_count(cursor_page))
1011 nr_lumpy_failed++;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001012 }
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
1016 *scanned = scan;
Mel Gormana8a94d12010-08-09 17:19:17 -07001017
1018 trace_mm_vmscan_lru_isolate(order,
1019 nr_to_scan, scan,
1020 nr_taken,
1021 nr_lumpy_taken, nr_lumpy_dirty, nr_lumpy_failed,
1022 mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return nr_taken;
1024}
1025
Balbir Singh66e17072008-02-07 00:13:56 -08001026static unsigned long isolate_pages_global(unsigned long nr,
1027 struct list_head *dst,
1028 unsigned long *scanned, int order,
1029 int mode, struct zone *z,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001030 int active, int file)
Balbir Singh66e17072008-02-07 00:13:56 -08001031{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001032 int lru = LRU_BASE;
Balbir Singh66e17072008-02-07 00:13:56 -08001033 if (active)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001034 lru += LRU_ACTIVE;
1035 if (file)
1036 lru += LRU_FILE;
1037 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001038 mode, file);
Balbir Singh66e17072008-02-07 00:13:56 -08001039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001042 * clear_active_flags() is a helper for shrink_active_list(), clearing
1043 * any active bits from the pages in the list.
1044 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001045static unsigned long clear_active_flags(struct list_head *page_list,
1046 unsigned int *count)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001047{
1048 int nr_active = 0;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001049 int lru;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001050 struct page *page;
1051
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001052 list_for_each_entry(page, page_list, lru) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07001053 lru = page_lru_base_type(page);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001054 if (PageActive(page)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001055 lru += LRU_ACTIVE;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001056 ClearPageActive(page);
1057 nr_active++;
1058 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001059 count[lru]++;
1060 }
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001061
1062 return nr_active;
1063}
1064
Nick Piggin62695a82008-10-18 20:26:09 -07001065/**
1066 * isolate_lru_page - tries to isolate a page from its LRU list
1067 * @page: page to isolate from its LRU list
1068 *
1069 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1070 * vmstat statistic corresponding to whatever LRU list the page was on.
1071 *
1072 * Returns 0 if the page was removed from an LRU list.
1073 * Returns -EBUSY if the page was not on an LRU list.
1074 *
1075 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001076 * the active list, it will have PageActive set. If it was found on
1077 * the unevictable list, it will have the PageUnevictable bit set. That flag
1078 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001079 *
1080 * The vmstat statistic corresponding to the list on which the page was
1081 * found will be decremented.
1082 *
1083 * Restrictions:
1084 * (1) Must be called with an elevated refcount on the page. This is a
1085 * fundamentnal difference from isolate_lru_pages (which is called
1086 * without a stable reference).
1087 * (2) the lru_lock must not be held.
1088 * (3) interrupts must be enabled.
1089 */
1090int isolate_lru_page(struct page *page)
1091{
1092 int ret = -EBUSY;
1093
1094 if (PageLRU(page)) {
1095 struct zone *zone = page_zone(page);
1096
1097 spin_lock_irq(&zone->lru_lock);
1098 if (PageLRU(page) && get_page_unless_zero(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001099 int lru = page_lru(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001100 ret = 0;
1101 ClearPageLRU(page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001102
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001103 del_page_from_lru_list(zone, page, lru);
Nick Piggin62695a82008-10-18 20:26:09 -07001104 }
1105 spin_unlock_irq(&zone->lru_lock);
1106 }
1107 return ret;
1108}
1109
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001110/*
Rik van Riel35cd7812009-09-21 17:01:38 -07001111 * Are there way too many processes in the direct reclaim path already?
1112 */
1113static int too_many_isolated(struct zone *zone, int file,
1114 struct scan_control *sc)
1115{
1116 unsigned long inactive, isolated;
1117
1118 if (current_is_kswapd())
1119 return 0;
1120
1121 if (!scanning_global_lru(sc))
1122 return 0;
1123
1124 if (file) {
1125 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1126 isolated = zone_page_state(zone, NR_ISOLATED_FILE);
1127 } else {
1128 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1129 isolated = zone_page_state(zone, NR_ISOLATED_ANON);
1130 }
1131
1132 return isolated > inactive;
1133}
1134
1135/*
Andrew Morton1742f192006-03-22 00:08:21 -08001136 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1137 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 */
Andrew Morton1742f192006-03-22 00:08:21 -08001139static unsigned long shrink_inactive_list(unsigned long max_scan,
Rik van Riel33c120e2008-10-18 20:26:36 -07001140 struct zone *zone, struct scan_control *sc,
1141 int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 LIST_HEAD(page_list);
1144 struct pagevec pvec;
Andrew Morton69e05942006-03-22 00:08:19 -08001145 unsigned long nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001146 unsigned long nr_reclaimed = 0;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001147 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001148
Rik van Riel35cd7812009-09-21 17:01:38 -07001149 while (unlikely(too_many_isolated(zone, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001150 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001151
1152 /* We are about to die and free our memory. Return now. */
1153 if (fatal_signal_pending(current))
1154 return SWAP_CLUSTER_MAX;
1155 }
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 pagevec_init(&pvec, 1);
1159
1160 lru_add_drain();
1161 spin_lock_irq(&zone->lru_lock);
Andrew Morton69e05942006-03-22 00:08:19 -08001162 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 struct page *page;
Andrew Morton69e05942006-03-22 00:08:19 -08001164 unsigned long nr_taken;
1165 unsigned long nr_scan;
1166 unsigned long nr_freed;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001167 unsigned long nr_active;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001168 unsigned int count[NR_LRU_LISTS] = { 0, };
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001169 int mode = sc->lumpy_reclaim_mode ? ISOLATE_BOTH : ISOLATE_INACTIVE;
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001170 unsigned long nr_anon;
1171 unsigned long nr_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001173 if (scanning_global_lru(sc)) {
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001174 nr_taken = isolate_pages_global(SWAP_CLUSTER_MAX,
1175 &page_list, &nr_scan,
1176 sc->order, mode,
1177 zone, 0, file);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001178 zone->pages_scanned += nr_scan;
1179 if (current_is_kswapd())
1180 __count_zone_vm_events(PGSCAN_KSWAPD, zone,
1181 nr_scan);
1182 else
1183 __count_zone_vm_events(PGSCAN_DIRECT, zone,
1184 nr_scan);
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001185 } else {
1186 nr_taken = mem_cgroup_isolate_pages(SWAP_CLUSTER_MAX,
1187 &page_list, &nr_scan,
1188 sc->order, mode,
1189 zone, sc->mem_cgroup,
1190 0, file);
1191 /*
1192 * mem_cgroup_isolate_pages() keeps track of
1193 * scanned pages on its own.
1194 */
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001195 }
1196
1197 if (nr_taken == 0)
1198 goto done;
1199
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001200 nr_active = clear_active_flags(&page_list, count);
Andy Whitcrofte9187bd2007-08-22 14:01:25 -07001201 __count_vm_events(PGDEACTIVATE, nr_active);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001202
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001203 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1204 -count[LRU_ACTIVE_FILE]);
1205 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1206 -count[LRU_INACTIVE_FILE]);
1207 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1208 -count[LRU_ACTIVE_ANON]);
1209 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1210 -count[LRU_INACTIVE_ANON]);
1211
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001212 nr_anon = count[LRU_ACTIVE_ANON] + count[LRU_INACTIVE_ANON];
1213 nr_file = count[LRU_ACTIVE_FILE] + count[LRU_INACTIVE_FILE];
1214 __mod_zone_page_state(zone, NR_ISOLATED_ANON, nr_anon);
1215 __mod_zone_page_state(zone, NR_ISOLATED_FILE, nr_file);
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001216
Huang Shijie62c0c2f2009-12-14 17:59:48 -08001217 reclaim_stat->recent_scanned[0] += nr_anon;
1218 reclaim_stat->recent_scanned[1] += nr_file;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -08001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 spin_unlock_irq(&zone->lru_lock);
1221
Andrew Morton69e05942006-03-22 00:08:19 -08001222 nr_scanned += nr_scan;
Andy Whitcroftc661b072007-08-22 14:01:26 -07001223 nr_freed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1224
1225 /*
1226 * If we are direct reclaiming for contiguous pages and we do
1227 * not reclaim everything in the list, try again and wait
1228 * for IO to complete. This will stall high-order allocations
1229 * but that should be acceptable to the caller
1230 */
1231 if (nr_freed < nr_taken && !current_is_kswapd() &&
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001232 sc->lumpy_reclaim_mode) {
Jens Axboe8aa7e842009-07-09 14:52:32 +02001233 congestion_wait(BLK_RW_ASYNC, HZ/10);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001234
1235 /*
1236 * The attempt at page out may have made some
1237 * of the pages active, mark them inactive again.
1238 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001239 nr_active = clear_active_flags(&page_list, count);
Andy Whitcroftc661b072007-08-22 14:01:26 -07001240 count_vm_events(PGDEACTIVATE, nr_active);
1241
1242 nr_freed += shrink_page_list(&page_list, sc,
1243 PAGEOUT_IO_SYNC);
1244 }
1245
Andrew Morton05ff5132006-03-22 00:08:20 -08001246 nr_reclaimed += nr_freed;
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001247
Nick Piggina74609f2006-01-06 00:11:20 -08001248 local_irq_disable();
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001249 if (current_is_kswapd())
Christoph Lameterf8891e52006-06-30 01:55:45 -07001250 __count_vm_events(KSWAPD_STEAL, nr_freed);
Shantanu Goel918d3f92006-12-29 16:48:59 -08001251 __count_zone_vm_events(PGSTEAL, zone, nr_freed);
Nick Piggina74609f2006-01-06 00:11:20 -08001252
1253 spin_lock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * Put back any unfreeable pages.
1256 */
1257 while (!list_empty(&page_list)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001258 int lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 page = lru_to_page(&page_list);
Nick Piggin725d7042006-09-25 23:30:55 -07001260 VM_BUG_ON(PageLRU(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 list_del(&page->lru);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001262 if (unlikely(!page_evictable(page, NULL))) {
1263 spin_unlock_irq(&zone->lru_lock);
1264 putback_lru_page(page);
1265 spin_lock_irq(&zone->lru_lock);
1266 continue;
1267 }
1268 SetPageLRU(page);
1269 lru = page_lru(page);
1270 add_page_to_lru_list(zone, page, lru);
KOSAKI Motohiro74a1c482009-09-21 17:01:45 -07001271 if (is_active_lru(lru)) {
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001272 int file = is_file_lru(lru);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001273 reclaim_stat->recent_rotated[file]++;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!pagevec_add(&pvec, page)) {
1276 spin_unlock_irq(&zone->lru_lock);
1277 __pagevec_release(&pvec);
1278 spin_lock_irq(&zone->lru_lock);
1279 }
1280 }
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001281 __mod_zone_page_state(zone, NR_ISOLATED_ANON, -nr_anon);
1282 __mod_zone_page_state(zone, NR_ISOLATED_FILE, -nr_file);
1283
Andrew Morton69e05942006-03-22 00:08:19 -08001284 } while (nr_scanned < max_scan);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286done:
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001287 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 pagevec_release(&pvec);
Andrew Morton05ff5132006-03-22 00:08:20 -08001289 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Martin Bligh3bb1a852006-10-28 10:38:24 -07001292/*
1293 * We are about to scan this zone at a certain priority level. If that priority
1294 * level is smaller (ie: more urgent) than the previous priority, then note
1295 * that priority level within the zone. This is done so that when the next
1296 * process comes in to scan this zone, it will immediately start out at this
1297 * priority level rather than having to build up its own scanning priority.
1298 * Here, this priority affects only the reclaim-mapped threshold.
1299 */
1300static inline void note_zone_scanning_priority(struct zone *zone, int priority)
1301{
1302 if (priority < zone->prev_priority)
1303 zone->prev_priority = priority;
1304}
1305
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001306/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 * This moves pages from the active list to the inactive list.
1308 *
1309 * We move them the other way if the page is referenced by one or more
1310 * processes, from rmap.
1311 *
1312 * If the pages are mostly unmapped, the processing is fast and it is
1313 * appropriate to hold zone->lru_lock across the whole operation. But if
1314 * the pages are mapped, the processing is slow (page_referenced()) so we
1315 * should drop zone->lru_lock around each page. It's impossible to balance
1316 * this, so instead we remove the pages from the LRU while processing them.
1317 * It is safe to rely on PG_active against the non-LRU pages in here because
1318 * nobody will play with that bit on a non-LRU page.
1319 *
1320 * The downside is that we have to touch page->_count against each page.
1321 * But we had to alter page->flags anyway.
1322 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001323
Wu Fengguang3eb41402009-06-16 15:33:13 -07001324static void move_active_pages_to_lru(struct zone *zone,
1325 struct list_head *list,
1326 enum lru_list lru)
1327{
1328 unsigned long pgmoved = 0;
1329 struct pagevec pvec;
1330 struct page *page;
1331
1332 pagevec_init(&pvec, 1);
1333
1334 while (!list_empty(list)) {
1335 page = lru_to_page(list);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001336
1337 VM_BUG_ON(PageLRU(page));
1338 SetPageLRU(page);
1339
Wu Fengguang3eb41402009-06-16 15:33:13 -07001340 list_move(&page->lru, &zone->lru[lru].list);
1341 mem_cgroup_add_lru_list(page, lru);
1342 pgmoved++;
1343
1344 if (!pagevec_add(&pvec, page) || list_empty(list)) {
1345 spin_unlock_irq(&zone->lru_lock);
1346 if (buffer_heads_over_limit)
1347 pagevec_strip(&pvec);
1348 __pagevec_release(&pvec);
1349 spin_lock_irq(&zone->lru_lock);
1350 }
1351 }
1352 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1353 if (!is_active_lru(lru))
1354 __count_vm_events(PGDEACTIVATE, pgmoved);
1355}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001356
Andrew Morton1742f192006-03-22 00:08:21 -08001357static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001358 struct scan_control *sc, int priority, int file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001360 unsigned long nr_taken;
Andrew Morton69e05942006-03-22 00:08:19 -08001361 unsigned long pgscanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001362 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001364 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001365 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct page *page;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001367 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001368 unsigned long nr_rotated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 lru_add_drain();
1371 spin_lock_irq(&zone->lru_lock);
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001372 if (scanning_global_lru(sc)) {
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001373 nr_taken = isolate_pages_global(nr_pages, &l_hold,
1374 &pgscanned, sc->order,
1375 ISOLATE_ACTIVE, zone,
1376 1, file);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001377 zone->pages_scanned += pgscanned;
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001378 } else {
1379 nr_taken = mem_cgroup_isolate_pages(nr_pages, &l_hold,
1380 &pgscanned, sc->order,
1381 ISOLATE_ACTIVE, zone,
1382 sc->mem_cgroup, 1, file);
1383 /*
1384 * mem_cgroup_isolate_pages() keeps track of
1385 * scanned pages on its own.
1386 */
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001387 }
Johannes Weiner8b25c6d2010-05-24 14:32:40 -07001388
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001389 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001390
Wu Fengguang3eb41402009-06-16 15:33:13 -07001391 __count_zone_vm_events(PGREFILL, zone, pgscanned);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001392 if (file)
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001393 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001394 else
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001395 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001396 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, nr_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 spin_unlock_irq(&zone->lru_lock);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 while (!list_empty(&l_hold)) {
1400 cond_resched();
1401 page = lru_to_page(&l_hold);
1402 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001403
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001404 if (unlikely(!page_evictable(page, NULL))) {
1405 putback_lru_page(page);
1406 continue;
1407 }
1408
Johannes Weiner64574742010-03-05 13:42:22 -08001409 if (page_referenced(page, 0, sc->mem_cgroup, &vm_flags)) {
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001410 nr_rotated++;
Wu Fengguang8cab4752009-06-16 15:33:12 -07001411 /*
1412 * Identify referenced, file-backed active pages and
1413 * give them one more trip around the active list. So
1414 * that executable code get better chances to stay in
1415 * memory under moderate memory pressure. Anon pages
1416 * are not likely to be evicted by use-once streaming
1417 * IO, plus JVM can create lots of anon VM_EXEC pages,
1418 * so we ignore them here.
1419 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001420 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001421 list_add(&page->lru, &l_active);
1422 continue;
1423 }
1424 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001425
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001426 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 list_add(&page->lru, &l_inactive);
1428 }
1429
Andrew Mortonb5557492009-01-06 14:40:13 -08001430 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001431 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001432 */
Johannes Weiner2a1dc502008-12-01 03:00:35 +01001433 spin_lock_irq(&zone->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001434 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001435 * Count referenced pages from currently used mappings as rotated,
1436 * even though only some of them are actually re-activated. This
1437 * helps balance scan pressure between file and anonymous pages in
1438 * get_scan_ratio.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001439 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001440 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001441
Wu Fengguang3eb41402009-06-16 15:33:13 -07001442 move_active_pages_to_lru(zone, &l_active,
1443 LRU_ACTIVE + file * LRU_FILE);
1444 move_active_pages_to_lru(zone, &l_inactive,
1445 LRU_BASE + file * LRU_FILE);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001446 __mod_zone_page_state(zone, NR_ISOLATED_ANON + file, -nr_taken);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001447 spin_unlock_irq(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001450static int inactive_anon_is_low_global(struct zone *zone)
KOSAKI Motohirof89eb902009-01-07 18:08:14 -08001451{
1452 unsigned long active, inactive;
1453
1454 active = zone_page_state(zone, NR_ACTIVE_ANON);
1455 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1456
1457 if (inactive * zone->inactive_ratio < active)
1458 return 1;
1459
1460 return 0;
1461}
1462
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001463/**
1464 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1465 * @zone: zone to check
1466 * @sc: scan control of this context
1467 *
1468 * Returns true if the zone does not have enough inactive anon pages,
1469 * meaning some active anon pages need to be deactivated.
1470 */
1471static int inactive_anon_is_low(struct zone *zone, struct scan_control *sc)
1472{
1473 int low;
1474
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001475 if (scanning_global_lru(sc))
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001476 low = inactive_anon_is_low_global(zone);
1477 else
KOSAKI Motohiroc772be92009-01-07 18:08:25 -08001478 low = mem_cgroup_inactive_anon_is_low(sc->mem_cgroup);
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001479 return low;
1480}
1481
Rik van Riel56e49d22009-06-16 15:32:28 -07001482static int inactive_file_is_low_global(struct zone *zone)
1483{
1484 unsigned long active, inactive;
1485
1486 active = zone_page_state(zone, NR_ACTIVE_FILE);
1487 inactive = zone_page_state(zone, NR_INACTIVE_FILE);
1488
1489 return (active > inactive);
1490}
1491
1492/**
1493 * inactive_file_is_low - check if file pages need to be deactivated
1494 * @zone: zone to check
1495 * @sc: scan control of this context
1496 *
1497 * When the system is doing streaming IO, memory pressure here
1498 * ensures that active file pages get deactivated, until more
1499 * than half of the file pages are on the inactive list.
1500 *
1501 * Once we get to that situation, protect the system's working
1502 * set from being evicted by disabling active file page aging.
1503 *
1504 * This uses a different ratio than the anonymous pages, because
1505 * the page cache uses a use-once replacement algorithm.
1506 */
1507static int inactive_file_is_low(struct zone *zone, struct scan_control *sc)
1508{
1509 int low;
1510
1511 if (scanning_global_lru(sc))
1512 low = inactive_file_is_low_global(zone);
1513 else
1514 low = mem_cgroup_inactive_file_is_low(sc->mem_cgroup);
1515 return low;
1516}
1517
Rik van Rielb39415b2009-12-14 17:59:48 -08001518static int inactive_list_is_low(struct zone *zone, struct scan_control *sc,
1519 int file)
1520{
1521 if (file)
1522 return inactive_file_is_low(zone, sc);
1523 else
1524 return inactive_anon_is_low(zone, sc);
1525}
1526
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001527static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Christoph Lameterb69408e2008-10-18 20:26:14 -07001528 struct zone *zone, struct scan_control *sc, int priority)
1529{
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001530 int file = is_file_lru(lru);
1531
Rik van Rielb39415b2009-12-14 17:59:48 -08001532 if (is_active_lru(lru)) {
1533 if (inactive_list_is_low(zone, sc, file))
1534 shrink_active_list(nr_to_scan, zone, sc, priority, file);
Rik van Riel556adec2008-10-18 20:26:34 -07001535 return 0;
1536 }
1537
Rik van Riel33c120e2008-10-18 20:26:36 -07001538 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001539}
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541/*
Shaohua Li76a33fc2010-05-24 14:32:36 -07001542 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1543 * until we collected @swap_cluster_max pages to scan.
1544 */
1545static unsigned long nr_scan_try_batch(unsigned long nr_to_scan,
1546 unsigned long *nr_saved_scan)
1547{
1548 unsigned long nr;
1549
1550 *nr_saved_scan += nr_to_scan;
1551 nr = *nr_saved_scan;
1552
1553 if (nr >= SWAP_CLUSTER_MAX)
1554 *nr_saved_scan = 0;
1555 else
1556 nr = 0;
1557
1558 return nr;
1559}
1560
1561/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001562 * Determine how aggressively the anon and file LRU lists should be
1563 * scanned. The relative value of each set of LRU lists is determined
1564 * by looking at the fraction of the pages scanned we did rotate back
1565 * onto the active list instead of evict.
1566 *
Shaohua Li76a33fc2010-05-24 14:32:36 -07001567 * nr[0] = anon pages to scan; nr[1] = file pages to scan
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001568 */
Shaohua Li76a33fc2010-05-24 14:32:36 -07001569static void get_scan_count(struct zone *zone, struct scan_control *sc,
1570 unsigned long *nr, int priority)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001571{
1572 unsigned long anon, file, free;
1573 unsigned long anon_prio, file_prio;
1574 unsigned long ap, fp;
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001575 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
Shaohua Li76a33fc2010-05-24 14:32:36 -07001576 u64 fraction[2], denominator;
1577 enum lru_list l;
1578 int noswap = 0;
1579
1580 /* If we have no swap space, do not bother scanning anon pages. */
1581 if (!sc->may_swap || (nr_swap_pages <= 0)) {
1582 noswap = 1;
1583 fraction[0] = 0;
1584 fraction[1] = 1;
1585 denominator = 1;
1586 goto out;
1587 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001588
Vincent Li0b217672009-09-21 17:03:09 -07001589 anon = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_ANON) +
1590 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_ANON);
1591 file = zone_nr_lru_pages(zone, sc, LRU_ACTIVE_FILE) +
1592 zone_nr_lru_pages(zone, sc, LRU_INACTIVE_FILE);
Hugh Dickinsb9627162009-01-06 14:39:41 -08001593
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001594 if (scanning_global_lru(sc)) {
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001595 free = zone_page_state(zone, NR_FREE_PAGES);
1596 /* If we have very few page cache pages,
1597 force-scan anon pages. */
Mel Gorman41858962009-06-16 15:32:12 -07001598 if (unlikely(file + free <= high_wmark_pages(zone))) {
Shaohua Li76a33fc2010-05-24 14:32:36 -07001599 fraction[0] = 1;
1600 fraction[1] = 0;
1601 denominator = 1;
1602 goto out;
KOSAKI Motohiroeeee9a82009-01-07 18:08:17 -08001603 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001604 }
1605
1606 /*
1607 * OK, so we have swap space and a fair amount of page cache
1608 * pages. We use the recently rotated / recently scanned
1609 * ratios to determine how valuable each cache is.
1610 *
1611 * Because workloads change over time (and to avoid overflow)
1612 * we keep these statistics as a floating average, which ends
1613 * up weighing recent references more than old ones.
1614 *
1615 * anon in [0], file in [1]
1616 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001617 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001618 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001619 reclaim_stat->recent_scanned[0] /= 2;
1620 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001621 spin_unlock_irq(&zone->lru_lock);
1622 }
1623
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001624 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001625 spin_lock_irq(&zone->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001626 reclaim_stat->recent_scanned[1] /= 2;
1627 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001628 spin_unlock_irq(&zone->lru_lock);
1629 }
1630
1631 /*
1632 * With swappiness at 100, anonymous and file have the same priority.
1633 * This scanning priority is essentially the inverse of IO cost.
1634 */
1635 anon_prio = sc->swappiness;
1636 file_prio = 200 - sc->swappiness;
1637
1638 /*
Rik van Riel00d80892008-11-19 15:36:44 -08001639 * The amount of pressure on anon vs file pages is inversely
1640 * proportional to the fraction of recently scanned pages on
1641 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001642 */
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001643 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1644 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001645
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08001646 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1647 fp /= reclaim_stat->recent_rotated[1] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001648
Shaohua Li76a33fc2010-05-24 14:32:36 -07001649 fraction[0] = ap;
1650 fraction[1] = fp;
1651 denominator = ap + fp + 1;
1652out:
1653 for_each_evictable_lru(l) {
1654 int file = is_file_lru(l);
1655 unsigned long scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001656
Shaohua Li76a33fc2010-05-24 14:32:36 -07001657 scan = zone_nr_lru_pages(zone, sc, l);
1658 if (priority || noswap) {
1659 scan >>= priority;
1660 scan = div64_u64(scan * fraction[file], denominator);
1661 }
1662 nr[l] = nr_scan_try_batch(scan,
1663 &reclaim_stat->nr_saved_scan[l]);
1664 }
Wu Fengguang6e08a362009-06-16 15:32:29 -07001665}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001666
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001667static void set_lumpy_reclaim_mode(int priority, struct scan_control *sc)
1668{
1669 /*
1670 * If we need a large contiguous chunk of memory, or have
1671 * trouble getting a small set of contiguous pages, we
1672 * will reclaim both active and inactive pages.
1673 */
1674 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1675 sc->lumpy_reclaim_mode = 1;
1676 else if (sc->order && priority < DEF_PRIORITY - 2)
1677 sc->lumpy_reclaim_mode = 1;
1678 else
1679 sc->lumpy_reclaim_mode = 0;
1680}
1681
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001682/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1684 */
Rik van Riela79311c2009-01-06 14:40:01 -08001685static void shrink_zone(int priority, struct zone *zone,
Andrew Morton05ff5132006-03-22 00:08:20 -08001686 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Christoph Lameterb69408e2008-10-18 20:26:14 -07001688 unsigned long nr[NR_LRU_LISTS];
Christoph Lameter86959492006-03-22 00:08:18 -08001689 unsigned long nr_to_scan;
Christoph Lameterb69408e2008-10-18 20:26:14 -07001690 enum lru_list l;
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001691 unsigned long nr_reclaimed = sc->nr_reclaimed;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001692 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Shaohua Li76a33fc2010-05-24 14:32:36 -07001694 get_scan_count(zone, sc, nr, priority);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001695
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -07001696 set_lumpy_reclaim_mode(priority, sc);
1697
Rik van Riel556adec2008-10-18 20:26:34 -07001698 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1699 nr[LRU_INACTIVE_FILE]) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001700 for_each_evictable_lru(l) {
Christoph Lameterb69408e2008-10-18 20:26:14 -07001701 if (nr[l]) {
KOSAKI Motohiroece74b22009-12-14 17:59:14 -08001702 nr_to_scan = min_t(unsigned long,
1703 nr[l], SWAP_CLUSTER_MAX);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001704 nr[l] -= nr_to_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001706 nr_reclaimed += shrink_list(l, nr_to_scan,
1707 zone, sc, priority);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Rik van Riela79311c2009-01-06 14:40:01 -08001710 /*
1711 * On large memory systems, scan >> priority can become
1712 * really large. This is fine for the starting priority;
1713 * we want to put equal scanning pressure on each zone.
1714 * However, if the VM has a harder time of freeing pages,
1715 * with multiple processes reclaiming pages, the total
1716 * freeing target can get unreasonably large.
1717 */
KOSAKI Motohiro338fde92009-12-14 17:59:15 -08001718 if (nr_reclaimed >= nr_to_reclaim && priority < DEF_PRIORITY)
Rik van Riela79311c2009-01-06 14:40:01 -08001719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721
KOSAKI Motohiro01dbe5c2009-01-06 14:40:02 -08001722 sc->nr_reclaimed = nr_reclaimed;
1723
Rik van Riel556adec2008-10-18 20:26:34 -07001724 /*
1725 * Even if we did not try to evict anon pages at all, we want to
1726 * rebalance the anon lru active/inactive ratio.
1727 */
MinChan Kim69c85482009-06-16 15:32:44 -07001728 if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
Rik van Riel556adec2008-10-18 20:26:34 -07001729 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1730
Andrew Morton232ea4d2007-02-28 20:13:21 -08001731 throttle_vm_writeout(sc->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
1734/*
1735 * This is the direct reclaim path, for page-allocating processes. We only
1736 * try to reclaim pages from zones which will satisfy the caller's allocation
1737 * request.
1738 *
Mel Gorman41858962009-06-16 15:32:12 -07001739 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1740 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1742 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07001743 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1744 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1745 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 * If a zone is deemed to be full of pinned pages then just give it a light
1748 * scan then give up on it.
1749 */
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001750static bool shrink_zones(int priority, struct zonelist *zonelist,
Andrew Morton05ff5132006-03-22 00:08:20 -08001751 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
Mel Gorman54a6eb52008-04-28 02:12:16 -07001753 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
Mel Gormandd1a2392008-04-28 02:12:17 -07001754 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001755 struct zone *zone;
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001756 bool all_unreclaimable = true;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001757
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001758 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1759 sc->nodemask) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08001760 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 continue;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001762 /*
1763 * Take care memory controller reclaiming has small influence
1764 * to global LRU.
1765 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001766 if (scanning_global_lru(sc)) {
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001767 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1768 continue;
1769 note_zone_scanning_priority(zone, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08001771 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001772 continue; /* Let kswapd poll it */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001773 } else {
1774 /*
1775 * Ignore cpuset limitation here. We just want to reduce
1776 * # of used pages by us regardless of memory shortage.
1777 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001778 mem_cgroup_note_reclaim_priority(sc->mem_cgroup,
1779 priority);
1780 }
Nick Piggin408d8542006-09-25 23:31:27 -07001781
Rik van Riela79311c2009-01-06 14:40:01 -08001782 shrink_zone(priority, zone, sc);
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001783 all_unreclaimable = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001785 return all_unreclaimable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788/*
1789 * This is the main entry point to direct page reclaim.
1790 *
1791 * If a full scan of the inactive list fails to free enough memory then we
1792 * are "out of memory" and something needs to be killed.
1793 *
1794 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1795 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02001796 * caller can't do much about. We kick the writeback threads and take explicit
1797 * naps in the hope that some of these pages can be written. But if the
1798 * allocating task holds filesystem locks which prevent writeout this might not
1799 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07001800 *
1801 * returns: 0, if no pages reclaimed
1802 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 */
Mel Gormandac1d272008-04-28 02:12:12 -07001804static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Mel Gormandd1a2392008-04-28 02:12:17 -07001805 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
1807 int priority;
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001808 bool all_unreclaimable;
Andrew Morton69e05942006-03-22 00:08:19 -08001809 unsigned long total_scanned = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 struct reclaim_state *reclaim_state = current->reclaim_state;
Mel Gormandd1a2392008-04-28 02:12:17 -07001811 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001812 struct zone *zone;
Mel Gormandd1a2392008-04-28 02:12:17 -07001813 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001814 unsigned long writeback_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Miao Xiec0ff7452010-05-24 14:32:08 -07001816 get_mems_allowed();
Keika Kobayashi873b4772008-07-25 01:48:52 -07001817 delayacct_freepages_start();
1818
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001819 if (scanning_global_lru(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001820 count_vm_event(ALLOCSTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Balbir Singh66e17072008-02-07 00:13:56 -08001823 sc->nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001824 if (!priority)
1825 disable_swap_token();
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001826 all_unreclaimable = shrink_zones(priority, zonelist, sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001827 /*
1828 * Don't shrink slabs when reclaiming memory from
1829 * over limit cgroups
1830 */
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001831 if (scanning_global_lru(sc)) {
KOSAKI Motohiroc6a8a8c2010-08-09 17:19:14 -07001832 unsigned long lru_pages = 0;
1833 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1834 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1835 continue;
1836
1837 lru_pages += zone_reclaimable_pages(zone);
1838 }
1839
Mel Gormandd1a2392008-04-28 02:12:17 -07001840 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001841 if (reclaim_state) {
Rik van Riela79311c2009-01-06 14:40:01 -08001842 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -08001843 reclaim_state->reclaimed_slab = 0;
1844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
Balbir Singh66e17072008-02-07 00:13:56 -08001846 total_scanned += sc->nr_scanned;
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001847 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /*
1851 * Try to write back as many pages as we just scanned. This
1852 * tends to cause slow streaming writers to write data to the
1853 * disk smoothly, at the dirtying rate, which is nice. But
1854 * that's undesirable in laptop mode, where we *want* lumpy
1855 * writeout. So in laptop mode, write out the whole world.
1856 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001857 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
1858 if (total_scanned > writeback_threshold) {
Jens Axboe03ba3782009-09-09 09:08:54 +02001859 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned);
Balbir Singh66e17072008-02-07 00:13:56 -08001860 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
1862
1863 /* Take a nap, wait for some writeback to complete */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08001864 if (!sc->hibernation_mode && sc->nr_scanned &&
1865 priority < DEF_PRIORITY - 2)
Jens Axboe8aa7e842009-07-09 14:52:32 +02001866 congestion_wait(BLK_RW_ASYNC, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07001870 /*
1871 * Now that we've scanned all the zones at this priority level, note
1872 * that level within the zone so that the next thread which performs
1873 * scanning of this zone will immediately start out at this priority
1874 * level. This affects only the decision whether or not to bring
1875 * mapped pages onto the inactive list.
1876 */
1877 if (priority < 0)
1878 priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
KAMEZAWA Hiroyukie72e2bd2009-01-07 18:08:23 -08001880 if (scanning_global_lru(sc)) {
Mel Gorman54a6eb52008-04-28 02:12:16 -07001881 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001883 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1884 continue;
1885
1886 zone->prev_priority = priority;
1887 }
1888 } else
1889 mem_cgroup_record_reclaim_priority(sc->mem_cgroup, priority);
1890
Keika Kobayashi873b4772008-07-25 01:48:52 -07001891 delayacct_freepages_end();
Miao Xiec0ff7452010-05-24 14:32:08 -07001892 put_mems_allowed();
Keika Kobayashi873b4772008-07-25 01:48:52 -07001893
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07001894 if (sc->nr_reclaimed)
1895 return sc->nr_reclaimed;
1896
1897 /* top priority shrink_zones still had more to do? don't OOM, then */
1898 if (scanning_global_lru(sc) && !all_unreclaimable)
1899 return 1;
1900
1901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
Mel Gormandac1d272008-04-28 02:12:12 -07001904unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001905 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08001906{
Mel Gorman33906bc2010-08-09 17:19:16 -07001907 unsigned long nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08001908 struct scan_control sc = {
1909 .gfp_mask = gfp_mask,
1910 .may_writepage = !laptop_mode,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001911 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001912 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001913 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08001914 .swappiness = vm_swappiness,
1915 .order = order,
1916 .mem_cgroup = NULL,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001917 .nodemask = nodemask,
Balbir Singh66e17072008-02-07 00:13:56 -08001918 };
1919
Mel Gorman33906bc2010-08-09 17:19:16 -07001920 trace_mm_vmscan_direct_reclaim_begin(order,
1921 sc.may_writepage,
1922 gfp_mask);
1923
1924 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
1925
1926 trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
1927
1928 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08001929}
1930
Balbir Singh00f0b822008-03-04 14:28:39 -08001931#ifdef CONFIG_CGROUP_MEM_RES_CTLR
Balbir Singh66e17072008-02-07 00:13:56 -08001932
Balbir Singh4e416952009-09-23 15:56:39 -07001933unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *mem,
1934 gfp_t gfp_mask, bool noswap,
1935 unsigned int swappiness,
1936 struct zone *zone, int nid)
1937{
1938 struct scan_control sc = {
1939 .may_writepage = !laptop_mode,
1940 .may_unmap = 1,
1941 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07001942 .swappiness = swappiness,
1943 .order = 0,
1944 .mem_cgroup = mem,
Balbir Singh4e416952009-09-23 15:56:39 -07001945 };
1946 nodemask_t nm = nodemask_of_node(nid);
1947
1948 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1949 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1950 sc.nodemask = &nm;
1951 sc.nr_reclaimed = 0;
1952 sc.nr_scanned = 0;
1953 /*
1954 * NOTE: Although we can get the priority field, using it
1955 * here is not a good idea, since it limits the pages we can scan.
1956 * if we don't reclaim here, the shrink_zone from balance_pgdat
1957 * will pick up pages from other mem cgroup's as well. We hack
1958 * the priority and make it zero.
1959 */
1960 shrink_zone(0, zone, &sc);
1961 return sc.nr_reclaimed;
1962}
1963
Balbir Singhe1a1cd52008-02-07 00:14:02 -08001964unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001965 gfp_t gfp_mask,
1966 bool noswap,
1967 unsigned int swappiness)
Balbir Singh66e17072008-02-07 00:13:56 -08001968{
Balbir Singh4e416952009-09-23 15:56:39 -07001969 struct zonelist *zonelist;
Balbir Singh66e17072008-02-07 00:13:56 -08001970 struct scan_control sc = {
Balbir Singh66e17072008-02-07 00:13:56 -08001971 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07001972 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07001973 .may_swap = !noswap,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08001974 .nr_to_reclaim = SWAP_CLUSTER_MAX,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08001975 .swappiness = swappiness,
Balbir Singh66e17072008-02-07 00:13:56 -08001976 .order = 0,
1977 .mem_cgroup = mem_cont,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07001978 .nodemask = NULL, /* we don't care the placement */
Balbir Singh66e17072008-02-07 00:13:56 -08001979 };
Balbir Singh66e17072008-02-07 00:13:56 -08001980
Mel Gormandd1a2392008-04-28 02:12:17 -07001981 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1982 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1983 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
1984 return do_try_to_free_pages(zonelist, &sc);
Balbir Singh66e17072008-02-07 00:13:56 -08001985}
1986#endif
1987
Mel Gormanf50de2d2009-12-14 17:58:53 -08001988/* is kswapd sleeping prematurely? */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001989static int sleeping_prematurely(pg_data_t *pgdat, int order, long remaining)
Mel Gormanf50de2d2009-12-14 17:58:53 -08001990{
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001991 int i;
Mel Gormanf50de2d2009-12-14 17:58:53 -08001992
1993 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
1994 if (remaining)
1995 return 1;
1996
1997 /* If after HZ/10, a zone is below the high mark, it's premature */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08001998 for (i = 0; i < pgdat->nr_zones; i++) {
1999 struct zone *zone = pgdat->node_zones + i;
2000
2001 if (!populated_zone(zone))
2002 continue;
2003
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002004 if (zone->all_unreclaimable)
KOSAKI Motohirode3fab32010-01-15 17:01:25 -08002005 continue;
2006
Mel Gormanf50de2d2009-12-14 17:58:53 -08002007 if (!zone_watermark_ok(zone, order, high_wmark_pages(zone),
2008 0, 0))
2009 return 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002010 }
Mel Gormanf50de2d2009-12-14 17:58:53 -08002011
2012 return 0;
2013}
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/*
2016 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07002017 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 * Returns the number of pages which were actually freed.
2020 *
2021 * There is special handling here for zones which are full of pinned pages.
2022 * This can happen if the pages are all mlocked, or if they are all used by
2023 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
2024 * What we do is to detect the case where all pages in the zone have been
2025 * scanned twice and there has been zero successful reclaim. Mark the zone as
2026 * dead and from now on, only perform a short scan. Basically we're polling
2027 * the zone for when the problem goes away.
2028 *
2029 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07002030 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
2031 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
2032 * lower zones regardless of the number of free pages in the lower zones. This
2033 * interoperates with the page allocator fallback scheme to ensure that aging
2034 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002036static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 int all_zones_ok;
2039 int priority;
2040 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08002041 unsigned long total_scanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08002043 struct scan_control sc = {
2044 .gfp_mask = GFP_KERNEL,
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002045 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002046 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002047 /*
2048 * kswapd doesn't want to be bailed out while reclaim. because
2049 * we want to put equal scanning pressure on each zone.
2050 */
2051 .nr_to_reclaim = ULONG_MAX,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002052 .swappiness = vm_swappiness,
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07002053 .order = order,
Balbir Singh66e17072008-02-07 00:13:56 -08002054 .mem_cgroup = NULL,
Andrew Morton179e9632006-03-22 00:08:18 -08002055 };
Martin Bligh3bb1a852006-10-28 10:38:24 -07002056 /*
2057 * temp_priority is used to remember the scanning priority at which
Mel Gorman41858962009-06-16 15:32:12 -07002058 * this zone was successfully refilled to
2059 * free_pages == high_wmark_pages(zone).
Martin Bligh3bb1a852006-10-28 10:38:24 -07002060 */
2061 int temp_priority[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063loop_again:
2064 total_scanned = 0;
Rik van Riela79311c2009-01-06 14:40:01 -08002065 sc.nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07002066 sc.may_writepage = !laptop_mode;
Christoph Lameterf8891e52006-06-30 01:55:45 -07002067 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Martin Bligh3bb1a852006-10-28 10:38:24 -07002069 for (i = 0; i < pgdat->nr_zones; i++)
2070 temp_priority[i] = DEF_PRIORITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
2073 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
2074 unsigned long lru_pages = 0;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002075 int has_under_min_watermark_zone = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Rik van Rielf7b7fd82005-11-28 13:44:07 -08002077 /* The swap token gets in the way of swapout... */
2078 if (!priority)
2079 disable_swap_token();
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 all_zones_ok = 1;
2082
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002083 /*
2084 * Scan in the highmem->dma direction for the highest
2085 * zone which needs scanning
2086 */
2087 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
2088 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002090 if (!populated_zone(zone))
2091 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002093 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002094 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Rik van Riel556adec2008-10-18 20:26:34 -07002096 /*
2097 * Do some background aging of the anon list, to give
2098 * pages a chance to be referenced before reclaiming.
2099 */
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002100 if (inactive_anon_is_low(zone, &sc))
Rik van Riel556adec2008-10-18 20:26:34 -07002101 shrink_active_list(SWAP_CLUSTER_MAX, zone,
2102 &sc, priority, 0);
2103
Mel Gorman41858962009-06-16 15:32:12 -07002104 if (!zone_watermark_ok(zone, order,
2105 high_wmark_pages(zone), 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002106 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002107 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
Andrew Mortone1dbeda2006-12-06 20:32:01 -08002110 if (i < 0)
2111 goto out;
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 for (i = 0; i <= end_zone; i++) {
2114 struct zone *zone = pgdat->node_zones + i;
2115
Wu Fengguangadea02a2009-09-21 17:01:42 -07002116 lru_pages += zone_reclaimable_pages(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
2119 /*
2120 * Now scan the zone in the dma->highmem direction, stopping
2121 * at the last zone which needs scanning.
2122 *
2123 * We do this because the page allocator works in the opposite
2124 * direction. This prevents the page allocator from allocating
2125 * pages behind kswapd's direction of progress, which would
2126 * cause too much scanning of the lower zones.
2127 */
2128 for (i = 0; i <= end_zone; i++) {
2129 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002130 int nr_slab;
Balbir Singh4e416952009-09-23 15:56:39 -07002131 int nid, zid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Con Kolivasf3fe6512006-01-06 00:11:15 -08002133 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 continue;
2135
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002136 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 continue;
2138
Martin Bligh3bb1a852006-10-28 10:38:24 -07002139 temp_priority[i] = priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 sc.nr_scanned = 0;
Martin Bligh3bb1a852006-10-28 10:38:24 -07002141 note_zone_scanning_priority(zone, priority);
Balbir Singh4e416952009-09-23 15:56:39 -07002142
2143 nid = pgdat->node_id;
2144 zid = zone_idx(zone);
2145 /*
2146 * Call soft limit reclaim before calling shrink_zone.
2147 * For now we ignore the return value
2148 */
2149 mem_cgroup_soft_limit_reclaim(zone, order, sc.gfp_mask,
2150 nid, zid);
Rik van Riel32a43302007-10-16 01:24:50 -07002151 /*
2152 * We put equal pressure on every zone, unless one
2153 * zone has way too many pages free already.
2154 */
Mel Gorman41858962009-06-16 15:32:12 -07002155 if (!zone_watermark_ok(zone, order,
2156 8*high_wmark_pages(zone), end_zone, 0))
Rik van Riela79311c2009-01-06 14:40:01 -08002157 shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07002159 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
2160 lru_pages);
Rik van Riela79311c2009-01-06 14:40:01 -08002161 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 total_scanned += sc.nr_scanned;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002163 if (zone->all_unreclaimable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 continue;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002165 if (nr_slab == 0 &&
2166 zone->pages_scanned >= (zone_reclaimable_pages(zone) * 6))
2167 zone->all_unreclaimable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /*
2169 * If we've done a decent amount of scanning and
2170 * the reclaim ratio is low, start doing writepage
2171 * even in laptop mode
2172 */
2173 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Rik van Riela79311c2009-01-06 14:40:01 -08002174 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 sc.may_writepage = 1;
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002176
Minchan Kim45973d72010-03-05 13:41:45 -08002177 if (!zone_watermark_ok(zone, order,
2178 high_wmark_pages(zone), end_zone, 0)) {
2179 all_zones_ok = 0;
2180 /*
2181 * We are still under min water mark. This
2182 * means that we have a GFP_ATOMIC allocation
2183 * failure risk. Hurry up!
2184 */
2185 if (!zone_watermark_ok(zone, order,
2186 min_wmark_pages(zone), end_zone, 0))
2187 has_under_min_watermark_zone = 1;
2188 }
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (all_zones_ok)
2192 break; /* kswapd: all done */
2193 /*
2194 * OK, kswapd is getting into trouble. Take a nap, then take
2195 * another pass across the zones.
2196 */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002197 if (total_scanned && (priority < DEF_PRIORITY - 2)) {
2198 if (has_under_min_watermark_zone)
2199 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT);
2200 else
2201 congestion_wait(BLK_RW_ASYNC, HZ/10);
2202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 /*
2205 * We do this so kswapd doesn't build up large priorities for
2206 * example when it is freeing in parallel with allocators. It
2207 * matches the direct reclaim path behaviour in terms of impact
2208 * on zone->*_priority.
2209 */
Rik van Riela79311c2009-01-06 14:40:01 -08002210 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 break;
2212 }
2213out:
Martin Bligh3bb1a852006-10-28 10:38:24 -07002214 /*
2215 * Note within each zone the priority level at which this zone was
2216 * brought into a happy state. So that the next thread which scans this
2217 * zone will start out at that priority level.
2218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 for (i = 0; i < pgdat->nr_zones; i++) {
2220 struct zone *zone = pgdat->node_zones + i;
2221
Martin Bligh3bb1a852006-10-28 10:38:24 -07002222 zone->prev_priority = temp_priority[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
2224 if (!all_zones_ok) {
2225 cond_resched();
Rafael J. Wysocki83573762006-12-06 20:34:18 -08002226
2227 try_to_freeze();
2228
KOSAKI Motohiro73ce02e2009-01-06 14:40:33 -08002229 /*
2230 * Fragmentation may mean that the system cannot be
2231 * rebalanced for high-order allocations in all zones.
2232 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2233 * it means the zones have been fully scanned and are still
2234 * not balanced. For high-order allocations, there is
2235 * little point trying all over again as kswapd may
2236 * infinite loop.
2237 *
2238 * Instead, recheck all watermarks at order-0 as they
2239 * are the most important. If watermarks are ok, kswapd will go
2240 * back to sleep. High-order users can still perform direct
2241 * reclaim if they wish.
2242 */
2243 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
2244 order = sc.order = 0;
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 goto loop_again;
2247 }
2248
Rik van Riela79311c2009-01-06 14:40:01 -08002249 return sc.nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
2252/*
2253 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002254 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 *
2256 * This basically trickles out pages so that we have _some_
2257 * free memory available even if there is no other activity
2258 * that frees anything up. This is needed for things like routing
2259 * etc, where we otherwise might have all activity going on in
2260 * asynchronous contexts that cannot page things out.
2261 *
2262 * If there are applications that are active memory-allocators
2263 * (most normal use), this basically shouldn't matter.
2264 */
2265static int kswapd(void *p)
2266{
2267 unsigned long order;
2268 pg_data_t *pgdat = (pg_data_t*)p;
2269 struct task_struct *tsk = current;
2270 DEFINE_WAIT(wait);
2271 struct reclaim_state reclaim_state = {
2272 .reclaimed_slab = 0,
2273 };
Rusty Russella70f7302009-03-13 14:49:46 +10302274 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Nick Piggincf40bd12009-01-21 08:12:39 +01002276 lockdep_set_current_reclaim_state(GFP_KERNEL);
2277
Rusty Russell174596a2009-01-01 10:12:29 +10302278 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07002279 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 current->reclaim_state = &reclaim_state;
2281
2282 /*
2283 * Tell the memory management that we're a "memory allocator",
2284 * and that if we need more memory we should get access to it
2285 * regardless (see "__alloc_pages()"). "kswapd" should
2286 * never get caught in the normal page freeing logic.
2287 *
2288 * (Kswapd normally doesn't need memory anyway, but sometimes
2289 * you need a small amount of memory in order to be able to
2290 * page out something else, and this flag essentially protects
2291 * us from recursively trying to free more memory as we're
2292 * trying to free the first piece of memory in the first place).
2293 */
Christoph Lameter930d9152006-01-08 01:00:47 -08002294 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07002295 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 order = 0;
2298 for ( ; ; ) {
2299 unsigned long new_order;
David Rientjes8fe23e02009-12-14 17:58:33 -08002300 int ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2303 new_order = pgdat->kswapd_max_order;
2304 pgdat->kswapd_max_order = 0;
2305 if (order < new_order) {
2306 /*
2307 * Don't sleep if someone wants a larger 'order'
2308 * allocation
2309 */
2310 order = new_order;
2311 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002312 if (!freezing(current) && !kthread_should_stop()) {
2313 long remaining = 0;
2314
2315 /* Try to sleep for a short interval */
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002316 if (!sleeping_prematurely(pgdat, order, remaining)) {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002317 remaining = schedule_timeout(HZ/10);
2318 finish_wait(&pgdat->kswapd_wait, &wait);
2319 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
2320 }
2321
2322 /*
2323 * After a short sleep, check if it was a
2324 * premature sleep. If not, then go fully
2325 * to sleep until explicitly woken up
2326 */
Mel Gorman33906bc2010-08-09 17:19:16 -07002327 if (!sleeping_prematurely(pgdat, order, remaining)) {
2328 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002329 schedule();
Mel Gorman33906bc2010-08-09 17:19:16 -07002330 } else {
Mel Gormanf50de2d2009-12-14 17:58:53 -08002331 if (remaining)
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002332 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002333 else
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -08002334 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
Mel Gormanf50de2d2009-12-14 17:58:53 -08002335 }
2336 }
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 order = pgdat->kswapd_max_order;
2339 }
2340 finish_wait(&pgdat->kswapd_wait, &wait);
2341
David Rientjes8fe23e02009-12-14 17:58:33 -08002342 ret = try_to_freeze();
2343 if (kthread_should_stop())
2344 break;
2345
2346 /*
2347 * We can speed up thawing tasks if we don't call balance_pgdat
2348 * after returning from the refrigerator
2349 */
Mel Gorman33906bc2010-08-09 17:19:16 -07002350 if (!ret) {
2351 trace_mm_vmscan_kswapd_wake(pgdat->node_id, order);
Rafael J. Wysockib1296cc2007-05-06 14:50:48 -07002352 balance_pgdat(pgdat, order);
Mel Gorman33906bc2010-08-09 17:19:16 -07002353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
2355 return 0;
2356}
2357
2358/*
2359 * A zone is low on free memory, so wake its kswapd task to service it.
2360 */
2361void wakeup_kswapd(struct zone *zone, int order)
2362{
2363 pg_data_t *pgdat;
2364
Con Kolivasf3fe6512006-01-06 00:11:15 -08002365 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 return;
2367
2368 pgdat = zone->zone_pgdat;
Mel Gorman41858962009-06-16 15:32:12 -07002369 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 return;
2371 if (pgdat->kswapd_max_order < order)
2372 pgdat->kswapd_max_order = order;
Mel Gorman33906bc2010-08-09 17:19:16 -07002373 trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order);
Paul Jackson02a0e532006-12-13 00:34:25 -08002374 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002376 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07002378 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
Wu Fengguangadea02a2009-09-21 17:01:42 -07002381/*
2382 * The reclaimable count would be mostly accurate.
2383 * The less reclaimable pages may be
2384 * - mlocked pages, which will be moved to unevictable list when encountered
2385 * - mapped pages, which may require several travels to be reclaimed
2386 * - dirty pages, which is not "instantly" reclaimable
2387 */
2388unsigned long global_reclaimable_pages(void)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002389{
Wu Fengguangadea02a2009-09-21 17:01:42 -07002390 int nr;
2391
2392 nr = global_page_state(NR_ACTIVE_FILE) +
2393 global_page_state(NR_INACTIVE_FILE);
2394
2395 if (nr_swap_pages > 0)
2396 nr += global_page_state(NR_ACTIVE_ANON) +
2397 global_page_state(NR_INACTIVE_ANON);
2398
2399 return nr;
2400}
2401
2402unsigned long zone_reclaimable_pages(struct zone *zone)
2403{
2404 int nr;
2405
2406 nr = zone_page_state(zone, NR_ACTIVE_FILE) +
2407 zone_page_state(zone, NR_INACTIVE_FILE);
2408
2409 if (nr_swap_pages > 0)
2410 nr += zone_page_state(zone, NR_ACTIVE_ANON) +
2411 zone_page_state(zone, NR_INACTIVE_ANON);
2412
2413 return nr;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002414}
2415
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002416#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002418 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002419 * freed pages.
2420 *
2421 * Rather than trying to age LRUs the aim is to preserve the overall
2422 * LRU order by reclaiming preferentially
2423 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002425unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002427 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002428 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002429 .gfp_mask = GFP_HIGHUSER_MOVABLE,
2430 .may_swap = 1,
2431 .may_unmap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002432 .may_writepage = 1,
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002433 .nr_to_reclaim = nr_to_reclaim,
2434 .hibernation_mode = 1,
2435 .swappiness = vm_swappiness,
2436 .order = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 };
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002438 struct zonelist * zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
2439 struct task_struct *p = current;
2440 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002442 p->flags |= PF_MEMALLOC;
2443 lockdep_set_current_reclaim_state(sc.gfp_mask);
2444 reclaim_state.reclaimed_slab = 0;
2445 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08002446
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002447 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002448
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002449 p->reclaim_state = NULL;
2450 lockdep_clear_current_reclaim_state();
2451 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002452
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08002453 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02002455#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457/* It's optimal to keep kswapds on the same CPUs as their memory, but
2458 not required for correctness. So if the last cpu in a node goes
2459 away, we get changed to run anywhere: as the first one comes back,
2460 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07002461static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08002462 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002464 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002466 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07002467 for_each_node_state(nid, N_HIGH_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07002468 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10302469 const struct cpumask *mask;
2470
2471 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07002472
Rusty Russell3e597942009-01-01 10:12:24 +10302473 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07002475 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 }
2477 }
2478 return NOTIFY_OK;
2479}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Yasunori Goto3218ae12006-06-27 02:53:33 -07002481/*
2482 * This kswapd start function will be called by init and node-hot-add.
2483 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2484 */
2485int kswapd_run(int nid)
2486{
2487 pg_data_t *pgdat = NODE_DATA(nid);
2488 int ret = 0;
2489
2490 if (pgdat->kswapd)
2491 return 0;
2492
2493 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2494 if (IS_ERR(pgdat->kswapd)) {
2495 /* failure at boot is fatal */
2496 BUG_ON(system_state == SYSTEM_BOOTING);
2497 printk("Failed to start kswapd on node %d\n",nid);
2498 ret = -1;
2499 }
2500 return ret;
2501}
2502
David Rientjes8fe23e02009-12-14 17:58:33 -08002503/*
2504 * Called by memory hotplug when all memory in a node is offlined.
2505 */
2506void kswapd_stop(int nid)
2507{
2508 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
2509
2510 if (kswapd)
2511 kthread_stop(kswapd);
2512}
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514static int __init kswapd_init(void)
2515{
Yasunori Goto3218ae12006-06-27 02:53:33 -07002516 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 swap_setup();
Christoph Lameter9422ffb2007-10-16 01:25:31 -07002519 for_each_node_state(nid, N_HIGH_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07002520 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 hotcpu_notifier(cpu_callback, 0);
2522 return 0;
2523}
2524
2525module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002526
2527#ifdef CONFIG_NUMA
2528/*
2529 * Zone reclaim mode
2530 *
2531 * If non-zero call zone_reclaim when the number of free pages falls below
2532 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08002533 */
2534int zone_reclaim_mode __read_mostly;
2535
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002536#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07002537#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08002538#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2539#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2540
Christoph Lameter9eeff232006-01-18 17:42:31 -08002541/*
Christoph Lametera92f7122006-02-01 03:05:32 -08002542 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2543 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2544 * a zone.
2545 */
2546#define ZONE_RECLAIM_PRIORITY 4
2547
Christoph Lameter9eeff232006-01-18 17:42:31 -08002548/*
Christoph Lameter96146342006-07-03 00:24:13 -07002549 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2550 * occur.
2551 */
2552int sysctl_min_unmapped_ratio = 1;
2553
2554/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002555 * If the number of slab pages in a zone grows beyond this percentage then
2556 * slab reclaim needs to occur.
2557 */
2558int sysctl_min_slab_ratio = 5;
2559
Mel Gorman90afa5d2009-06-16 15:33:20 -07002560static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
2561{
2562 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
2563 unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) +
2564 zone_page_state(zone, NR_ACTIVE_FILE);
2565
2566 /*
2567 * It's possible for there to be more file mapped pages than
2568 * accounted for by the pages on the file LRU lists because
2569 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2570 */
2571 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
2572}
2573
2574/* Work out how many page cache pages we can reclaim in this reclaim_mode */
2575static long zone_pagecache_reclaimable(struct zone *zone)
2576{
2577 long nr_pagecache_reclaimable;
2578 long delta = 0;
2579
2580 /*
2581 * If RECLAIM_SWAP is set, then all file pages are considered
2582 * potentially reclaimable. Otherwise, we have to worry about
2583 * pages like swapcache and zone_unmapped_file_pages() provides
2584 * a better estimate
2585 */
2586 if (zone_reclaim_mode & RECLAIM_SWAP)
2587 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
2588 else
2589 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
2590
2591 /* If we can't clean pages, remove dirty pages from consideration */
2592 if (!(zone_reclaim_mode & RECLAIM_WRITE))
2593 delta += zone_page_state(zone, NR_FILE_DIRTY);
2594
2595 /* Watch for any possible underflows due to delta */
2596 if (unlikely(delta > nr_pagecache_reclaimable))
2597 delta = nr_pagecache_reclaimable;
2598
2599 return nr_pagecache_reclaimable - delta;
2600}
2601
Christoph Lameter0ff38492006-09-25 23:31:52 -07002602/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08002603 * Try to free up some pages from this zone through reclaim.
2604 */
Andrew Morton179e9632006-03-22 00:08:18 -08002605static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08002606{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002607 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08002608 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002609 struct task_struct *p = current;
2610 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08002611 int priority;
Andrew Morton179e9632006-03-22 00:08:18 -08002612 struct scan_control sc = {
2613 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Johannes Weinera6dc60f2009-03-31 15:19:30 -07002614 .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP),
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002615 .may_swap = 1,
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002616 .nr_to_reclaim = max_t(unsigned long, nr_pages,
2617 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08002618 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07002619 .swappiness = vm_swappiness,
Johannes Weinerbd2f6192009-03-31 15:19:38 -07002620 .order = order,
Andrew Morton179e9632006-03-22 00:08:18 -08002621 };
Christoph Lameter83e33a42006-09-25 23:31:53 -07002622 unsigned long slab_reclaimable;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002623
Christoph Lameter9eeff232006-01-18 17:42:31 -08002624 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08002625 /*
2626 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2627 * and we also need to be able to write out pages for RECLAIM_WRITE
2628 * and RECLAIM_SWAP.
2629 */
2630 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002631 lockdep_set_current_reclaim_state(gfp_mask);
Christoph Lameter9eeff232006-01-18 17:42:31 -08002632 reclaim_state.reclaimed_slab = 0;
2633 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08002634
Mel Gorman90afa5d2009-06-16 15:33:20 -07002635 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07002636 /*
2637 * Free memory by calling shrink zone with increasing
2638 * priorities until we have enough memory freed.
2639 */
2640 priority = ZONE_RECLAIM_PRIORITY;
2641 do {
Martin Bligh3bb1a852006-10-28 10:38:24 -07002642 note_zone_scanning_priority(zone, priority);
Rik van Riela79311c2009-01-06 14:40:01 -08002643 shrink_zone(priority, zone, &sc);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002644 priority--;
Rik van Riela79311c2009-01-06 14:40:01 -08002645 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
Christoph Lameter0ff38492006-09-25 23:31:52 -07002646 }
Christoph Lameterc84db232006-02-01 03:05:29 -08002647
Christoph Lameter83e33a42006-09-25 23:31:53 -07002648 slab_reclaimable = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2649 if (slab_reclaimable > zone->min_slab_pages) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002650 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08002651 * shrink_slab() does not currently allow us to determine how
Christoph Lameter0ff38492006-09-25 23:31:52 -07002652 * many pages were freed in this zone. So we take the current
2653 * number of slab pages and shake the slab until it is reduced
2654 * by the same nr_pages that we used for reclaiming unmapped
2655 * pages.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002656 *
Christoph Lameter0ff38492006-09-25 23:31:52 -07002657 * Note that shrink_slab will free memory on all zones and may
2658 * take a long time.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002659 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07002660 while (shrink_slab(sc.nr_scanned, gfp_mask, order) &&
Christoph Lameter83e33a42006-09-25 23:31:53 -07002661 zone_page_state(zone, NR_SLAB_RECLAIMABLE) >
2662 slab_reclaimable - nr_pages)
Christoph Lameter0ff38492006-09-25 23:31:52 -07002663 ;
Christoph Lameter83e33a42006-09-25 23:31:53 -07002664
2665 /*
2666 * Update nr_reclaimed by the number of slab pages we
2667 * reclaimed from this zone.
2668 */
Rik van Riela79311c2009-01-06 14:40:01 -08002669 sc.nr_reclaimed += slab_reclaimable -
Christoph Lameter83e33a42006-09-25 23:31:53 -07002670 zone_page_state(zone, NR_SLAB_RECLAIMABLE);
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08002671 }
2672
Christoph Lameter9eeff232006-01-18 17:42:31 -08002673 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08002674 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08002675 lockdep_clear_current_reclaim_state();
Rik van Riela79311c2009-01-06 14:40:01 -08002676 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08002677}
Andrew Morton179e9632006-03-22 00:08:18 -08002678
2679int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2680{
Andrew Morton179e9632006-03-22 00:08:18 -08002681 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07002682 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002683
2684 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07002685 * Zone reclaim reclaims unmapped file backed pages and
2686 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07002687 *
Christoph Lameter96146342006-07-03 00:24:13 -07002688 * A small portion of unmapped file backed pages is needed for
2689 * file I/O otherwise pages read by file I/O will be immediately
2690 * thrown out if the zone is overallocated. So we do not reclaim
2691 * if less than a specified percentage of the zone is used by
2692 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08002693 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07002694 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
2695 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002696 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08002697
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08002698 if (zone->all_unreclaimable)
Mel Gormanfa5e0842009-06-16 15:33:22 -07002699 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07002700
Andrew Morton179e9632006-03-22 00:08:18 -08002701 /*
David Rientjesd773ed62007-10-16 23:26:01 -07002702 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08002703 */
David Rientjesd773ed62007-10-16 23:26:01 -07002704 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002705 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08002706
2707 /*
2708 * Only run zone reclaim on the local zone or on zones that do not
2709 * have associated processors. This will favor the local processor
2710 * over remote processors and spread off node memory allocations
2711 * as wide as possible.
2712 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07002713 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07002714 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07002715 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07002716
2717 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
Mel Gormanfa5e0842009-06-16 15:33:22 -07002718 return ZONE_RECLAIM_NOSCAN;
2719
David Rientjesd773ed62007-10-16 23:26:01 -07002720 ret = __zone_reclaim(zone, gfp_mask, order);
2721 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2722
Mel Gorman24cf725182009-06-16 15:33:23 -07002723 if (!ret)
2724 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
2725
David Rientjesd773ed62007-10-16 23:26:01 -07002726 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08002727}
Christoph Lameter9eeff232006-01-18 17:42:31 -08002728#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002729
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002730/*
2731 * page_evictable - test whether a page is evictable
2732 * @page: the page to test
2733 * @vma: the VMA in which the page is or will be mapped, may be NULL
2734 *
2735 * Test whether page is evictable--i.e., should be placed on active/inactive
Nick Pigginb291f002008-10-18 20:26:44 -07002736 * lists vs unevictable list. The vma argument is !NULL when called from the
2737 * fault path to determine how to instantate a new page.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002738 *
2739 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002740 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07002741 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002742 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002743 */
2744int page_evictable(struct page *page, struct vm_area_struct *vma)
2745{
2746
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07002747 if (mapping_unevictable(page_mapping(page)))
2748 return 0;
2749
Nick Pigginb291f002008-10-18 20:26:44 -07002750 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2751 return 0;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002752
2753 return 1;
2754}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002755
2756/**
2757 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2758 * @page: page to check evictability and move to appropriate lru list
2759 * @zone: zone page is in
2760 *
2761 * Checks a page for evictability and moves the page to the appropriate
2762 * zone lru list.
2763 *
2764 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2765 * have PageUnevictable set.
2766 */
2767static void check_move_unevictable_page(struct page *page, struct zone *zone)
2768{
2769 VM_BUG_ON(PageActive(page));
2770
2771retry:
2772 ClearPageUnevictable(page);
2773 if (page_evictable(page, NULL)) {
Johannes Weiner401a8e12009-09-21 17:02:58 -07002774 enum lru_list l = page_lru_base_type(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002775
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002776 __dec_zone_state(zone, NR_UNEVICTABLE);
2777 list_move(&page->lru, &zone->lru[l].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002778 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002779 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2780 __count_vm_event(UNEVICTABLE_PGRESCUED);
2781 } else {
2782 /*
2783 * rotate unevictable list
2784 */
2785 SetPageUnevictable(page);
2786 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08002787 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07002788 if (page_evictable(page, NULL))
2789 goto retry;
2790 }
2791}
2792
2793/**
2794 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2795 * @mapping: struct address_space to scan for evictable pages
2796 *
2797 * Scan all pages in mapping. Check unevictable pages for
2798 * evictability and move them to the appropriate zone lru list.
2799 */
2800void scan_mapping_unevictable_pages(struct address_space *mapping)
2801{
2802 pgoff_t next = 0;
2803 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2804 PAGE_CACHE_SHIFT;
2805 struct zone *zone;
2806 struct pagevec pvec;
2807
2808 if (mapping->nrpages == 0)
2809 return;
2810
2811 pagevec_init(&pvec, 0);
2812 while (next < end &&
2813 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2814 int i;
2815 int pg_scanned = 0;
2816
2817 zone = NULL;
2818
2819 for (i = 0; i < pagevec_count(&pvec); i++) {
2820 struct page *page = pvec.pages[i];
2821 pgoff_t page_index = page->index;
2822 struct zone *pagezone = page_zone(page);
2823
2824 pg_scanned++;
2825 if (page_index > next)
2826 next = page_index;
2827 next++;
2828
2829 if (pagezone != zone) {
2830 if (zone)
2831 spin_unlock_irq(&zone->lru_lock);
2832 zone = pagezone;
2833 spin_lock_irq(&zone->lru_lock);
2834 }
2835
2836 if (PageLRU(page) && PageUnevictable(page))
2837 check_move_unevictable_page(page, zone);
2838 }
2839 if (zone)
2840 spin_unlock_irq(&zone->lru_lock);
2841 pagevec_release(&pvec);
2842
2843 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2844 }
2845
2846}
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002847
2848/**
2849 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2850 * @zone - zone of which to scan the unevictable list
2851 *
2852 * Scan @zone's unevictable LRU lists to check for pages that have become
2853 * evictable. Move those that have to @zone's inactive list where they
2854 * become candidates for reclaim, unless shrink_inactive_zone() decides
2855 * to reactivate them. Pages that are still unevictable are rotated
2856 * back onto @zone's unevictable list.
2857 */
2858#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
KOSAKI Motohiro14b90b22009-01-06 14:39:45 -08002859static void scan_zone_unevictable_pages(struct zone *zone)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002860{
2861 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2862 unsigned long scan;
2863 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2864
2865 while (nr_to_scan > 0) {
2866 unsigned long batch_size = min(nr_to_scan,
2867 SCAN_UNEVICTABLE_BATCH_SIZE);
2868
2869 spin_lock_irq(&zone->lru_lock);
2870 for (scan = 0; scan < batch_size; scan++) {
2871 struct page *page = lru_to_page(l_unevictable);
2872
2873 if (!trylock_page(page))
2874 continue;
2875
2876 prefetchw_prev_lru_page(page, l_unevictable, flags);
2877
2878 if (likely(PageLRU(page) && PageUnevictable(page)))
2879 check_move_unevictable_page(page, zone);
2880
2881 unlock_page(page);
2882 }
2883 spin_unlock_irq(&zone->lru_lock);
2884
2885 nr_to_scan -= batch_size;
2886 }
2887}
2888
2889
2890/**
2891 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2892 *
2893 * A really big hammer: scan all zones' unevictable LRU lists to check for
2894 * pages that have become evictable. Move those back to the zones'
2895 * inactive list where they become candidates for reclaim.
2896 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2897 * and we add swap to the system. As such, it runs in the context of a task
2898 * that has possibly/probably made some previously unevictable pages
2899 * evictable.
2900 */
KOSAKI Motohiroff301532009-01-06 14:39:44 -08002901static void scan_all_zones_unevictable_pages(void)
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002902{
2903 struct zone *zone;
2904
2905 for_each_zone(zone) {
2906 scan_zone_unevictable_pages(zone);
2907 }
2908}
2909
2910/*
2911 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2912 * all nodes' unevictable lists for evictable pages
2913 */
2914unsigned long scan_unevictable_pages;
2915
2916int scan_unevictable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002917 void __user *buffer,
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002918 size_t *length, loff_t *ppos)
2919{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002920 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07002921
2922 if (write && *(unsigned long *)table->data)
2923 scan_all_zones_unevictable_pages();
2924
2925 scan_unevictable_pages = 0;
2926 return 0;
2927}
2928
2929/*
2930 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2931 * a specified node's per zone unevictable lists for evictable pages.
2932 */
2933
2934static ssize_t read_scan_unevictable_node(struct sys_device *dev,
2935 struct sysdev_attribute *attr,
2936 char *buf)
2937{
2938 return sprintf(buf, "0\n"); /* always zero; should fit... */
2939}
2940
2941static ssize_t write_scan_unevictable_node(struct sys_device *dev,
2942 struct sysdev_attribute *attr,
2943 const char *buf, size_t count)
2944{
2945 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
2946 struct zone *zone;
2947 unsigned long res;
2948 unsigned long req = strict_strtoul(buf, 10, &res);
2949
2950 if (!req)
2951 return 1; /* zero is no-op */
2952
2953 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2954 if (!populated_zone(zone))
2955 continue;
2956 scan_zone_unevictable_pages(zone);
2957 }
2958 return 1;
2959}
2960
2961
2962static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
2963 read_scan_unevictable_node,
2964 write_scan_unevictable_node);
2965
2966int scan_unevictable_register_node(struct node *node)
2967{
2968 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
2969}
2970
2971void scan_unevictable_unregister_node(struct node *node)
2972{
2973 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
2974}
2975