blob: 0960846d649f460efdd4391880dd2f41bd230e81 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/vmscan.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 *
6 * Swap reorganised 29.12.95, Stephen Tweedie.
7 * kswapd added: 7.1.96 sct
8 * Removed kswapd_ctl limits, and swap out as many pages as needed
9 * to bring the system back to freepages.high: 2.4.97, Rik van Riel.
10 * Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
11 * Multiqueue VM started 5.8.00, Rik van Riel.
12 */
13
14#include <linux/mm.h>
15#include <linux/module.h>
16#include <linux/slab.h>
17#include <linux/kernel_stat.h>
18#include <linux/swap.h>
19#include <linux/pagemap.h>
20#include <linux/init.h>
21#include <linux/highmem.h>
22#include <linux/file.h>
23#include <linux/writeback.h>
24#include <linux/blkdev.h>
25#include <linux/buffer_head.h> /* for try_to_release_page(),
26 buffer_heads_over_limit */
27#include <linux/mm_inline.h>
28#include <linux/pagevec.h>
29#include <linux/backing-dev.h>
30#include <linux/rmap.h>
31#include <linux/topology.h>
32#include <linux/cpu.h>
33#include <linux/cpuset.h>
34#include <linux/notifier.h>
35#include <linux/rwsem.h>
Rafael J. Wysocki248a0302006-03-22 00:09:04 -080036#include <linux/delay.h>
Yasunori Goto3218ae12006-06-27 02:53:33 -070037#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/tlbflush.h>
40#include <asm/div64.h>
41
42#include <linux/swapops.h>
43
Nick Piggin0f8053a2006-03-22 00:08:33 -080044#include "internal.h"
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046struct scan_control {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 /* Incremented by the number of inactive pages that were scanned */
48 unsigned long nr_scanned;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 /* This context's GFP mask */
Al Viro6daa0e22005-10-21 03:18:50 -040051 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 int may_writepage;
54
Christoph Lameterf1fd1062006-01-18 17:42:30 -080055 /* Can pages be swapped as part of reclaim? */
56 int may_swap;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 /* This context's SWAP_CLUSTER_MAX. If freeing memory for
59 * suspend, we effectively ignore SWAP_CLUSTER_MAX.
60 * In this context, it doesn't matter that we scan the
61 * whole list at once. */
62 int swap_cluster_max;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -070063
64 int swappiness;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67/*
68 * The list of shrinker callbacks used by to apply pressure to
69 * ageable caches.
70 */
71struct shrinker {
72 shrinker_t shrinker;
73 struct list_head list;
74 int seeks; /* seeks to recreate an obj */
75 long nr; /* objs pending delete */
76};
77
78#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
79
80#ifdef ARCH_HAS_PREFETCH
81#define prefetch_prev_lru_page(_page, _base, _field) \
82 do { \
83 if ((_page)->lru.prev != _base) { \
84 struct page *prev; \
85 \
86 prev = lru_to_page(&(_page->lru)); \
87 prefetch(&prev->_field); \
88 } \
89 } while (0)
90#else
91#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
92#endif
93
94#ifdef ARCH_HAS_PREFETCHW
95#define prefetchw_prev_lru_page(_page, _base, _field) \
96 do { \
97 if ((_page)->lru.prev != _base) { \
98 struct page *prev; \
99 \
100 prev = lru_to_page(&(_page->lru)); \
101 prefetchw(&prev->_field); \
102 } \
103 } while (0)
104#else
105#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
106#endif
107
108/*
109 * From 0 .. 100. Higher means more swappy.
110 */
111int vm_swappiness = 60;
Andrew Mortonbd1e22b2006-06-23 02:03:47 -0700112long vm_total_pages; /* The total number of pages which the VM controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static LIST_HEAD(shrinker_list);
115static DECLARE_RWSEM(shrinker_rwsem);
116
117/*
118 * Add a shrinker callback to be called from the vm
119 */
120struct shrinker *set_shrinker(int seeks, shrinker_t theshrinker)
121{
122 struct shrinker *shrinker;
123
124 shrinker = kmalloc(sizeof(*shrinker), GFP_KERNEL);
125 if (shrinker) {
126 shrinker->shrinker = theshrinker;
127 shrinker->seeks = seeks;
128 shrinker->nr = 0;
129 down_write(&shrinker_rwsem);
130 list_add_tail(&shrinker->list, &shrinker_list);
131 up_write(&shrinker_rwsem);
132 }
133 return shrinker;
134}
135EXPORT_SYMBOL(set_shrinker);
136
137/*
138 * Remove one
139 */
140void remove_shrinker(struct shrinker *shrinker)
141{
142 down_write(&shrinker_rwsem);
143 list_del(&shrinker->list);
144 up_write(&shrinker_rwsem);
145 kfree(shrinker);
146}
147EXPORT_SYMBOL(remove_shrinker);
148
149#define SHRINK_BATCH 128
150/*
151 * Call the shrink functions to age shrinkable caches
152 *
153 * Here we assume it costs one seek to replace a lru page and that it also
154 * takes a seek to recreate a cache object. With this in mind we age equal
155 * percentages of the lru and ageable caches. This should balance the seeks
156 * generated by these structures.
157 *
158 * If the vm encounted mapped pages on the LRU it increase the pressure on
159 * slab to avoid swapping.
160 *
161 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
162 *
163 * `lru_pages' represents the number of on-LRU pages in all the zones which
164 * are eligible for the caller's allocation attempt. It is used for balancing
165 * slab reclaim versus page reclaim.
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700166 *
167 * Returns the number of slab objects which we shrunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
Andrew Morton69e05942006-03-22 00:08:19 -0800169unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask,
170 unsigned long lru_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct shrinker *shrinker;
Andrew Morton69e05942006-03-22 00:08:19 -0800173 unsigned long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (scanned == 0)
176 scanned = SWAP_CLUSTER_MAX;
177
178 if (!down_read_trylock(&shrinker_rwsem))
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700179 return 1; /* Assume we'll be able to shrink next time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 list_for_each_entry(shrinker, &shrinker_list, list) {
182 unsigned long long delta;
183 unsigned long total_scan;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800184 unsigned long max_pass = (*shrinker->shrinker)(0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 delta = (4 * scanned) / shrinker->seeks;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800187 delta *= max_pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 do_div(delta, lru_pages + 1);
189 shrinker->nr += delta;
Andrea Arcangeliea164d72005-11-28 13:44:15 -0800190 if (shrinker->nr < 0) {
191 printk(KERN_ERR "%s: nr=%ld\n",
192 __FUNCTION__, shrinker->nr);
193 shrinker->nr = max_pass;
194 }
195
196 /*
197 * Avoid risking looping forever due to too large nr value:
198 * never try to free more than twice the estimate number of
199 * freeable entries.
200 */
201 if (shrinker->nr > max_pass * 2)
202 shrinker->nr = max_pass * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 total_scan = shrinker->nr;
205 shrinker->nr = 0;
206
207 while (total_scan >= SHRINK_BATCH) {
208 long this_scan = SHRINK_BATCH;
209 int shrink_ret;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700210 int nr_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700212 nr_before = (*shrinker->shrinker)(0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 shrink_ret = (*shrinker->shrinker)(this_scan, gfp_mask);
214 if (shrink_ret == -1)
215 break;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700216 if (shrink_ret < nr_before)
217 ret += nr_before - shrink_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 mod_page_state(slabs_scanned, this_scan);
219 total_scan -= this_scan;
220
221 cond_resched();
222 }
223
224 shrinker->nr += total_scan;
225 }
226 up_read(&shrinker_rwsem);
akpm@osdl.orgb15e0902005-06-21 17:14:35 -0700227 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230/* Called without lock on whether page is mapped, so answer is unstable */
231static inline int page_mapping_inuse(struct page *page)
232{
233 struct address_space *mapping;
234
235 /* Page is in somebody's page tables. */
236 if (page_mapped(page))
237 return 1;
238
239 /* Be more reluctant to reclaim swapcache than pagecache */
240 if (PageSwapCache(page))
241 return 1;
242
243 mapping = page_mapping(page);
244 if (!mapping)
245 return 0;
246
247 /* File is mmap'd by somebody? */
248 return mapping_mapped(mapping);
249}
250
251static inline int is_page_cache_freeable(struct page *page)
252{
253 return page_count(page) - !!PagePrivate(page) == 2;
254}
255
256static int may_write_to_queue(struct backing_dev_info *bdi)
257{
Christoph Lameter930d9152006-01-08 01:00:47 -0800258 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 1;
260 if (!bdi_write_congested(bdi))
261 return 1;
262 if (bdi == current->backing_dev_info)
263 return 1;
264 return 0;
265}
266
267/*
268 * We detected a synchronous write error writing a page out. Probably
269 * -ENOSPC. We need to propagate that into the address_space for a subsequent
270 * fsync(), msync() or close().
271 *
272 * The tricky part is that after writepage we cannot touch the mapping: nothing
273 * prevents it from being freed up. But we have a ref on the page and once
274 * that page is locked, the mapping is pinned.
275 *
276 * We're allowed to run sleeping lock_page() here because we know the caller has
277 * __GFP_FS.
278 */
279static void handle_write_error(struct address_space *mapping,
280 struct page *page, int error)
281{
282 lock_page(page);
283 if (page_mapping(page) == mapping) {
284 if (error == -ENOSPC)
285 set_bit(AS_ENOSPC, &mapping->flags);
286 else
287 set_bit(AS_EIO, &mapping->flags);
288 }
289 unlock_page(page);
290}
291
Christoph Lameter04e62a22006-06-23 02:03:38 -0700292/* possible outcome of pageout() */
293typedef enum {
294 /* failed to write page out, page is locked */
295 PAGE_KEEP,
296 /* move page to the active list, page is locked */
297 PAGE_ACTIVATE,
298 /* page has been sent to the disk successfully, page is unlocked */
299 PAGE_SUCCESS,
300 /* page is clean and locked */
301 PAGE_CLEAN,
302} pageout_t;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
Andrew Morton1742f192006-03-22 00:08:21 -0800305 * pageout is called by shrink_page_list() for each dirty page.
306 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700308static pageout_t pageout(struct page *page, struct address_space *mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 /*
311 * If the page is dirty, only perform writeback if that write
312 * will be non-blocking. To prevent this allocation from being
313 * stalled by pagecache activity. But note that there may be
314 * stalls if we need to run get_block(). We could test
315 * PagePrivate for that.
316 *
317 * If this process is currently in generic_file_write() against
318 * this page's queue, we can perform writeback even if that
319 * will block.
320 *
321 * If the page is swapcache, write it back even if that would
322 * block, for some throttling. This happens by accident, because
323 * swap_backing_dev_info is bust: it doesn't reflect the
324 * congestion state of the swapdevs. Easy to fix, if needed.
325 * See swapfile.c:page_queue_congested().
326 */
327 if (!is_page_cache_freeable(page))
328 return PAGE_KEEP;
329 if (!mapping) {
330 /*
331 * Some data journaling orphaned pages can have
332 * page->mapping == NULL while being dirty with clean buffers.
333 */
akpm@osdl.org323aca62005-04-16 15:24:06 -0700334 if (PagePrivate(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (try_to_free_buffers(page)) {
336 ClearPageDirty(page);
337 printk("%s: orphaned page\n", __FUNCTION__);
338 return PAGE_CLEAN;
339 }
340 }
341 return PAGE_KEEP;
342 }
343 if (mapping->a_ops->writepage == NULL)
344 return PAGE_ACTIVATE;
345 if (!may_write_to_queue(mapping->backing_dev_info))
346 return PAGE_KEEP;
347
348 if (clear_page_dirty_for_io(page)) {
349 int res;
350 struct writeback_control wbc = {
351 .sync_mode = WB_SYNC_NONE,
352 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700353 .range_start = 0,
354 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 .nonblocking = 1,
356 .for_reclaim = 1,
357 };
358
359 SetPageReclaim(page);
360 res = mapping->a_ops->writepage(page, &wbc);
361 if (res < 0)
362 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800363 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 ClearPageReclaim(page);
365 return PAGE_ACTIVATE;
366 }
367 if (!PageWriteback(page)) {
368 /* synchronous write or broken a_ops? */
369 ClearPageReclaim(page);
370 }
371
372 return PAGE_SUCCESS;
373 }
374
375 return PAGE_CLEAN;
376}
377
Christoph Lameterb20a3502006-03-22 00:09:12 -0800378int remove_mapping(struct address_space *mapping, struct page *page)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800379{
380 if (!mapping)
381 return 0; /* truncate got there first */
382
383 write_lock_irq(&mapping->tree_lock);
384
385 /*
386 * The non-racy check for busy page. It is critical to check
387 * PageDirty _after_ making sure that the page is freeable and
388 * not in use by anybody. (pagecache + us == 2)
389 */
390 if (unlikely(page_count(page) != 2))
391 goto cannot_free;
392 smp_rmb();
393 if (unlikely(PageDirty(page)))
394 goto cannot_free;
395
396 if (PageSwapCache(page)) {
397 swp_entry_t swap = { .val = page_private(page) };
398 __delete_from_swap_cache(page);
399 write_unlock_irq(&mapping->tree_lock);
400 swap_free(swap);
401 __put_page(page); /* The pagecache ref */
402 return 1;
403 }
404
405 __remove_from_page_cache(page);
406 write_unlock_irq(&mapping->tree_lock);
407 __put_page(page);
408 return 1;
409
410cannot_free:
411 write_unlock_irq(&mapping->tree_lock);
412 return 0;
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
Andrew Morton1742f192006-03-22 00:08:21 -0800416 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 */
Andrew Morton1742f192006-03-22 00:08:21 -0800418static unsigned long shrink_page_list(struct list_head *page_list,
419 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 LIST_HEAD(ret_pages);
422 struct pagevec freed_pvec;
423 int pgactivate = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800424 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 cond_resched();
427
428 pagevec_init(&freed_pvec, 1);
429 while (!list_empty(page_list)) {
430 struct address_space *mapping;
431 struct page *page;
432 int may_enter_fs;
433 int referenced;
434
435 cond_resched();
436
437 page = lru_to_page(page_list);
438 list_del(&page->lru);
439
440 if (TestSetPageLocked(page))
441 goto keep;
442
443 BUG_ON(PageActive(page));
444
445 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800446
447 if (!sc->may_swap && page_mapped(page))
448 goto keep_locked;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* Double the slab pressure for mapped and swapcache pages */
451 if (page_mapped(page) || PageSwapCache(page))
452 sc->nr_scanned++;
453
454 if (PageWriteback(page))
455 goto keep_locked;
456
Rik van Rielf7b7fd82005-11-28 13:44:07 -0800457 referenced = page_referenced(page, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* In active use or really unfreeable? Activate it. */
459 if (referenced && page_mapping_inuse(page))
460 goto activate_locked;
461
462#ifdef CONFIG_SWAP
463 /*
464 * Anonymous process memory has backing store?
465 * Try to allocate it some swap space here.
466 */
Christoph Lameter6e5ef1a2006-03-22 00:08:45 -0800467 if (PageAnon(page) && !PageSwapCache(page))
Christoph Lameter1480a542006-01-08 01:00:53 -0800468 if (!add_to_swap(page, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 goto activate_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif /* CONFIG_SWAP */
471
472 mapping = page_mapping(page);
473 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
474 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
475
476 /*
477 * The page is mapped into the page tables of one or more
478 * processes. Try to unmap it here.
479 */
480 if (page_mapped(page) && mapping) {
Christoph Lametera48d07a2006-02-01 03:05:38 -0800481 switch (try_to_unmap(page, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 case SWAP_FAIL:
483 goto activate_locked;
484 case SWAP_AGAIN:
485 goto keep_locked;
486 case SWAP_SUCCESS:
487 ; /* try to free the page below */
488 }
489 }
490
491 if (PageDirty(page)) {
492 if (referenced)
493 goto keep_locked;
494 if (!may_enter_fs)
495 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -0800496 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto keep_locked;
498
499 /* Page is dirty, try to write it out here */
500 switch(pageout(page, mapping)) {
501 case PAGE_KEEP:
502 goto keep_locked;
503 case PAGE_ACTIVATE:
504 goto activate_locked;
505 case PAGE_SUCCESS:
506 if (PageWriteback(page) || PageDirty(page))
507 goto keep;
508 /*
509 * A synchronous write - probably a ramdisk. Go
510 * ahead and try to reclaim the page.
511 */
512 if (TestSetPageLocked(page))
513 goto keep;
514 if (PageDirty(page) || PageWriteback(page))
515 goto keep_locked;
516 mapping = page_mapping(page);
517 case PAGE_CLEAN:
518 ; /* try to free the page below */
519 }
520 }
521
522 /*
523 * If the page has buffers, try to free the buffer mappings
524 * associated with this page. If we succeed we try to free
525 * the page as well.
526 *
527 * We do this even if the page is PageDirty().
528 * try_to_release_page() does not perform I/O, but it is
529 * possible for a page to have PageDirty set, but it is actually
530 * clean (all its buffers are clean). This happens if the
531 * buffers were written out directly, with submit_bh(). ext3
532 * will do this, as well as the blockdev mapping.
533 * try_to_release_page() will discover that cleanness and will
534 * drop the buffers and mark the page clean - it can be freed.
535 *
536 * Rarely, pages can have buffers and no ->mapping. These are
537 * the pages which were not successfully invalidated in
538 * truncate_complete_page(). We try to drop those buffers here
539 * and if that worked, and the page is no longer mapped into
540 * process address space (page_count == 1) it can be freed.
541 * Otherwise, leave the page on the LRU so it is swappable.
542 */
543 if (PagePrivate(page)) {
544 if (!try_to_release_page(page, sc->gfp_mask))
545 goto activate_locked;
546 if (!mapping && page_count(page) == 1)
547 goto free_it;
548 }
549
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800550 if (!remove_mapping(mapping, page))
551 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553free_it:
554 unlock_page(page);
Andrew Morton05ff5132006-03-22 00:08:20 -0800555 nr_reclaimed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!pagevec_add(&freed_pvec, page))
557 __pagevec_release_nonlru(&freed_pvec);
558 continue;
559
560activate_locked:
561 SetPageActive(page);
562 pgactivate++;
563keep_locked:
564 unlock_page(page);
565keep:
566 list_add(&page->lru, &ret_pages);
567 BUG_ON(PageLRU(page));
568 }
569 list_splice(&ret_pages, page_list);
570 if (pagevec_count(&freed_pvec))
571 __pagevec_release_nonlru(&freed_pvec);
572 mod_page_state(pgactivate, pgactivate);
Andrew Morton05ff5132006-03-22 00:08:20 -0800573 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800576/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * zone->lru_lock is heavily contended. Some of the functions that
578 * shrink the lists perform better by taking out a batch of pages
579 * and working on them outside the LRU lock.
580 *
581 * For pagecache intensive workloads, this function is the hottest
582 * spot in the kernel (apart from copy_*_user functions).
583 *
584 * Appropriate locks must be held before calling this function.
585 *
586 * @nr_to_scan: The number of pages to look through on the list.
587 * @src: The LRU list to pull pages off.
588 * @dst: The temp list to put pages on to.
589 * @scanned: The number of pages that were scanned.
590 *
591 * returns how many pages were moved onto *@dst.
592 */
Andrew Morton69e05942006-03-22 00:08:19 -0800593static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
594 struct list_head *src, struct list_head *dst,
595 unsigned long *scanned)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Andrew Morton69e05942006-03-22 00:08:19 -0800597 unsigned long nr_taken = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 struct page *page;
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800599 unsigned long scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Wu Fengguangc9b02d92006-03-22 00:08:23 -0800601 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800602 struct list_head *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 page = lru_to_page(src);
604 prefetchw_prev_lru_page(page, src, flags);
605
Nick Piggin8d438f92006-03-22 00:07:59 -0800606 BUG_ON(!PageLRU(page));
607
Nick Piggin053837f2006-01-18 17:42:27 -0800608 list_del(&page->lru);
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800609 target = src;
610 if (likely(get_page_unless_zero(page))) {
Nick Piggin053837f2006-01-18 17:42:27 -0800611 /*
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800612 * Be careful not to clear PageLRU until after we're
613 * sure the page is not being freed elsewhere -- the
614 * page release code relies on it.
Nick Piggin053837f2006-01-18 17:42:27 -0800615 */
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800616 ClearPageLRU(page);
617 target = dst;
618 nr_taken++;
619 } /* else it is being freed elsewhere */
Nick Piggin46453a62006-03-22 00:07:58 -0800620
Nick Piggin7c8ee9a2006-03-22 00:08:03 -0800621 list_add(&page->lru, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
624 *scanned = scan;
625 return nr_taken;
626}
627
628/*
Andrew Morton1742f192006-03-22 00:08:21 -0800629 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
630 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Andrew Morton1742f192006-03-22 00:08:21 -0800632static unsigned long shrink_inactive_list(unsigned long max_scan,
633 struct zone *zone, struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 LIST_HEAD(page_list);
636 struct pagevec pvec;
Andrew Morton69e05942006-03-22 00:08:19 -0800637 unsigned long nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800638 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 pagevec_init(&pvec, 1);
641
642 lru_add_drain();
643 spin_lock_irq(&zone->lru_lock);
Andrew Morton69e05942006-03-22 00:08:19 -0800644 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 struct page *page;
Andrew Morton69e05942006-03-22 00:08:19 -0800646 unsigned long nr_taken;
647 unsigned long nr_scan;
648 unsigned long nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 nr_taken = isolate_lru_pages(sc->swap_cluster_max,
651 &zone->inactive_list,
652 &page_list, &nr_scan);
653 zone->nr_inactive -= nr_taken;
654 zone->pages_scanned += nr_scan;
655 spin_unlock_irq(&zone->lru_lock);
656
Andrew Morton69e05942006-03-22 00:08:19 -0800657 nr_scanned += nr_scan;
Andrew Morton1742f192006-03-22 00:08:21 -0800658 nr_freed = shrink_page_list(&page_list, sc);
Andrew Morton05ff5132006-03-22 00:08:20 -0800659 nr_reclaimed += nr_freed;
Nick Piggina74609f2006-01-06 00:11:20 -0800660 local_irq_disable();
661 if (current_is_kswapd()) {
662 __mod_page_state_zone(zone, pgscan_kswapd, nr_scan);
663 __mod_page_state(kswapd_steal, nr_freed);
664 } else
665 __mod_page_state_zone(zone, pgscan_direct, nr_scan);
666 __mod_page_state_zone(zone, pgsteal, nr_freed);
667
Wu Fengguangfb8d14e2006-03-22 00:08:28 -0800668 if (nr_taken == 0)
669 goto done;
670
Nick Piggina74609f2006-01-06 00:11:20 -0800671 spin_lock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /*
673 * Put back any unfreeable pages.
674 */
675 while (!list_empty(&page_list)) {
676 page = lru_to_page(&page_list);
Nick Piggin8d438f92006-03-22 00:07:59 -0800677 BUG_ON(PageLRU(page));
678 SetPageLRU(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 list_del(&page->lru);
680 if (PageActive(page))
681 add_page_to_active_list(zone, page);
682 else
683 add_page_to_inactive_list(zone, page);
684 if (!pagevec_add(&pvec, page)) {
685 spin_unlock_irq(&zone->lru_lock);
686 __pagevec_release(&pvec);
687 spin_lock_irq(&zone->lru_lock);
688 }
689 }
Andrew Morton69e05942006-03-22 00:08:19 -0800690 } while (nr_scanned < max_scan);
Wu Fengguangfb8d14e2006-03-22 00:08:28 -0800691 spin_unlock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692done:
Wu Fengguangfb8d14e2006-03-22 00:08:28 -0800693 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 pagevec_release(&pvec);
Andrew Morton05ff5132006-03-22 00:08:20 -0800695 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/*
699 * This moves pages from the active list to the inactive list.
700 *
701 * We move them the other way if the page is referenced by one or more
702 * processes, from rmap.
703 *
704 * If the pages are mostly unmapped, the processing is fast and it is
705 * appropriate to hold zone->lru_lock across the whole operation. But if
706 * the pages are mapped, the processing is slow (page_referenced()) so we
707 * should drop zone->lru_lock around each page. It's impossible to balance
708 * this, so instead we remove the pages from the LRU while processing them.
709 * It is safe to rely on PG_active against the non-LRU pages in here because
710 * nobody will play with that bit on a non-LRU page.
711 *
712 * The downside is that we have to touch page->_count against each page.
713 * But we had to alter page->flags anyway.
714 */
Andrew Morton1742f192006-03-22 00:08:21 -0800715static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
716 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Andrew Morton69e05942006-03-22 00:08:19 -0800718 unsigned long pgmoved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 int pgdeactivate = 0;
Andrew Morton69e05942006-03-22 00:08:19 -0800720 unsigned long pgscanned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 LIST_HEAD(l_hold); /* The pages which were snipped off */
722 LIST_HEAD(l_inactive); /* Pages to go onto the inactive_list */
723 LIST_HEAD(l_active); /* Pages to go onto the active_list */
724 struct page *page;
725 struct pagevec pvec;
726 int reclaim_mapped = 0;
Christoph Lameter2903fb12006-02-11 17:55:55 -0800727
Christoph Lameter6e5ef1a2006-03-22 00:08:45 -0800728 if (sc->may_swap) {
Christoph Lameter2903fb12006-02-11 17:55:55 -0800729 long mapped_ratio;
730 long distress;
731 long swap_tendency;
732
733 /*
734 * `distress' is a measure of how much trouble we're having
735 * reclaiming pages. 0 -> no problems. 100 -> great trouble.
736 */
737 distress = 100 >> zone->prev_priority;
738
739 /*
740 * The point of this algorithm is to decide when to start
741 * reclaiming mapped memory instead of just pagecache. Work out
742 * how much memory
743 * is mapped.
744 */
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700745 mapped_ratio = ((global_page_state(NR_FILE_MAPPED) +
746 global_page_state(NR_ANON_PAGES)) * 100) /
Christoph Lameterbf02cf42006-06-30 01:55:36 -0700747 vm_total_pages;
Christoph Lameter2903fb12006-02-11 17:55:55 -0800748
749 /*
750 * Now decide how much we really want to unmap some pages. The
751 * mapped ratio is downgraded - just because there's a lot of
752 * mapped memory doesn't necessarily mean that page reclaim
753 * isn't succeeding.
754 *
755 * The distress ratio is important - we don't want to start
756 * going oom.
757 *
758 * A 100% value of vm_swappiness overrides this algorithm
759 * altogether.
760 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -0700761 swap_tendency = mapped_ratio / 2 + distress + sc->swappiness;
Christoph Lameter2903fb12006-02-11 17:55:55 -0800762
763 /*
764 * Now use this metric to decide whether to start moving mapped
765 * memory onto the inactive list.
766 */
767 if (swap_tendency >= 100)
768 reclaim_mapped = 1;
769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 lru_add_drain();
772 spin_lock_irq(&zone->lru_lock);
773 pgmoved = isolate_lru_pages(nr_pages, &zone->active_list,
774 &l_hold, &pgscanned);
775 zone->pages_scanned += pgscanned;
776 zone->nr_active -= pgmoved;
777 spin_unlock_irq(&zone->lru_lock);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 while (!list_empty(&l_hold)) {
780 cond_resched();
781 page = lru_to_page(&l_hold);
782 list_del(&page->lru);
783 if (page_mapped(page)) {
784 if (!reclaim_mapped ||
785 (total_swap_pages == 0 && PageAnon(page)) ||
Rik van Rielf7b7fd82005-11-28 13:44:07 -0800786 page_referenced(page, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 list_add(&page->lru, &l_active);
788 continue;
789 }
790 }
791 list_add(&page->lru, &l_inactive);
792 }
793
794 pagevec_init(&pvec, 1);
795 pgmoved = 0;
796 spin_lock_irq(&zone->lru_lock);
797 while (!list_empty(&l_inactive)) {
798 page = lru_to_page(&l_inactive);
799 prefetchw_prev_lru_page(page, &l_inactive, flags);
Nick Piggin8d438f92006-03-22 00:07:59 -0800800 BUG_ON(PageLRU(page));
801 SetPageLRU(page);
Nick Piggin4c84cac2006-03-22 00:08:00 -0800802 BUG_ON(!PageActive(page));
803 ClearPageActive(page);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 list_move(&page->lru, &zone->inactive_list);
806 pgmoved++;
807 if (!pagevec_add(&pvec, page)) {
808 zone->nr_inactive += pgmoved;
809 spin_unlock_irq(&zone->lru_lock);
810 pgdeactivate += pgmoved;
811 pgmoved = 0;
812 if (buffer_heads_over_limit)
813 pagevec_strip(&pvec);
814 __pagevec_release(&pvec);
815 spin_lock_irq(&zone->lru_lock);
816 }
817 }
818 zone->nr_inactive += pgmoved;
819 pgdeactivate += pgmoved;
820 if (buffer_heads_over_limit) {
821 spin_unlock_irq(&zone->lru_lock);
822 pagevec_strip(&pvec);
823 spin_lock_irq(&zone->lru_lock);
824 }
825
826 pgmoved = 0;
827 while (!list_empty(&l_active)) {
828 page = lru_to_page(&l_active);
829 prefetchw_prev_lru_page(page, &l_active, flags);
Nick Piggin8d438f92006-03-22 00:07:59 -0800830 BUG_ON(PageLRU(page));
831 SetPageLRU(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 BUG_ON(!PageActive(page));
833 list_move(&page->lru, &zone->active_list);
834 pgmoved++;
835 if (!pagevec_add(&pvec, page)) {
836 zone->nr_active += pgmoved;
837 pgmoved = 0;
838 spin_unlock_irq(&zone->lru_lock);
839 __pagevec_release(&pvec);
840 spin_lock_irq(&zone->lru_lock);
841 }
842 }
843 zone->nr_active += pgmoved;
Nick Piggina74609f2006-01-06 00:11:20 -0800844 spin_unlock(&zone->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Nick Piggina74609f2006-01-06 00:11:20 -0800846 __mod_page_state_zone(zone, pgrefill, pgscanned);
847 __mod_page_state(pgdeactivate, pgdeactivate);
848 local_irq_enable();
849
850 pagevec_release(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/*
854 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
855 */
Andrew Morton05ff5132006-03-22 00:08:20 -0800856static unsigned long shrink_zone(int priority, struct zone *zone,
857 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 unsigned long nr_active;
860 unsigned long nr_inactive;
Christoph Lameter86959492006-03-22 00:08:18 -0800861 unsigned long nr_to_scan;
Andrew Morton05ff5132006-03-22 00:08:20 -0800862 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Martin Hicks53e9a612005-09-03 15:54:51 -0700864 atomic_inc(&zone->reclaim_in_progress);
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /*
867 * Add one to `nr_to_scan' just to make sure that the kernel will
868 * slowly sift through the active list.
869 */
Christoph Lameter86959492006-03-22 00:08:18 -0800870 zone->nr_scan_active += (zone->nr_active >> priority) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 nr_active = zone->nr_scan_active;
872 if (nr_active >= sc->swap_cluster_max)
873 zone->nr_scan_active = 0;
874 else
875 nr_active = 0;
876
Christoph Lameter86959492006-03-22 00:08:18 -0800877 zone->nr_scan_inactive += (zone->nr_inactive >> priority) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 nr_inactive = zone->nr_scan_inactive;
879 if (nr_inactive >= sc->swap_cluster_max)
880 zone->nr_scan_inactive = 0;
881 else
882 nr_inactive = 0;
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 while (nr_active || nr_inactive) {
885 if (nr_active) {
Christoph Lameter86959492006-03-22 00:08:18 -0800886 nr_to_scan = min(nr_active,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 (unsigned long)sc->swap_cluster_max);
Christoph Lameter86959492006-03-22 00:08:18 -0800888 nr_active -= nr_to_scan;
Andrew Morton1742f192006-03-22 00:08:21 -0800889 shrink_active_list(nr_to_scan, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
892 if (nr_inactive) {
Christoph Lameter86959492006-03-22 00:08:18 -0800893 nr_to_scan = min(nr_inactive,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 (unsigned long)sc->swap_cluster_max);
Christoph Lameter86959492006-03-22 00:08:18 -0800895 nr_inactive -= nr_to_scan;
Andrew Morton1742f192006-03-22 00:08:21 -0800896 nr_reclaimed += shrink_inactive_list(nr_to_scan, zone,
897 sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899 }
900
901 throttle_vm_writeout();
Martin Hicks53e9a612005-09-03 15:54:51 -0700902
903 atomic_dec(&zone->reclaim_in_progress);
Andrew Morton05ff5132006-03-22 00:08:20 -0800904 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
907/*
908 * This is the direct reclaim path, for page-allocating processes. We only
909 * try to reclaim pages from zones which will satisfy the caller's allocation
910 * request.
911 *
912 * We reclaim from a zone even if that zone is over pages_high. Because:
913 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
914 * allocation or
915 * b) The zones may be over pages_high but they must go *over* pages_high to
916 * satisfy the `incremental min' zone defense algorithm.
917 *
918 * Returns the number of reclaimed pages.
919 *
920 * If a zone is deemed to be full of pinned pages then just give it a light
921 * scan then give up on it.
922 */
Andrew Morton1742f192006-03-22 00:08:21 -0800923static unsigned long shrink_zones(int priority, struct zone **zones,
Andrew Morton05ff5132006-03-22 00:08:20 -0800924 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Andrew Morton05ff5132006-03-22 00:08:20 -0800926 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 int i;
928
929 for (i = 0; zones[i] != NULL; i++) {
930 struct zone *zone = zones[i];
931
Con Kolivasf3fe6512006-01-06 00:11:15 -0800932 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 continue;
934
Paul Jackson9bf22292005-09-06 15:18:12 -0700935 if (!cpuset_zone_allowed(zone, __GFP_HARDWALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 continue;
937
Christoph Lameter86959492006-03-22 00:08:18 -0800938 zone->temp_priority = priority;
939 if (zone->prev_priority > priority)
940 zone->prev_priority = priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Christoph Lameter86959492006-03-22 00:08:18 -0800942 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 continue; /* Let kswapd poll it */
944
Andrew Morton05ff5132006-03-22 00:08:20 -0800945 nr_reclaimed += shrink_zone(priority, zone, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Andrew Morton05ff5132006-03-22 00:08:20 -0800947 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
950/*
951 * This is the main entry point to direct page reclaim.
952 *
953 * If a full scan of the inactive list fails to free enough memory then we
954 * are "out of memory" and something needs to be killed.
955 *
956 * If the caller is !__GFP_FS then the probability of a failure is reasonably
957 * high - the zone may be full of dirty or under-writeback pages, which this
958 * caller can't do much about. We kick pdflush and take explicit naps in the
959 * hope that some of these pages can be written. But if the allocating task
960 * holds filesystem locks which prevent writeout this might not work, and the
961 * allocation attempt will fail.
962 */
Andrew Morton69e05942006-03-22 00:08:19 -0800963unsigned long try_to_free_pages(struct zone **zones, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 int priority;
966 int ret = 0;
Andrew Morton69e05942006-03-22 00:08:19 -0800967 unsigned long total_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800968 unsigned long nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 struct reclaim_state *reclaim_state = current->reclaim_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 unsigned long lru_pages = 0;
971 int i;
Andrew Morton179e9632006-03-22 00:08:18 -0800972 struct scan_control sc = {
973 .gfp_mask = gfp_mask,
974 .may_writepage = !laptop_mode,
975 .swap_cluster_max = SWAP_CLUSTER_MAX,
976 .may_swap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -0700977 .swappiness = vm_swappiness,
Andrew Morton179e9632006-03-22 00:08:18 -0800978 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 inc_page_state(allocstall);
981
982 for (i = 0; zones[i] != NULL; i++) {
983 struct zone *zone = zones[i];
984
Paul Jackson9bf22292005-09-06 15:18:12 -0700985 if (!cpuset_zone_allowed(zone, __GFP_HARDWALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 continue;
987
988 zone->temp_priority = DEF_PRIORITY;
989 lru_pages += zone->nr_active + zone->nr_inactive;
990 }
991
992 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 sc.nr_scanned = 0;
Rik van Rielf7b7fd82005-11-28 13:44:07 -0800994 if (!priority)
995 disable_swap_token();
Andrew Morton1742f192006-03-22 00:08:21 -0800996 nr_reclaimed += shrink_zones(priority, zones, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 shrink_slab(sc.nr_scanned, gfp_mask, lru_pages);
998 if (reclaim_state) {
Andrew Morton05ff5132006-03-22 00:08:20 -0800999 nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 reclaim_state->reclaimed_slab = 0;
1001 }
1002 total_scanned += sc.nr_scanned;
Andrew Morton05ff5132006-03-22 00:08:20 -08001003 if (nr_reclaimed >= sc.swap_cluster_max) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 ret = 1;
1005 goto out;
1006 }
1007
1008 /*
1009 * Try to write back as many pages as we just scanned. This
1010 * tends to cause slow streaming writers to write data to the
1011 * disk smoothly, at the dirtying rate, which is nice. But
1012 * that's undesirable in laptop mode, where we *want* lumpy
1013 * writeout. So in laptop mode, write out the whole world.
1014 */
Andrew Morton179e9632006-03-22 00:08:18 -08001015 if (total_scanned > sc.swap_cluster_max +
1016 sc.swap_cluster_max / 2) {
Pekka J Enberg687a21c2005-06-28 20:44:55 -07001017 wakeup_pdflush(laptop_mode ? 0 : total_scanned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 sc.may_writepage = 1;
1019 }
1020
1021 /* Take a nap, wait for some writeback to complete */
1022 if (sc.nr_scanned && priority < DEF_PRIORITY - 2)
1023 blk_congestion_wait(WRITE, HZ/10);
1024 }
1025out:
1026 for (i = 0; zones[i] != 0; i++) {
1027 struct zone *zone = zones[i];
1028
Paul Jackson9bf22292005-09-06 15:18:12 -07001029 if (!cpuset_zone_allowed(zone, __GFP_HARDWALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 continue;
1031
1032 zone->prev_priority = zone->temp_priority;
1033 }
1034 return ret;
1035}
1036
1037/*
1038 * For kswapd, balance_pgdat() will work across all this node's zones until
1039 * they are all at pages_high.
1040 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 * Returns the number of pages which were actually freed.
1042 *
1043 * There is special handling here for zones which are full of pinned pages.
1044 * This can happen if the pages are all mlocked, or if they are all used by
1045 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1046 * What we do is to detect the case where all pages in the zone have been
1047 * scanned twice and there has been zero successful reclaim. Mark the zone as
1048 * dead and from now on, only perform a short scan. Basically we're polling
1049 * the zone for when the problem goes away.
1050 *
1051 * kswapd scans the zones in the highmem->normal->dma direction. It skips
1052 * zones which have free_pages > pages_high, but once a zone is found to have
1053 * free_pages <= pages_high, we scan that zone and the lower zones regardless
1054 * of the number of free pages in the lower zones. This interoperates with
1055 * the page allocator fallback scheme to ensure that aging of pages is balanced
1056 * across the zones.
1057 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001058static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int all_zones_ok;
1061 int priority;
1062 int i;
Andrew Morton69e05942006-03-22 00:08:19 -08001063 unsigned long total_scanned;
Andrew Morton05ff5132006-03-22 00:08:20 -08001064 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct reclaim_state *reclaim_state = current->reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08001066 struct scan_control sc = {
1067 .gfp_mask = GFP_KERNEL,
1068 .may_swap = 1,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001069 .swap_cluster_max = SWAP_CLUSTER_MAX,
1070 .swappiness = vm_swappiness,
Andrew Morton179e9632006-03-22 00:08:18 -08001071 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073loop_again:
1074 total_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001075 nr_reclaimed = 0;
Christoph Lameterc0bbbc72006-06-11 15:22:26 -07001076 sc.may_writepage = !laptop_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 inc_page_state(pageoutrun);
1078
1079 for (i = 0; i < pgdat->nr_zones; i++) {
1080 struct zone *zone = pgdat->node_zones + i;
1081
1082 zone->temp_priority = DEF_PRIORITY;
1083 }
1084
1085 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
1086 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
1087 unsigned long lru_pages = 0;
1088
Rik van Rielf7b7fd82005-11-28 13:44:07 -08001089 /* The swap token gets in the way of swapout... */
1090 if (!priority)
1091 disable_swap_token();
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 all_zones_ok = 1;
1094
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001095 /*
1096 * Scan in the highmem->dma direction for the highest
1097 * zone which needs scanning
1098 */
1099 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
1100 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001102 if (!populated_zone(zone))
1103 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001105 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
1106 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001108 if (!zone_watermark_ok(zone, order, zone->pages_high,
1109 0, 0)) {
1110 end_zone = i;
1111 goto scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115scan:
1116 for (i = 0; i <= end_zone; i++) {
1117 struct zone *zone = pgdat->node_zones + i;
1118
1119 lru_pages += zone->nr_active + zone->nr_inactive;
1120 }
1121
1122 /*
1123 * Now scan the zone in the dma->highmem direction, stopping
1124 * at the last zone which needs scanning.
1125 *
1126 * We do this because the page allocator works in the opposite
1127 * direction. This prevents the page allocator from allocating
1128 * pages behind kswapd's direction of progress, which would
1129 * cause too much scanning of the lower zones.
1130 */
1131 for (i = 0; i <= end_zone; i++) {
1132 struct zone *zone = pgdat->node_zones + i;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07001133 int nr_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Con Kolivasf3fe6512006-01-06 00:11:15 -08001135 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 continue;
1137
1138 if (zone->all_unreclaimable && priority != DEF_PRIORITY)
1139 continue;
1140
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001141 if (!zone_watermark_ok(zone, order, zone->pages_high,
1142 end_zone, 0))
1143 all_zones_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 zone->temp_priority = priority;
1145 if (zone->prev_priority > priority)
1146 zone->prev_priority = priority;
1147 sc.nr_scanned = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -08001148 nr_reclaimed += shrink_zone(priority, zone, &sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 reclaim_state->reclaimed_slab = 0;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07001150 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
1151 lru_pages);
Andrew Morton05ff5132006-03-22 00:08:20 -08001152 nr_reclaimed += reclaim_state->reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 total_scanned += sc.nr_scanned;
1154 if (zone->all_unreclaimable)
1155 continue;
akpm@osdl.orgb15e0902005-06-21 17:14:35 -07001156 if (nr_slab == 0 && zone->pages_scanned >=
1157 (zone->nr_active + zone->nr_inactive) * 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 zone->all_unreclaimable = 1;
1159 /*
1160 * If we've done a decent amount of scanning and
1161 * the reclaim ratio is low, start doing writepage
1162 * even in laptop mode
1163 */
1164 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
Andrew Morton05ff5132006-03-22 00:08:20 -08001165 total_scanned > nr_reclaimed + nr_reclaimed / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 sc.may_writepage = 1;
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (all_zones_ok)
1169 break; /* kswapd: all done */
1170 /*
1171 * OK, kswapd is getting into trouble. Take a nap, then take
1172 * another pass across the zones.
1173 */
1174 if (total_scanned && priority < DEF_PRIORITY - 2)
1175 blk_congestion_wait(WRITE, HZ/10);
1176
1177 /*
1178 * We do this so kswapd doesn't build up large priorities for
1179 * example when it is freeing in parallel with allocators. It
1180 * matches the direct reclaim path behaviour in terms of impact
1181 * on zone->*_priority.
1182 */
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001183 if (nr_reclaimed >= SWAP_CLUSTER_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
1185 }
1186out:
1187 for (i = 0; i < pgdat->nr_zones; i++) {
1188 struct zone *zone = pgdat->node_zones + i;
1189
1190 zone->prev_priority = zone->temp_priority;
1191 }
1192 if (!all_zones_ok) {
1193 cond_resched();
1194 goto loop_again;
1195 }
1196
Andrew Morton05ff5132006-03-22 00:08:20 -08001197 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200/*
1201 * The background pageout daemon, started as a kernel thread
1202 * from the init process.
1203 *
1204 * This basically trickles out pages so that we have _some_
1205 * free memory available even if there is no other activity
1206 * that frees anything up. This is needed for things like routing
1207 * etc, where we otherwise might have all activity going on in
1208 * asynchronous contexts that cannot page things out.
1209 *
1210 * If there are applications that are active memory-allocators
1211 * (most normal use), this basically shouldn't matter.
1212 */
1213static int kswapd(void *p)
1214{
1215 unsigned long order;
1216 pg_data_t *pgdat = (pg_data_t*)p;
1217 struct task_struct *tsk = current;
1218 DEFINE_WAIT(wait);
1219 struct reclaim_state reclaim_state = {
1220 .reclaimed_slab = 0,
1221 };
1222 cpumask_t cpumask;
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 cpumask = node_to_cpumask(pgdat->node_id);
1225 if (!cpus_empty(cpumask))
1226 set_cpus_allowed(tsk, cpumask);
1227 current->reclaim_state = &reclaim_state;
1228
1229 /*
1230 * Tell the memory management that we're a "memory allocator",
1231 * and that if we need more memory we should get access to it
1232 * regardless (see "__alloc_pages()"). "kswapd" should
1233 * never get caught in the normal page freeing logic.
1234 *
1235 * (Kswapd normally doesn't need memory anyway, but sometimes
1236 * you need a small amount of memory in order to be able to
1237 * page out something else, and this flag essentially protects
1238 * us from recursively trying to free more memory as we're
1239 * trying to free the first piece of memory in the first place).
1240 */
Christoph Lameter930d9152006-01-08 01:00:47 -08001241 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 order = 0;
1244 for ( ; ; ) {
1245 unsigned long new_order;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001246
1247 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
1250 new_order = pgdat->kswapd_max_order;
1251 pgdat->kswapd_max_order = 0;
1252 if (order < new_order) {
1253 /*
1254 * Don't sleep if someone wants a larger 'order'
1255 * allocation
1256 */
1257 order = new_order;
1258 } else {
1259 schedule();
1260 order = pgdat->kswapd_max_order;
1261 }
1262 finish_wait(&pgdat->kswapd_wait, &wait);
1263
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001264 balance_pgdat(pgdat, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266 return 0;
1267}
1268
1269/*
1270 * A zone is low on free memory, so wake its kswapd task to service it.
1271 */
1272void wakeup_kswapd(struct zone *zone, int order)
1273{
1274 pg_data_t *pgdat;
1275
Con Kolivasf3fe6512006-01-06 00:11:15 -08001276 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return;
1278
1279 pgdat = zone->zone_pgdat;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001280 if (zone_watermark_ok(zone, order, zone->pages_low, 0, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return;
1282 if (pgdat->kswapd_max_order < order)
1283 pgdat->kswapd_max_order = order;
Paul Jackson9bf22292005-09-06 15:18:12 -07001284 if (!cpuset_zone_allowed(zone, __GFP_HARDWALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07001286 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return;
Con Kolivas8d0986e2005-09-13 01:25:07 -07001288 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291#ifdef CONFIG_PM
1292/*
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001293 * Helper function for shrink_all_memory(). Tries to reclaim 'nr_pages' pages
1294 * from LRU lists system-wide, for given pass and priority, and returns the
1295 * number of reclaimed pages
1296 *
1297 * For pass > 3 we also try to shrink the LRU lists that contain a few pages
1298 */
1299static unsigned long shrink_all_zones(unsigned long nr_pages, int pass,
1300 int prio, struct scan_control *sc)
1301{
1302 struct zone *zone;
1303 unsigned long nr_to_scan, ret = 0;
1304
1305 for_each_zone(zone) {
1306
1307 if (!populated_zone(zone))
1308 continue;
1309
1310 if (zone->all_unreclaimable && prio != DEF_PRIORITY)
1311 continue;
1312
1313 /* For pass = 0 we don't shrink the active list */
1314 if (pass > 0) {
1315 zone->nr_scan_active += (zone->nr_active >> prio) + 1;
1316 if (zone->nr_scan_active >= nr_pages || pass > 3) {
1317 zone->nr_scan_active = 0;
1318 nr_to_scan = min(nr_pages, zone->nr_active);
1319 shrink_active_list(nr_to_scan, zone, sc);
1320 }
1321 }
1322
1323 zone->nr_scan_inactive += (zone->nr_inactive >> prio) + 1;
1324 if (zone->nr_scan_inactive >= nr_pages || pass > 3) {
1325 zone->nr_scan_inactive = 0;
1326 nr_to_scan = min(nr_pages, zone->nr_inactive);
1327 ret += shrink_inactive_list(nr_to_scan, zone, sc);
1328 if (ret >= nr_pages)
1329 return ret;
1330 }
1331 }
1332
1333 return ret;
1334}
1335
1336/*
1337 * Try to free `nr_pages' of memory, system-wide, and return the number of
1338 * freed pages.
1339 *
1340 * Rather than trying to age LRUs the aim is to preserve the overall
1341 * LRU order by reclaiming preferentially
1342 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
Andrew Morton69e05942006-03-22 00:08:19 -08001344unsigned long shrink_all_memory(unsigned long nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001346 unsigned long lru_pages, nr_slab;
Andrew Morton69e05942006-03-22 00:08:19 -08001347 unsigned long ret = 0;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001348 int pass;
1349 struct reclaim_state reclaim_state;
1350 struct zone *zone;
1351 struct scan_control sc = {
1352 .gfp_mask = GFP_KERNEL,
1353 .may_swap = 0,
1354 .swap_cluster_max = nr_pages,
1355 .may_writepage = 1,
1356 .swappiness = vm_swappiness,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 };
1358
1359 current->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08001360
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001361 lru_pages = 0;
1362 for_each_zone(zone)
1363 lru_pages += zone->nr_active + zone->nr_inactive;
1364
1365 nr_slab = read_page_state(nr_slab);
1366 /* If slab caches are huge, it's better to hit them first */
1367 while (nr_slab >= lru_pages) {
1368 reclaim_state.reclaimed_slab = 0;
1369 shrink_slab(nr_pages, sc.gfp_mask, lru_pages);
1370 if (!reclaim_state.reclaimed_slab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 break;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001372
1373 ret += reclaim_state.reclaimed_slab;
1374 if (ret >= nr_pages)
1375 goto out;
1376
1377 nr_slab -= reclaim_state.reclaimed_slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001379
1380 /*
1381 * We try to shrink LRUs in 5 passes:
1382 * 0 = Reclaim from inactive_list only
1383 * 1 = Reclaim from active list but don't reclaim mapped
1384 * 2 = 2nd pass of type 1
1385 * 3 = Reclaim mapped (normal reclaim)
1386 * 4 = 2nd pass of type 3
1387 */
1388 for (pass = 0; pass < 5; pass++) {
1389 int prio;
1390
1391 /* Needed for shrinking slab caches later on */
1392 if (!lru_pages)
1393 for_each_zone(zone) {
1394 lru_pages += zone->nr_active;
1395 lru_pages += zone->nr_inactive;
1396 }
1397
1398 /* Force reclaiming mapped pages in the passes #3 and #4 */
1399 if (pass > 2) {
1400 sc.may_swap = 1;
1401 sc.swappiness = 100;
1402 }
1403
1404 for (prio = DEF_PRIORITY; prio >= 0; prio--) {
1405 unsigned long nr_to_scan = nr_pages - ret;
1406
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001407 sc.nr_scanned = 0;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001408 ret += shrink_all_zones(nr_to_scan, prio, pass, &sc);
1409 if (ret >= nr_pages)
1410 goto out;
1411
1412 reclaim_state.reclaimed_slab = 0;
1413 shrink_slab(sc.nr_scanned, sc.gfp_mask, lru_pages);
1414 ret += reclaim_state.reclaimed_slab;
1415 if (ret >= nr_pages)
1416 goto out;
1417
1418 if (sc.nr_scanned && prio < DEF_PRIORITY - 2)
1419 blk_congestion_wait(WRITE, HZ / 10);
1420 }
1421
1422 lru_pages = 0;
Rafael J. Wysocki248a0302006-03-22 00:09:04 -08001423 }
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001424
1425 /*
1426 * If ret = 0, we could not shrink LRUs, but there may be something
1427 * in slab caches
1428 */
1429 if (!ret)
1430 do {
1431 reclaim_state.reclaimed_slab = 0;
1432 shrink_slab(nr_pages, sc.gfp_mask, lru_pages);
1433 ret += reclaim_state.reclaimed_slab;
1434 } while (ret < nr_pages && reclaim_state.reclaimed_slab > 0);
1435
1436out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 current->reclaim_state = NULL;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return ret;
1440}
1441#endif
1442
1443#ifdef CONFIG_HOTPLUG_CPU
1444/* It's optimal to keep kswapds on the same CPUs as their memory, but
1445 not required for correctness. So if the last cpu in a node goes
1446 away, we get changed to run anywhere: as the first one comes back,
1447 restore their cpu bindings. */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -07001448static int __devinit cpu_callback(struct notifier_block *nfb,
Andrew Morton69e05942006-03-22 00:08:19 -08001449 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 pg_data_t *pgdat;
1452 cpumask_t mask;
1453
1454 if (action == CPU_ONLINE) {
KAMEZAWA Hiroyukiec936fc2006-03-27 01:15:59 -08001455 for_each_online_pgdat(pgdat) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 mask = node_to_cpumask(pgdat->node_id);
1457 if (any_online_cpu(mask) != NR_CPUS)
1458 /* One of our CPUs online: restore mask */
1459 set_cpus_allowed(pgdat->kswapd, mask);
1460 }
1461 }
1462 return NOTIFY_OK;
1463}
1464#endif /* CONFIG_HOTPLUG_CPU */
1465
Yasunori Goto3218ae12006-06-27 02:53:33 -07001466/*
1467 * This kswapd start function will be called by init and node-hot-add.
1468 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
1469 */
1470int kswapd_run(int nid)
1471{
1472 pg_data_t *pgdat = NODE_DATA(nid);
1473 int ret = 0;
1474
1475 if (pgdat->kswapd)
1476 return 0;
1477
1478 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
1479 if (IS_ERR(pgdat->kswapd)) {
1480 /* failure at boot is fatal */
1481 BUG_ON(system_state == SYSTEM_BOOTING);
1482 printk("Failed to start kswapd on node %d\n",nid);
1483 ret = -1;
1484 }
1485 return ret;
1486}
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488static int __init kswapd_init(void)
1489{
Yasunori Goto3218ae12006-06-27 02:53:33 -07001490 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 swap_setup();
Yasunori Goto3218ae12006-06-27 02:53:33 -07001493 for_each_online_node(nid)
1494 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 hotcpu_notifier(cpu_callback, 0);
1496 return 0;
1497}
1498
1499module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08001500
1501#ifdef CONFIG_NUMA
1502/*
1503 * Zone reclaim mode
1504 *
1505 * If non-zero call zone_reclaim when the number of free pages falls below
1506 * the watermarks.
1507 *
1508 * In the future we may add flags to the mode. However, the page allocator
1509 * should only have to check that zone_reclaim_mode != 0 before calling
1510 * zone_reclaim().
1511 */
1512int zone_reclaim_mode __read_mostly;
1513
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08001514#define RECLAIM_OFF 0
1515#define RECLAIM_ZONE (1<<0) /* Run shrink_cache on the zone */
1516#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
1517#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08001518#define RECLAIM_SLAB (1<<3) /* Do a global slab shrink if the zone is out of memory */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08001519
Christoph Lameter9eeff232006-01-18 17:42:31 -08001520/*
Christoph Lametera92f7122006-02-01 03:05:32 -08001521 * Priority for ZONE_RECLAIM. This determines the fraction of pages
1522 * of a node considered for each zone_reclaim. 4 scans 1/16th of
1523 * a zone.
1524 */
1525#define ZONE_RECLAIM_PRIORITY 4
1526
Christoph Lameter9eeff232006-01-18 17:42:31 -08001527/*
1528 * Try to free up some pages from this zone through reclaim.
1529 */
Andrew Morton179e9632006-03-22 00:08:18 -08001530static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08001531{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08001532 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08001533 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08001534 struct task_struct *p = current;
1535 struct reclaim_state reclaim_state;
Christoph Lameter86959492006-03-22 00:08:18 -08001536 int priority;
Andrew Morton05ff5132006-03-22 00:08:20 -08001537 unsigned long nr_reclaimed = 0;
Andrew Morton179e9632006-03-22 00:08:18 -08001538 struct scan_control sc = {
1539 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
1540 .may_swap = !!(zone_reclaim_mode & RECLAIM_SWAP),
Andrew Morton69e05942006-03-22 00:08:19 -08001541 .swap_cluster_max = max_t(unsigned long, nr_pages,
1542 SWAP_CLUSTER_MAX),
Andrew Morton179e9632006-03-22 00:08:18 -08001543 .gfp_mask = gfp_mask,
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07001544 .swappiness = vm_swappiness,
Andrew Morton179e9632006-03-22 00:08:18 -08001545 };
Christoph Lameter9eeff232006-01-18 17:42:31 -08001546
1547 disable_swap_token();
Christoph Lameter9eeff232006-01-18 17:42:31 -08001548 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08001549 /*
1550 * We need to be able to allocate from the reserves for RECLAIM_SWAP
1551 * and we also need to be able to write out pages for RECLAIM_WRITE
1552 * and RECLAIM_SWAP.
1553 */
1554 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
Christoph Lameter9eeff232006-01-18 17:42:31 -08001555 reclaim_state.reclaimed_slab = 0;
1556 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08001557
Christoph Lametera92f7122006-02-01 03:05:32 -08001558 /*
1559 * Free memory by calling shrink zone with increasing priorities
1560 * until we have enough memory freed.
1561 */
Christoph Lameter86959492006-03-22 00:08:18 -08001562 priority = ZONE_RECLAIM_PRIORITY;
Christoph Lametera92f7122006-02-01 03:05:32 -08001563 do {
Andrew Morton05ff5132006-03-22 00:08:20 -08001564 nr_reclaimed += shrink_zone(priority, zone, &sc);
Christoph Lameter86959492006-03-22 00:08:18 -08001565 priority--;
Andrew Morton05ff5132006-03-22 00:08:20 -08001566 } while (priority >= 0 && nr_reclaimed < nr_pages);
Christoph Lameterc84db232006-02-01 03:05:29 -08001567
Andrew Morton05ff5132006-03-22 00:08:20 -08001568 if (nr_reclaimed < nr_pages && (zone_reclaim_mode & RECLAIM_SLAB)) {
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08001569 /*
Christoph Lameter7fb2d462006-03-22 00:08:22 -08001570 * shrink_slab() does not currently allow us to determine how
1571 * many pages were freed in this zone. So we just shake the slab
1572 * a bit and then go off node for this particular allocation
1573 * despite possibly having freed enough memory to allocate in
1574 * this zone. If we freed local memory then the next
1575 * allocations will be local again.
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08001576 *
1577 * shrink_slab will free memory on all zones and may take
1578 * a long time.
1579 */
1580 shrink_slab(sc.nr_scanned, gfp_mask, order);
Christoph Lameter2a16e3f2006-02-01 03:05:35 -08001581 }
1582
Christoph Lameter9eeff232006-01-18 17:42:31 -08001583 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08001584 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
Andrew Morton05ff5132006-03-22 00:08:20 -08001585 return nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08001586}
Andrew Morton179e9632006-03-22 00:08:18 -08001587
1588int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
1589{
1590 cpumask_t mask;
1591 int node_id;
1592
1593 /*
Christoph Lameter34aa1332006-06-30 01:55:37 -07001594 * Do not reclaim if there are not enough reclaimable pages in this
1595 * zone that would satify this allocations.
1596 *
1597 * All unmapped pagecache pages are reclaimable.
1598 *
1599 * Both counters may be temporarily off a bit so we use
1600 * SWAP_CLUSTER_MAX as the boundary. It may also be good to
1601 * leave a few frequently used unmapped pagecache pages around.
Andrew Morton179e9632006-03-22 00:08:18 -08001602 */
Christoph Lameter34aa1332006-06-30 01:55:37 -07001603 if (zone_page_state(zone, NR_FILE_PAGES) -
1604 zone_page_state(zone, NR_FILE_MAPPED) < SWAP_CLUSTER_MAX)
Andrew Morton179e9632006-03-22 00:08:18 -08001605 return 0;
1606
1607 /*
1608 * Avoid concurrent zone reclaims, do not reclaim in a zone that does
1609 * not have reclaimable pages and if we should not delay the allocation
1610 * then do not scan.
1611 */
1612 if (!(gfp_mask & __GFP_WAIT) ||
1613 zone->all_unreclaimable ||
1614 atomic_read(&zone->reclaim_in_progress) > 0 ||
1615 (current->flags & PF_MEMALLOC))
1616 return 0;
1617
1618 /*
1619 * Only run zone reclaim on the local zone or on zones that do not
1620 * have associated processors. This will favor the local processor
1621 * over remote processors and spread off node memory allocations
1622 * as wide as possible.
1623 */
1624 node_id = zone->zone_pgdat->node_id;
1625 mask = node_to_cpumask(node_id);
1626 if (!cpus_empty(mask) && node_id != numa_node_id())
1627 return 0;
1628 return __zone_reclaim(zone, gfp_mask, order);
1629}
Christoph Lameter9eeff232006-01-18 17:42:31 -08001630#endif