mm: add zone nr_pages helper function
[linux-2.6-block.git] / mm / vmscan.c
CommitLineData
1da177e4
LT
1/*
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>
e129b5c2 22#include <linux/vmstat.h>
1da177e4
LT
23#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>
248a0301 37#include <linux/delay.h>
3218ae14 38#include <linux/kthread.h>
7dfb7103 39#include <linux/freezer.h>
66e1707b 40#include <linux/memcontrol.h>
873b4771 41#include <linux/delayacct.h>
af936a16 42#include <linux/sysctl.h>
1da177e4
LT
43
44#include <asm/tlbflush.h>
45#include <asm/div64.h>
46
47#include <linux/swapops.h>
48
0f8053a5
NP
49#include "internal.h"
50
1da177e4 51struct scan_control {
1da177e4
LT
52 /* Incremented by the number of inactive pages that were scanned */
53 unsigned long nr_scanned;
54
a79311c1
RR
55 /* Number of pages freed so far during a call to shrink_zones() */
56 unsigned long nr_reclaimed;
57
1da177e4 58 /* This context's GFP mask */
6daa0e28 59 gfp_t gfp_mask;
1da177e4
LT
60
61 int may_writepage;
62
f1fd1067
CL
63 /* Can pages be swapped as part of reclaim? */
64 int may_swap;
65
1da177e4
LT
66 /* This context's SWAP_CLUSTER_MAX. If freeing memory for
67 * suspend, we effectively ignore SWAP_CLUSTER_MAX.
68 * In this context, it doesn't matter that we scan the
69 * whole list at once. */
70 int swap_cluster_max;
d6277db4
RW
71
72 int swappiness;
408d8544
NP
73
74 int all_unreclaimable;
5ad333eb
AW
75
76 int order;
66e1707b
BS
77
78 /* Which cgroup do we reclaim from */
79 struct mem_cgroup *mem_cgroup;
80
81 /* Pluggable isolate pages callback */
82 unsigned long (*isolate_pages)(unsigned long nr, struct list_head *dst,
83 unsigned long *scanned, int order, int mode,
84 struct zone *z, struct mem_cgroup *mem_cont,
4f98a2fe 85 int active, int file);
1da177e4
LT
86};
87
1da177e4
LT
88#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
89
90#ifdef ARCH_HAS_PREFETCH
91#define prefetch_prev_lru_page(_page, _base, _field) \
92 do { \
93 if ((_page)->lru.prev != _base) { \
94 struct page *prev; \
95 \
96 prev = lru_to_page(&(_page->lru)); \
97 prefetch(&prev->_field); \
98 } \
99 } while (0)
100#else
101#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
102#endif
103
104#ifdef ARCH_HAS_PREFETCHW
105#define prefetchw_prev_lru_page(_page, _base, _field) \
106 do { \
107 if ((_page)->lru.prev != _base) { \
108 struct page *prev; \
109 \
110 prev = lru_to_page(&(_page->lru)); \
111 prefetchw(&prev->_field); \
112 } \
113 } while (0)
114#else
115#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
116#endif
117
118/*
119 * From 0 .. 100. Higher means more swappy.
120 */
121int vm_swappiness = 60;
bd1e22b8 122long vm_total_pages; /* The total number of pages which the VM controls */
1da177e4
LT
123
124static LIST_HEAD(shrinker_list);
125static DECLARE_RWSEM(shrinker_rwsem);
126
00f0b825 127#ifdef CONFIG_CGROUP_MEM_RES_CTLR
91a45470
KH
128#define scan_global_lru(sc) (!(sc)->mem_cgroup)
129#else
130#define scan_global_lru(sc) (1)
131#endif
132
6e901571
KM
133static struct zone_reclaim_stat *get_reclaim_stat(struct zone *zone,
134 struct scan_control *sc)
135{
136 return &zone->reclaim_stat;
137}
138
c9f299d9
KM
139static unsigned long zone_nr_pages(struct zone *zone, struct scan_control *sc,
140 enum lru_list lru)
141{
142 return zone_page_state(zone, NR_LRU_BASE + lru);
143}
144
145
1da177e4
LT
146/*
147 * Add a shrinker callback to be called from the vm
148 */
8e1f936b 149void register_shrinker(struct shrinker *shrinker)
1da177e4 150{
8e1f936b
RR
151 shrinker->nr = 0;
152 down_write(&shrinker_rwsem);
153 list_add_tail(&shrinker->list, &shrinker_list);
154 up_write(&shrinker_rwsem);
1da177e4 155}
8e1f936b 156EXPORT_SYMBOL(register_shrinker);
1da177e4
LT
157
158/*
159 * Remove one
160 */
8e1f936b 161void unregister_shrinker(struct shrinker *shrinker)
1da177e4
LT
162{
163 down_write(&shrinker_rwsem);
164 list_del(&shrinker->list);
165 up_write(&shrinker_rwsem);
1da177e4 166}
8e1f936b 167EXPORT_SYMBOL(unregister_shrinker);
1da177e4
LT
168
169#define SHRINK_BATCH 128
170/*
171 * Call the shrink functions to age shrinkable caches
172 *
173 * Here we assume it costs one seek to replace a lru page and that it also
174 * takes a seek to recreate a cache object. With this in mind we age equal
175 * percentages of the lru and ageable caches. This should balance the seeks
176 * generated by these structures.
177 *
183ff22b 178 * If the vm encountered mapped pages on the LRU it increase the pressure on
1da177e4
LT
179 * slab to avoid swapping.
180 *
181 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
182 *
183 * `lru_pages' represents the number of on-LRU pages in all the zones which
184 * are eligible for the caller's allocation attempt. It is used for balancing
185 * slab reclaim versus page reclaim.
b15e0905 186 *
187 * Returns the number of slab objects which we shrunk.
1da177e4 188 */
69e05944
AM
189unsigned long shrink_slab(unsigned long scanned, gfp_t gfp_mask,
190 unsigned long lru_pages)
1da177e4
LT
191{
192 struct shrinker *shrinker;
69e05944 193 unsigned long ret = 0;
1da177e4
LT
194
195 if (scanned == 0)
196 scanned = SWAP_CLUSTER_MAX;
197
198 if (!down_read_trylock(&shrinker_rwsem))
b15e0905 199 return 1; /* Assume we'll be able to shrink next time */
1da177e4
LT
200
201 list_for_each_entry(shrinker, &shrinker_list, list) {
202 unsigned long long delta;
203 unsigned long total_scan;
8e1f936b 204 unsigned long max_pass = (*shrinker->shrink)(0, gfp_mask);
1da177e4
LT
205
206 delta = (4 * scanned) / shrinker->seeks;
ea164d73 207 delta *= max_pass;
1da177e4
LT
208 do_div(delta, lru_pages + 1);
209 shrinker->nr += delta;
ea164d73
AA
210 if (shrinker->nr < 0) {
211 printk(KERN_ERR "%s: nr=%ld\n",
d40cee24 212 __func__, shrinker->nr);
ea164d73
AA
213 shrinker->nr = max_pass;
214 }
215
216 /*
217 * Avoid risking looping forever due to too large nr value:
218 * never try to free more than twice the estimate number of
219 * freeable entries.
220 */
221 if (shrinker->nr > max_pass * 2)
222 shrinker->nr = max_pass * 2;
1da177e4
LT
223
224 total_scan = shrinker->nr;
225 shrinker->nr = 0;
226
227 while (total_scan >= SHRINK_BATCH) {
228 long this_scan = SHRINK_BATCH;
229 int shrink_ret;
b15e0905 230 int nr_before;
1da177e4 231
8e1f936b
RR
232 nr_before = (*shrinker->shrink)(0, gfp_mask);
233 shrink_ret = (*shrinker->shrink)(this_scan, gfp_mask);
1da177e4
LT
234 if (shrink_ret == -1)
235 break;
b15e0905 236 if (shrink_ret < nr_before)
237 ret += nr_before - shrink_ret;
f8891e5e 238 count_vm_events(SLABS_SCANNED, this_scan);
1da177e4
LT
239 total_scan -= this_scan;
240
241 cond_resched();
242 }
243
244 shrinker->nr += total_scan;
245 }
246 up_read(&shrinker_rwsem);
b15e0905 247 return ret;
1da177e4
LT
248}
249
250/* Called without lock on whether page is mapped, so answer is unstable */
251static inline int page_mapping_inuse(struct page *page)
252{
253 struct address_space *mapping;
254
255 /* Page is in somebody's page tables. */
256 if (page_mapped(page))
257 return 1;
258
259 /* Be more reluctant to reclaim swapcache than pagecache */
260 if (PageSwapCache(page))
261 return 1;
262
263 mapping = page_mapping(page);
264 if (!mapping)
265 return 0;
266
267 /* File is mmap'd by somebody? */
268 return mapping_mapped(mapping);
269}
270
271static inline int is_page_cache_freeable(struct page *page)
272{
273 return page_count(page) - !!PagePrivate(page) == 2;
274}
275
276static int may_write_to_queue(struct backing_dev_info *bdi)
277{
930d9152 278 if (current->flags & PF_SWAPWRITE)
1da177e4
LT
279 return 1;
280 if (!bdi_write_congested(bdi))
281 return 1;
282 if (bdi == current->backing_dev_info)
283 return 1;
284 return 0;
285}
286
287/*
288 * We detected a synchronous write error writing a page out. Probably
289 * -ENOSPC. We need to propagate that into the address_space for a subsequent
290 * fsync(), msync() or close().
291 *
292 * The tricky part is that after writepage we cannot touch the mapping: nothing
293 * prevents it from being freed up. But we have a ref on the page and once
294 * that page is locked, the mapping is pinned.
295 *
296 * We're allowed to run sleeping lock_page() here because we know the caller has
297 * __GFP_FS.
298 */
299static void handle_write_error(struct address_space *mapping,
300 struct page *page, int error)
301{
302 lock_page(page);
3e9f45bd
GC
303 if (page_mapping(page) == mapping)
304 mapping_set_error(mapping, error);
1da177e4
LT
305 unlock_page(page);
306}
307
c661b078
AW
308/* Request for sync pageout. */
309enum pageout_io {
310 PAGEOUT_IO_ASYNC,
311 PAGEOUT_IO_SYNC,
312};
313
04e62a29
CL
314/* possible outcome of pageout() */
315typedef enum {
316 /* failed to write page out, page is locked */
317 PAGE_KEEP,
318 /* move page to the active list, page is locked */
319 PAGE_ACTIVATE,
320 /* page has been sent to the disk successfully, page is unlocked */
321 PAGE_SUCCESS,
322 /* page is clean and locked */
323 PAGE_CLEAN,
324} pageout_t;
325
1da177e4 326/*
1742f19f
AM
327 * pageout is called by shrink_page_list() for each dirty page.
328 * Calls ->writepage().
1da177e4 329 */
c661b078
AW
330static pageout_t pageout(struct page *page, struct address_space *mapping,
331 enum pageout_io sync_writeback)
1da177e4
LT
332{
333 /*
334 * If the page is dirty, only perform writeback if that write
335 * will be non-blocking. To prevent this allocation from being
336 * stalled by pagecache activity. But note that there may be
337 * stalls if we need to run get_block(). We could test
338 * PagePrivate for that.
339 *
340 * If this process is currently in generic_file_write() against
341 * this page's queue, we can perform writeback even if that
342 * will block.
343 *
344 * If the page is swapcache, write it back even if that would
345 * block, for some throttling. This happens by accident, because
346 * swap_backing_dev_info is bust: it doesn't reflect the
347 * congestion state of the swapdevs. Easy to fix, if needed.
348 * See swapfile.c:page_queue_congested().
349 */
350 if (!is_page_cache_freeable(page))
351 return PAGE_KEEP;
352 if (!mapping) {
353 /*
354 * Some data journaling orphaned pages can have
355 * page->mapping == NULL while being dirty with clean buffers.
356 */
323aca6c 357 if (PagePrivate(page)) {
1da177e4
LT
358 if (try_to_free_buffers(page)) {
359 ClearPageDirty(page);
d40cee24 360 printk("%s: orphaned page\n", __func__);
1da177e4
LT
361 return PAGE_CLEAN;
362 }
363 }
364 return PAGE_KEEP;
365 }
366 if (mapping->a_ops->writepage == NULL)
367 return PAGE_ACTIVATE;
368 if (!may_write_to_queue(mapping->backing_dev_info))
369 return PAGE_KEEP;
370
371 if (clear_page_dirty_for_io(page)) {
372 int res;
373 struct writeback_control wbc = {
374 .sync_mode = WB_SYNC_NONE,
375 .nr_to_write = SWAP_CLUSTER_MAX,
111ebb6e
OH
376 .range_start = 0,
377 .range_end = LLONG_MAX,
1da177e4
LT
378 .nonblocking = 1,
379 .for_reclaim = 1,
380 };
381
382 SetPageReclaim(page);
383 res = mapping->a_ops->writepage(page, &wbc);
384 if (res < 0)
385 handle_write_error(mapping, page, res);
994fc28c 386 if (res == AOP_WRITEPAGE_ACTIVATE) {
1da177e4
LT
387 ClearPageReclaim(page);
388 return PAGE_ACTIVATE;
389 }
c661b078
AW
390
391 /*
392 * Wait on writeback if requested to. This happens when
393 * direct reclaiming a large contiguous area and the
394 * first attempt to free a range of pages fails.
395 */
396 if (PageWriteback(page) && sync_writeback == PAGEOUT_IO_SYNC)
397 wait_on_page_writeback(page);
398
1da177e4
LT
399 if (!PageWriteback(page)) {
400 /* synchronous write or broken a_ops? */
401 ClearPageReclaim(page);
402 }
e129b5c2 403 inc_zone_page_state(page, NR_VMSCAN_WRITE);
1da177e4
LT
404 return PAGE_SUCCESS;
405 }
406
407 return PAGE_CLEAN;
408}
409
a649fd92 410/*
e286781d
NP
411 * Same as remove_mapping, but if the page is removed from the mapping, it
412 * gets returned with a refcount of 0.
a649fd92 413 */
e286781d 414static int __remove_mapping(struct address_space *mapping, struct page *page)
49d2e9cc 415{
28e4d965
NP
416 BUG_ON(!PageLocked(page));
417 BUG_ON(mapping != page_mapping(page));
49d2e9cc 418
19fd6231 419 spin_lock_irq(&mapping->tree_lock);
49d2e9cc 420 /*
0fd0e6b0
NP
421 * The non racy check for a busy page.
422 *
423 * Must be careful with the order of the tests. When someone has
424 * a ref to the page, it may be possible that they dirty it then
425 * drop the reference. So if PageDirty is tested before page_count
426 * here, then the following race may occur:
427 *
428 * get_user_pages(&page);
429 * [user mapping goes away]
430 * write_to(page);
431 * !PageDirty(page) [good]
432 * SetPageDirty(page);
433 * put_page(page);
434 * !page_count(page) [good, discard it]
435 *
436 * [oops, our write_to data is lost]
437 *
438 * Reversing the order of the tests ensures such a situation cannot
439 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
440 * load is not satisfied before that of page->_count.
441 *
442 * Note that if SetPageDirty is always performed via set_page_dirty,
443 * and thus under tree_lock, then this ordering is not required.
49d2e9cc 444 */
e286781d 445 if (!page_freeze_refs(page, 2))
49d2e9cc 446 goto cannot_free;
e286781d
NP
447 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
448 if (unlikely(PageDirty(page))) {
449 page_unfreeze_refs(page, 2);
49d2e9cc 450 goto cannot_free;
e286781d 451 }
49d2e9cc
CL
452
453 if (PageSwapCache(page)) {
454 swp_entry_t swap = { .val = page_private(page) };
455 __delete_from_swap_cache(page);
19fd6231 456 spin_unlock_irq(&mapping->tree_lock);
49d2e9cc 457 swap_free(swap);
e286781d
NP
458 } else {
459 __remove_from_page_cache(page);
19fd6231 460 spin_unlock_irq(&mapping->tree_lock);
49d2e9cc
CL
461 }
462
49d2e9cc
CL
463 return 1;
464
465cannot_free:
19fd6231 466 spin_unlock_irq(&mapping->tree_lock);
49d2e9cc
CL
467 return 0;
468}
469
e286781d
NP
470/*
471 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
472 * someone else has a ref on the page, abort and return 0. If it was
473 * successfully detached, return 1. Assumes the caller has a single ref on
474 * this page.
475 */
476int remove_mapping(struct address_space *mapping, struct page *page)
477{
478 if (__remove_mapping(mapping, page)) {
479 /*
480 * Unfreezing the refcount with 1 rather than 2 effectively
481 * drops the pagecache ref for us without requiring another
482 * atomic operation.
483 */
484 page_unfreeze_refs(page, 1);
485 return 1;
486 }
487 return 0;
488}
489
894bc310
LS
490/**
491 * putback_lru_page - put previously isolated page onto appropriate LRU list
492 * @page: page to be put back to appropriate lru list
493 *
494 * Add previously isolated @page to appropriate LRU list.
495 * Page may still be unevictable for other reasons.
496 *
497 * lru_lock must not be held, interrupts must be enabled.
498 */
499#ifdef CONFIG_UNEVICTABLE_LRU
500void putback_lru_page(struct page *page)
501{
502 int lru;
503 int active = !!TestClearPageActive(page);
bbfd28ee 504 int was_unevictable = PageUnevictable(page);
894bc310
LS
505
506 VM_BUG_ON(PageLRU(page));
507
508redo:
509 ClearPageUnevictable(page);
510
511 if (page_evictable(page, NULL)) {
512 /*
513 * For evictable pages, we can use the cache.
514 * In event of a race, worst case is we end up with an
515 * unevictable page on [in]active list.
516 * We know how to handle that.
517 */
518 lru = active + page_is_file_cache(page);
519 lru_cache_add_lru(page, lru);
520 } else {
521 /*
522 * Put unevictable pages directly on zone's unevictable
523 * list.
524 */
525 lru = LRU_UNEVICTABLE;
526 add_page_to_unevictable_list(page);
527 }
894bc310
LS
528
529 /*
530 * page's status can change while we move it among lru. If an evictable
531 * page is on unevictable list, it never be freed. To avoid that,
532 * check after we added it to the list, again.
533 */
534 if (lru == LRU_UNEVICTABLE && page_evictable(page, NULL)) {
535 if (!isolate_lru_page(page)) {
536 put_page(page);
537 goto redo;
538 }
539 /* This means someone else dropped this page from LRU
540 * So, it will be freed or putback to LRU again. There is
541 * nothing to do here.
542 */
543 }
544
bbfd28ee
LS
545 if (was_unevictable && lru != LRU_UNEVICTABLE)
546 count_vm_event(UNEVICTABLE_PGRESCUED);
547 else if (!was_unevictable && lru == LRU_UNEVICTABLE)
548 count_vm_event(UNEVICTABLE_PGCULLED);
549
894bc310
LS
550 put_page(page); /* drop ref from isolate */
551}
552
553#else /* CONFIG_UNEVICTABLE_LRU */
554
555void putback_lru_page(struct page *page)
556{
557 int lru;
558 VM_BUG_ON(PageLRU(page));
559
560 lru = !!TestClearPageActive(page) + page_is_file_cache(page);
561 lru_cache_add_lru(page, lru);
894bc310
LS
562 put_page(page);
563}
564#endif /* CONFIG_UNEVICTABLE_LRU */
565
566
1da177e4 567/*
1742f19f 568 * shrink_page_list() returns the number of reclaimed pages
1da177e4 569 */
1742f19f 570static unsigned long shrink_page_list(struct list_head *page_list,
c661b078
AW
571 struct scan_control *sc,
572 enum pageout_io sync_writeback)
1da177e4
LT
573{
574 LIST_HEAD(ret_pages);
575 struct pagevec freed_pvec;
576 int pgactivate = 0;
05ff5137 577 unsigned long nr_reclaimed = 0;
1da177e4
LT
578
579 cond_resched();
580
581 pagevec_init(&freed_pvec, 1);
582 while (!list_empty(page_list)) {
583 struct address_space *mapping;
584 struct page *page;
585 int may_enter_fs;
586 int referenced;
587
588 cond_resched();
589
590 page = lru_to_page(page_list);
591 list_del(&page->lru);
592
529ae9aa 593 if (!trylock_page(page))
1da177e4
LT
594 goto keep;
595
725d704e 596 VM_BUG_ON(PageActive(page));
1da177e4
LT
597
598 sc->nr_scanned++;
80e43426 599
b291f000
NP
600 if (unlikely(!page_evictable(page, NULL)))
601 goto cull_mlocked;
894bc310 602
80e43426
CL
603 if (!sc->may_swap && page_mapped(page))
604 goto keep_locked;
605
1da177e4
LT
606 /* Double the slab pressure for mapped and swapcache pages */
607 if (page_mapped(page) || PageSwapCache(page))
608 sc->nr_scanned++;
609
c661b078
AW
610 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
611 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
612
613 if (PageWriteback(page)) {
614 /*
615 * Synchronous reclaim is performed in two passes,
616 * first an asynchronous pass over the list to
617 * start parallel writeback, and a second synchronous
618 * pass to wait for the IO to complete. Wait here
619 * for any page for which writeback has already
620 * started.
621 */
622 if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs)
623 wait_on_page_writeback(page);
4dd4b920 624 else
c661b078
AW
625 goto keep_locked;
626 }
1da177e4 627
bed7161a 628 referenced = page_referenced(page, 1, sc->mem_cgroup);
1da177e4 629 /* In active use or really unfreeable? Activate it. */
5ad333eb
AW
630 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER &&
631 referenced && page_mapping_inuse(page))
1da177e4
LT
632 goto activate_locked;
633
1da177e4
LT
634 /*
635 * Anonymous process memory has backing store?
636 * Try to allocate it some swap space here.
637 */
b291f000 638 if (PageAnon(page) && !PageSwapCache(page)) {
63eb6b93
HD
639 if (!(sc->gfp_mask & __GFP_IO))
640 goto keep_locked;
ac47b003 641 if (!add_to_swap(page))
1da177e4 642 goto activate_locked;
63eb6b93 643 may_enter_fs = 1;
b291f000 644 }
1da177e4
LT
645
646 mapping = page_mapping(page);
1da177e4
LT
647
648 /*
649 * The page is mapped into the page tables of one or more
650 * processes. Try to unmap it here.
651 */
652 if (page_mapped(page) && mapping) {
a48d07af 653 switch (try_to_unmap(page, 0)) {
1da177e4
LT
654 case SWAP_FAIL:
655 goto activate_locked;
656 case SWAP_AGAIN:
657 goto keep_locked;
b291f000
NP
658 case SWAP_MLOCK:
659 goto cull_mlocked;
1da177e4
LT
660 case SWAP_SUCCESS:
661 ; /* try to free the page below */
662 }
663 }
664
665 if (PageDirty(page)) {
5ad333eb 666 if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced)
1da177e4 667 goto keep_locked;
4dd4b920 668 if (!may_enter_fs)
1da177e4 669 goto keep_locked;
52a8363e 670 if (!sc->may_writepage)
1da177e4
LT
671 goto keep_locked;
672
673 /* Page is dirty, try to write it out here */
c661b078 674 switch (pageout(page, mapping, sync_writeback)) {
1da177e4
LT
675 case PAGE_KEEP:
676 goto keep_locked;
677 case PAGE_ACTIVATE:
678 goto activate_locked;
679 case PAGE_SUCCESS:
4dd4b920 680 if (PageWriteback(page) || PageDirty(page))
1da177e4
LT
681 goto keep;
682 /*
683 * A synchronous write - probably a ramdisk. Go
684 * ahead and try to reclaim the page.
685 */
529ae9aa 686 if (!trylock_page(page))
1da177e4
LT
687 goto keep;
688 if (PageDirty(page) || PageWriteback(page))
689 goto keep_locked;
690 mapping = page_mapping(page);
691 case PAGE_CLEAN:
692 ; /* try to free the page below */
693 }
694 }
695
696 /*
697 * If the page has buffers, try to free the buffer mappings
698 * associated with this page. If we succeed we try to free
699 * the page as well.
700 *
701 * We do this even if the page is PageDirty().
702 * try_to_release_page() does not perform I/O, but it is
703 * possible for a page to have PageDirty set, but it is actually
704 * clean (all its buffers are clean). This happens if the
705 * buffers were written out directly, with submit_bh(). ext3
894bc310 706 * will do this, as well as the blockdev mapping.
1da177e4
LT
707 * try_to_release_page() will discover that cleanness and will
708 * drop the buffers and mark the page clean - it can be freed.
709 *
710 * Rarely, pages can have buffers and no ->mapping. These are
711 * the pages which were not successfully invalidated in
712 * truncate_complete_page(). We try to drop those buffers here
713 * and if that worked, and the page is no longer mapped into
714 * process address space (page_count == 1) it can be freed.
715 * Otherwise, leave the page on the LRU so it is swappable.
716 */
717 if (PagePrivate(page)) {
718 if (!try_to_release_page(page, sc->gfp_mask))
719 goto activate_locked;
e286781d
NP
720 if (!mapping && page_count(page) == 1) {
721 unlock_page(page);
722 if (put_page_testzero(page))
723 goto free_it;
724 else {
725 /*
726 * rare race with speculative reference.
727 * the speculative reference will free
728 * this page shortly, so we may
729 * increment nr_reclaimed here (and
730 * leave it off the LRU).
731 */
732 nr_reclaimed++;
733 continue;
734 }
735 }
1da177e4
LT
736 }
737
e286781d 738 if (!mapping || !__remove_mapping(mapping, page))
49d2e9cc 739 goto keep_locked;
1da177e4 740
a978d6f5
NP
741 /*
742 * At this point, we have no other references and there is
743 * no way to pick any more up (removed from LRU, removed
744 * from pagecache). Can use non-atomic bitops now (and
745 * we obviously don't have to worry about waking up a process
746 * waiting on the page lock, because there are no references.
747 */
748 __clear_page_locked(page);
e286781d 749free_it:
05ff5137 750 nr_reclaimed++;
e286781d
NP
751 if (!pagevec_add(&freed_pvec, page)) {
752 __pagevec_free(&freed_pvec);
753 pagevec_reinit(&freed_pvec);
754 }
1da177e4
LT
755 continue;
756
b291f000 757cull_mlocked:
63d6c5ad
HD
758 if (PageSwapCache(page))
759 try_to_free_swap(page);
b291f000
NP
760 unlock_page(page);
761 putback_lru_page(page);
762 continue;
763
1da177e4 764activate_locked:
68a22394
RR
765 /* Not a candidate for swapping, so reclaim swap space. */
766 if (PageSwapCache(page) && vm_swap_full())
a2c43eed 767 try_to_free_swap(page);
894bc310 768 VM_BUG_ON(PageActive(page));
1da177e4
LT
769 SetPageActive(page);
770 pgactivate++;
771keep_locked:
772 unlock_page(page);
773keep:
774 list_add(&page->lru, &ret_pages);
b291f000 775 VM_BUG_ON(PageLRU(page) || PageUnevictable(page));
1da177e4
LT
776 }
777 list_splice(&ret_pages, page_list);
778 if (pagevec_count(&freed_pvec))
e286781d 779 __pagevec_free(&freed_pvec);
f8891e5e 780 count_vm_events(PGACTIVATE, pgactivate);
05ff5137 781 return nr_reclaimed;
1da177e4
LT
782}
783
5ad333eb
AW
784/* LRU Isolation modes. */
785#define ISOLATE_INACTIVE 0 /* Isolate inactive pages. */
786#define ISOLATE_ACTIVE 1 /* Isolate active pages. */
787#define ISOLATE_BOTH 2 /* Isolate both active and inactive pages. */
788
789/*
790 * Attempt to remove the specified page from its LRU. Only take this page
791 * if it is of the appropriate PageActive status. Pages which are being
792 * freed elsewhere are also ignored.
793 *
794 * page: page to consider
795 * mode: one of the LRU isolation modes defined above
796 *
797 * returns 0 on success, -ve errno on failure.
798 */
4f98a2fe 799int __isolate_lru_page(struct page *page, int mode, int file)
5ad333eb
AW
800{
801 int ret = -EINVAL;
802
803 /* Only take pages on the LRU. */
804 if (!PageLRU(page))
805 return ret;
806
807 /*
808 * When checking the active state, we need to be sure we are
809 * dealing with comparible boolean values. Take the logical not
810 * of each.
811 */
812 if (mode != ISOLATE_BOTH && (!PageActive(page) != !mode))
813 return ret;
814
4f98a2fe
RR
815 if (mode != ISOLATE_BOTH && (!page_is_file_cache(page) != !file))
816 return ret;
817
894bc310
LS
818 /*
819 * When this function is being called for lumpy reclaim, we
820 * initially look into all LRU pages, active, inactive and
821 * unevictable; only give shrink_page_list evictable pages.
822 */
823 if (PageUnevictable(page))
824 return ret;
825
5ad333eb 826 ret = -EBUSY;
08e552c6 827
5ad333eb
AW
828 if (likely(get_page_unless_zero(page))) {
829 /*
830 * Be careful not to clear PageLRU until after we're
831 * sure the page is not being freed elsewhere -- the
832 * page release code relies on it.
833 */
834 ClearPageLRU(page);
835 ret = 0;
08e552c6 836 mem_cgroup_del_lru(page);
5ad333eb
AW
837 }
838
839 return ret;
840}
841
1da177e4
LT
842/*
843 * zone->lru_lock is heavily contended. Some of the functions that
844 * shrink the lists perform better by taking out a batch of pages
845 * and working on them outside the LRU lock.
846 *
847 * For pagecache intensive workloads, this function is the hottest
848 * spot in the kernel (apart from copy_*_user functions).
849 *
850 * Appropriate locks must be held before calling this function.
851 *
852 * @nr_to_scan: The number of pages to look through on the list.
853 * @src: The LRU list to pull pages off.
854 * @dst: The temp list to put pages on to.
855 * @scanned: The number of pages that were scanned.
5ad333eb
AW
856 * @order: The caller's attempted allocation order
857 * @mode: One of the LRU isolation modes
4f98a2fe 858 * @file: True [1] if isolating file [!anon] pages
1da177e4
LT
859 *
860 * returns how many pages were moved onto *@dst.
861 */
69e05944
AM
862static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
863 struct list_head *src, struct list_head *dst,
4f98a2fe 864 unsigned long *scanned, int order, int mode, int file)
1da177e4 865{
69e05944 866 unsigned long nr_taken = 0;
c9b02d97 867 unsigned long scan;
1da177e4 868
c9b02d97 869 for (scan = 0; scan < nr_to_scan && !list_empty(src); scan++) {
5ad333eb
AW
870 struct page *page;
871 unsigned long pfn;
872 unsigned long end_pfn;
873 unsigned long page_pfn;
874 int zone_id;
875
1da177e4
LT
876 page = lru_to_page(src);
877 prefetchw_prev_lru_page(page, src, flags);
878
725d704e 879 VM_BUG_ON(!PageLRU(page));
8d438f96 880
4f98a2fe 881 switch (__isolate_lru_page(page, mode, file)) {
5ad333eb
AW
882 case 0:
883 list_move(&page->lru, dst);
7c8ee9a8 884 nr_taken++;
5ad333eb
AW
885 break;
886
887 case -EBUSY:
888 /* else it is being freed elsewhere */
889 list_move(&page->lru, src);
890 continue;
46453a6e 891
5ad333eb
AW
892 default:
893 BUG();
894 }
895
896 if (!order)
897 continue;
898
899 /*
900 * Attempt to take all pages in the order aligned region
901 * surrounding the tag page. Only take those pages of
902 * the same active state as that tag page. We may safely
903 * round the target page pfn down to the requested order
904 * as the mem_map is guarenteed valid out to MAX_ORDER,
905 * where that page is in a different zone we will detect
906 * it from its zone id and abort this block scan.
907 */
908 zone_id = page_zone_id(page);
909 page_pfn = page_to_pfn(page);
910 pfn = page_pfn & ~((1 << order) - 1);
911 end_pfn = pfn + (1 << order);
912 for (; pfn < end_pfn; pfn++) {
913 struct page *cursor_page;
914
915 /* The target page is in the block, ignore it. */
916 if (unlikely(pfn == page_pfn))
917 continue;
918
919 /* Avoid holes within the zone. */
920 if (unlikely(!pfn_valid_within(pfn)))
921 break;
922
923 cursor_page = pfn_to_page(pfn);
4f98a2fe 924
5ad333eb
AW
925 /* Check that we have not crossed a zone boundary. */
926 if (unlikely(page_zone_id(cursor_page) != zone_id))
927 continue;
4f98a2fe 928 switch (__isolate_lru_page(cursor_page, mode, file)) {
5ad333eb
AW
929 case 0:
930 list_move(&cursor_page->lru, dst);
931 nr_taken++;
932 scan++;
933 break;
934
935 case -EBUSY:
936 /* else it is being freed elsewhere */
937 list_move(&cursor_page->lru, src);
938 default:
894bc310 939 break; /* ! on LRU or wrong list */
5ad333eb
AW
940 }
941 }
1da177e4
LT
942 }
943
944 *scanned = scan;
945 return nr_taken;
946}
947
66e1707b
BS
948static unsigned long isolate_pages_global(unsigned long nr,
949 struct list_head *dst,
950 unsigned long *scanned, int order,
951 int mode, struct zone *z,
952 struct mem_cgroup *mem_cont,
4f98a2fe 953 int active, int file)
66e1707b 954{
4f98a2fe 955 int lru = LRU_BASE;
66e1707b 956 if (active)
4f98a2fe
RR
957 lru += LRU_ACTIVE;
958 if (file)
959 lru += LRU_FILE;
960 return isolate_lru_pages(nr, &z->lru[lru].list, dst, scanned, order,
961 mode, !!file);
66e1707b
BS
962}
963
5ad333eb
AW
964/*
965 * clear_active_flags() is a helper for shrink_active_list(), clearing
966 * any active bits from the pages in the list.
967 */
4f98a2fe
RR
968static unsigned long clear_active_flags(struct list_head *page_list,
969 unsigned int *count)
5ad333eb
AW
970{
971 int nr_active = 0;
4f98a2fe 972 int lru;
5ad333eb
AW
973 struct page *page;
974
4f98a2fe
RR
975 list_for_each_entry(page, page_list, lru) {
976 lru = page_is_file_cache(page);
5ad333eb 977 if (PageActive(page)) {
4f98a2fe 978 lru += LRU_ACTIVE;
5ad333eb
AW
979 ClearPageActive(page);
980 nr_active++;
981 }
4f98a2fe
RR
982 count[lru]++;
983 }
5ad333eb
AW
984
985 return nr_active;
986}
987
62695a84
NP
988/**
989 * isolate_lru_page - tries to isolate a page from its LRU list
990 * @page: page to isolate from its LRU list
991 *
992 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
993 * vmstat statistic corresponding to whatever LRU list the page was on.
994 *
995 * Returns 0 if the page was removed from an LRU list.
996 * Returns -EBUSY if the page was not on an LRU list.
997 *
998 * The returned page will have PageLRU() cleared. If it was found on
894bc310
LS
999 * the active list, it will have PageActive set. If it was found on
1000 * the unevictable list, it will have the PageUnevictable bit set. That flag
1001 * may need to be cleared by the caller before letting the page go.
62695a84
NP
1002 *
1003 * The vmstat statistic corresponding to the list on which the page was
1004 * found will be decremented.
1005 *
1006 * Restrictions:
1007 * (1) Must be called with an elevated refcount on the page. This is a
1008 * fundamentnal difference from isolate_lru_pages (which is called
1009 * without a stable reference).
1010 * (2) the lru_lock must not be held.
1011 * (3) interrupts must be enabled.
1012 */
1013int isolate_lru_page(struct page *page)
1014{
1015 int ret = -EBUSY;
1016
1017 if (PageLRU(page)) {
1018 struct zone *zone = page_zone(page);
1019
1020 spin_lock_irq(&zone->lru_lock);
1021 if (PageLRU(page) && get_page_unless_zero(page)) {
894bc310 1022 int lru = page_lru(page);
62695a84
NP
1023 ret = 0;
1024 ClearPageLRU(page);
4f98a2fe 1025
4f98a2fe 1026 del_page_from_lru_list(zone, page, lru);
62695a84
NP
1027 }
1028 spin_unlock_irq(&zone->lru_lock);
1029 }
1030 return ret;
1031}
1032
1da177e4 1033/*
1742f19f
AM
1034 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1035 * of reclaimed pages
1da177e4 1036 */
1742f19f 1037static unsigned long shrink_inactive_list(unsigned long max_scan,
33c120ed
RR
1038 struct zone *zone, struct scan_control *sc,
1039 int priority, int file)
1da177e4
LT
1040{
1041 LIST_HEAD(page_list);
1042 struct pagevec pvec;
69e05944 1043 unsigned long nr_scanned = 0;
05ff5137 1044 unsigned long nr_reclaimed = 0;
6e901571 1045 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
1da177e4
LT
1046
1047 pagevec_init(&pvec, 1);
1048
1049 lru_add_drain();
1050 spin_lock_irq(&zone->lru_lock);
69e05944 1051 do {
1da177e4 1052 struct page *page;
69e05944
AM
1053 unsigned long nr_taken;
1054 unsigned long nr_scan;
1055 unsigned long nr_freed;
5ad333eb 1056 unsigned long nr_active;
4f98a2fe 1057 unsigned int count[NR_LRU_LISTS] = { 0, };
33c120ed
RR
1058 int mode = ISOLATE_INACTIVE;
1059
1060 /*
1061 * If we need a large contiguous chunk of memory, or have
1062 * trouble getting a small set of contiguous pages, we
1063 * will reclaim both active and inactive pages.
1064 *
1065 * We use the same threshold as pageout congestion_wait below.
1066 */
1067 if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
1068 mode = ISOLATE_BOTH;
1069 else if (sc->order && priority < DEF_PRIORITY - 2)
1070 mode = ISOLATE_BOTH;
1da177e4 1071
66e1707b 1072 nr_taken = sc->isolate_pages(sc->swap_cluster_max,
4f98a2fe
RR
1073 &page_list, &nr_scan, sc->order, mode,
1074 zone, sc->mem_cgroup, 0, file);
1075 nr_active = clear_active_flags(&page_list, count);
e9187bdc 1076 __count_vm_events(PGDEACTIVATE, nr_active);
5ad333eb 1077
4f98a2fe
RR
1078 __mod_zone_page_state(zone, NR_ACTIVE_FILE,
1079 -count[LRU_ACTIVE_FILE]);
1080 __mod_zone_page_state(zone, NR_INACTIVE_FILE,
1081 -count[LRU_INACTIVE_FILE]);
1082 __mod_zone_page_state(zone, NR_ACTIVE_ANON,
1083 -count[LRU_ACTIVE_ANON]);
1084 __mod_zone_page_state(zone, NR_INACTIVE_ANON,
1085 -count[LRU_INACTIVE_ANON]);
1086
1087 if (scan_global_lru(sc)) {
1cfb419b 1088 zone->pages_scanned += nr_scan;
6e901571
KM
1089 reclaim_stat->recent_scanned[0] +=
1090 count[LRU_INACTIVE_ANON];
1091 reclaim_stat->recent_scanned[0] +=
1092 count[LRU_ACTIVE_ANON];
1093 reclaim_stat->recent_scanned[1] +=
1094 count[LRU_INACTIVE_FILE];
1095 reclaim_stat->recent_scanned[1] +=
1096 count[LRU_ACTIVE_FILE];
4f98a2fe 1097 }
1da177e4
LT
1098 spin_unlock_irq(&zone->lru_lock);
1099
69e05944 1100 nr_scanned += nr_scan;
c661b078
AW
1101 nr_freed = shrink_page_list(&page_list, sc, PAGEOUT_IO_ASYNC);
1102
1103 /*
1104 * If we are direct reclaiming for contiguous pages and we do
1105 * not reclaim everything in the list, try again and wait
1106 * for IO to complete. This will stall high-order allocations
1107 * but that should be acceptable to the caller
1108 */
1109 if (nr_freed < nr_taken && !current_is_kswapd() &&
1110 sc->order > PAGE_ALLOC_COSTLY_ORDER) {
1111 congestion_wait(WRITE, HZ/10);
1112
1113 /*
1114 * The attempt at page out may have made some
1115 * of the pages active, mark them inactive again.
1116 */
4f98a2fe 1117 nr_active = clear_active_flags(&page_list, count);
c661b078
AW
1118 count_vm_events(PGDEACTIVATE, nr_active);
1119
1120 nr_freed += shrink_page_list(&page_list, sc,
1121 PAGEOUT_IO_SYNC);
1122 }
1123
05ff5137 1124 nr_reclaimed += nr_freed;
a74609fa
NP
1125 local_irq_disable();
1126 if (current_is_kswapd()) {
f8891e5e
CL
1127 __count_zone_vm_events(PGSCAN_KSWAPD, zone, nr_scan);
1128 __count_vm_events(KSWAPD_STEAL, nr_freed);
1cfb419b 1129 } else if (scan_global_lru(sc))
f8891e5e 1130 __count_zone_vm_events(PGSCAN_DIRECT, zone, nr_scan);
1cfb419b 1131
918d3f90 1132 __count_zone_vm_events(PGSTEAL, zone, nr_freed);
a74609fa 1133
fb8d14e1
WF
1134 if (nr_taken == 0)
1135 goto done;
1136
a74609fa 1137 spin_lock(&zone->lru_lock);
1da177e4
LT
1138 /*
1139 * Put back any unfreeable pages.
1140 */
1141 while (!list_empty(&page_list)) {
894bc310 1142 int lru;
1da177e4 1143 page = lru_to_page(&page_list);
725d704e 1144 VM_BUG_ON(PageLRU(page));
1da177e4 1145 list_del(&page->lru);
894bc310
LS
1146 if (unlikely(!page_evictable(page, NULL))) {
1147 spin_unlock_irq(&zone->lru_lock);
1148 putback_lru_page(page);
1149 spin_lock_irq(&zone->lru_lock);
1150 continue;
1151 }
1152 SetPageLRU(page);
1153 lru = page_lru(page);
1154 add_page_to_lru_list(zone, page, lru);
4f98a2fe
RR
1155 if (PageActive(page) && scan_global_lru(sc)) {
1156 int file = !!page_is_file_cache(page);
6e901571 1157 reclaim_stat->recent_rotated[file]++;
4f98a2fe 1158 }
1da177e4
LT
1159 if (!pagevec_add(&pvec, page)) {
1160 spin_unlock_irq(&zone->lru_lock);
1161 __pagevec_release(&pvec);
1162 spin_lock_irq(&zone->lru_lock);
1163 }
1164 }
69e05944 1165 } while (nr_scanned < max_scan);
fb8d14e1 1166 spin_unlock(&zone->lru_lock);
1da177e4 1167done:
fb8d14e1 1168 local_irq_enable();
1da177e4 1169 pagevec_release(&pvec);
05ff5137 1170 return nr_reclaimed;
1da177e4
LT
1171}
1172
3bb1a852
MB
1173/*
1174 * We are about to scan this zone at a certain priority level. If that priority
1175 * level is smaller (ie: more urgent) than the previous priority, then note
1176 * that priority level within the zone. This is done so that when the next
1177 * process comes in to scan this zone, it will immediately start out at this
1178 * priority level rather than having to build up its own scanning priority.
1179 * Here, this priority affects only the reclaim-mapped threshold.
1180 */
1181static inline void note_zone_scanning_priority(struct zone *zone, int priority)
1182{
1183 if (priority < zone->prev_priority)
1184 zone->prev_priority = priority;
1185}
1186
1da177e4
LT
1187/*
1188 * This moves pages from the active list to the inactive list.
1189 *
1190 * We move them the other way if the page is referenced by one or more
1191 * processes, from rmap.
1192 *
1193 * If the pages are mostly unmapped, the processing is fast and it is
1194 * appropriate to hold zone->lru_lock across the whole operation. But if
1195 * the pages are mapped, the processing is slow (page_referenced()) so we
1196 * should drop zone->lru_lock around each page. It's impossible to balance
1197 * this, so instead we remove the pages from the LRU while processing them.
1198 * It is safe to rely on PG_active against the non-LRU pages in here because
1199 * nobody will play with that bit on a non-LRU page.
1200 *
1201 * The downside is that we have to touch page->_count against each page.
1202 * But we had to alter page->flags anyway.
1203 */
1cfb419b
KH
1204
1205
1742f19f 1206static void shrink_active_list(unsigned long nr_pages, struct zone *zone,
4f98a2fe 1207 struct scan_control *sc, int priority, int file)
1da177e4 1208{
69e05944 1209 unsigned long pgmoved;
1da177e4 1210 int pgdeactivate = 0;
69e05944 1211 unsigned long pgscanned;
1da177e4 1212 LIST_HEAD(l_hold); /* The pages which were snipped off */
b69408e8 1213 LIST_HEAD(l_inactive);
1da177e4
LT
1214 struct page *page;
1215 struct pagevec pvec;
4f98a2fe 1216 enum lru_list lru;
6e901571 1217 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
1da177e4
LT
1218
1219 lru_add_drain();
1220 spin_lock_irq(&zone->lru_lock);
66e1707b
BS
1221 pgmoved = sc->isolate_pages(nr_pages, &l_hold, &pgscanned, sc->order,
1222 ISOLATE_ACTIVE, zone,
4f98a2fe 1223 sc->mem_cgroup, 1, file);
1cfb419b
KH
1224 /*
1225 * zone->pages_scanned is used for detect zone's oom
1226 * mem_cgroup remembers nr_scan by itself.
1227 */
4f98a2fe 1228 if (scan_global_lru(sc)) {
1cfb419b 1229 zone->pages_scanned += pgscanned;
6e901571 1230 reclaim_stat->recent_scanned[!!file] += pgmoved;
4f98a2fe 1231 }
1cfb419b 1232
4f98a2fe
RR
1233 if (file)
1234 __mod_zone_page_state(zone, NR_ACTIVE_FILE, -pgmoved);
1235 else
1236 __mod_zone_page_state(zone, NR_ACTIVE_ANON, -pgmoved);
1da177e4
LT
1237 spin_unlock_irq(&zone->lru_lock);
1238
556adecb 1239 pgmoved = 0;
1da177e4
LT
1240 while (!list_empty(&l_hold)) {
1241 cond_resched();
1242 page = lru_to_page(&l_hold);
1243 list_del(&page->lru);
7e9cd484 1244
894bc310
LS
1245 if (unlikely(!page_evictable(page, NULL))) {
1246 putback_lru_page(page);
1247 continue;
1248 }
1249
7e9cd484
RR
1250 /* page_referenced clears PageReferenced */
1251 if (page_mapping_inuse(page) &&
1252 page_referenced(page, 0, sc->mem_cgroup))
1253 pgmoved++;
1254
1da177e4
LT
1255 list_add(&page->lru, &l_inactive);
1256 }
1257
b555749a
AM
1258 /*
1259 * Move the pages to the [file or anon] inactive list.
1260 */
1261 pagevec_init(&pvec, 1);
1262 pgmoved = 0;
1263 lru = LRU_BASE + file * LRU_FILE;
1264
2a1dc509 1265 spin_lock_irq(&zone->lru_lock);
556adecb 1266 /*
7e9cd484
RR
1267 * Count referenced pages from currently used mappings as
1268 * rotated, even though they are moved to the inactive list.
1269 * This helps balance scan pressure between file and anonymous
1270 * pages in get_scan_ratio.
1271 */
077cbc58 1272 if (scan_global_lru(sc))
6e901571 1273 reclaim_stat->recent_rotated[!!file] += pgmoved;
556adecb 1274
1da177e4
LT
1275 while (!list_empty(&l_inactive)) {
1276 page = lru_to_page(&l_inactive);
1277 prefetchw_prev_lru_page(page, &l_inactive, flags);
725d704e 1278 VM_BUG_ON(PageLRU(page));
8d438f96 1279 SetPageLRU(page);
725d704e 1280 VM_BUG_ON(!PageActive(page));
4c84cacf
NP
1281 ClearPageActive(page);
1282
4f98a2fe 1283 list_move(&page->lru, &zone->lru[lru].list);
08e552c6 1284 mem_cgroup_add_lru_list(page, lru);
1da177e4
LT
1285 pgmoved++;
1286 if (!pagevec_add(&pvec, page)) {
4f98a2fe 1287 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1da177e4
LT
1288 spin_unlock_irq(&zone->lru_lock);
1289 pgdeactivate += pgmoved;
1290 pgmoved = 0;
1291 if (buffer_heads_over_limit)
1292 pagevec_strip(&pvec);
1293 __pagevec_release(&pvec);
1294 spin_lock_irq(&zone->lru_lock);
1295 }
1296 }
4f98a2fe 1297 __mod_zone_page_state(zone, NR_LRU_BASE + lru, pgmoved);
1da177e4
LT
1298 pgdeactivate += pgmoved;
1299 if (buffer_heads_over_limit) {
1300 spin_unlock_irq(&zone->lru_lock);
1301 pagevec_strip(&pvec);
1302 spin_lock_irq(&zone->lru_lock);
1303 }
f8891e5e
CL
1304 __count_zone_vm_events(PGREFILL, zone, pgscanned);
1305 __count_vm_events(PGDEACTIVATE, pgdeactivate);
1306 spin_unlock_irq(&zone->lru_lock);
68a22394
RR
1307 if (vm_swap_full())
1308 pagevec_swap_free(&pvec);
1da177e4 1309
a74609fa 1310 pagevec_release(&pvec);
1da177e4
LT
1311}
1312
f89eb90e
KM
1313/**
1314 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1315 * @zone: zone to check
1316 *
1317 * Returns true if the zone does not have enough inactive anon pages,
1318 * meaning some active anon pages need to be deactivated.
1319 */
1320static int inactive_anon_is_low(struct zone *zone)
1321{
1322 unsigned long active, inactive;
1323
1324 active = zone_page_state(zone, NR_ACTIVE_ANON);
1325 inactive = zone_page_state(zone, NR_INACTIVE_ANON);
1326
1327 if (inactive * zone->inactive_ratio < active)
1328 return 1;
1329
1330 return 0;
1331}
1332
4f98a2fe 1333static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
b69408e8
CL
1334 struct zone *zone, struct scan_control *sc, int priority)
1335{
4f98a2fe
RR
1336 int file = is_file_lru(lru);
1337
556adecb
RR
1338 if (lru == LRU_ACTIVE_FILE) {
1339 shrink_active_list(nr_to_scan, zone, sc, priority, file);
1340 return 0;
1341 }
1342
1343 if (lru == LRU_ACTIVE_ANON &&
1344 (!scan_global_lru(sc) || inactive_anon_is_low(zone))) {
4f98a2fe 1345 shrink_active_list(nr_to_scan, zone, sc, priority, file);
b69408e8
CL
1346 return 0;
1347 }
33c120ed 1348 return shrink_inactive_list(nr_to_scan, zone, sc, priority, file);
4f98a2fe
RR
1349}
1350
1351/*
1352 * Determine how aggressively the anon and file LRU lists should be
1353 * scanned. The relative value of each set of LRU lists is determined
1354 * by looking at the fraction of the pages scanned we did rotate back
1355 * onto the active list instead of evict.
1356 *
1357 * percent[0] specifies how much pressure to put on ram/swap backed
1358 * memory, while percent[1] determines pressure on the file LRUs.
1359 */
1360static void get_scan_ratio(struct zone *zone, struct scan_control *sc,
1361 unsigned long *percent)
1362{
1363 unsigned long anon, file, free;
1364 unsigned long anon_prio, file_prio;
1365 unsigned long ap, fp;
6e901571 1366 struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc);
4f98a2fe 1367
4f98a2fe
RR
1368 /* If we have no swap space, do not bother scanning anon pages. */
1369 if (nr_swap_pages <= 0) {
1370 percent[0] = 0;
1371 percent[1] = 100;
1372 return;
1373 }
1374
c9f299d9
KM
1375 anon = zone_nr_pages(zone, sc, LRU_ACTIVE_ANON) +
1376 zone_nr_pages(zone, sc, LRU_INACTIVE_ANON);
1377 file = zone_nr_pages(zone, sc, LRU_ACTIVE_FILE) +
1378 zone_nr_pages(zone, sc, LRU_INACTIVE_FILE);
b962716b
HD
1379 free = zone_page_state(zone, NR_FREE_PAGES);
1380
4f98a2fe
RR
1381 /* If we have very few page cache pages, force-scan anon pages. */
1382 if (unlikely(file + free <= zone->pages_high)) {
1383 percent[0] = 100;
1384 percent[1] = 0;
1385 return;
1386 }
1387
1388 /*
1389 * OK, so we have swap space and a fair amount of page cache
1390 * pages. We use the recently rotated / recently scanned
1391 * ratios to determine how valuable each cache is.
1392 *
1393 * Because workloads change over time (and to avoid overflow)
1394 * we keep these statistics as a floating average, which ends
1395 * up weighing recent references more than old ones.
1396 *
1397 * anon in [0], file in [1]
1398 */
6e901571 1399 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
4f98a2fe 1400 spin_lock_irq(&zone->lru_lock);
6e901571
KM
1401 reclaim_stat->recent_scanned[0] /= 2;
1402 reclaim_stat->recent_rotated[0] /= 2;
4f98a2fe
RR
1403 spin_unlock_irq(&zone->lru_lock);
1404 }
1405
6e901571 1406 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
4f98a2fe 1407 spin_lock_irq(&zone->lru_lock);
6e901571
KM
1408 reclaim_stat->recent_scanned[1] /= 2;
1409 reclaim_stat->recent_rotated[1] /= 2;
4f98a2fe
RR
1410 spin_unlock_irq(&zone->lru_lock);
1411 }
1412
1413 /*
1414 * With swappiness at 100, anonymous and file have the same priority.
1415 * This scanning priority is essentially the inverse of IO cost.
1416 */
1417 anon_prio = sc->swappiness;
1418 file_prio = 200 - sc->swappiness;
1419
1420 /*
00d8089c
RR
1421 * The amount of pressure on anon vs file pages is inversely
1422 * proportional to the fraction of recently scanned pages on
1423 * each list that were recently referenced and in active use.
4f98a2fe 1424 */
6e901571
KM
1425 ap = (anon_prio + 1) * (reclaim_stat->recent_scanned[0] + 1);
1426 ap /= reclaim_stat->recent_rotated[0] + 1;
4f98a2fe 1427
6e901571
KM
1428 fp = (file_prio + 1) * (reclaim_stat->recent_scanned[1] + 1);
1429 fp /= reclaim_stat->recent_rotated[1] + 1;
4f98a2fe
RR
1430
1431 /* Normalize to percentages */
1432 percent[0] = 100 * ap / (ap + fp + 1);
1433 percent[1] = 100 - percent[0];
b69408e8
CL
1434}
1435
4f98a2fe 1436
1da177e4
LT
1437/*
1438 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1439 */
a79311c1 1440static void shrink_zone(int priority, struct zone *zone,
05ff5137 1441 struct scan_control *sc)
1da177e4 1442{
b69408e8 1443 unsigned long nr[NR_LRU_LISTS];
8695949a 1444 unsigned long nr_to_scan;
4f98a2fe 1445 unsigned long percent[2]; /* anon @ 0; file @ 1 */
b69408e8 1446 enum lru_list l;
01dbe5c9
KM
1447 unsigned long nr_reclaimed = sc->nr_reclaimed;
1448 unsigned long swap_cluster_max = sc->swap_cluster_max;
1da177e4 1449
4f98a2fe
RR
1450 get_scan_ratio(zone, sc, percent);
1451
894bc310 1452 for_each_evictable_lru(l) {
4f98a2fe
RR
1453 if (scan_global_lru(sc)) {
1454 int file = is_file_lru(l);
1455 int scan;
e0f79b8f 1456
4f98a2fe
RR
1457 scan = zone_page_state(zone, NR_LRU_BASE + l);
1458 if (priority) {
1459 scan >>= priority;
1460 scan = (scan * percent[file]) / 100;
1461 }
e0f79b8f 1462 zone->lru[l].nr_scan += scan;
b69408e8 1463 nr[l] = zone->lru[l].nr_scan;
01dbe5c9 1464 if (nr[l] >= swap_cluster_max)
b69408e8
CL
1465 zone->lru[l].nr_scan = 0;
1466 else
1467 nr[l] = 0;
4f98a2fe
RR
1468 } else {
1469 /*
1470 * This reclaim occurs not because zone memory shortage
1471 * but because memory controller hits its limit.
1472 * Don't modify zone reclaim related data.
1473 */
1474 nr[l] = mem_cgroup_calc_reclaim(sc->mem_cgroup, zone,
1475 priority, l);
b69408e8 1476 }
1cfb419b 1477 }
1da177e4 1478
556adecb
RR
1479 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
1480 nr[LRU_INACTIVE_FILE]) {
894bc310 1481 for_each_evictable_lru(l) {
b69408e8 1482 if (nr[l]) {
01dbe5c9 1483 nr_to_scan = min(nr[l], swap_cluster_max);
b69408e8 1484 nr[l] -= nr_to_scan;
1da177e4 1485
01dbe5c9
KM
1486 nr_reclaimed += shrink_list(l, nr_to_scan,
1487 zone, sc, priority);
b69408e8 1488 }
1da177e4 1489 }
a79311c1
RR
1490 /*
1491 * On large memory systems, scan >> priority can become
1492 * really large. This is fine for the starting priority;
1493 * we want to put equal scanning pressure on each zone.
1494 * However, if the VM has a harder time of freeing pages,
1495 * with multiple processes reclaiming pages, the total
1496 * freeing target can get unreasonably large.
1497 */
01dbe5c9 1498 if (nr_reclaimed > swap_cluster_max &&
a79311c1
RR
1499 priority < DEF_PRIORITY && !current_is_kswapd())
1500 break;
1da177e4
LT
1501 }
1502
01dbe5c9
KM
1503 sc->nr_reclaimed = nr_reclaimed;
1504
556adecb
RR
1505 /*
1506 * Even if we did not try to evict anon pages at all, we want to
1507 * rebalance the anon lru active/inactive ratio.
1508 */
1509 if (!scan_global_lru(sc) || inactive_anon_is_low(zone))
1510 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1511 else if (!scan_global_lru(sc))
1512 shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
1513
232ea4d6 1514 throttle_vm_writeout(sc->gfp_mask);
1da177e4
LT
1515}
1516
1517/*
1518 * This is the direct reclaim path, for page-allocating processes. We only
1519 * try to reclaim pages from zones which will satisfy the caller's allocation
1520 * request.
1521 *
1522 * We reclaim from a zone even if that zone is over pages_high. Because:
1523 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1524 * allocation or
1525 * b) The zones may be over pages_high but they must go *over* pages_high to
1526 * satisfy the `incremental min' zone defense algorithm.
1527 *
1da177e4
LT
1528 * If a zone is deemed to be full of pinned pages then just give it a light
1529 * scan then give up on it.
1530 */
a79311c1 1531static void shrink_zones(int priority, struct zonelist *zonelist,
05ff5137 1532 struct scan_control *sc)
1da177e4 1533{
54a6eb5c 1534 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
dd1a239f 1535 struct zoneref *z;
54a6eb5c 1536 struct zone *zone;
1cfb419b 1537
408d8544 1538 sc->all_unreclaimable = 1;
54a6eb5c 1539 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
f3fe6512 1540 if (!populated_zone(zone))
1da177e4 1541 continue;
1cfb419b
KH
1542 /*
1543 * Take care memory controller reclaiming has small influence
1544 * to global LRU.
1545 */
1546 if (scan_global_lru(sc)) {
1547 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1548 continue;
1549 note_zone_scanning_priority(zone, priority);
1da177e4 1550
1cfb419b
KH
1551 if (zone_is_all_unreclaimable(zone) &&
1552 priority != DEF_PRIORITY)
1553 continue; /* Let kswapd poll it */
1554 sc->all_unreclaimable = 0;
1555 } else {
1556 /*
1557 * Ignore cpuset limitation here. We just want to reduce
1558 * # of used pages by us regardless of memory shortage.
1559 */
1560 sc->all_unreclaimable = 0;
1561 mem_cgroup_note_reclaim_priority(sc->mem_cgroup,
1562 priority);
1563 }
408d8544 1564
a79311c1 1565 shrink_zone(priority, zone, sc);
1da177e4
LT
1566 }
1567}
4f98a2fe 1568
1da177e4
LT
1569/*
1570 * This is the main entry point to direct page reclaim.
1571 *
1572 * If a full scan of the inactive list fails to free enough memory then we
1573 * are "out of memory" and something needs to be killed.
1574 *
1575 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1576 * high - the zone may be full of dirty or under-writeback pages, which this
1577 * caller can't do much about. We kick pdflush and take explicit naps in the
1578 * hope that some of these pages can be written. But if the allocating task
1579 * holds filesystem locks which prevent writeout this might not work, and the
1580 * allocation attempt will fail.
a41f24ea
NA
1581 *
1582 * returns: 0, if no pages reclaimed
1583 * else, the number of pages reclaimed
1da177e4 1584 */
dac1d27b 1585static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
dd1a239f 1586 struct scan_control *sc)
1da177e4
LT
1587{
1588 int priority;
c700be3d 1589 unsigned long ret = 0;
69e05944 1590 unsigned long total_scanned = 0;
1da177e4 1591 struct reclaim_state *reclaim_state = current->reclaim_state;
1da177e4 1592 unsigned long lru_pages = 0;
dd1a239f 1593 struct zoneref *z;
54a6eb5c 1594 struct zone *zone;
dd1a239f 1595 enum zone_type high_zoneidx = gfp_zone(sc->gfp_mask);
1da177e4 1596
873b4771
KK
1597 delayacct_freepages_start();
1598
1cfb419b
KH
1599 if (scan_global_lru(sc))
1600 count_vm_event(ALLOCSTALL);
1601 /*
1602 * mem_cgroup will not do shrink_slab.
1603 */
1604 if (scan_global_lru(sc)) {
54a6eb5c 1605 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1da177e4 1606
1cfb419b
KH
1607 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1608 continue;
1da177e4 1609
4f98a2fe 1610 lru_pages += zone_lru_pages(zone);
1cfb419b 1611 }
1da177e4
LT
1612 }
1613
1614 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
66e1707b 1615 sc->nr_scanned = 0;
f7b7fd8f
RR
1616 if (!priority)
1617 disable_swap_token();
a79311c1 1618 shrink_zones(priority, zonelist, sc);
66e1707b
BS
1619 /*
1620 * Don't shrink slabs when reclaiming memory from
1621 * over limit cgroups
1622 */
91a45470 1623 if (scan_global_lru(sc)) {
dd1a239f 1624 shrink_slab(sc->nr_scanned, sc->gfp_mask, lru_pages);
91a45470 1625 if (reclaim_state) {
a79311c1 1626 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
91a45470
KH
1627 reclaim_state->reclaimed_slab = 0;
1628 }
1da177e4 1629 }
66e1707b 1630 total_scanned += sc->nr_scanned;
a79311c1
RR
1631 if (sc->nr_reclaimed >= sc->swap_cluster_max) {
1632 ret = sc->nr_reclaimed;
1da177e4
LT
1633 goto out;
1634 }
1635
1636 /*
1637 * Try to write back as many pages as we just scanned. This
1638 * tends to cause slow streaming writers to write data to the
1639 * disk smoothly, at the dirtying rate, which is nice. But
1640 * that's undesirable in laptop mode, where we *want* lumpy
1641 * writeout. So in laptop mode, write out the whole world.
1642 */
66e1707b
BS
1643 if (total_scanned > sc->swap_cluster_max +
1644 sc->swap_cluster_max / 2) {
687a21ce 1645 wakeup_pdflush(laptop_mode ? 0 : total_scanned);
66e1707b 1646 sc->may_writepage = 1;
1da177e4
LT
1647 }
1648
1649 /* Take a nap, wait for some writeback to complete */
4dd4b920 1650 if (sc->nr_scanned && priority < DEF_PRIORITY - 2)
3fcfab16 1651 congestion_wait(WRITE, HZ/10);
1da177e4 1652 }
87547ee9 1653 /* top priority shrink_zones still had more to do? don't OOM, then */
91a45470 1654 if (!sc->all_unreclaimable && scan_global_lru(sc))
a79311c1 1655 ret = sc->nr_reclaimed;
1da177e4 1656out:
3bb1a852
MB
1657 /*
1658 * Now that we've scanned all the zones at this priority level, note
1659 * that level within the zone so that the next thread which performs
1660 * scanning of this zone will immediately start out at this priority
1661 * level. This affects only the decision whether or not to bring
1662 * mapped pages onto the inactive list.
1663 */
1664 if (priority < 0)
1665 priority = 0;
1da177e4 1666
1cfb419b 1667 if (scan_global_lru(sc)) {
54a6eb5c 1668 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1cfb419b
KH
1669
1670 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1671 continue;
1672
1673 zone->prev_priority = priority;
1674 }
1675 } else
1676 mem_cgroup_record_reclaim_priority(sc->mem_cgroup, priority);
1da177e4 1677
873b4771
KK
1678 delayacct_freepages_end();
1679
1da177e4
LT
1680 return ret;
1681}
1682
dac1d27b
MG
1683unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
1684 gfp_t gfp_mask)
66e1707b
BS
1685{
1686 struct scan_control sc = {
1687 .gfp_mask = gfp_mask,
1688 .may_writepage = !laptop_mode,
1689 .swap_cluster_max = SWAP_CLUSTER_MAX,
1690 .may_swap = 1,
1691 .swappiness = vm_swappiness,
1692 .order = order,
1693 .mem_cgroup = NULL,
1694 .isolate_pages = isolate_pages_global,
1695 };
1696
dd1a239f 1697 return do_try_to_free_pages(zonelist, &sc);
66e1707b
BS
1698}
1699
00f0b825 1700#ifdef CONFIG_CGROUP_MEM_RES_CTLR
66e1707b 1701
e1a1cd59 1702unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont,
8c7c6e34
KH
1703 gfp_t gfp_mask,
1704 bool noswap)
66e1707b
BS
1705{
1706 struct scan_control sc = {
66e1707b
BS
1707 .may_writepage = !laptop_mode,
1708 .may_swap = 1,
1709 .swap_cluster_max = SWAP_CLUSTER_MAX,
1710 .swappiness = vm_swappiness,
1711 .order = 0,
1712 .mem_cgroup = mem_cont,
1713 .isolate_pages = mem_cgroup_isolate_pages,
1714 };
dac1d27b 1715 struct zonelist *zonelist;
66e1707b 1716
8c7c6e34
KH
1717 if (noswap)
1718 sc.may_swap = 0;
1719
dd1a239f
MG
1720 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
1721 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
1722 zonelist = NODE_DATA(numa_node_id())->node_zonelists;
1723 return do_try_to_free_pages(zonelist, &sc);
66e1707b
BS
1724}
1725#endif
1726
1da177e4
LT
1727/*
1728 * For kswapd, balance_pgdat() will work across all this node's zones until
1729 * they are all at pages_high.
1730 *
1da177e4
LT
1731 * Returns the number of pages which were actually freed.
1732 *
1733 * There is special handling here for zones which are full of pinned pages.
1734 * This can happen if the pages are all mlocked, or if they are all used by
1735 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1736 * What we do is to detect the case where all pages in the zone have been
1737 * scanned twice and there has been zero successful reclaim. Mark the zone as
1738 * dead and from now on, only perform a short scan. Basically we're polling
1739 * the zone for when the problem goes away.
1740 *
1741 * kswapd scans the zones in the highmem->normal->dma direction. It skips
1742 * zones which have free_pages > pages_high, but once a zone is found to have
1743 * free_pages <= pages_high, we scan that zone and the lower zones regardless
1744 * of the number of free pages in the lower zones. This interoperates with
1745 * the page allocator fallback scheme to ensure that aging of pages is balanced
1746 * across the zones.
1747 */
d6277db4 1748static unsigned long balance_pgdat(pg_data_t *pgdat, int order)
1da177e4 1749{
1da177e4
LT
1750 int all_zones_ok;
1751 int priority;
1752 int i;
69e05944 1753 unsigned long total_scanned;
1da177e4 1754 struct reclaim_state *reclaim_state = current->reclaim_state;
179e9639
AM
1755 struct scan_control sc = {
1756 .gfp_mask = GFP_KERNEL,
1757 .may_swap = 1,
d6277db4
RW
1758 .swap_cluster_max = SWAP_CLUSTER_MAX,
1759 .swappiness = vm_swappiness,
5ad333eb 1760 .order = order,
66e1707b
BS
1761 .mem_cgroup = NULL,
1762 .isolate_pages = isolate_pages_global,
179e9639 1763 };
3bb1a852
MB
1764 /*
1765 * temp_priority is used to remember the scanning priority at which
1766 * this zone was successfully refilled to free_pages == pages_high.
1767 */
1768 int temp_priority[MAX_NR_ZONES];
1da177e4
LT
1769
1770loop_again:
1771 total_scanned = 0;
a79311c1 1772 sc.nr_reclaimed = 0;
c0bbbc73 1773 sc.may_writepage = !laptop_mode;
f8891e5e 1774 count_vm_event(PAGEOUTRUN);
1da177e4 1775
3bb1a852
MB
1776 for (i = 0; i < pgdat->nr_zones; i++)
1777 temp_priority[i] = DEF_PRIORITY;
1da177e4
LT
1778
1779 for (priority = DEF_PRIORITY; priority >= 0; priority--) {
1780 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
1781 unsigned long lru_pages = 0;
1782
f7b7fd8f
RR
1783 /* The swap token gets in the way of swapout... */
1784 if (!priority)
1785 disable_swap_token();
1786
1da177e4
LT
1787 all_zones_ok = 1;
1788
d6277db4
RW
1789 /*
1790 * Scan in the highmem->dma direction for the highest
1791 * zone which needs scanning
1792 */
1793 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
1794 struct zone *zone = pgdat->node_zones + i;
1da177e4 1795
d6277db4
RW
1796 if (!populated_zone(zone))
1797 continue;
1da177e4 1798
e815af95
DR
1799 if (zone_is_all_unreclaimable(zone) &&
1800 priority != DEF_PRIORITY)
d6277db4 1801 continue;
1da177e4 1802
556adecb
RR
1803 /*
1804 * Do some background aging of the anon list, to give
1805 * pages a chance to be referenced before reclaiming.
1806 */
1807 if (inactive_anon_is_low(zone))
1808 shrink_active_list(SWAP_CLUSTER_MAX, zone,
1809 &sc, priority, 0);
1810
d6277db4
RW
1811 if (!zone_watermark_ok(zone, order, zone->pages_high,
1812 0, 0)) {
1813 end_zone = i;
e1dbeda6 1814 break;
1da177e4 1815 }
1da177e4 1816 }
e1dbeda6
AM
1817 if (i < 0)
1818 goto out;
1819
1da177e4
LT
1820 for (i = 0; i <= end_zone; i++) {
1821 struct zone *zone = pgdat->node_zones + i;
1822
4f98a2fe 1823 lru_pages += zone_lru_pages(zone);
1da177e4
LT
1824 }
1825
1826 /*
1827 * Now scan the zone in the dma->highmem direction, stopping
1828 * at the last zone which needs scanning.
1829 *
1830 * We do this because the page allocator works in the opposite
1831 * direction. This prevents the page allocator from allocating
1832 * pages behind kswapd's direction of progress, which would
1833 * cause too much scanning of the lower zones.
1834 */
1835 for (i = 0; i <= end_zone; i++) {
1836 struct zone *zone = pgdat->node_zones + i;
b15e0905 1837 int nr_slab;
1da177e4 1838
f3fe6512 1839 if (!populated_zone(zone))
1da177e4
LT
1840 continue;
1841
e815af95
DR
1842 if (zone_is_all_unreclaimable(zone) &&
1843 priority != DEF_PRIORITY)
1da177e4
LT
1844 continue;
1845
d6277db4
RW
1846 if (!zone_watermark_ok(zone, order, zone->pages_high,
1847 end_zone, 0))
1848 all_zones_ok = 0;
3bb1a852 1849 temp_priority[i] = priority;
1da177e4 1850 sc.nr_scanned = 0;
3bb1a852 1851 note_zone_scanning_priority(zone, priority);
32a4330d
RR
1852 /*
1853 * We put equal pressure on every zone, unless one
1854 * zone has way too many pages free already.
1855 */
1856 if (!zone_watermark_ok(zone, order, 8*zone->pages_high,
1857 end_zone, 0))
a79311c1 1858 shrink_zone(priority, zone, &sc);
1da177e4 1859 reclaim_state->reclaimed_slab = 0;
b15e0905 1860 nr_slab = shrink_slab(sc.nr_scanned, GFP_KERNEL,
1861 lru_pages);
a79311c1 1862 sc.nr_reclaimed += reclaim_state->reclaimed_slab;
1da177e4 1863 total_scanned += sc.nr_scanned;
e815af95 1864 if (zone_is_all_unreclaimable(zone))
1da177e4 1865 continue;
b15e0905 1866 if (nr_slab == 0 && zone->pages_scanned >=
4f98a2fe 1867 (zone_lru_pages(zone) * 6))
e815af95
DR
1868 zone_set_flag(zone,
1869 ZONE_ALL_UNRECLAIMABLE);
1da177e4
LT
1870 /*
1871 * If we've done a decent amount of scanning and
1872 * the reclaim ratio is low, start doing writepage
1873 * even in laptop mode
1874 */
1875 if (total_scanned > SWAP_CLUSTER_MAX * 2 &&
a79311c1 1876 total_scanned > sc.nr_reclaimed + sc.nr_reclaimed / 2)
1da177e4
LT
1877 sc.may_writepage = 1;
1878 }
1da177e4
LT
1879 if (all_zones_ok)
1880 break; /* kswapd: all done */
1881 /*
1882 * OK, kswapd is getting into trouble. Take a nap, then take
1883 * another pass across the zones.
1884 */
4dd4b920 1885 if (total_scanned && priority < DEF_PRIORITY - 2)
3fcfab16 1886 congestion_wait(WRITE, HZ/10);
1da177e4
LT
1887
1888 /*
1889 * We do this so kswapd doesn't build up large priorities for
1890 * example when it is freeing in parallel with allocators. It
1891 * matches the direct reclaim path behaviour in terms of impact
1892 * on zone->*_priority.
1893 */
a79311c1 1894 if (sc.nr_reclaimed >= SWAP_CLUSTER_MAX)
1da177e4
LT
1895 break;
1896 }
1897out:
3bb1a852
MB
1898 /*
1899 * Note within each zone the priority level at which this zone was
1900 * brought into a happy state. So that the next thread which scans this
1901 * zone will start out at that priority level.
1902 */
1da177e4
LT
1903 for (i = 0; i < pgdat->nr_zones; i++) {
1904 struct zone *zone = pgdat->node_zones + i;
1905
3bb1a852 1906 zone->prev_priority = temp_priority[i];
1da177e4
LT
1907 }
1908 if (!all_zones_ok) {
1909 cond_resched();
8357376d
RW
1910
1911 try_to_freeze();
1912
73ce02e9
KM
1913 /*
1914 * Fragmentation may mean that the system cannot be
1915 * rebalanced for high-order allocations in all zones.
1916 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
1917 * it means the zones have been fully scanned and are still
1918 * not balanced. For high-order allocations, there is
1919 * little point trying all over again as kswapd may
1920 * infinite loop.
1921 *
1922 * Instead, recheck all watermarks at order-0 as they
1923 * are the most important. If watermarks are ok, kswapd will go
1924 * back to sleep. High-order users can still perform direct
1925 * reclaim if they wish.
1926 */
1927 if (sc.nr_reclaimed < SWAP_CLUSTER_MAX)
1928 order = sc.order = 0;
1929
1da177e4
LT
1930 goto loop_again;
1931 }
1932
a79311c1 1933 return sc.nr_reclaimed;
1da177e4
LT
1934}
1935
1936/*
1937 * The background pageout daemon, started as a kernel thread
4f98a2fe 1938 * from the init process.
1da177e4
LT
1939 *
1940 * This basically trickles out pages so that we have _some_
1941 * free memory available even if there is no other activity
1942 * that frees anything up. This is needed for things like routing
1943 * etc, where we otherwise might have all activity going on in
1944 * asynchronous contexts that cannot page things out.
1945 *
1946 * If there are applications that are active memory-allocators
1947 * (most normal use), this basically shouldn't matter.
1948 */
1949static int kswapd(void *p)
1950{
1951 unsigned long order;
1952 pg_data_t *pgdat = (pg_data_t*)p;
1953 struct task_struct *tsk = current;
1954 DEFINE_WAIT(wait);
1955 struct reclaim_state reclaim_state = {
1956 .reclaimed_slab = 0,
1957 };
c5f59f08 1958 node_to_cpumask_ptr(cpumask, pgdat->node_id);
1da177e4 1959
174596a0 1960 if (!cpumask_empty(cpumask))
c5f59f08 1961 set_cpus_allowed_ptr(tsk, cpumask);
1da177e4
LT
1962 current->reclaim_state = &reclaim_state;
1963
1964 /*
1965 * Tell the memory management that we're a "memory allocator",
1966 * and that if we need more memory we should get access to it
1967 * regardless (see "__alloc_pages()"). "kswapd" should
1968 * never get caught in the normal page freeing logic.
1969 *
1970 * (Kswapd normally doesn't need memory anyway, but sometimes
1971 * you need a small amount of memory in order to be able to
1972 * page out something else, and this flag essentially protects
1973 * us from recursively trying to free more memory as we're
1974 * trying to free the first piece of memory in the first place).
1975 */
930d9152 1976 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
83144186 1977 set_freezable();
1da177e4
LT
1978
1979 order = 0;
1980 for ( ; ; ) {
1981 unsigned long new_order;
3e1d1d28 1982
1da177e4
LT
1983 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
1984 new_order = pgdat->kswapd_max_order;
1985 pgdat->kswapd_max_order = 0;
1986 if (order < new_order) {
1987 /*
1988 * Don't sleep if someone wants a larger 'order'
1989 * allocation
1990 */
1991 order = new_order;
1992 } else {
b1296cc4
RW
1993 if (!freezing(current))
1994 schedule();
1995
1da177e4
LT
1996 order = pgdat->kswapd_max_order;
1997 }
1998 finish_wait(&pgdat->kswapd_wait, &wait);
1999
b1296cc4
RW
2000 if (!try_to_freeze()) {
2001 /* We can speed up thawing tasks if we don't call
2002 * balance_pgdat after returning from the refrigerator
2003 */
2004 balance_pgdat(pgdat, order);
2005 }
1da177e4
LT
2006 }
2007 return 0;
2008}
2009
2010/*
2011 * A zone is low on free memory, so wake its kswapd task to service it.
2012 */
2013void wakeup_kswapd(struct zone *zone, int order)
2014{
2015 pg_data_t *pgdat;
2016
f3fe6512 2017 if (!populated_zone(zone))
1da177e4
LT
2018 return;
2019
2020 pgdat = zone->zone_pgdat;
7fb1d9fc 2021 if (zone_watermark_ok(zone, order, zone->pages_low, 0, 0))
1da177e4
LT
2022 return;
2023 if (pgdat->kswapd_max_order < order)
2024 pgdat->kswapd_max_order = order;
02a0e53d 2025 if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL))
1da177e4 2026 return;
8d0986e2 2027 if (!waitqueue_active(&pgdat->kswapd_wait))
1da177e4 2028 return;
8d0986e2 2029 wake_up_interruptible(&pgdat->kswapd_wait);
1da177e4
LT
2030}
2031
4f98a2fe
RR
2032unsigned long global_lru_pages(void)
2033{
2034 return global_page_state(NR_ACTIVE_ANON)
2035 + global_page_state(NR_ACTIVE_FILE)
2036 + global_page_state(NR_INACTIVE_ANON)
2037 + global_page_state(NR_INACTIVE_FILE);
2038}
2039
1da177e4
LT
2040#ifdef CONFIG_PM
2041/*
d6277db4
RW
2042 * Helper function for shrink_all_memory(). Tries to reclaim 'nr_pages' pages
2043 * from LRU lists system-wide, for given pass and priority, and returns the
2044 * number of reclaimed pages
2045 *
2046 * For pass > 3 we also try to shrink the LRU lists that contain a few pages
2047 */
e07aa05b
NC
2048static unsigned long shrink_all_zones(unsigned long nr_pages, int prio,
2049 int pass, struct scan_control *sc)
d6277db4
RW
2050{
2051 struct zone *zone;
2052 unsigned long nr_to_scan, ret = 0;
b69408e8 2053 enum lru_list l;
d6277db4
RW
2054
2055 for_each_zone(zone) {
2056
2057 if (!populated_zone(zone))
2058 continue;
2059
e815af95 2060 if (zone_is_all_unreclaimable(zone) && prio != DEF_PRIORITY)
d6277db4
RW
2061 continue;
2062
894bc310
LS
2063 for_each_evictable_lru(l) {
2064 /* For pass = 0, we don't shrink the active list */
4f98a2fe
RR
2065 if (pass == 0 &&
2066 (l == LRU_ACTIVE || l == LRU_ACTIVE_FILE))
b69408e8
CL
2067 continue;
2068
2069 zone->lru[l].nr_scan +=
2070 (zone_page_state(zone, NR_LRU_BASE + l)
2071 >> prio) + 1;
2072 if (zone->lru[l].nr_scan >= nr_pages || pass > 3) {
2073 zone->lru[l].nr_scan = 0;
c8785385 2074 nr_to_scan = min(nr_pages,
b69408e8
CL
2075 zone_page_state(zone,
2076 NR_LRU_BASE + l));
2077 ret += shrink_list(l, nr_to_scan, zone,
2078 sc, prio);
2079 if (ret >= nr_pages)
2080 return ret;
d6277db4
RW
2081 }
2082 }
d6277db4
RW
2083 }
2084
2085 return ret;
2086}
2087
2088/*
2089 * Try to free `nr_pages' of memory, system-wide, and return the number of
2090 * freed pages.
2091 *
2092 * Rather than trying to age LRUs the aim is to preserve the overall
2093 * LRU order by reclaiming preferentially
2094 * inactive > active > active referenced > active mapped
1da177e4 2095 */
69e05944 2096unsigned long shrink_all_memory(unsigned long nr_pages)
1da177e4 2097{
d6277db4 2098 unsigned long lru_pages, nr_slab;
69e05944 2099 unsigned long ret = 0;
d6277db4
RW
2100 int pass;
2101 struct reclaim_state reclaim_state;
d6277db4
RW
2102 struct scan_control sc = {
2103 .gfp_mask = GFP_KERNEL,
2104 .may_swap = 0,
2105 .swap_cluster_max = nr_pages,
2106 .may_writepage = 1,
2107 .swappiness = vm_swappiness,
66e1707b 2108 .isolate_pages = isolate_pages_global,
1da177e4
LT
2109 };
2110
2111 current->reclaim_state = &reclaim_state;
69e05944 2112
4f98a2fe 2113 lru_pages = global_lru_pages();
972d1a7b 2114 nr_slab = global_page_state(NR_SLAB_RECLAIMABLE);
d6277db4
RW
2115 /* If slab caches are huge, it's better to hit them first */
2116 while (nr_slab >= lru_pages) {
2117 reclaim_state.reclaimed_slab = 0;
2118 shrink_slab(nr_pages, sc.gfp_mask, lru_pages);
2119 if (!reclaim_state.reclaimed_slab)
1da177e4 2120 break;
d6277db4
RW
2121
2122 ret += reclaim_state.reclaimed_slab;
2123 if (ret >= nr_pages)
2124 goto out;
2125
2126 nr_slab -= reclaim_state.reclaimed_slab;
1da177e4 2127 }
d6277db4
RW
2128
2129 /*
2130 * We try to shrink LRUs in 5 passes:
2131 * 0 = Reclaim from inactive_list only
2132 * 1 = Reclaim from active list but don't reclaim mapped
2133 * 2 = 2nd pass of type 1
2134 * 3 = Reclaim mapped (normal reclaim)
2135 * 4 = 2nd pass of type 3
2136 */
2137 for (pass = 0; pass < 5; pass++) {
2138 int prio;
2139
d6277db4
RW
2140 /* Force reclaiming mapped pages in the passes #3 and #4 */
2141 if (pass > 2) {
2142 sc.may_swap = 1;
2143 sc.swappiness = 100;
2144 }
2145
2146 for (prio = DEF_PRIORITY; prio >= 0; prio--) {
2147 unsigned long nr_to_scan = nr_pages - ret;
2148
d6277db4 2149 sc.nr_scanned = 0;
d6277db4
RW
2150 ret += shrink_all_zones(nr_to_scan, prio, pass, &sc);
2151 if (ret >= nr_pages)
2152 goto out;
2153
2154 reclaim_state.reclaimed_slab = 0;
76395d37 2155 shrink_slab(sc.nr_scanned, sc.gfp_mask,
4f98a2fe 2156 global_lru_pages());
d6277db4
RW
2157 ret += reclaim_state.reclaimed_slab;
2158 if (ret >= nr_pages)
2159 goto out;
2160
2161 if (sc.nr_scanned && prio < DEF_PRIORITY - 2)
3fcfab16 2162 congestion_wait(WRITE, HZ / 10);
d6277db4 2163 }
248a0301 2164 }
d6277db4
RW
2165
2166 /*
2167 * If ret = 0, we could not shrink LRUs, but there may be something
2168 * in slab caches
2169 */
76395d37 2170 if (!ret) {
d6277db4
RW
2171 do {
2172 reclaim_state.reclaimed_slab = 0;
4f98a2fe 2173 shrink_slab(nr_pages, sc.gfp_mask, global_lru_pages());
d6277db4
RW
2174 ret += reclaim_state.reclaimed_slab;
2175 } while (ret < nr_pages && reclaim_state.reclaimed_slab > 0);
76395d37 2176 }
d6277db4
RW
2177
2178out:
1da177e4 2179 current->reclaim_state = NULL;
d6277db4 2180
1da177e4
LT
2181 return ret;
2182}
2183#endif
2184
1da177e4
LT
2185/* It's optimal to keep kswapds on the same CPUs as their memory, but
2186 not required for correctness. So if the last cpu in a node goes
2187 away, we get changed to run anywhere: as the first one comes back,
2188 restore their cpu bindings. */
9c7b216d 2189static int __devinit cpu_callback(struct notifier_block *nfb,
69e05944 2190 unsigned long action, void *hcpu)
1da177e4 2191{
58c0a4a7 2192 int nid;
1da177e4 2193
8bb78442 2194 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
58c0a4a7 2195 for_each_node_state(nid, N_HIGH_MEMORY) {
c5f59f08
MT
2196 pg_data_t *pgdat = NODE_DATA(nid);
2197 node_to_cpumask_ptr(mask, pgdat->node_id);
2198
3e597945 2199 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
1da177e4 2200 /* One of our CPUs online: restore mask */
c5f59f08 2201 set_cpus_allowed_ptr(pgdat->kswapd, mask);
1da177e4
LT
2202 }
2203 }
2204 return NOTIFY_OK;
2205}
1da177e4 2206
3218ae14
YG
2207/*
2208 * This kswapd start function will be called by init and node-hot-add.
2209 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2210 */
2211int kswapd_run(int nid)
2212{
2213 pg_data_t *pgdat = NODE_DATA(nid);
2214 int ret = 0;
2215
2216 if (pgdat->kswapd)
2217 return 0;
2218
2219 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
2220 if (IS_ERR(pgdat->kswapd)) {
2221 /* failure at boot is fatal */
2222 BUG_ON(system_state == SYSTEM_BOOTING);
2223 printk("Failed to start kswapd on node %d\n",nid);
2224 ret = -1;
2225 }
2226 return ret;
2227}
2228
1da177e4
LT
2229static int __init kswapd_init(void)
2230{
3218ae14 2231 int nid;
69e05944 2232
1da177e4 2233 swap_setup();
9422ffba 2234 for_each_node_state(nid, N_HIGH_MEMORY)
3218ae14 2235 kswapd_run(nid);
1da177e4
LT
2236 hotcpu_notifier(cpu_callback, 0);
2237 return 0;
2238}
2239
2240module_init(kswapd_init)
9eeff239
CL
2241
2242#ifdef CONFIG_NUMA
2243/*
2244 * Zone reclaim mode
2245 *
2246 * If non-zero call zone_reclaim when the number of free pages falls below
2247 * the watermarks.
9eeff239
CL
2248 */
2249int zone_reclaim_mode __read_mostly;
2250
1b2ffb78 2251#define RECLAIM_OFF 0
7d03431c 2252#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
1b2ffb78
CL
2253#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2254#define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2255
a92f7126
CL
2256/*
2257 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2258 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2259 * a zone.
2260 */
2261#define ZONE_RECLAIM_PRIORITY 4
2262
9614634f
CL
2263/*
2264 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2265 * occur.
2266 */
2267int sysctl_min_unmapped_ratio = 1;
2268
0ff38490
CL
2269/*
2270 * If the number of slab pages in a zone grows beyond this percentage then
2271 * slab reclaim needs to occur.
2272 */
2273int sysctl_min_slab_ratio = 5;
2274
9eeff239
CL
2275/*
2276 * Try to free up some pages from this zone through reclaim.
2277 */
179e9639 2278static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
9eeff239 2279{
7fb2d46d 2280 /* Minimum pages needed in order to stay on node */
69e05944 2281 const unsigned long nr_pages = 1 << order;
9eeff239
CL
2282 struct task_struct *p = current;
2283 struct reclaim_state reclaim_state;
8695949a 2284 int priority;
179e9639
AM
2285 struct scan_control sc = {
2286 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
2287 .may_swap = !!(zone_reclaim_mode & RECLAIM_SWAP),
69e05944
AM
2288 .swap_cluster_max = max_t(unsigned long, nr_pages,
2289 SWAP_CLUSTER_MAX),
179e9639 2290 .gfp_mask = gfp_mask,
d6277db4 2291 .swappiness = vm_swappiness,
66e1707b 2292 .isolate_pages = isolate_pages_global,
179e9639 2293 };
83e33a47 2294 unsigned long slab_reclaimable;
9eeff239
CL
2295
2296 disable_swap_token();
9eeff239 2297 cond_resched();
d4f7796e
CL
2298 /*
2299 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2300 * and we also need to be able to write out pages for RECLAIM_WRITE
2301 * and RECLAIM_SWAP.
2302 */
2303 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
9eeff239
CL
2304 reclaim_state.reclaimed_slab = 0;
2305 p->reclaim_state = &reclaim_state;
c84db23c 2306
0ff38490
CL
2307 if (zone_page_state(zone, NR_FILE_PAGES) -
2308 zone_page_state(zone, NR_FILE_MAPPED) >
2309 zone->min_unmapped_pages) {
2310 /*
2311 * Free memory by calling shrink zone with increasing
2312 * priorities until we have enough memory freed.
2313 */
2314 priority = ZONE_RECLAIM_PRIORITY;
2315 do {
3bb1a852 2316 note_zone_scanning_priority(zone, priority);
a79311c1 2317 shrink_zone(priority, zone, &sc);
0ff38490 2318 priority--;
a79311c1 2319 } while (priority >= 0 && sc.nr_reclaimed < nr_pages);
0ff38490 2320 }
c84db23c 2321
83e33a47
CL
2322 slab_reclaimable = zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2323 if (slab_reclaimable > zone->min_slab_pages) {
2a16e3f4 2324 /*
7fb2d46d 2325 * shrink_slab() does not currently allow us to determine how
0ff38490
CL
2326 * many pages were freed in this zone. So we take the current
2327 * number of slab pages and shake the slab until it is reduced
2328 * by the same nr_pages that we used for reclaiming unmapped
2329 * pages.
2a16e3f4 2330 *
0ff38490
CL
2331 * Note that shrink_slab will free memory on all zones and may
2332 * take a long time.
2a16e3f4 2333 */
0ff38490 2334 while (shrink_slab(sc.nr_scanned, gfp_mask, order) &&
83e33a47
CL
2335 zone_page_state(zone, NR_SLAB_RECLAIMABLE) >
2336 slab_reclaimable - nr_pages)
0ff38490 2337 ;
83e33a47
CL
2338
2339 /*
2340 * Update nr_reclaimed by the number of slab pages we
2341 * reclaimed from this zone.
2342 */
a79311c1 2343 sc.nr_reclaimed += slab_reclaimable -
83e33a47 2344 zone_page_state(zone, NR_SLAB_RECLAIMABLE);
2a16e3f4
CL
2345 }
2346
9eeff239 2347 p->reclaim_state = NULL;
d4f7796e 2348 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
a79311c1 2349 return sc.nr_reclaimed >= nr_pages;
9eeff239 2350}
179e9639
AM
2351
2352int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
2353{
179e9639 2354 int node_id;
d773ed6b 2355 int ret;
179e9639
AM
2356
2357 /*
0ff38490
CL
2358 * Zone reclaim reclaims unmapped file backed pages and
2359 * slab pages if we are over the defined limits.
34aa1330 2360 *
9614634f
CL
2361 * A small portion of unmapped file backed pages is needed for
2362 * file I/O otherwise pages read by file I/O will be immediately
2363 * thrown out if the zone is overallocated. So we do not reclaim
2364 * if less than a specified percentage of the zone is used by
2365 * unmapped file backed pages.
179e9639 2366 */
34aa1330 2367 if (zone_page_state(zone, NR_FILE_PAGES) -
0ff38490
CL
2368 zone_page_state(zone, NR_FILE_MAPPED) <= zone->min_unmapped_pages
2369 && zone_page_state(zone, NR_SLAB_RECLAIMABLE)
2370 <= zone->min_slab_pages)
9614634f 2371 return 0;
179e9639 2372
d773ed6b
DR
2373 if (zone_is_all_unreclaimable(zone))
2374 return 0;
2375
179e9639 2376 /*
d773ed6b 2377 * Do not scan if the allocation should not be delayed.
179e9639 2378 */
d773ed6b 2379 if (!(gfp_mask & __GFP_WAIT) || (current->flags & PF_MEMALLOC))
179e9639
AM
2380 return 0;
2381
2382 /*
2383 * Only run zone reclaim on the local zone or on zones that do not
2384 * have associated processors. This will favor the local processor
2385 * over remote processors and spread off node memory allocations
2386 * as wide as possible.
2387 */
89fa3024 2388 node_id = zone_to_nid(zone);
37c0708d 2389 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
179e9639 2390 return 0;
d773ed6b
DR
2391
2392 if (zone_test_and_set_flag(zone, ZONE_RECLAIM_LOCKED))
2393 return 0;
2394 ret = __zone_reclaim(zone, gfp_mask, order);
2395 zone_clear_flag(zone, ZONE_RECLAIM_LOCKED);
2396
2397 return ret;
179e9639 2398}
9eeff239 2399#endif
894bc310
LS
2400
2401#ifdef CONFIG_UNEVICTABLE_LRU
2402/*
2403 * page_evictable - test whether a page is evictable
2404 * @page: the page to test
2405 * @vma: the VMA in which the page is or will be mapped, may be NULL
2406 *
2407 * Test whether page is evictable--i.e., should be placed on active/inactive
b291f000
NP
2408 * lists vs unevictable list. The vma argument is !NULL when called from the
2409 * fault path to determine how to instantate a new page.
894bc310
LS
2410 *
2411 * Reasons page might not be evictable:
ba9ddf49 2412 * (1) page's mapping marked unevictable
b291f000 2413 * (2) page is part of an mlocked VMA
ba9ddf49 2414 *
894bc310
LS
2415 */
2416int page_evictable(struct page *page, struct vm_area_struct *vma)
2417{
2418
ba9ddf49
LS
2419 if (mapping_unevictable(page_mapping(page)))
2420 return 0;
2421
b291f000
NP
2422 if (PageMlocked(page) || (vma && is_mlocked_vma(vma, page)))
2423 return 0;
894bc310
LS
2424
2425 return 1;
2426}
89e004ea
LS
2427
2428/**
2429 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2430 * @page: page to check evictability and move to appropriate lru list
2431 * @zone: zone page is in
2432 *
2433 * Checks a page for evictability and moves the page to the appropriate
2434 * zone lru list.
2435 *
2436 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2437 * have PageUnevictable set.
2438 */
2439static void check_move_unevictable_page(struct page *page, struct zone *zone)
2440{
2441 VM_BUG_ON(PageActive(page));
2442
2443retry:
2444 ClearPageUnevictable(page);
2445 if (page_evictable(page, NULL)) {
2446 enum lru_list l = LRU_INACTIVE_ANON + page_is_file_cache(page);
af936a16 2447
89e004ea
LS
2448 __dec_zone_state(zone, NR_UNEVICTABLE);
2449 list_move(&page->lru, &zone->lru[l].list);
08e552c6 2450 mem_cgroup_move_lists(page, LRU_UNEVICTABLE, l);
89e004ea
LS
2451 __inc_zone_state(zone, NR_INACTIVE_ANON + l);
2452 __count_vm_event(UNEVICTABLE_PGRESCUED);
2453 } else {
2454 /*
2455 * rotate unevictable list
2456 */
2457 SetPageUnevictable(page);
2458 list_move(&page->lru, &zone->lru[LRU_UNEVICTABLE].list);
08e552c6 2459 mem_cgroup_rotate_lru_list(page, LRU_UNEVICTABLE);
89e004ea
LS
2460 if (page_evictable(page, NULL))
2461 goto retry;
2462 }
2463}
2464
2465/**
2466 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2467 * @mapping: struct address_space to scan for evictable pages
2468 *
2469 * Scan all pages in mapping. Check unevictable pages for
2470 * evictability and move them to the appropriate zone lru list.
2471 */
2472void scan_mapping_unevictable_pages(struct address_space *mapping)
2473{
2474 pgoff_t next = 0;
2475 pgoff_t end = (i_size_read(mapping->host) + PAGE_CACHE_SIZE - 1) >>
2476 PAGE_CACHE_SHIFT;
2477 struct zone *zone;
2478 struct pagevec pvec;
2479
2480 if (mapping->nrpages == 0)
2481 return;
2482
2483 pagevec_init(&pvec, 0);
2484 while (next < end &&
2485 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
2486 int i;
2487 int pg_scanned = 0;
2488
2489 zone = NULL;
2490
2491 for (i = 0; i < pagevec_count(&pvec); i++) {
2492 struct page *page = pvec.pages[i];
2493 pgoff_t page_index = page->index;
2494 struct zone *pagezone = page_zone(page);
2495
2496 pg_scanned++;
2497 if (page_index > next)
2498 next = page_index;
2499 next++;
2500
2501 if (pagezone != zone) {
2502 if (zone)
2503 spin_unlock_irq(&zone->lru_lock);
2504 zone = pagezone;
2505 spin_lock_irq(&zone->lru_lock);
2506 }
2507
2508 if (PageLRU(page) && PageUnevictable(page))
2509 check_move_unevictable_page(page, zone);
2510 }
2511 if (zone)
2512 spin_unlock_irq(&zone->lru_lock);
2513 pagevec_release(&pvec);
2514
2515 count_vm_events(UNEVICTABLE_PGSCANNED, pg_scanned);
2516 }
2517
2518}
af936a16
LS
2519
2520/**
2521 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2522 * @zone - zone of which to scan the unevictable list
2523 *
2524 * Scan @zone's unevictable LRU lists to check for pages that have become
2525 * evictable. Move those that have to @zone's inactive list where they
2526 * become candidates for reclaim, unless shrink_inactive_zone() decides
2527 * to reactivate them. Pages that are still unevictable are rotated
2528 * back onto @zone's unevictable list.
2529 */
2530#define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
14b90b22 2531static void scan_zone_unevictable_pages(struct zone *zone)
af936a16
LS
2532{
2533 struct list_head *l_unevictable = &zone->lru[LRU_UNEVICTABLE].list;
2534 unsigned long scan;
2535 unsigned long nr_to_scan = zone_page_state(zone, NR_UNEVICTABLE);
2536
2537 while (nr_to_scan > 0) {
2538 unsigned long batch_size = min(nr_to_scan,
2539 SCAN_UNEVICTABLE_BATCH_SIZE);
2540
2541 spin_lock_irq(&zone->lru_lock);
2542 for (scan = 0; scan < batch_size; scan++) {
2543 struct page *page = lru_to_page(l_unevictable);
2544
2545 if (!trylock_page(page))
2546 continue;
2547
2548 prefetchw_prev_lru_page(page, l_unevictable, flags);
2549
2550 if (likely(PageLRU(page) && PageUnevictable(page)))
2551 check_move_unevictable_page(page, zone);
2552
2553 unlock_page(page);
2554 }
2555 spin_unlock_irq(&zone->lru_lock);
2556
2557 nr_to_scan -= batch_size;
2558 }
2559}
2560
2561
2562/**
2563 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2564 *
2565 * A really big hammer: scan all zones' unevictable LRU lists to check for
2566 * pages that have become evictable. Move those back to the zones'
2567 * inactive list where they become candidates for reclaim.
2568 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2569 * and we add swap to the system. As such, it runs in the context of a task
2570 * that has possibly/probably made some previously unevictable pages
2571 * evictable.
2572 */
ff30153b 2573static void scan_all_zones_unevictable_pages(void)
af936a16
LS
2574{
2575 struct zone *zone;
2576
2577 for_each_zone(zone) {
2578 scan_zone_unevictable_pages(zone);
2579 }
2580}
2581
2582/*
2583 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2584 * all nodes' unevictable lists for evictable pages
2585 */
2586unsigned long scan_unevictable_pages;
2587
2588int scan_unevictable_handler(struct ctl_table *table, int write,
2589 struct file *file, void __user *buffer,
2590 size_t *length, loff_t *ppos)
2591{
2592 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
2593
2594 if (write && *(unsigned long *)table->data)
2595 scan_all_zones_unevictable_pages();
2596
2597 scan_unevictable_pages = 0;
2598 return 0;
2599}
2600
2601/*
2602 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2603 * a specified node's per zone unevictable lists for evictable pages.
2604 */
2605
2606static ssize_t read_scan_unevictable_node(struct sys_device *dev,
2607 struct sysdev_attribute *attr,
2608 char *buf)
2609{
2610 return sprintf(buf, "0\n"); /* always zero; should fit... */
2611}
2612
2613static ssize_t write_scan_unevictable_node(struct sys_device *dev,
2614 struct sysdev_attribute *attr,
2615 const char *buf, size_t count)
2616{
2617 struct zone *node_zones = NODE_DATA(dev->id)->node_zones;
2618 struct zone *zone;
2619 unsigned long res;
2620 unsigned long req = strict_strtoul(buf, 10, &res);
2621
2622 if (!req)
2623 return 1; /* zero is no-op */
2624
2625 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2626 if (!populated_zone(zone))
2627 continue;
2628 scan_zone_unevictable_pages(zone);
2629 }
2630 return 1;
2631}
2632
2633
2634static SYSDEV_ATTR(scan_unevictable_pages, S_IRUGO | S_IWUSR,
2635 read_scan_unevictable_node,
2636 write_scan_unevictable_node);
2637
2638int scan_unevictable_register_node(struct node *node)
2639{
2640 return sysdev_create_file(&node->sysdev, &attr_scan_unevictable_pages);
2641}
2642
2643void scan_unevictable_unregister_node(struct node *node)
2644{
2645 sysdev_remove_file(&node->sysdev, &attr_scan_unevictable_pages);
2646}
2647
894bc310 2648#endif