4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
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.
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/vmstat.h>
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>
37 #include <linux/delay.h>
38 #include <linux/kthread.h>
39 #include <linux/freezer.h>
40 #include <linux/memcontrol.h>
41 #include <linux/delayacct.h>
42 #include <linux/sysctl.h>
44 #include <asm/tlbflush.h>
45 #include <asm/div64.h>
47 #include <linux/swapops.h>
52 /* Incremented by the number of inactive pages that were scanned */
53 unsigned long nr_scanned
;
55 /* Number of pages freed so far during a call to shrink_zones() */
56 unsigned long nr_reclaimed
;
58 /* How many pages shrink_list() should reclaim */
59 unsigned long nr_to_reclaim
;
61 unsigned long hibernation_mode
;
63 /* This context's GFP mask */
68 /* Can mapped pages be reclaimed? */
71 /* Can pages be swapped as part of reclaim? */
76 int all_unreclaimable
;
80 /* Which cgroup do we reclaim from */
81 struct mem_cgroup
*mem_cgroup
;
84 * Nodemask of nodes allowed by the caller. If NULL, all nodes
89 /* Pluggable isolate pages callback */
90 unsigned long (*isolate_pages
)(unsigned long nr
, struct list_head
*dst
,
91 unsigned long *scanned
, int order
, int mode
,
92 struct zone
*z
, struct mem_cgroup
*mem_cont
,
93 int active
, int file
);
96 #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
98 #ifdef ARCH_HAS_PREFETCH
99 #define prefetch_prev_lru_page(_page, _base, _field) \
101 if ((_page)->lru.prev != _base) { \
104 prev = lru_to_page(&(_page->lru)); \
105 prefetch(&prev->_field); \
109 #define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
112 #ifdef ARCH_HAS_PREFETCHW
113 #define prefetchw_prev_lru_page(_page, _base, _field) \
115 if ((_page)->lru.prev != _base) { \
118 prev = lru_to_page(&(_page->lru)); \
119 prefetchw(&prev->_field); \
123 #define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
127 * From 0 .. 100. Higher means more swappy.
129 int vm_swappiness
= 60;
130 long vm_total_pages
; /* The total number of pages which the VM controls */
132 static LIST_HEAD(shrinker_list
);
133 static DECLARE_RWSEM(shrinker_rwsem
);
135 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
136 #define scanning_global_lru(sc) (!(sc)->mem_cgroup)
138 #define scanning_global_lru(sc) (1)
141 static struct zone_reclaim_stat
*get_reclaim_stat(struct zone
*zone
,
142 struct scan_control
*sc
)
144 if (!scanning_global_lru(sc
))
145 return mem_cgroup_get_reclaim_stat(sc
->mem_cgroup
, zone
);
147 return &zone
->reclaim_stat
;
150 static unsigned long zone_nr_lru_pages(struct zone
*zone
,
151 struct scan_control
*sc
, enum lru_list lru
)
153 if (!scanning_global_lru(sc
))
154 return mem_cgroup_zone_nr_pages(sc
->mem_cgroup
, zone
, lru
);
156 return zone_page_state(zone
, NR_LRU_BASE
+ lru
);
161 * Add a shrinker callback to be called from the vm
163 void register_shrinker(struct shrinker
*shrinker
)
166 down_write(&shrinker_rwsem
);
167 list_add_tail(&shrinker
->list
, &shrinker_list
);
168 up_write(&shrinker_rwsem
);
170 EXPORT_SYMBOL(register_shrinker
);
175 void unregister_shrinker(struct shrinker
*shrinker
)
177 down_write(&shrinker_rwsem
);
178 list_del(&shrinker
->list
);
179 up_write(&shrinker_rwsem
);
181 EXPORT_SYMBOL(unregister_shrinker
);
183 #define SHRINK_BATCH 128
185 * Call the shrink functions to age shrinkable caches
187 * Here we assume it costs one seek to replace a lru page and that it also
188 * takes a seek to recreate a cache object. With this in mind we age equal
189 * percentages of the lru and ageable caches. This should balance the seeks
190 * generated by these structures.
192 * If the vm encountered mapped pages on the LRU it increase the pressure on
193 * slab to avoid swapping.
195 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
197 * `lru_pages' represents the number of on-LRU pages in all the zones which
198 * are eligible for the caller's allocation attempt. It is used for balancing
199 * slab reclaim versus page reclaim.
201 * Returns the number of slab objects which we shrunk.
203 unsigned long shrink_slab(unsigned long scanned
, gfp_t gfp_mask
,
204 unsigned long lru_pages
)
206 struct shrinker
*shrinker
;
207 unsigned long ret
= 0;
210 scanned
= SWAP_CLUSTER_MAX
;
212 if (!down_read_trylock(&shrinker_rwsem
))
213 return 1; /* Assume we'll be able to shrink next time */
215 list_for_each_entry(shrinker
, &shrinker_list
, list
) {
216 unsigned long long delta
;
217 unsigned long total_scan
;
218 unsigned long max_pass
= (*shrinker
->shrink
)(0, gfp_mask
);
220 delta
= (4 * scanned
) / shrinker
->seeks
;
222 do_div(delta
, lru_pages
+ 1);
223 shrinker
->nr
+= delta
;
224 if (shrinker
->nr
< 0) {
225 printk(KERN_ERR
"shrink_slab: %pF negative objects to "
227 shrinker
->shrink
, shrinker
->nr
);
228 shrinker
->nr
= max_pass
;
232 * Avoid risking looping forever due to too large nr value:
233 * never try to free more than twice the estimate number of
236 if (shrinker
->nr
> max_pass
* 2)
237 shrinker
->nr
= max_pass
* 2;
239 total_scan
= shrinker
->nr
;
242 while (total_scan
>= SHRINK_BATCH
) {
243 long this_scan
= SHRINK_BATCH
;
247 nr_before
= (*shrinker
->shrink
)(0, gfp_mask
);
248 shrink_ret
= (*shrinker
->shrink
)(this_scan
, gfp_mask
);
249 if (shrink_ret
== -1)
251 if (shrink_ret
< nr_before
)
252 ret
+= nr_before
- shrink_ret
;
253 count_vm_events(SLABS_SCANNED
, this_scan
);
254 total_scan
-= this_scan
;
259 shrinker
->nr
+= total_scan
;
261 up_read(&shrinker_rwsem
);
265 /* Called without lock on whether page is mapped, so answer is unstable */
266 static inline int page_mapping_inuse(struct page
*page
)
268 struct address_space
*mapping
;
270 /* Page is in somebody's page tables. */
271 if (page_mapped(page
))
274 /* Be more reluctant to reclaim swapcache than pagecache */
275 if (PageSwapCache(page
))
278 mapping
= page_mapping(page
);
282 /* File is mmap'd by somebody? */
283 return mapping_mapped(mapping
);
286 static inline int is_page_cache_freeable(struct page
*page
)
289 * A freeable page cache page is referenced only by the caller
290 * that isolated the page, the page cache radix tree and
291 * optional buffer heads at page->private.
293 return page_count(page
) - page_has_private(page
) == 2;
296 static int may_write_to_queue(struct backing_dev_info
*bdi
)
298 if (current
->flags
& PF_SWAPWRITE
)
300 if (!bdi_write_congested(bdi
))
302 if (bdi
== current
->backing_dev_info
)
308 * We detected a synchronous write error writing a page out. Probably
309 * -ENOSPC. We need to propagate that into the address_space for a subsequent
310 * fsync(), msync() or close().
312 * The tricky part is that after writepage we cannot touch the mapping: nothing
313 * prevents it from being freed up. But we have a ref on the page and once
314 * that page is locked, the mapping is pinned.
316 * We're allowed to run sleeping lock_page() here because we know the caller has
319 static void handle_write_error(struct address_space
*mapping
,
320 struct page
*page
, int error
)
323 if (page_mapping(page
) == mapping
)
324 mapping_set_error(mapping
, error
);
328 /* Request for sync pageout. */
334 /* possible outcome of pageout() */
336 /* failed to write page out, page is locked */
338 /* move page to the active list, page is locked */
340 /* page has been sent to the disk successfully, page is unlocked */
342 /* page is clean and locked */
347 * pageout is called by shrink_page_list() for each dirty page.
348 * Calls ->writepage().
350 static pageout_t
pageout(struct page
*page
, struct address_space
*mapping
,
351 enum pageout_io sync_writeback
)
354 * If the page is dirty, only perform writeback if that write
355 * will be non-blocking. To prevent this allocation from being
356 * stalled by pagecache activity. But note that there may be
357 * stalls if we need to run get_block(). We could test
358 * PagePrivate for that.
360 * If this process is currently in __generic_file_aio_write() against
361 * this page's queue, we can perform writeback even if that
364 * If the page is swapcache, write it back even if that would
365 * block, for some throttling. This happens by accident, because
366 * swap_backing_dev_info is bust: it doesn't reflect the
367 * congestion state of the swapdevs. Easy to fix, if needed.
369 if (!is_page_cache_freeable(page
))
373 * Some data journaling orphaned pages can have
374 * page->mapping == NULL while being dirty with clean buffers.
376 if (page_has_private(page
)) {
377 if (try_to_free_buffers(page
)) {
378 ClearPageDirty(page
);
379 printk("%s: orphaned page\n", __func__
);
385 if (mapping
->a_ops
->writepage
== NULL
)
386 return PAGE_ACTIVATE
;
387 if (!may_write_to_queue(mapping
->backing_dev_info
))
390 if (clear_page_dirty_for_io(page
)) {
392 struct writeback_control wbc
= {
393 .sync_mode
= WB_SYNC_NONE
,
394 .nr_to_write
= SWAP_CLUSTER_MAX
,
396 .range_end
= LLONG_MAX
,
401 SetPageReclaim(page
);
402 res
= mapping
->a_ops
->writepage(page
, &wbc
);
404 handle_write_error(mapping
, page
, res
);
405 if (res
== AOP_WRITEPAGE_ACTIVATE
) {
406 ClearPageReclaim(page
);
407 return PAGE_ACTIVATE
;
411 * Wait on writeback if requested to. This happens when
412 * direct reclaiming a large contiguous area and the
413 * first attempt to free a range of pages fails.
415 if (PageWriteback(page
) && sync_writeback
== PAGEOUT_IO_SYNC
)
416 wait_on_page_writeback(page
);
418 if (!PageWriteback(page
)) {
419 /* synchronous write or broken a_ops? */
420 ClearPageReclaim(page
);
422 inc_zone_page_state(page
, NR_VMSCAN_WRITE
);
430 * Same as remove_mapping, but if the page is removed from the mapping, it
431 * gets returned with a refcount of 0.
433 static int __remove_mapping(struct address_space
*mapping
, struct page
*page
)
435 BUG_ON(!PageLocked(page
));
436 BUG_ON(mapping
!= page_mapping(page
));
438 spin_lock_irq(&mapping
->tree_lock
);
440 * The non racy check for a busy page.
442 * Must be careful with the order of the tests. When someone has
443 * a ref to the page, it may be possible that they dirty it then
444 * drop the reference. So if PageDirty is tested before page_count
445 * here, then the following race may occur:
447 * get_user_pages(&page);
448 * [user mapping goes away]
450 * !PageDirty(page) [good]
451 * SetPageDirty(page);
453 * !page_count(page) [good, discard it]
455 * [oops, our write_to data is lost]
457 * Reversing the order of the tests ensures such a situation cannot
458 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
459 * load is not satisfied before that of page->_count.
461 * Note that if SetPageDirty is always performed via set_page_dirty,
462 * and thus under tree_lock, then this ordering is not required.
464 if (!page_freeze_refs(page
, 2))
466 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
467 if (unlikely(PageDirty(page
))) {
468 page_unfreeze_refs(page
, 2);
472 if (PageSwapCache(page
)) {
473 swp_entry_t swap
= { .val
= page_private(page
) };
474 __delete_from_swap_cache(page
);
475 spin_unlock_irq(&mapping
->tree_lock
);
476 swapcache_free(swap
, page
);
478 __remove_from_page_cache(page
);
479 spin_unlock_irq(&mapping
->tree_lock
);
480 mem_cgroup_uncharge_cache_page(page
);
486 spin_unlock_irq(&mapping
->tree_lock
);
491 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
492 * someone else has a ref on the page, abort and return 0. If it was
493 * successfully detached, return 1. Assumes the caller has a single ref on
496 int remove_mapping(struct address_space
*mapping
, struct page
*page
)
498 if (__remove_mapping(mapping
, page
)) {
500 * Unfreezing the refcount with 1 rather than 2 effectively
501 * drops the pagecache ref for us without requiring another
504 page_unfreeze_refs(page
, 1);
511 * putback_lru_page - put previously isolated page onto appropriate LRU list
512 * @page: page to be put back to appropriate lru list
514 * Add previously isolated @page to appropriate LRU list.
515 * Page may still be unevictable for other reasons.
517 * lru_lock must not be held, interrupts must be enabled.
519 void putback_lru_page(struct page
*page
)
522 int active
= !!TestClearPageActive(page
);
523 int was_unevictable
= PageUnevictable(page
);
525 VM_BUG_ON(PageLRU(page
));
528 ClearPageUnevictable(page
);
530 if (page_evictable(page
, NULL
)) {
532 * For evictable pages, we can use the cache.
533 * In event of a race, worst case is we end up with an
534 * unevictable page on [in]active list.
535 * We know how to handle that.
537 lru
= active
+ page_lru_base_type(page
);
538 lru_cache_add_lru(page
, lru
);
541 * Put unevictable pages directly on zone's unevictable
544 lru
= LRU_UNEVICTABLE
;
545 add_page_to_unevictable_list(page
);
547 * When racing with an mlock clearing (page is
548 * unlocked), make sure that if the other thread does
549 * not observe our setting of PG_lru and fails
550 * isolation, we see PG_mlocked cleared below and move
551 * the page back to the evictable list.
553 * The other side is TestClearPageMlocked().
559 * page's status can change while we move it among lru. If an evictable
560 * page is on unevictable list, it never be freed. To avoid that,
561 * check after we added it to the list, again.
563 if (lru
== LRU_UNEVICTABLE
&& page_evictable(page
, NULL
)) {
564 if (!isolate_lru_page(page
)) {
568 /* This means someone else dropped this page from LRU
569 * So, it will be freed or putback to LRU again. There is
570 * nothing to do here.
574 if (was_unevictable
&& lru
!= LRU_UNEVICTABLE
)
575 count_vm_event(UNEVICTABLE_PGRESCUED
);
576 else if (!was_unevictable
&& lru
== LRU_UNEVICTABLE
)
577 count_vm_event(UNEVICTABLE_PGCULLED
);
579 put_page(page
); /* drop ref from isolate */
583 * shrink_page_list() returns the number of reclaimed pages
585 static unsigned long shrink_page_list(struct list_head
*page_list
,
586 struct scan_control
*sc
,
587 enum pageout_io sync_writeback
)
589 LIST_HEAD(ret_pages
);
590 struct pagevec freed_pvec
;
592 unsigned long nr_reclaimed
= 0;
593 unsigned long vm_flags
;
597 pagevec_init(&freed_pvec
, 1);
598 while (!list_empty(page_list
)) {
599 struct address_space
*mapping
;
606 page
= lru_to_page(page_list
);
607 list_del(&page
->lru
);
609 if (!trylock_page(page
))
612 VM_BUG_ON(PageActive(page
));
616 if (unlikely(!page_evictable(page
, NULL
)))
619 if (!sc
->may_unmap
&& page_mapped(page
))
622 /* Double the slab pressure for mapped and swapcache pages */
623 if (page_mapped(page
) || PageSwapCache(page
))
626 may_enter_fs
= (sc
->gfp_mask
& __GFP_FS
) ||
627 (PageSwapCache(page
) && (sc
->gfp_mask
& __GFP_IO
));
629 if (PageWriteback(page
)) {
631 * Synchronous reclaim is performed in two passes,
632 * first an asynchronous pass over the list to
633 * start parallel writeback, and a second synchronous
634 * pass to wait for the IO to complete. Wait here
635 * for any page for which writeback has already
638 if (sync_writeback
== PAGEOUT_IO_SYNC
&& may_enter_fs
)
639 wait_on_page_writeback(page
);
644 referenced
= page_referenced(page
, 1,
645 sc
->mem_cgroup
, &vm_flags
);
647 * In active use or really unfreeable? Activate it.
648 * If page which have PG_mlocked lost isoltation race,
649 * try_to_unmap moves it to unevictable list
651 if (sc
->order
<= PAGE_ALLOC_COSTLY_ORDER
&&
652 referenced
&& page_mapping_inuse(page
)
653 && !(vm_flags
& VM_LOCKED
))
654 goto activate_locked
;
657 * Anonymous process memory has backing store?
658 * Try to allocate it some swap space here.
660 if (PageAnon(page
) && !PageSwapCache(page
)) {
661 if (!(sc
->gfp_mask
& __GFP_IO
))
663 if (!add_to_swap(page
))
664 goto activate_locked
;
668 mapping
= page_mapping(page
);
671 * The page is mapped into the page tables of one or more
672 * processes. Try to unmap it here.
674 if (page_mapped(page
) && mapping
) {
675 switch (try_to_unmap(page
, TTU_UNMAP
)) {
677 goto activate_locked
;
683 ; /* try to free the page below */
687 if (PageDirty(page
)) {
688 if (sc
->order
<= PAGE_ALLOC_COSTLY_ORDER
&& referenced
)
692 if (!sc
->may_writepage
)
695 /* Page is dirty, try to write it out here */
696 switch (pageout(page
, mapping
, sync_writeback
)) {
700 goto activate_locked
;
702 if (PageWriteback(page
) || PageDirty(page
))
705 * A synchronous write - probably a ramdisk. Go
706 * ahead and try to reclaim the page.
708 if (!trylock_page(page
))
710 if (PageDirty(page
) || PageWriteback(page
))
712 mapping
= page_mapping(page
);
714 ; /* try to free the page below */
719 * If the page has buffers, try to free the buffer mappings
720 * associated with this page. If we succeed we try to free
723 * We do this even if the page is PageDirty().
724 * try_to_release_page() does not perform I/O, but it is
725 * possible for a page to have PageDirty set, but it is actually
726 * clean (all its buffers are clean). This happens if the
727 * buffers were written out directly, with submit_bh(). ext3
728 * will do this, as well as the blockdev mapping.
729 * try_to_release_page() will discover that cleanness and will
730 * drop the buffers and mark the page clean - it can be freed.
732 * Rarely, pages can have buffers and no ->mapping. These are
733 * the pages which were not successfully invalidated in
734 * truncate_complete_page(). We try to drop those buffers here
735 * and if that worked, and the page is no longer mapped into
736 * process address space (page_count == 1) it can be freed.
737 * Otherwise, leave the page on the LRU so it is swappable.
739 if (page_has_private(page
)) {
740 if (!try_to_release_page(page
, sc
->gfp_mask
))
741 goto activate_locked
;
742 if (!mapping
&& page_count(page
) == 1) {
744 if (put_page_testzero(page
))
748 * rare race with speculative reference.
749 * the speculative reference will free
750 * this page shortly, so we may
751 * increment nr_reclaimed here (and
752 * leave it off the LRU).
760 if (!mapping
|| !__remove_mapping(mapping
, page
))
764 * At this point, we have no other references and there is
765 * no way to pick any more up (removed from LRU, removed
766 * from pagecache). Can use non-atomic bitops now (and
767 * we obviously don't have to worry about waking up a process
768 * waiting on the page lock, because there are no references.
770 __clear_page_locked(page
);
773 if (!pagevec_add(&freed_pvec
, page
)) {
774 __pagevec_free(&freed_pvec
);
775 pagevec_reinit(&freed_pvec
);
780 if (PageSwapCache(page
))
781 try_to_free_swap(page
);
783 putback_lru_page(page
);
787 /* Not a candidate for swapping, so reclaim swap space. */
788 if (PageSwapCache(page
) && vm_swap_full())
789 try_to_free_swap(page
);
790 VM_BUG_ON(PageActive(page
));
796 list_add(&page
->lru
, &ret_pages
);
797 VM_BUG_ON(PageLRU(page
) || PageUnevictable(page
));
799 list_splice(&ret_pages
, page_list
);
800 if (pagevec_count(&freed_pvec
))
801 __pagevec_free(&freed_pvec
);
802 count_vm_events(PGACTIVATE
, pgactivate
);
806 /* LRU Isolation modes. */
807 #define ISOLATE_INACTIVE 0 /* Isolate inactive pages. */
808 #define ISOLATE_ACTIVE 1 /* Isolate active pages. */
809 #define ISOLATE_BOTH 2 /* Isolate both active and inactive pages. */
812 * Attempt to remove the specified page from its LRU. Only take this page
813 * if it is of the appropriate PageActive status. Pages which are being
814 * freed elsewhere are also ignored.
816 * page: page to consider
817 * mode: one of the LRU isolation modes defined above
819 * returns 0 on success, -ve errno on failure.
821 int __isolate_lru_page(struct page
*page
, int mode
, int file
)
825 /* Only take pages on the LRU. */
830 * When checking the active state, we need to be sure we are
831 * dealing with comparible boolean values. Take the logical not
834 if (mode
!= ISOLATE_BOTH
&& (!PageActive(page
) != !mode
))
837 if (mode
!= ISOLATE_BOTH
&& page_is_file_cache(page
) != file
)
841 * When this function is being called for lumpy reclaim, we
842 * initially look into all LRU pages, active, inactive and
843 * unevictable; only give shrink_page_list evictable pages.
845 if (PageUnevictable(page
))
850 if (likely(get_page_unless_zero(page
))) {
852 * Be careful not to clear PageLRU until after we're
853 * sure the page is not being freed elsewhere -- the
854 * page release code relies on it.
864 * zone->lru_lock is heavily contended. Some of the functions that
865 * shrink the lists perform better by taking out a batch of pages
866 * and working on them outside the LRU lock.
868 * For pagecache intensive workloads, this function is the hottest
869 * spot in the kernel (apart from copy_*_user functions).
871 * Appropriate locks must be held before calling this function.
873 * @nr_to_scan: The number of pages to look through on the list.
874 * @src: The LRU list to pull pages off.
875 * @dst: The temp list to put pages on to.
876 * @scanned: The number of pages that were scanned.
877 * @order: The caller's attempted allocation order
878 * @mode: One of the LRU isolation modes
879 * @file: True [1] if isolating file [!anon] pages
881 * returns how many pages were moved onto *@dst.
883 static unsigned long isolate_lru_pages(unsigned long nr_to_scan
,
884 struct list_head
*src
, struct list_head
*dst
,
885 unsigned long *scanned
, int order
, int mode
, int file
)
887 unsigned long nr_taken
= 0;
890 for (scan
= 0; scan
< nr_to_scan
&& !list_empty(src
); scan
++) {
893 unsigned long end_pfn
;
894 unsigned long page_pfn
;
897 page
= lru_to_page(src
);
898 prefetchw_prev_lru_page(page
, src
, flags
);
900 VM_BUG_ON(!PageLRU(page
));
902 switch (__isolate_lru_page(page
, mode
, file
)) {
904 list_move(&page
->lru
, dst
);
905 mem_cgroup_del_lru(page
);
910 /* else it is being freed elsewhere */
911 list_move(&page
->lru
, src
);
912 mem_cgroup_rotate_lru_list(page
, page_lru(page
));
923 * Attempt to take all pages in the order aligned region
924 * surrounding the tag page. Only take those pages of
925 * the same active state as that tag page. We may safely
926 * round the target page pfn down to the requested order
927 * as the mem_map is guarenteed valid out to MAX_ORDER,
928 * where that page is in a different zone we will detect
929 * it from its zone id and abort this block scan.
931 zone_id
= page_zone_id(page
);
932 page_pfn
= page_to_pfn(page
);
933 pfn
= page_pfn
& ~((1 << order
) - 1);
934 end_pfn
= pfn
+ (1 << order
);
935 for (; pfn
< end_pfn
; pfn
++) {
936 struct page
*cursor_page
;
938 /* The target page is in the block, ignore it. */
939 if (unlikely(pfn
== page_pfn
))
942 /* Avoid holes within the zone. */
943 if (unlikely(!pfn_valid_within(pfn
)))
946 cursor_page
= pfn_to_page(pfn
);
948 /* Check that we have not crossed a zone boundary. */
949 if (unlikely(page_zone_id(cursor_page
) != zone_id
))
953 * If we don't have enough swap space, reclaiming of
954 * anon page which don't already have a swap slot is
957 if (nr_swap_pages
<= 0 && PageAnon(cursor_page
) &&
958 !PageSwapCache(cursor_page
))
961 if (__isolate_lru_page(cursor_page
, mode
, file
) == 0) {
962 list_move(&cursor_page
->lru
, dst
);
963 mem_cgroup_del_lru(cursor_page
);
974 static unsigned long isolate_pages_global(unsigned long nr
,
975 struct list_head
*dst
,
976 unsigned long *scanned
, int order
,
977 int mode
, struct zone
*z
,
978 struct mem_cgroup
*mem_cont
,
979 int active
, int file
)
986 return isolate_lru_pages(nr
, &z
->lru
[lru
].list
, dst
, scanned
, order
,
991 * clear_active_flags() is a helper for shrink_active_list(), clearing
992 * any active bits from the pages in the list.
994 static unsigned long clear_active_flags(struct list_head
*page_list
,
1001 list_for_each_entry(page
, page_list
, lru
) {
1002 lru
= page_lru_base_type(page
);
1003 if (PageActive(page
)) {
1005 ClearPageActive(page
);
1015 * isolate_lru_page - tries to isolate a page from its LRU list
1016 * @page: page to isolate from its LRU list
1018 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1019 * vmstat statistic corresponding to whatever LRU list the page was on.
1021 * Returns 0 if the page was removed from an LRU list.
1022 * Returns -EBUSY if the page was not on an LRU list.
1024 * The returned page will have PageLRU() cleared. If it was found on
1025 * the active list, it will have PageActive set. If it was found on
1026 * the unevictable list, it will have the PageUnevictable bit set. That flag
1027 * may need to be cleared by the caller before letting the page go.
1029 * The vmstat statistic corresponding to the list on which the page was
1030 * found will be decremented.
1033 * (1) Must be called with an elevated refcount on the page. This is a
1034 * fundamentnal difference from isolate_lru_pages (which is called
1035 * without a stable reference).
1036 * (2) the lru_lock must not be held.
1037 * (3) interrupts must be enabled.
1039 int isolate_lru_page(struct page
*page
)
1043 if (PageLRU(page
)) {
1044 struct zone
*zone
= page_zone(page
);
1046 spin_lock_irq(&zone
->lru_lock
);
1047 if (PageLRU(page
) && get_page_unless_zero(page
)) {
1048 int lru
= page_lru(page
);
1052 del_page_from_lru_list(zone
, page
, lru
);
1054 spin_unlock_irq(&zone
->lru_lock
);
1060 * Are there way too many processes in the direct reclaim path already?
1062 static int too_many_isolated(struct zone
*zone
, int file
,
1063 struct scan_control
*sc
)
1065 unsigned long inactive
, isolated
;
1067 if (current_is_kswapd())
1070 if (!scanning_global_lru(sc
))
1074 inactive
= zone_page_state(zone
, NR_INACTIVE_FILE
);
1075 isolated
= zone_page_state(zone
, NR_ISOLATED_FILE
);
1077 inactive
= zone_page_state(zone
, NR_INACTIVE_ANON
);
1078 isolated
= zone_page_state(zone
, NR_ISOLATED_ANON
);
1081 return isolated
> inactive
;
1085 * Returns true if the caller should wait to clean dirty/writeback pages.
1087 * If we are direct reclaiming for contiguous pages and we do not reclaim
1088 * everything in the list, try again and wait for writeback IO to complete.
1089 * This will stall high-order allocations noticeably. Only do that when really
1090 * need to free the pages under high memory pressure.
1092 static inline bool should_reclaim_stall(unsigned long nr_taken
,
1093 unsigned long nr_freed
,
1096 struct scan_control
*sc
)
1098 int lumpy_stall_priority
;
1100 /* kswapd should not stall on sync IO */
1101 if (current_is_kswapd())
1104 /* Only stall on lumpy reclaim */
1108 /* If we have relaimed everything on the isolated list, no stall */
1109 if (nr_freed
== nr_taken
)
1113 * For high-order allocations, there are two stall thresholds.
1114 * High-cost allocations stall immediately where as lower
1115 * order allocations such as stacks require the scanning
1116 * priority to be much higher before stalling.
1118 if (sc
->order
> PAGE_ALLOC_COSTLY_ORDER
)
1119 lumpy_stall_priority
= DEF_PRIORITY
;
1121 lumpy_stall_priority
= DEF_PRIORITY
/ 3;
1123 return priority
<= lumpy_stall_priority
;
1127 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1128 * of reclaimed pages
1130 static unsigned long shrink_inactive_list(unsigned long max_scan
,
1131 struct zone
*zone
, struct scan_control
*sc
,
1132 int priority
, int file
)
1134 LIST_HEAD(page_list
);
1135 struct pagevec pvec
;
1136 unsigned long nr_scanned
= 0;
1137 unsigned long nr_reclaimed
= 0;
1138 struct zone_reclaim_stat
*reclaim_stat
= get_reclaim_stat(zone
, sc
);
1139 int lumpy_reclaim
= 0;
1141 while (unlikely(too_many_isolated(zone
, file
, sc
))) {
1142 congestion_wait(BLK_RW_ASYNC
, HZ
/10);
1144 /* We are about to die and free our memory. Return now. */
1145 if (fatal_signal_pending(current
))
1146 return SWAP_CLUSTER_MAX
;
1150 * If we need a large contiguous chunk of memory, or have
1151 * trouble getting a small set of contiguous pages, we
1152 * will reclaim both active and inactive pages.
1154 * We use the same threshold as pageout congestion_wait below.
1156 if (sc
->order
> PAGE_ALLOC_COSTLY_ORDER
)
1158 else if (sc
->order
&& priority
< DEF_PRIORITY
- 2)
1161 pagevec_init(&pvec
, 1);
1164 spin_lock_irq(&zone
->lru_lock
);
1167 unsigned long nr_taken
;
1168 unsigned long nr_scan
;
1169 unsigned long nr_freed
;
1170 unsigned long nr_active
;
1171 unsigned int count
[NR_LRU_LISTS
] = { 0, };
1172 int mode
= lumpy_reclaim
? ISOLATE_BOTH
: ISOLATE_INACTIVE
;
1173 unsigned long nr_anon
;
1174 unsigned long nr_file
;
1176 nr_taken
= sc
->isolate_pages(SWAP_CLUSTER_MAX
,
1177 &page_list
, &nr_scan
, sc
->order
, mode
,
1178 zone
, sc
->mem_cgroup
, 0, file
);
1180 if (scanning_global_lru(sc
)) {
1181 zone
->pages_scanned
+= nr_scan
;
1182 if (current_is_kswapd())
1183 __count_zone_vm_events(PGSCAN_KSWAPD
, zone
,
1186 __count_zone_vm_events(PGSCAN_DIRECT
, zone
,
1193 nr_active
= clear_active_flags(&page_list
, count
);
1194 __count_vm_events(PGDEACTIVATE
, nr_active
);
1196 __mod_zone_page_state(zone
, NR_ACTIVE_FILE
,
1197 -count
[LRU_ACTIVE_FILE
]);
1198 __mod_zone_page_state(zone
, NR_INACTIVE_FILE
,
1199 -count
[LRU_INACTIVE_FILE
]);
1200 __mod_zone_page_state(zone
, NR_ACTIVE_ANON
,
1201 -count
[LRU_ACTIVE_ANON
]);
1202 __mod_zone_page_state(zone
, NR_INACTIVE_ANON
,
1203 -count
[LRU_INACTIVE_ANON
]);
1205 nr_anon
= count
[LRU_ACTIVE_ANON
] + count
[LRU_INACTIVE_ANON
];
1206 nr_file
= count
[LRU_ACTIVE_FILE
] + count
[LRU_INACTIVE_FILE
];
1207 __mod_zone_page_state(zone
, NR_ISOLATED_ANON
, nr_anon
);
1208 __mod_zone_page_state(zone
, NR_ISOLATED_FILE
, nr_file
);
1210 reclaim_stat
->recent_scanned
[0] += nr_anon
;
1211 reclaim_stat
->recent_scanned
[1] += nr_file
;
1213 spin_unlock_irq(&zone
->lru_lock
);
1215 nr_scanned
+= nr_scan
;
1216 nr_freed
= shrink_page_list(&page_list
, sc
, PAGEOUT_IO_ASYNC
);
1218 /* Check if we should syncronously wait for writeback */
1219 if (should_reclaim_stall(nr_taken
, nr_freed
, priority
,
1220 lumpy_reclaim
, sc
)) {
1221 congestion_wait(BLK_RW_ASYNC
, HZ
/10);
1224 * The attempt at page out may have made some
1225 * of the pages active, mark them inactive again.
1227 nr_active
= clear_active_flags(&page_list
, count
);
1228 count_vm_events(PGDEACTIVATE
, nr_active
);
1230 nr_freed
+= shrink_page_list(&page_list
, sc
,
1234 nr_reclaimed
+= nr_freed
;
1236 local_irq_disable();
1237 if (current_is_kswapd())
1238 __count_vm_events(KSWAPD_STEAL
, nr_freed
);
1239 __count_zone_vm_events(PGSTEAL
, zone
, nr_freed
);
1241 spin_lock(&zone
->lru_lock
);
1243 * Put back any unfreeable pages.
1245 while (!list_empty(&page_list
)) {
1247 page
= lru_to_page(&page_list
);
1248 VM_BUG_ON(PageLRU(page
));
1249 list_del(&page
->lru
);
1250 if (unlikely(!page_evictable(page
, NULL
))) {
1251 spin_unlock_irq(&zone
->lru_lock
);
1252 putback_lru_page(page
);
1253 spin_lock_irq(&zone
->lru_lock
);
1257 lru
= page_lru(page
);
1258 add_page_to_lru_list(zone
, page
, lru
);
1259 if (is_active_lru(lru
)) {
1260 int file
= is_file_lru(lru
);
1261 reclaim_stat
->recent_rotated
[file
]++;
1263 if (!pagevec_add(&pvec
, page
)) {
1264 spin_unlock_irq(&zone
->lru_lock
);
1265 __pagevec_release(&pvec
);
1266 spin_lock_irq(&zone
->lru_lock
);
1269 __mod_zone_page_state(zone
, NR_ISOLATED_ANON
, -nr_anon
);
1270 __mod_zone_page_state(zone
, NR_ISOLATED_FILE
, -nr_file
);
1272 } while (nr_scanned
< max_scan
);
1275 spin_unlock_irq(&zone
->lru_lock
);
1276 pagevec_release(&pvec
);
1277 return nr_reclaimed
;
1281 * We are about to scan this zone at a certain priority level. If that priority
1282 * level is smaller (ie: more urgent) than the previous priority, then note
1283 * that priority level within the zone. This is done so that when the next
1284 * process comes in to scan this zone, it will immediately start out at this
1285 * priority level rather than having to build up its own scanning priority.
1286 * Here, this priority affects only the reclaim-mapped threshold.
1288 static inline void note_zone_scanning_priority(struct zone
*zone
, int priority
)
1290 if (priority
< zone
->prev_priority
)
1291 zone
->prev_priority
= priority
;
1295 * This moves pages from the active list to the inactive list.
1297 * We move them the other way if the page is referenced by one or more
1298 * processes, from rmap.
1300 * If the pages are mostly unmapped, the processing is fast and it is
1301 * appropriate to hold zone->lru_lock across the whole operation. But if
1302 * the pages are mapped, the processing is slow (page_referenced()) so we
1303 * should drop zone->lru_lock around each page. It's impossible to balance
1304 * this, so instead we remove the pages from the LRU while processing them.
1305 * It is safe to rely on PG_active against the non-LRU pages in here because
1306 * nobody will play with that bit on a non-LRU page.
1308 * The downside is that we have to touch page->_count against each page.
1309 * But we had to alter page->flags anyway.
1312 static void move_active_pages_to_lru(struct zone
*zone
,
1313 struct list_head
*list
,
1316 unsigned long pgmoved
= 0;
1317 struct pagevec pvec
;
1320 pagevec_init(&pvec
, 1);
1322 while (!list_empty(list
)) {
1323 page
= lru_to_page(list
);
1325 VM_BUG_ON(PageLRU(page
));
1328 list_move(&page
->lru
, &zone
->lru
[lru
].list
);
1329 mem_cgroup_add_lru_list(page
, lru
);
1332 if (!pagevec_add(&pvec
, page
) || list_empty(list
)) {
1333 spin_unlock_irq(&zone
->lru_lock
);
1334 if (buffer_heads_over_limit
)
1335 pagevec_strip(&pvec
);
1336 __pagevec_release(&pvec
);
1337 spin_lock_irq(&zone
->lru_lock
);
1340 __mod_zone_page_state(zone
, NR_LRU_BASE
+ lru
, pgmoved
);
1341 if (!is_active_lru(lru
))
1342 __count_vm_events(PGDEACTIVATE
, pgmoved
);
1345 static void shrink_active_list(unsigned long nr_pages
, struct zone
*zone
,
1346 struct scan_control
*sc
, int priority
, int file
)
1348 unsigned long nr_taken
;
1349 unsigned long pgscanned
;
1350 unsigned long vm_flags
;
1351 LIST_HEAD(l_hold
); /* The pages which were snipped off */
1352 LIST_HEAD(l_active
);
1353 LIST_HEAD(l_inactive
);
1355 struct zone_reclaim_stat
*reclaim_stat
= get_reclaim_stat(zone
, sc
);
1356 unsigned long nr_rotated
= 0;
1359 spin_lock_irq(&zone
->lru_lock
);
1360 nr_taken
= sc
->isolate_pages(nr_pages
, &l_hold
, &pgscanned
, sc
->order
,
1361 ISOLATE_ACTIVE
, zone
,
1362 sc
->mem_cgroup
, 1, file
);
1364 * zone->pages_scanned is used for detect zone's oom
1365 * mem_cgroup remembers nr_scan by itself.
1367 if (scanning_global_lru(sc
)) {
1368 zone
->pages_scanned
+= pgscanned
;
1370 reclaim_stat
->recent_scanned
[file
] += nr_taken
;
1372 __count_zone_vm_events(PGREFILL
, zone
, pgscanned
);
1374 __mod_zone_page_state(zone
, NR_ACTIVE_FILE
, -nr_taken
);
1376 __mod_zone_page_state(zone
, NR_ACTIVE_ANON
, -nr_taken
);
1377 __mod_zone_page_state(zone
, NR_ISOLATED_ANON
+ file
, nr_taken
);
1378 spin_unlock_irq(&zone
->lru_lock
);
1380 while (!list_empty(&l_hold
)) {
1382 page
= lru_to_page(&l_hold
);
1383 list_del(&page
->lru
);
1385 if (unlikely(!page_evictable(page
, NULL
))) {
1386 putback_lru_page(page
);
1390 /* page_referenced clears PageReferenced */
1391 if (page_mapping_inuse(page
) &&
1392 page_referenced(page
, 0, sc
->mem_cgroup
, &vm_flags
)) {
1395 * Identify referenced, file-backed active pages and
1396 * give them one more trip around the active list. So
1397 * that executable code get better chances to stay in
1398 * memory under moderate memory pressure. Anon pages
1399 * are not likely to be evicted by use-once streaming
1400 * IO, plus JVM can create lots of anon VM_EXEC pages,
1401 * so we ignore them here.
1403 if ((vm_flags
& VM_EXEC
) && page_is_file_cache(page
)) {
1404 list_add(&page
->lru
, &l_active
);
1409 ClearPageActive(page
); /* we are de-activating */
1410 list_add(&page
->lru
, &l_inactive
);
1414 * Move pages back to the lru list.
1416 spin_lock_irq(&zone
->lru_lock
);
1418 * Count referenced pages from currently used mappings as rotated,
1419 * even though only some of them are actually re-activated. This
1420 * helps balance scan pressure between file and anonymous pages in
1423 reclaim_stat
->recent_rotated
[file
] += nr_rotated
;
1425 move_active_pages_to_lru(zone
, &l_active
,
1426 LRU_ACTIVE
+ file
* LRU_FILE
);
1427 move_active_pages_to_lru(zone
, &l_inactive
,
1428 LRU_BASE
+ file
* LRU_FILE
);
1429 __mod_zone_page_state(zone
, NR_ISOLATED_ANON
+ file
, -nr_taken
);
1430 spin_unlock_irq(&zone
->lru_lock
);
1433 static int inactive_anon_is_low_global(struct zone
*zone
)
1435 unsigned long active
, inactive
;
1437 active
= zone_page_state(zone
, NR_ACTIVE_ANON
);
1438 inactive
= zone_page_state(zone
, NR_INACTIVE_ANON
);
1440 if (inactive
* zone
->inactive_ratio
< active
)
1447 * inactive_anon_is_low - check if anonymous pages need to be deactivated
1448 * @zone: zone to check
1449 * @sc: scan control of this context
1451 * Returns true if the zone does not have enough inactive anon pages,
1452 * meaning some active anon pages need to be deactivated.
1454 static int inactive_anon_is_low(struct zone
*zone
, struct scan_control
*sc
)
1458 if (scanning_global_lru(sc
))
1459 low
= inactive_anon_is_low_global(zone
);
1461 low
= mem_cgroup_inactive_anon_is_low(sc
->mem_cgroup
);
1465 static int inactive_file_is_low_global(struct zone
*zone
)
1467 unsigned long active
, inactive
;
1469 active
= zone_page_state(zone
, NR_ACTIVE_FILE
);
1470 inactive
= zone_page_state(zone
, NR_INACTIVE_FILE
);
1472 return (active
> inactive
);
1476 * inactive_file_is_low - check if file pages need to be deactivated
1477 * @zone: zone to check
1478 * @sc: scan control of this context
1480 * When the system is doing streaming IO, memory pressure here
1481 * ensures that active file pages get deactivated, until more
1482 * than half of the file pages are on the inactive list.
1484 * Once we get to that situation, protect the system's working
1485 * set from being evicted by disabling active file page aging.
1487 * This uses a different ratio than the anonymous pages, because
1488 * the page cache uses a use-once replacement algorithm.
1490 static int inactive_file_is_low(struct zone
*zone
, struct scan_control
*sc
)
1494 if (scanning_global_lru(sc
))
1495 low
= inactive_file_is_low_global(zone
);
1497 low
= mem_cgroup_inactive_file_is_low(sc
->mem_cgroup
);
1501 static int inactive_list_is_low(struct zone
*zone
, struct scan_control
*sc
,
1505 return inactive_file_is_low(zone
, sc
);
1507 return inactive_anon_is_low(zone
, sc
);
1510 static unsigned long shrink_list(enum lru_list lru
, unsigned long nr_to_scan
,
1511 struct zone
*zone
, struct scan_control
*sc
, int priority
)
1513 int file
= is_file_lru(lru
);
1515 if (is_active_lru(lru
)) {
1516 if (inactive_list_is_low(zone
, sc
, file
))
1517 shrink_active_list(nr_to_scan
, zone
, sc
, priority
, file
);
1521 return shrink_inactive_list(nr_to_scan
, zone
, sc
, priority
, file
);
1525 * Determine how aggressively the anon and file LRU lists should be
1526 * scanned. The relative value of each set of LRU lists is determined
1527 * by looking at the fraction of the pages scanned we did rotate back
1528 * onto the active list instead of evict.
1530 * percent[0] specifies how much pressure to put on ram/swap backed
1531 * memory, while percent[1] determines pressure on the file LRUs.
1533 static void get_scan_ratio(struct zone
*zone
, struct scan_control
*sc
,
1534 unsigned long *percent
)
1536 unsigned long anon
, file
, free
;
1537 unsigned long anon_prio
, file_prio
;
1538 unsigned long ap
, fp
;
1539 struct zone_reclaim_stat
*reclaim_stat
= get_reclaim_stat(zone
, sc
);
1541 anon
= zone_nr_lru_pages(zone
, sc
, LRU_ACTIVE_ANON
) +
1542 zone_nr_lru_pages(zone
, sc
, LRU_INACTIVE_ANON
);
1543 file
= zone_nr_lru_pages(zone
, sc
, LRU_ACTIVE_FILE
) +
1544 zone_nr_lru_pages(zone
, sc
, LRU_INACTIVE_FILE
);
1546 if (scanning_global_lru(sc
)) {
1547 free
= zone_page_state(zone
, NR_FREE_PAGES
);
1548 /* If we have very few page cache pages,
1549 force-scan anon pages. */
1550 if (unlikely(file
+ free
<= high_wmark_pages(zone
))) {
1558 * OK, so we have swap space and a fair amount of page cache
1559 * pages. We use the recently rotated / recently scanned
1560 * ratios to determine how valuable each cache is.
1562 * Because workloads change over time (and to avoid overflow)
1563 * we keep these statistics as a floating average, which ends
1564 * up weighing recent references more than old ones.
1566 * anon in [0], file in [1]
1568 if (unlikely(reclaim_stat
->recent_scanned
[0] > anon
/ 4)) {
1569 spin_lock_irq(&zone
->lru_lock
);
1570 reclaim_stat
->recent_scanned
[0] /= 2;
1571 reclaim_stat
->recent_rotated
[0] /= 2;
1572 spin_unlock_irq(&zone
->lru_lock
);
1575 if (unlikely(reclaim_stat
->recent_scanned
[1] > file
/ 4)) {
1576 spin_lock_irq(&zone
->lru_lock
);
1577 reclaim_stat
->recent_scanned
[1] /= 2;
1578 reclaim_stat
->recent_rotated
[1] /= 2;
1579 spin_unlock_irq(&zone
->lru_lock
);
1583 * With swappiness at 100, anonymous and file have the same priority.
1584 * This scanning priority is essentially the inverse of IO cost.
1586 anon_prio
= sc
->swappiness
;
1587 file_prio
= 200 - sc
->swappiness
;
1590 * The amount of pressure on anon vs file pages is inversely
1591 * proportional to the fraction of recently scanned pages on
1592 * each list that were recently referenced and in active use.
1594 ap
= (anon_prio
+ 1) * (reclaim_stat
->recent_scanned
[0] + 1);
1595 ap
/= reclaim_stat
->recent_rotated
[0] + 1;
1597 fp
= (file_prio
+ 1) * (reclaim_stat
->recent_scanned
[1] + 1);
1598 fp
/= reclaim_stat
->recent_rotated
[1] + 1;
1600 /* Normalize to percentages */
1601 percent
[0] = 100 * ap
/ (ap
+ fp
+ 1);
1602 percent
[1] = 100 - percent
[0];
1606 * Smallish @nr_to_scan's are deposited in @nr_saved_scan,
1607 * until we collected @swap_cluster_max pages to scan.
1609 static unsigned long nr_scan_try_batch(unsigned long nr_to_scan
,
1610 unsigned long *nr_saved_scan
)
1614 *nr_saved_scan
+= nr_to_scan
;
1615 nr
= *nr_saved_scan
;
1617 if (nr
>= SWAP_CLUSTER_MAX
)
1626 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1628 static void shrink_zone(int priority
, struct zone
*zone
,
1629 struct scan_control
*sc
)
1631 unsigned long nr
[NR_LRU_LISTS
];
1632 unsigned long nr_to_scan
;
1633 unsigned long percent
[2]; /* anon @ 0; file @ 1 */
1635 unsigned long nr_reclaimed
= sc
->nr_reclaimed
;
1636 unsigned long nr_to_reclaim
= sc
->nr_to_reclaim
;
1637 struct zone_reclaim_stat
*reclaim_stat
= get_reclaim_stat(zone
, sc
);
1640 /* If we have no swap space, do not bother scanning anon pages. */
1641 if (!sc
->may_swap
|| (nr_swap_pages
<= 0)) {
1646 get_scan_ratio(zone
, sc
, percent
);
1648 for_each_evictable_lru(l
) {
1649 int file
= is_file_lru(l
);
1652 scan
= zone_nr_lru_pages(zone
, sc
, l
);
1653 if (priority
|| noswap
) {
1655 scan
= (scan
* percent
[file
]) / 100;
1657 nr
[l
] = nr_scan_try_batch(scan
,
1658 &reclaim_stat
->nr_saved_scan
[l
]);
1661 while (nr
[LRU_INACTIVE_ANON
] || nr
[LRU_ACTIVE_FILE
] ||
1662 nr
[LRU_INACTIVE_FILE
]) {
1663 for_each_evictable_lru(l
) {
1665 nr_to_scan
= min_t(unsigned long,
1666 nr
[l
], SWAP_CLUSTER_MAX
);
1667 nr
[l
] -= nr_to_scan
;
1669 nr_reclaimed
+= shrink_list(l
, nr_to_scan
,
1670 zone
, sc
, priority
);
1674 * On large memory systems, scan >> priority can become
1675 * really large. This is fine for the starting priority;
1676 * we want to put equal scanning pressure on each zone.
1677 * However, if the VM has a harder time of freeing pages,
1678 * with multiple processes reclaiming pages, the total
1679 * freeing target can get unreasonably large.
1681 if (nr_reclaimed
>= nr_to_reclaim
&& priority
< DEF_PRIORITY
)
1685 sc
->nr_reclaimed
= nr_reclaimed
;
1688 * Even if we did not try to evict anon pages at all, we want to
1689 * rebalance the anon lru active/inactive ratio.
1691 if (inactive_anon_is_low(zone
, sc
) && nr_swap_pages
> 0)
1692 shrink_active_list(SWAP_CLUSTER_MAX
, zone
, sc
, priority
, 0);
1694 throttle_vm_writeout(sc
->gfp_mask
);
1698 * This is the direct reclaim path, for page-allocating processes. We only
1699 * try to reclaim pages from zones which will satisfy the caller's allocation
1702 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
1704 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1706 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
1707 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
1708 * zone defense algorithm.
1710 * If a zone is deemed to be full of pinned pages then just give it a light
1711 * scan then give up on it.
1713 static void shrink_zones(int priority
, struct zonelist
*zonelist
,
1714 struct scan_control
*sc
)
1716 enum zone_type high_zoneidx
= gfp_zone(sc
->gfp_mask
);
1720 sc
->all_unreclaimable
= 1;
1721 for_each_zone_zonelist_nodemask(zone
, z
, zonelist
, high_zoneidx
,
1723 if (!populated_zone(zone
))
1726 * Take care memory controller reclaiming has small influence
1729 if (scanning_global_lru(sc
)) {
1730 if (!cpuset_zone_allowed_hardwall(zone
, GFP_KERNEL
))
1732 note_zone_scanning_priority(zone
, priority
);
1734 if (zone_is_all_unreclaimable(zone
) &&
1735 priority
!= DEF_PRIORITY
)
1736 continue; /* Let kswapd poll it */
1737 sc
->all_unreclaimable
= 0;
1740 * Ignore cpuset limitation here. We just want to reduce
1741 * # of used pages by us regardless of memory shortage.
1743 sc
->all_unreclaimable
= 0;
1744 mem_cgroup_note_reclaim_priority(sc
->mem_cgroup
,
1748 shrink_zone(priority
, zone
, sc
);
1753 * This is the main entry point to direct page reclaim.
1755 * If a full scan of the inactive list fails to free enough memory then we
1756 * are "out of memory" and something needs to be killed.
1758 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1759 * high - the zone may be full of dirty or under-writeback pages, which this
1760 * caller can't do much about. We kick the writeback threads and take explicit
1761 * naps in the hope that some of these pages can be written. But if the
1762 * allocating task holds filesystem locks which prevent writeout this might not
1763 * work, and the allocation attempt will fail.
1765 * returns: 0, if no pages reclaimed
1766 * else, the number of pages reclaimed
1768 static unsigned long do_try_to_free_pages(struct zonelist
*zonelist
,
1769 struct scan_control
*sc
)
1772 unsigned long ret
= 0;
1773 unsigned long total_scanned
= 0;
1774 struct reclaim_state
*reclaim_state
= current
->reclaim_state
;
1775 unsigned long lru_pages
= 0;
1778 enum zone_type high_zoneidx
= gfp_zone(sc
->gfp_mask
);
1779 unsigned long writeback_threshold
;
1781 delayacct_freepages_start();
1783 if (scanning_global_lru(sc
))
1784 count_vm_event(ALLOCSTALL
);
1786 * mem_cgroup will not do shrink_slab.
1788 if (scanning_global_lru(sc
)) {
1789 for_each_zone_zonelist(zone
, z
, zonelist
, high_zoneidx
) {
1791 if (!cpuset_zone_allowed_hardwall(zone
, GFP_KERNEL
))
1794 lru_pages
+= zone_reclaimable_pages(zone
);
1798 for (priority
= DEF_PRIORITY
; priority
>= 0; priority
--) {
1801 disable_swap_token();
1802 shrink_zones(priority
, zonelist
, sc
);
1804 * Don't shrink slabs when reclaiming memory from
1805 * over limit cgroups
1807 if (scanning_global_lru(sc
)) {
1808 shrink_slab(sc
->nr_scanned
, sc
->gfp_mask
, lru_pages
);
1809 if (reclaim_state
) {
1810 sc
->nr_reclaimed
+= reclaim_state
->reclaimed_slab
;
1811 reclaim_state
->reclaimed_slab
= 0;
1814 total_scanned
+= sc
->nr_scanned
;
1815 if (sc
->nr_reclaimed
>= sc
->nr_to_reclaim
) {
1816 ret
= sc
->nr_reclaimed
;
1821 * Try to write back as many pages as we just scanned. This
1822 * tends to cause slow streaming writers to write data to the
1823 * disk smoothly, at the dirtying rate, which is nice. But
1824 * that's undesirable in laptop mode, where we *want* lumpy
1825 * writeout. So in laptop mode, write out the whole world.
1827 writeback_threshold
= sc
->nr_to_reclaim
+ sc
->nr_to_reclaim
/ 2;
1828 if (total_scanned
> writeback_threshold
) {
1829 wakeup_flusher_threads(laptop_mode
? 0 : total_scanned
);
1830 sc
->may_writepage
= 1;
1833 /* Take a nap, wait for some writeback to complete */
1834 if (!sc
->hibernation_mode
&& sc
->nr_scanned
&&
1835 priority
< DEF_PRIORITY
- 2)
1836 congestion_wait(BLK_RW_ASYNC
, HZ
/10);
1838 /* top priority shrink_zones still had more to do? don't OOM, then */
1839 if (!sc
->all_unreclaimable
&& scanning_global_lru(sc
))
1840 ret
= sc
->nr_reclaimed
;
1843 * Now that we've scanned all the zones at this priority level, note
1844 * that level within the zone so that the next thread which performs
1845 * scanning of this zone will immediately start out at this priority
1846 * level. This affects only the decision whether or not to bring
1847 * mapped pages onto the inactive list.
1852 if (scanning_global_lru(sc
)) {
1853 for_each_zone_zonelist(zone
, z
, zonelist
, high_zoneidx
) {
1855 if (!cpuset_zone_allowed_hardwall(zone
, GFP_KERNEL
))
1858 zone
->prev_priority
= priority
;
1861 mem_cgroup_record_reclaim_priority(sc
->mem_cgroup
, priority
);
1863 delayacct_freepages_end();
1868 unsigned long try_to_free_pages(struct zonelist
*zonelist
, int order
,
1869 gfp_t gfp_mask
, nodemask_t
*nodemask
)
1871 struct scan_control sc
= {
1872 .gfp_mask
= gfp_mask
,
1873 .may_writepage
= !laptop_mode
,
1874 .nr_to_reclaim
= SWAP_CLUSTER_MAX
,
1877 .swappiness
= vm_swappiness
,
1880 .isolate_pages
= isolate_pages_global
,
1881 .nodemask
= nodemask
,
1884 return do_try_to_free_pages(zonelist
, &sc
);
1887 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
1889 unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup
*mem
,
1890 gfp_t gfp_mask
, bool noswap
,
1891 unsigned int swappiness
,
1892 struct zone
*zone
, int nid
)
1894 struct scan_control sc
= {
1895 .may_writepage
= !laptop_mode
,
1897 .may_swap
= !noswap
,
1898 .swappiness
= swappiness
,
1901 .isolate_pages
= mem_cgroup_isolate_pages
,
1903 nodemask_t nm
= nodemask_of_node(nid
);
1905 sc
.gfp_mask
= (gfp_mask
& GFP_RECLAIM_MASK
) |
1906 (GFP_HIGHUSER_MOVABLE
& ~GFP_RECLAIM_MASK
);
1908 sc
.nr_reclaimed
= 0;
1911 * NOTE: Although we can get the priority field, using it
1912 * here is not a good idea, since it limits the pages we can scan.
1913 * if we don't reclaim here, the shrink_zone from balance_pgdat
1914 * will pick up pages from other mem cgroup's as well. We hack
1915 * the priority and make it zero.
1917 shrink_zone(0, zone
, &sc
);
1918 return sc
.nr_reclaimed
;
1921 unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup
*mem_cont
,
1924 unsigned int swappiness
)
1926 struct zonelist
*zonelist
;
1927 struct scan_control sc
= {
1928 .may_writepage
= !laptop_mode
,
1930 .may_swap
= !noswap
,
1931 .nr_to_reclaim
= SWAP_CLUSTER_MAX
,
1932 .swappiness
= swappiness
,
1934 .mem_cgroup
= mem_cont
,
1935 .isolate_pages
= mem_cgroup_isolate_pages
,
1936 .nodemask
= NULL
, /* we don't care the placement */
1939 sc
.gfp_mask
= (gfp_mask
& GFP_RECLAIM_MASK
) |
1940 (GFP_HIGHUSER_MOVABLE
& ~GFP_RECLAIM_MASK
);
1941 zonelist
= NODE_DATA(numa_node_id())->node_zonelists
;
1942 return do_try_to_free_pages(zonelist
, &sc
);
1946 /* is kswapd sleeping prematurely? */
1947 static int sleeping_prematurely(pg_data_t
*pgdat
, int order
, long remaining
)
1951 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
1955 /* If after HZ/10, a zone is below the high mark, it's premature */
1956 for (i
= 0; i
< pgdat
->nr_zones
; i
++) {
1957 struct zone
*zone
= pgdat
->node_zones
+ i
;
1959 if (!populated_zone(zone
))
1962 if (zone_is_all_unreclaimable(zone
))
1965 if (!zone_watermark_ok(zone
, order
, high_wmark_pages(zone
),
1974 * For kswapd, balance_pgdat() will work across all this node's zones until
1975 * they are all at high_wmark_pages(zone).
1977 * Returns the number of pages which were actually freed.
1979 * There is special handling here for zones which are full of pinned pages.
1980 * This can happen if the pages are all mlocked, or if they are all used by
1981 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1982 * What we do is to detect the case where all pages in the zone have been
1983 * scanned twice and there has been zero successful reclaim. Mark the zone as
1984 * dead and from now on, only perform a short scan. Basically we're polling
1985 * the zone for when the problem goes away.
1987 * kswapd scans the zones in the highmem->normal->dma direction. It skips
1988 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
1989 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
1990 * lower zones regardless of the number of free pages in the lower zones. This
1991 * interoperates with the page allocator fallback scheme to ensure that aging
1992 * of pages is balanced across the zones.
1994 static unsigned long balance_pgdat(pg_data_t
*pgdat
, int order
)
1999 unsigned long total_scanned
;
2000 struct reclaim_state
*reclaim_state
= current
->reclaim_state
;
2001 struct scan_control sc
= {
2002 .gfp_mask
= GFP_KERNEL
,
2006 * kswapd doesn't want to be bailed out while reclaim. because
2007 * we want to put equal scanning pressure on each zone.
2009 .nr_to_reclaim
= ULONG_MAX
,
2010 .swappiness
= vm_swappiness
,
2013 .isolate_pages
= isolate_pages_global
,
2016 * temp_priority is used to remember the scanning priority at which
2017 * this zone was successfully refilled to
2018 * free_pages == high_wmark_pages(zone).
2020 int temp_priority
[MAX_NR_ZONES
];
2024 sc
.nr_reclaimed
= 0;
2025 sc
.may_writepage
= !laptop_mode
;
2026 count_vm_event(PAGEOUTRUN
);
2028 for (i
= 0; i
< pgdat
->nr_zones
; i
++)
2029 temp_priority
[i
] = DEF_PRIORITY
;
2031 for (priority
= DEF_PRIORITY
; priority
>= 0; priority
--) {
2032 int end_zone
= 0; /* Inclusive. 0 = ZONE_DMA */
2033 unsigned long lru_pages
= 0;
2034 int has_under_min_watermark_zone
= 0;
2036 /* The swap token gets in the way of swapout... */
2038 disable_swap_token();
2043 * Scan in the highmem->dma direction for the highest
2044 * zone which needs scanning
2046 for (i
= pgdat
->nr_zones
- 1; i
>= 0; i
--) {
2047 struct zone
*zone
= pgdat
->node_zones
+ i
;
2049 if (!populated_zone(zone
))
2052 if (zone_is_all_unreclaimable(zone
) &&
2053 priority
!= DEF_PRIORITY
)
2057 * Do some background aging of the anon list, to give
2058 * pages a chance to be referenced before reclaiming.
2060 if (inactive_anon_is_low(zone
, &sc
))
2061 shrink_active_list(SWAP_CLUSTER_MAX
, zone
,
2064 if (!zone_watermark_ok(zone
, order
,
2065 high_wmark_pages(zone
), 0, 0)) {
2073 for (i
= 0; i
<= end_zone
; i
++) {
2074 struct zone
*zone
= pgdat
->node_zones
+ i
;
2076 lru_pages
+= zone_reclaimable_pages(zone
);
2080 * Now scan the zone in the dma->highmem direction, stopping
2081 * at the last zone which needs scanning.
2083 * We do this because the page allocator works in the opposite
2084 * direction. This prevents the page allocator from allocating
2085 * pages behind kswapd's direction of progress, which would
2086 * cause too much scanning of the lower zones.
2088 for (i
= 0; i
<= end_zone
; i
++) {
2089 struct zone
*zone
= pgdat
->node_zones
+ i
;
2093 if (!populated_zone(zone
))
2096 if (zone_is_all_unreclaimable(zone
) &&
2097 priority
!= DEF_PRIORITY
)
2100 if (!zone_watermark_ok(zone
, order
,
2101 high_wmark_pages(zone
), end_zone
, 0))
2103 temp_priority
[i
] = priority
;
2105 note_zone_scanning_priority(zone
, priority
);
2107 nid
= pgdat
->node_id
;
2108 zid
= zone_idx(zone
);
2110 * Call soft limit reclaim before calling shrink_zone.
2111 * For now we ignore the return value
2113 mem_cgroup_soft_limit_reclaim(zone
, order
, sc
.gfp_mask
,
2116 * We put equal pressure on every zone, unless one
2117 * zone has way too many pages free already.
2119 if (!zone_watermark_ok(zone
, order
,
2120 8*high_wmark_pages(zone
), end_zone
, 0))
2121 shrink_zone(priority
, zone
, &sc
);
2122 reclaim_state
->reclaimed_slab
= 0;
2123 nr_slab
= shrink_slab(sc
.nr_scanned
, GFP_KERNEL
,
2125 sc
.nr_reclaimed
+= reclaim_state
->reclaimed_slab
;
2126 total_scanned
+= sc
.nr_scanned
;
2127 if (zone_is_all_unreclaimable(zone
))
2129 if (nr_slab
== 0 && zone
->pages_scanned
>=
2130 (zone_reclaimable_pages(zone
) * 6))
2132 ZONE_ALL_UNRECLAIMABLE
);
2134 * If we've done a decent amount of scanning and
2135 * the reclaim ratio is low, start doing writepage
2136 * even in laptop mode
2138 if (total_scanned
> SWAP_CLUSTER_MAX
* 2 &&
2139 total_scanned
> sc
.nr_reclaimed
+ sc
.nr_reclaimed
/ 2)
2140 sc
.may_writepage
= 1;
2143 * We are still under min water mark. it mean we have
2144 * GFP_ATOMIC allocation failure risk. Hurry up!
2146 if (!zone_watermark_ok(zone
, order
, min_wmark_pages(zone
),
2148 has_under_min_watermark_zone
= 1;
2152 break; /* kswapd: all done */
2154 * OK, kswapd is getting into trouble. Take a nap, then take
2155 * another pass across the zones.
2157 if (total_scanned
&& (priority
< DEF_PRIORITY
- 2)) {
2158 if (has_under_min_watermark_zone
)
2159 count_vm_event(KSWAPD_SKIP_CONGESTION_WAIT
);
2161 congestion_wait(BLK_RW_ASYNC
, HZ
/10);
2165 * We do this so kswapd doesn't build up large priorities for
2166 * example when it is freeing in parallel with allocators. It
2167 * matches the direct reclaim path behaviour in terms of impact
2168 * on zone->*_priority.
2170 if (sc
.nr_reclaimed
>= SWAP_CLUSTER_MAX
)
2175 * Note within each zone the priority level at which this zone was
2176 * brought into a happy state. So that the next thread which scans this
2177 * zone will start out at that priority level.
2179 for (i
= 0; i
< pgdat
->nr_zones
; i
++) {
2180 struct zone
*zone
= pgdat
->node_zones
+ i
;
2182 zone
->prev_priority
= temp_priority
[i
];
2184 if (!all_zones_ok
) {
2190 * Fragmentation may mean that the system cannot be
2191 * rebalanced for high-order allocations in all zones.
2192 * At this point, if nr_reclaimed < SWAP_CLUSTER_MAX,
2193 * it means the zones have been fully scanned and are still
2194 * not balanced. For high-order allocations, there is
2195 * little point trying all over again as kswapd may
2198 * Instead, recheck all watermarks at order-0 as they
2199 * are the most important. If watermarks are ok, kswapd will go
2200 * back to sleep. High-order users can still perform direct
2201 * reclaim if they wish.
2203 if (sc
.nr_reclaimed
< SWAP_CLUSTER_MAX
)
2204 order
= sc
.order
= 0;
2209 return sc
.nr_reclaimed
;
2213 * The background pageout daemon, started as a kernel thread
2214 * from the init process.
2216 * This basically trickles out pages so that we have _some_
2217 * free memory available even if there is no other activity
2218 * that frees anything up. This is needed for things like routing
2219 * etc, where we otherwise might have all activity going on in
2220 * asynchronous contexts that cannot page things out.
2222 * If there are applications that are active memory-allocators
2223 * (most normal use), this basically shouldn't matter.
2225 static int kswapd(void *p
)
2227 unsigned long order
;
2228 pg_data_t
*pgdat
= (pg_data_t
*)p
;
2229 struct task_struct
*tsk
= current
;
2231 struct reclaim_state reclaim_state
= {
2232 .reclaimed_slab
= 0,
2234 const struct cpumask
*cpumask
= cpumask_of_node(pgdat
->node_id
);
2236 lockdep_set_current_reclaim_state(GFP_KERNEL
);
2238 if (!cpumask_empty(cpumask
))
2239 set_cpus_allowed_ptr(tsk
, cpumask
);
2240 current
->reclaim_state
= &reclaim_state
;
2243 * Tell the memory management that we're a "memory allocator",
2244 * and that if we need more memory we should get access to it
2245 * regardless (see "__alloc_pages()"). "kswapd" should
2246 * never get caught in the normal page freeing logic.
2248 * (Kswapd normally doesn't need memory anyway, but sometimes
2249 * you need a small amount of memory in order to be able to
2250 * page out something else, and this flag essentially protects
2251 * us from recursively trying to free more memory as we're
2252 * trying to free the first piece of memory in the first place).
2254 tsk
->flags
|= PF_MEMALLOC
| PF_SWAPWRITE
| PF_KSWAPD
;
2259 unsigned long new_order
;
2262 prepare_to_wait(&pgdat
->kswapd_wait
, &wait
, TASK_INTERRUPTIBLE
);
2263 new_order
= pgdat
->kswapd_max_order
;
2264 pgdat
->kswapd_max_order
= 0;
2265 if (order
< new_order
) {
2267 * Don't sleep if someone wants a larger 'order'
2272 if (!freezing(current
) && !kthread_should_stop()) {
2275 /* Try to sleep for a short interval */
2276 if (!sleeping_prematurely(pgdat
, order
, remaining
)) {
2277 remaining
= schedule_timeout(HZ
/10);
2278 finish_wait(&pgdat
->kswapd_wait
, &wait
);
2279 prepare_to_wait(&pgdat
->kswapd_wait
, &wait
, TASK_INTERRUPTIBLE
);
2283 * After a short sleep, check if it was a
2284 * premature sleep. If not, then go fully
2285 * to sleep until explicitly woken up
2287 if (!sleeping_prematurely(pgdat
, order
, remaining
))
2291 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY
);
2293 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY
);
2297 order
= pgdat
->kswapd_max_order
;
2299 finish_wait(&pgdat
->kswapd_wait
, &wait
);
2301 ret
= try_to_freeze();
2302 if (kthread_should_stop())
2306 * We can speed up thawing tasks if we don't call balance_pgdat
2307 * after returning from the refrigerator
2310 balance_pgdat(pgdat
, order
);
2316 * A zone is low on free memory, so wake its kswapd task to service it.
2318 void wakeup_kswapd(struct zone
*zone
, int order
)
2322 if (!populated_zone(zone
))
2325 pgdat
= zone
->zone_pgdat
;
2326 if (zone_watermark_ok(zone
, order
, low_wmark_pages(zone
), 0, 0))
2328 if (pgdat
->kswapd_max_order
< order
)
2329 pgdat
->kswapd_max_order
= order
;
2330 if (!cpuset_zone_allowed_hardwall(zone
, GFP_KERNEL
))
2332 if (!waitqueue_active(&pgdat
->kswapd_wait
))
2334 wake_up_interruptible(&pgdat
->kswapd_wait
);
2338 * The reclaimable count would be mostly accurate.
2339 * The less reclaimable pages may be
2340 * - mlocked pages, which will be moved to unevictable list when encountered
2341 * - mapped pages, which may require several travels to be reclaimed
2342 * - dirty pages, which is not "instantly" reclaimable
2344 unsigned long global_reclaimable_pages(void)
2348 nr
= global_page_state(NR_ACTIVE_FILE
) +
2349 global_page_state(NR_INACTIVE_FILE
);
2351 if (nr_swap_pages
> 0)
2352 nr
+= global_page_state(NR_ACTIVE_ANON
) +
2353 global_page_state(NR_INACTIVE_ANON
);
2358 unsigned long zone_reclaimable_pages(struct zone
*zone
)
2362 nr
= zone_page_state(zone
, NR_ACTIVE_FILE
) +
2363 zone_page_state(zone
, NR_INACTIVE_FILE
);
2365 if (nr_swap_pages
> 0)
2366 nr
+= zone_page_state(zone
, NR_ACTIVE_ANON
) +
2367 zone_page_state(zone
, NR_INACTIVE_ANON
);
2372 #ifdef CONFIG_HIBERNATION
2374 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
2377 * Rather than trying to age LRUs the aim is to preserve the overall
2378 * LRU order by reclaiming preferentially
2379 * inactive > active > active referenced > active mapped
2381 unsigned long shrink_all_memory(unsigned long nr_to_reclaim
)
2383 struct reclaim_state reclaim_state
;
2384 struct scan_control sc
= {
2385 .gfp_mask
= GFP_HIGHUSER_MOVABLE
,
2389 .nr_to_reclaim
= nr_to_reclaim
,
2390 .hibernation_mode
= 1,
2391 .swappiness
= vm_swappiness
,
2393 .isolate_pages
= isolate_pages_global
,
2395 struct zonelist
* zonelist
= node_zonelist(numa_node_id(), sc
.gfp_mask
);
2396 struct task_struct
*p
= current
;
2397 unsigned long nr_reclaimed
;
2399 p
->flags
|= PF_MEMALLOC
;
2400 lockdep_set_current_reclaim_state(sc
.gfp_mask
);
2401 reclaim_state
.reclaimed_slab
= 0;
2402 p
->reclaim_state
= &reclaim_state
;
2404 nr_reclaimed
= do_try_to_free_pages(zonelist
, &sc
);
2406 p
->reclaim_state
= NULL
;
2407 lockdep_clear_current_reclaim_state();
2408 p
->flags
&= ~PF_MEMALLOC
;
2410 return nr_reclaimed
;
2412 #endif /* CONFIG_HIBERNATION */
2414 /* It's optimal to keep kswapds on the same CPUs as their memory, but
2415 not required for correctness. So if the last cpu in a node goes
2416 away, we get changed to run anywhere: as the first one comes back,
2417 restore their cpu bindings. */
2418 static int __devinit
cpu_callback(struct notifier_block
*nfb
,
2419 unsigned long action
, void *hcpu
)
2423 if (action
== CPU_ONLINE
|| action
== CPU_ONLINE_FROZEN
) {
2424 for_each_node_state(nid
, N_HIGH_MEMORY
) {
2425 pg_data_t
*pgdat
= NODE_DATA(nid
);
2426 const struct cpumask
*mask
;
2428 mask
= cpumask_of_node(pgdat
->node_id
);
2430 if (cpumask_any_and(cpu_online_mask
, mask
) < nr_cpu_ids
)
2431 /* One of our CPUs online: restore mask */
2432 set_cpus_allowed_ptr(pgdat
->kswapd
, mask
);
2439 * This kswapd start function will be called by init and node-hot-add.
2440 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
2442 int kswapd_run(int nid
)
2444 pg_data_t
*pgdat
= NODE_DATA(nid
);
2450 pgdat
->kswapd
= kthread_run(kswapd
, pgdat
, "kswapd%d", nid
);
2451 if (IS_ERR(pgdat
->kswapd
)) {
2452 /* failure at boot is fatal */
2453 BUG_ON(system_state
== SYSTEM_BOOTING
);
2454 printk("Failed to start kswapd on node %d\n",nid
);
2461 * Called by memory hotplug when all memory in a node is offlined.
2463 void kswapd_stop(int nid
)
2465 struct task_struct
*kswapd
= NODE_DATA(nid
)->kswapd
;
2468 kthread_stop(kswapd
);
2471 static int __init
kswapd_init(void)
2476 for_each_node_state(nid
, N_HIGH_MEMORY
)
2478 hotcpu_notifier(cpu_callback
, 0);
2482 module_init(kswapd_init
)
2488 * If non-zero call zone_reclaim when the number of free pages falls below
2491 int zone_reclaim_mode __read_mostly
;
2493 #define RECLAIM_OFF 0
2494 #define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
2495 #define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
2496 #define RECLAIM_SWAP (1<<2) /* Swap pages out during reclaim */
2499 * Priority for ZONE_RECLAIM. This determines the fraction of pages
2500 * of a node considered for each zone_reclaim. 4 scans 1/16th of
2503 #define ZONE_RECLAIM_PRIORITY 4
2506 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
2509 int sysctl_min_unmapped_ratio
= 1;
2512 * If the number of slab pages in a zone grows beyond this percentage then
2513 * slab reclaim needs to occur.
2515 int sysctl_min_slab_ratio
= 5;
2517 static inline unsigned long zone_unmapped_file_pages(struct zone
*zone
)
2519 unsigned long file_mapped
= zone_page_state(zone
, NR_FILE_MAPPED
);
2520 unsigned long file_lru
= zone_page_state(zone
, NR_INACTIVE_FILE
) +
2521 zone_page_state(zone
, NR_ACTIVE_FILE
);
2524 * It's possible for there to be more file mapped pages than
2525 * accounted for by the pages on the file LRU lists because
2526 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
2528 return (file_lru
> file_mapped
) ? (file_lru
- file_mapped
) : 0;
2531 /* Work out how many page cache pages we can reclaim in this reclaim_mode */
2532 static long zone_pagecache_reclaimable(struct zone
*zone
)
2534 long nr_pagecache_reclaimable
;
2538 * If RECLAIM_SWAP is set, then all file pages are considered
2539 * potentially reclaimable. Otherwise, we have to worry about
2540 * pages like swapcache and zone_unmapped_file_pages() provides
2543 if (zone_reclaim_mode
& RECLAIM_SWAP
)
2544 nr_pagecache_reclaimable
= zone_page_state(zone
, NR_FILE_PAGES
);
2546 nr_pagecache_reclaimable
= zone_unmapped_file_pages(zone
);
2548 /* If we can't clean pages, remove dirty pages from consideration */
2549 if (!(zone_reclaim_mode
& RECLAIM_WRITE
))
2550 delta
+= zone_page_state(zone
, NR_FILE_DIRTY
);
2552 /* Watch for any possible underflows due to delta */
2553 if (unlikely(delta
> nr_pagecache_reclaimable
))
2554 delta
= nr_pagecache_reclaimable
;
2556 return nr_pagecache_reclaimable
- delta
;
2560 * Try to free up some pages from this zone through reclaim.
2562 static int __zone_reclaim(struct zone
*zone
, gfp_t gfp_mask
, unsigned int order
)
2564 /* Minimum pages needed in order to stay on node */
2565 const unsigned long nr_pages
= 1 << order
;
2566 struct task_struct
*p
= current
;
2567 struct reclaim_state reclaim_state
;
2569 struct scan_control sc
= {
2570 .may_writepage
= !!(zone_reclaim_mode
& RECLAIM_WRITE
),
2571 .may_unmap
= !!(zone_reclaim_mode
& RECLAIM_SWAP
),
2573 .nr_to_reclaim
= max_t(unsigned long, nr_pages
,
2575 .gfp_mask
= gfp_mask
,
2576 .swappiness
= vm_swappiness
,
2578 .isolate_pages
= isolate_pages_global
,
2580 unsigned long slab_reclaimable
;
2582 disable_swap_token();
2585 * We need to be able to allocate from the reserves for RECLAIM_SWAP
2586 * and we also need to be able to write out pages for RECLAIM_WRITE
2589 p
->flags
|= PF_MEMALLOC
| PF_SWAPWRITE
;
2590 reclaim_state
.reclaimed_slab
= 0;
2591 p
->reclaim_state
= &reclaim_state
;
2593 if (zone_pagecache_reclaimable(zone
) > zone
->min_unmapped_pages
) {
2595 * Free memory by calling shrink zone with increasing
2596 * priorities until we have enough memory freed.
2598 priority
= ZONE_RECLAIM_PRIORITY
;
2600 note_zone_scanning_priority(zone
, priority
);
2601 shrink_zone(priority
, zone
, &sc
);
2603 } while (priority
>= 0 && sc
.nr_reclaimed
< nr_pages
);
2606 slab_reclaimable
= zone_page_state(zone
, NR_SLAB_RECLAIMABLE
);
2607 if (slab_reclaimable
> zone
->min_slab_pages
) {
2609 * shrink_slab() does not currently allow us to determine how
2610 * many pages were freed in this zone. So we take the current
2611 * number of slab pages and shake the slab until it is reduced
2612 * by the same nr_pages that we used for reclaiming unmapped
2615 * Note that shrink_slab will free memory on all zones and may
2618 while (shrink_slab(sc
.nr_scanned
, gfp_mask
, order
) &&
2619 zone_page_state(zone
, NR_SLAB_RECLAIMABLE
) >
2620 slab_reclaimable
- nr_pages
)
2624 * Update nr_reclaimed by the number of slab pages we
2625 * reclaimed from this zone.
2627 sc
.nr_reclaimed
+= slab_reclaimable
-
2628 zone_page_state(zone
, NR_SLAB_RECLAIMABLE
);
2631 p
->reclaim_state
= NULL
;
2632 current
->flags
&= ~(PF_MEMALLOC
| PF_SWAPWRITE
);
2633 return sc
.nr_reclaimed
>= nr_pages
;
2636 int zone_reclaim(struct zone
*zone
, gfp_t gfp_mask
, unsigned int order
)
2642 * Zone reclaim reclaims unmapped file backed pages and
2643 * slab pages if we are over the defined limits.
2645 * A small portion of unmapped file backed pages is needed for
2646 * file I/O otherwise pages read by file I/O will be immediately
2647 * thrown out if the zone is overallocated. So we do not reclaim
2648 * if less than a specified percentage of the zone is used by
2649 * unmapped file backed pages.
2651 if (zone_pagecache_reclaimable(zone
) <= zone
->min_unmapped_pages
&&
2652 zone_page_state(zone
, NR_SLAB_RECLAIMABLE
) <= zone
->min_slab_pages
)
2653 return ZONE_RECLAIM_FULL
;
2655 if (zone_is_all_unreclaimable(zone
))
2656 return ZONE_RECLAIM_FULL
;
2659 * Do not scan if the allocation should not be delayed.
2661 if (!(gfp_mask
& __GFP_WAIT
) || (current
->flags
& PF_MEMALLOC
))
2662 return ZONE_RECLAIM_NOSCAN
;
2665 * Only run zone reclaim on the local zone or on zones that do not
2666 * have associated processors. This will favor the local processor
2667 * over remote processors and spread off node memory allocations
2668 * as wide as possible.
2670 node_id
= zone_to_nid(zone
);
2671 if (node_state(node_id
, N_CPU
) && node_id
!= numa_node_id())
2672 return ZONE_RECLAIM_NOSCAN
;
2674 if (zone_test_and_set_flag(zone
, ZONE_RECLAIM_LOCKED
))
2675 return ZONE_RECLAIM_NOSCAN
;
2677 ret
= __zone_reclaim(zone
, gfp_mask
, order
);
2678 zone_clear_flag(zone
, ZONE_RECLAIM_LOCKED
);
2681 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED
);
2688 * page_evictable - test whether a page is evictable
2689 * @page: the page to test
2690 * @vma: the VMA in which the page is or will be mapped, may be NULL
2692 * Test whether page is evictable--i.e., should be placed on active/inactive
2693 * lists vs unevictable list. The vma argument is !NULL when called from the
2694 * fault path to determine how to instantate a new page.
2696 * Reasons page might not be evictable:
2697 * (1) page's mapping marked unevictable
2698 * (2) page is part of an mlocked VMA
2701 int page_evictable(struct page
*page
, struct vm_area_struct
*vma
)
2704 if (mapping_unevictable(page_mapping(page
)))
2707 if (PageMlocked(page
) || (vma
&& is_mlocked_vma(vma
, page
)))
2714 * check_move_unevictable_page - check page for evictability and move to appropriate zone lru list
2715 * @page: page to check evictability and move to appropriate lru list
2716 * @zone: zone page is in
2718 * Checks a page for evictability and moves the page to the appropriate
2721 * Restrictions: zone->lru_lock must be held, page must be on LRU and must
2722 * have PageUnevictable set.
2724 static void check_move_unevictable_page(struct page
*page
, struct zone
*zone
)
2726 VM_BUG_ON(PageActive(page
));
2729 ClearPageUnevictable(page
);
2730 if (page_evictable(page
, NULL
)) {
2731 enum lru_list l
= page_lru_base_type(page
);
2733 __dec_zone_state(zone
, NR_UNEVICTABLE
);
2734 list_move(&page
->lru
, &zone
->lru
[l
].list
);
2735 mem_cgroup_move_lists(page
, LRU_UNEVICTABLE
, l
);
2736 __inc_zone_state(zone
, NR_INACTIVE_ANON
+ l
);
2737 __count_vm_event(UNEVICTABLE_PGRESCUED
);
2740 * rotate unevictable list
2742 SetPageUnevictable(page
);
2743 list_move(&page
->lru
, &zone
->lru
[LRU_UNEVICTABLE
].list
);
2744 mem_cgroup_rotate_lru_list(page
, LRU_UNEVICTABLE
);
2745 if (page_evictable(page
, NULL
))
2751 * scan_mapping_unevictable_pages - scan an address space for evictable pages
2752 * @mapping: struct address_space to scan for evictable pages
2754 * Scan all pages in mapping. Check unevictable pages for
2755 * evictability and move them to the appropriate zone lru list.
2757 void scan_mapping_unevictable_pages(struct address_space
*mapping
)
2760 pgoff_t end
= (i_size_read(mapping
->host
) + PAGE_CACHE_SIZE
- 1) >>
2763 struct pagevec pvec
;
2765 if (mapping
->nrpages
== 0)
2768 pagevec_init(&pvec
, 0);
2769 while (next
< end
&&
2770 pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
2776 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
2777 struct page
*page
= pvec
.pages
[i
];
2778 pgoff_t page_index
= page
->index
;
2779 struct zone
*pagezone
= page_zone(page
);
2782 if (page_index
> next
)
2786 if (pagezone
!= zone
) {
2788 spin_unlock_irq(&zone
->lru_lock
);
2790 spin_lock_irq(&zone
->lru_lock
);
2793 if (PageLRU(page
) && PageUnevictable(page
))
2794 check_move_unevictable_page(page
, zone
);
2797 spin_unlock_irq(&zone
->lru_lock
);
2798 pagevec_release(&pvec
);
2800 count_vm_events(UNEVICTABLE_PGSCANNED
, pg_scanned
);
2806 * scan_zone_unevictable_pages - check unevictable list for evictable pages
2807 * @zone - zone of which to scan the unevictable list
2809 * Scan @zone's unevictable LRU lists to check for pages that have become
2810 * evictable. Move those that have to @zone's inactive list where they
2811 * become candidates for reclaim, unless shrink_inactive_zone() decides
2812 * to reactivate them. Pages that are still unevictable are rotated
2813 * back onto @zone's unevictable list.
2815 #define SCAN_UNEVICTABLE_BATCH_SIZE 16UL /* arbitrary lock hold batch size */
2816 static void scan_zone_unevictable_pages(struct zone
*zone
)
2818 struct list_head
*l_unevictable
= &zone
->lru
[LRU_UNEVICTABLE
].list
;
2820 unsigned long nr_to_scan
= zone_page_state(zone
, NR_UNEVICTABLE
);
2822 while (nr_to_scan
> 0) {
2823 unsigned long batch_size
= min(nr_to_scan
,
2824 SCAN_UNEVICTABLE_BATCH_SIZE
);
2826 spin_lock_irq(&zone
->lru_lock
);
2827 for (scan
= 0; scan
< batch_size
; scan
++) {
2828 struct page
*page
= lru_to_page(l_unevictable
);
2830 if (!trylock_page(page
))
2833 prefetchw_prev_lru_page(page
, l_unevictable
, flags
);
2835 if (likely(PageLRU(page
) && PageUnevictable(page
)))
2836 check_move_unevictable_page(page
, zone
);
2840 spin_unlock_irq(&zone
->lru_lock
);
2842 nr_to_scan
-= batch_size
;
2848 * scan_all_zones_unevictable_pages - scan all unevictable lists for evictable pages
2850 * A really big hammer: scan all zones' unevictable LRU lists to check for
2851 * pages that have become evictable. Move those back to the zones'
2852 * inactive list where they become candidates for reclaim.
2853 * This occurs when, e.g., we have unswappable pages on the unevictable lists,
2854 * and we add swap to the system. As such, it runs in the context of a task
2855 * that has possibly/probably made some previously unevictable pages
2858 static void scan_all_zones_unevictable_pages(void)
2862 for_each_zone(zone
) {
2863 scan_zone_unevictable_pages(zone
);
2868 * scan_unevictable_pages [vm] sysctl handler. On demand re-scan of
2869 * all nodes' unevictable lists for evictable pages
2871 unsigned long scan_unevictable_pages
;
2873 int scan_unevictable_handler(struct ctl_table
*table
, int write
,
2874 void __user
*buffer
,
2875 size_t *length
, loff_t
*ppos
)
2877 proc_doulongvec_minmax(table
, write
, buffer
, length
, ppos
);
2879 if (write
&& *(unsigned long *)table
->data
)
2880 scan_all_zones_unevictable_pages();
2882 scan_unevictable_pages
= 0;
2887 * per node 'scan_unevictable_pages' attribute. On demand re-scan of
2888 * a specified node's per zone unevictable lists for evictable pages.
2891 static ssize_t
read_scan_unevictable_node(struct sys_device
*dev
,
2892 struct sysdev_attribute
*attr
,
2895 return sprintf(buf
, "0\n"); /* always zero; should fit... */
2898 static ssize_t
write_scan_unevictable_node(struct sys_device
*dev
,
2899 struct sysdev_attribute
*attr
,
2900 const char *buf
, size_t count
)
2902 struct zone
*node_zones
= NODE_DATA(dev
->id
)->node_zones
;
2905 unsigned long req
= strict_strtoul(buf
, 10, &res
);
2908 return 1; /* zero is no-op */
2910 for (zone
= node_zones
; zone
- node_zones
< MAX_NR_ZONES
; ++zone
) {
2911 if (!populated_zone(zone
))
2913 scan_zone_unevictable_pages(zone
);
2919 static SYSDEV_ATTR(scan_unevictable_pages
, S_IRUGO
| S_IWUSR
,
2920 read_scan_unevictable_node
,
2921 write_scan_unevictable_node
);
2923 int scan_unevictable_register_node(struct node
*node
)
2925 return sysdev_create_file(&node
->sysdev
, &attr_scan_unevictable_pages
);
2928 void scan_unevictable_unregister_node(struct node
*node
)
2930 sysdev_remove_file(&node
->sysdev
, &attr_scan_unevictable_pages
);