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/file.h>
23 #include <linux/writeback.h>
24 #include <linux/blkdev.h>
25 #include <linux/buffer_head.h> /* for try_to_release_page(),
26 buffer_heads_over_limit */
27 #include <linux/mm_inline.h>
28 #include <linux/pagevec.h>
29 #include <linux/backing-dev.h>
30 #include <linux/rmap.h>
31 #include <linux/topology.h>
32 #include <linux/cpu.h>
33 #include <linux/cpuset.h>
34 #include <linux/notifier.h>
35 #include <linux/rwsem.h>
37 #include <asm/tlbflush.h>
38 #include <asm/div64.h>
40 #include <linux/swapops.h>
42 /* possible outcome of pageout() */
44 /* failed to write page out, page is locked */
46 /* move page to the active list, page is locked */
48 /* page has been sent to the disk successfully, page is unlocked */
50 /* page is clean and locked */
55 /* Ask refill_inactive_zone, or shrink_cache to scan this many pages */
56 unsigned long nr_to_scan
;
58 /* Incremented by the number of inactive pages that were scanned */
59 unsigned long nr_scanned
;
61 /* Incremented by the number of pages reclaimed */
62 unsigned long nr_reclaimed
;
64 unsigned long nr_mapped
; /* From page_state */
66 /* Ask shrink_caches, or shrink_zone to scan at this priority */
67 unsigned int priority
;
69 /* This context's GFP mask */
74 /* Can pages be swapped as part of reclaim? */
77 /* This context's SWAP_CLUSTER_MAX. If freeing memory for
78 * suspend, we effectively ignore SWAP_CLUSTER_MAX.
79 * In this context, it doesn't matter that we scan the
80 * whole list at once. */
85 * The list of shrinker callbacks used by to apply pressure to
90 struct list_head list
;
91 int seeks
; /* seeks to recreate an obj */
92 long nr
; /* objs pending delete */
95 #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
97 #ifdef ARCH_HAS_PREFETCH
98 #define prefetch_prev_lru_page(_page, _base, _field) \
100 if ((_page)->lru.prev != _base) { \
103 prev = lru_to_page(&(_page->lru)); \
104 prefetch(&prev->_field); \
108 #define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
111 #ifdef ARCH_HAS_PREFETCHW
112 #define prefetchw_prev_lru_page(_page, _base, _field) \
114 if ((_page)->lru.prev != _base) { \
117 prev = lru_to_page(&(_page->lru)); \
118 prefetchw(&prev->_field); \
122 #define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
126 * From 0 .. 100. Higher means more swappy.
128 int vm_swappiness
= 60;
129 static long total_memory
;
131 static LIST_HEAD(shrinker_list
);
132 static DECLARE_RWSEM(shrinker_rwsem
);
135 * Add a shrinker callback to be called from the vm
137 struct shrinker
*set_shrinker(int seeks
, shrinker_t theshrinker
)
139 struct shrinker
*shrinker
;
141 shrinker
= kmalloc(sizeof(*shrinker
), GFP_KERNEL
);
143 shrinker
->shrinker
= theshrinker
;
144 shrinker
->seeks
= seeks
;
146 down_write(&shrinker_rwsem
);
147 list_add_tail(&shrinker
->list
, &shrinker_list
);
148 up_write(&shrinker_rwsem
);
152 EXPORT_SYMBOL(set_shrinker
);
157 void remove_shrinker(struct shrinker
*shrinker
)
159 down_write(&shrinker_rwsem
);
160 list_del(&shrinker
->list
);
161 up_write(&shrinker_rwsem
);
164 EXPORT_SYMBOL(remove_shrinker
);
166 #define SHRINK_BATCH 128
168 * Call the shrink functions to age shrinkable caches
170 * Here we assume it costs one seek to replace a lru page and that it also
171 * takes a seek to recreate a cache object. With this in mind we age equal
172 * percentages of the lru and ageable caches. This should balance the seeks
173 * generated by these structures.
175 * If the vm encounted mapped pages on the LRU it increase the pressure on
176 * slab to avoid swapping.
178 * We do weird things to avoid (scanned*seeks*entries) overflowing 32 bits.
180 * `lru_pages' represents the number of on-LRU pages in all the zones which
181 * are eligible for the caller's allocation attempt. It is used for balancing
182 * slab reclaim versus page reclaim.
184 * Returns the number of slab objects which we shrunk.
186 int shrink_slab(unsigned long scanned
, gfp_t gfp_mask
, unsigned long lru_pages
)
188 struct shrinker
*shrinker
;
192 scanned
= SWAP_CLUSTER_MAX
;
194 if (!down_read_trylock(&shrinker_rwsem
))
195 return 1; /* Assume we'll be able to shrink next time */
197 list_for_each_entry(shrinker
, &shrinker_list
, list
) {
198 unsigned long long delta
;
199 unsigned long total_scan
;
200 unsigned long max_pass
= (*shrinker
->shrinker
)(0, gfp_mask
);
202 delta
= (4 * scanned
) / shrinker
->seeks
;
204 do_div(delta
, lru_pages
+ 1);
205 shrinker
->nr
+= delta
;
206 if (shrinker
->nr
< 0) {
207 printk(KERN_ERR
"%s: nr=%ld\n",
208 __FUNCTION__
, shrinker
->nr
);
209 shrinker
->nr
= max_pass
;
213 * Avoid risking looping forever due to too large nr value:
214 * never try to free more than twice the estimate number of
217 if (shrinker
->nr
> max_pass
* 2)
218 shrinker
->nr
= max_pass
* 2;
220 total_scan
= shrinker
->nr
;
223 while (total_scan
>= SHRINK_BATCH
) {
224 long this_scan
= SHRINK_BATCH
;
228 nr_before
= (*shrinker
->shrinker
)(0, gfp_mask
);
229 shrink_ret
= (*shrinker
->shrinker
)(this_scan
, gfp_mask
);
230 if (shrink_ret
== -1)
232 if (shrink_ret
< nr_before
)
233 ret
+= nr_before
- shrink_ret
;
234 mod_page_state(slabs_scanned
, this_scan
);
235 total_scan
-= this_scan
;
240 shrinker
->nr
+= total_scan
;
242 up_read(&shrinker_rwsem
);
246 /* Called without lock on whether page is mapped, so answer is unstable */
247 static inline int page_mapping_inuse(struct page
*page
)
249 struct address_space
*mapping
;
251 /* Page is in somebody's page tables. */
252 if (page_mapped(page
))
255 /* Be more reluctant to reclaim swapcache than pagecache */
256 if (PageSwapCache(page
))
259 mapping
= page_mapping(page
);
263 /* File is mmap'd by somebody? */
264 return mapping_mapped(mapping
);
267 static inline int is_page_cache_freeable(struct page
*page
)
269 return page_count(page
) - !!PagePrivate(page
) == 2;
272 static int may_write_to_queue(struct backing_dev_info
*bdi
)
274 if (current
->flags
& PF_SWAPWRITE
)
276 if (!bdi_write_congested(bdi
))
278 if (bdi
== current
->backing_dev_info
)
284 * We detected a synchronous write error writing a page out. Probably
285 * -ENOSPC. We need to propagate that into the address_space for a subsequent
286 * fsync(), msync() or close().
288 * The tricky part is that after writepage we cannot touch the mapping: nothing
289 * prevents it from being freed up. But we have a ref on the page and once
290 * that page is locked, the mapping is pinned.
292 * We're allowed to run sleeping lock_page() here because we know the caller has
295 static void handle_write_error(struct address_space
*mapping
,
296 struct page
*page
, int error
)
299 if (page_mapping(page
) == mapping
) {
300 if (error
== -ENOSPC
)
301 set_bit(AS_ENOSPC
, &mapping
->flags
);
303 set_bit(AS_EIO
, &mapping
->flags
);
309 * pageout is called by shrink_list() for each dirty page. Calls ->writepage().
311 static pageout_t
pageout(struct page
*page
, struct address_space
*mapping
)
314 * If the page is dirty, only perform writeback if that write
315 * will be non-blocking. To prevent this allocation from being
316 * stalled by pagecache activity. But note that there may be
317 * stalls if we need to run get_block(). We could test
318 * PagePrivate for that.
320 * If this process is currently in generic_file_write() against
321 * this page's queue, we can perform writeback even if that
324 * If the page is swapcache, write it back even if that would
325 * block, for some throttling. This happens by accident, because
326 * swap_backing_dev_info is bust: it doesn't reflect the
327 * congestion state of the swapdevs. Easy to fix, if needed.
328 * See swapfile.c:page_queue_congested().
330 if (!is_page_cache_freeable(page
))
334 * Some data journaling orphaned pages can have
335 * page->mapping == NULL while being dirty with clean buffers.
337 if (PagePrivate(page
)) {
338 if (try_to_free_buffers(page
)) {
339 ClearPageDirty(page
);
340 printk("%s: orphaned page\n", __FUNCTION__
);
346 if (mapping
->a_ops
->writepage
== NULL
)
347 return PAGE_ACTIVATE
;
348 if (!may_write_to_queue(mapping
->backing_dev_info
))
351 if (clear_page_dirty_for_io(page
)) {
353 struct writeback_control wbc
= {
354 .sync_mode
= WB_SYNC_NONE
,
355 .nr_to_write
= SWAP_CLUSTER_MAX
,
360 SetPageReclaim(page
);
361 res
= mapping
->a_ops
->writepage(page
, &wbc
);
363 handle_write_error(mapping
, page
, res
);
364 if (res
== AOP_WRITEPAGE_ACTIVATE
) {
365 ClearPageReclaim(page
);
366 return PAGE_ACTIVATE
;
368 if (!PageWriteback(page
)) {
369 /* synchronous write or broken a_ops? */
370 ClearPageReclaim(page
);
379 static int remove_mapping(struct address_space
*mapping
, struct page
*page
)
382 return 0; /* truncate got there first */
384 write_lock_irq(&mapping
->tree_lock
);
387 * The non-racy check for busy page. It is critical to check
388 * PageDirty _after_ making sure that the page is freeable and
389 * not in use by anybody. (pagecache + us == 2)
391 if (unlikely(page_count(page
) != 2))
394 if (unlikely(PageDirty(page
)))
397 if (PageSwapCache(page
)) {
398 swp_entry_t swap
= { .val
= page_private(page
) };
399 __delete_from_swap_cache(page
);
400 write_unlock_irq(&mapping
->tree_lock
);
402 __put_page(page
); /* The pagecache ref */
406 __remove_from_page_cache(page
);
407 write_unlock_irq(&mapping
->tree_lock
);
412 write_unlock_irq(&mapping
->tree_lock
);
417 * shrink_list adds the number of reclaimed pages to sc->nr_reclaimed
419 static int shrink_list(struct list_head
*page_list
, struct scan_control
*sc
)
421 LIST_HEAD(ret_pages
);
422 struct pagevec freed_pvec
;
428 pagevec_init(&freed_pvec
, 1);
429 while (!list_empty(page_list
)) {
430 struct address_space
*mapping
;
437 page
= lru_to_page(page_list
);
438 list_del(&page
->lru
);
440 if (TestSetPageLocked(page
))
443 BUG_ON(PageActive(page
));
446 /* Double the slab pressure for mapped and swapcache pages */
447 if (page_mapped(page
) || PageSwapCache(page
))
450 if (PageWriteback(page
))
453 referenced
= page_referenced(page
, 1);
454 /* In active use or really unfreeable? Activate it. */
455 if (referenced
&& page_mapping_inuse(page
))
456 goto activate_locked
;
460 * Anonymous process memory has backing store?
461 * Try to allocate it some swap space here.
463 if (PageAnon(page
) && !PageSwapCache(page
)) {
466 if (!add_to_swap(page
, GFP_ATOMIC
))
467 goto activate_locked
;
469 #endif /* CONFIG_SWAP */
471 mapping
= page_mapping(page
);
472 may_enter_fs
= (sc
->gfp_mask
& __GFP_FS
) ||
473 (PageSwapCache(page
) && (sc
->gfp_mask
& __GFP_IO
));
476 * The page is mapped into the page tables of one or more
477 * processes. Try to unmap it here.
479 if (page_mapped(page
) && mapping
) {
480 switch (try_to_unmap(page
)) {
482 goto activate_locked
;
486 ; /* try to free the page below */
490 if (PageDirty(page
)) {
495 if (laptop_mode
&& !sc
->may_writepage
)
498 /* Page is dirty, try to write it out here */
499 switch(pageout(page
, mapping
)) {
503 goto activate_locked
;
505 if (PageWriteback(page
) || PageDirty(page
))
508 * A synchronous write - probably a ramdisk. Go
509 * ahead and try to reclaim the page.
511 if (TestSetPageLocked(page
))
513 if (PageDirty(page
) || PageWriteback(page
))
515 mapping
= page_mapping(page
);
517 ; /* try to free the page below */
522 * If the page has buffers, try to free the buffer mappings
523 * associated with this page. If we succeed we try to free
526 * We do this even if the page is PageDirty().
527 * try_to_release_page() does not perform I/O, but it is
528 * possible for a page to have PageDirty set, but it is actually
529 * clean (all its buffers are clean). This happens if the
530 * buffers were written out directly, with submit_bh(). ext3
531 * will do this, as well as the blockdev mapping.
532 * try_to_release_page() will discover that cleanness and will
533 * drop the buffers and mark the page clean - it can be freed.
535 * Rarely, pages can have buffers and no ->mapping. These are
536 * the pages which were not successfully invalidated in
537 * truncate_complete_page(). We try to drop those buffers here
538 * and if that worked, and the page is no longer mapped into
539 * process address space (page_count == 1) it can be freed.
540 * Otherwise, leave the page on the LRU so it is swappable.
542 if (PagePrivate(page
)) {
543 if (!try_to_release_page(page
, sc
->gfp_mask
))
544 goto activate_locked
;
545 if (!mapping
&& page_count(page
) == 1)
549 if (!remove_mapping(mapping
, page
))
555 if (!pagevec_add(&freed_pvec
, page
))
556 __pagevec_release_nonlru(&freed_pvec
);
565 list_add(&page
->lru
, &ret_pages
);
566 BUG_ON(PageLRU(page
));
568 list_splice(&ret_pages
, page_list
);
569 if (pagevec_count(&freed_pvec
))
570 __pagevec_release_nonlru(&freed_pvec
);
571 mod_page_state(pgactivate
, pgactivate
);
572 sc
->nr_reclaimed
+= reclaimed
;
576 #ifdef CONFIG_MIGRATION
577 static inline void move_to_lru(struct page
*page
)
579 list_del(&page
->lru
);
580 if (PageActive(page
)) {
582 * lru_cache_add_active checks that
583 * the PG_active bit is off.
585 ClearPageActive(page
);
586 lru_cache_add_active(page
);
594 * Add isolated pages on the list back to the LRU.
596 * returns the number of pages put back.
598 int putback_lru_pages(struct list_head
*l
)
604 list_for_each_entry_safe(page
, page2
, l
, lru
) {
612 * swapout a single page
613 * page is locked upon entry, unlocked on exit
615 static int swap_page(struct page
*page
)
617 struct address_space
*mapping
= page_mapping(page
);
619 if (page_mapped(page
) && mapping
)
620 if (try_to_unmap(page
) != SWAP_SUCCESS
)
623 if (PageDirty(page
)) {
624 /* Page is dirty, try to write it out here */
625 switch(pageout(page
, mapping
)) {
634 ; /* try to free the page below */
638 if (PagePrivate(page
)) {
639 if (!try_to_release_page(page
, GFP_KERNEL
) ||
640 (!mapping
&& page_count(page
) == 1))
644 if (remove_mapping(mapping
, page
)) {
659 * Two lists are passed to this function. The first list
660 * contains the pages isolated from the LRU to be migrated.
661 * The second list contains new pages that the pages isolated
662 * can be moved to. If the second list is NULL then all
663 * pages are swapped out.
665 * The function returns after 10 attempts or if no pages
666 * are movable anymore because t has become empty
667 * or no retryable pages exist anymore.
669 * SIMPLIFIED VERSION: This implementation of migrate_pages
670 * is only swapping out pages and never touches the second
671 * list. The direct migration patchset
672 * extends this function to avoid the use of swap.
674 * Return: Number of pages not migrated when "to" ran empty.
676 int migrate_pages(struct list_head
*from
, struct list_head
*to
,
677 struct list_head
*moved
, struct list_head
*failed
)
684 int swapwrite
= current
->flags
& PF_SWAPWRITE
;
688 current
->flags
|= PF_SWAPWRITE
;
693 list_for_each_entry_safe(page
, page2
, from
, lru
) {
697 if (page_count(page
) == 1)
698 /* page was freed from under us. So we are done. */
702 * Skip locked pages during the first two passes to give the
703 * functions holding the lock time to release the page. Later we
704 * use lock_page() to have a higher chance of acquiring the
711 if (TestSetPageLocked(page
))
715 * Only wait on writeback if we have already done a pass where
716 * we we may have triggered writeouts for lots of pages.
719 wait_on_page_writeback(page
);
721 if (PageWriteback(page
))
726 * Anonymous pages must have swap cache references otherwise
727 * the information contained in the page maps cannot be
730 if (PageAnon(page
) && !PageSwapCache(page
)) {
731 if (!add_to_swap(page
, GFP_KERNEL
)) {
738 * Page is properly locked and writeback is complete.
739 * Try to migrate the page.
741 rc
= swap_page(page
);
751 /* Permanent failure */
752 list_move(&page
->lru
, failed
);
756 list_move(&page
->lru
, moved
);
759 if (retry
&& pass
++ < 10)
763 current
->flags
&= ~PF_SWAPWRITE
;
765 return nr_failed
+ retry
;
769 * Isolate one page from the LRU lists and put it on the
770 * indicated list with elevated refcount.
773 * 0 = page not on LRU list
774 * 1 = page removed from LRU list and added to the specified list.
776 int isolate_lru_page(struct page
*page
)
781 struct zone
*zone
= page_zone(page
);
782 spin_lock_irq(&zone
->lru_lock
);
783 if (TestClearPageLRU(page
)) {
786 if (PageActive(page
))
787 del_page_from_active_list(zone
, page
);
789 del_page_from_inactive_list(zone
, page
);
791 spin_unlock_irq(&zone
->lru_lock
);
799 * zone->lru_lock is heavily contended. Some of the functions that
800 * shrink the lists perform better by taking out a batch of pages
801 * and working on them outside the LRU lock.
803 * For pagecache intensive workloads, this function is the hottest
804 * spot in the kernel (apart from copy_*_user functions).
806 * Appropriate locks must be held before calling this function.
808 * @nr_to_scan: The number of pages to look through on the list.
809 * @src: The LRU list to pull pages off.
810 * @dst: The temp list to put pages on to.
811 * @scanned: The number of pages that were scanned.
813 * returns how many pages were moved onto *@dst.
815 static int isolate_lru_pages(int nr_to_scan
, struct list_head
*src
,
816 struct list_head
*dst
, int *scanned
)
822 while (scan
++ < nr_to_scan
&& !list_empty(src
)) {
823 page
= lru_to_page(src
);
824 prefetchw_prev_lru_page(page
, src
, flags
);
826 if (!TestClearPageLRU(page
))
828 list_del(&page
->lru
);
829 if (get_page_testone(page
)) {
831 * It is being freed elsewhere
835 list_add(&page
->lru
, src
);
838 list_add(&page
->lru
, dst
);
848 * shrink_cache() adds the number of pages reclaimed to sc->nr_reclaimed
850 static void shrink_cache(struct zone
*zone
, struct scan_control
*sc
)
852 LIST_HEAD(page_list
);
854 int max_scan
= sc
->nr_to_scan
;
856 pagevec_init(&pvec
, 1);
859 spin_lock_irq(&zone
->lru_lock
);
860 while (max_scan
> 0) {
866 nr_taken
= isolate_lru_pages(sc
->swap_cluster_max
,
867 &zone
->inactive_list
,
868 &page_list
, &nr_scan
);
869 zone
->nr_inactive
-= nr_taken
;
870 zone
->pages_scanned
+= nr_scan
;
871 spin_unlock_irq(&zone
->lru_lock
);
877 nr_freed
= shrink_list(&page_list
, sc
);
880 if (current_is_kswapd()) {
881 __mod_page_state_zone(zone
, pgscan_kswapd
, nr_scan
);
882 __mod_page_state(kswapd_steal
, nr_freed
);
884 __mod_page_state_zone(zone
, pgscan_direct
, nr_scan
);
885 __mod_page_state_zone(zone
, pgsteal
, nr_freed
);
887 spin_lock(&zone
->lru_lock
);
889 * Put back any unfreeable pages.
891 while (!list_empty(&page_list
)) {
892 page
= lru_to_page(&page_list
);
893 if (TestSetPageLRU(page
))
895 list_del(&page
->lru
);
896 if (PageActive(page
))
897 add_page_to_active_list(zone
, page
);
899 add_page_to_inactive_list(zone
, page
);
900 if (!pagevec_add(&pvec
, page
)) {
901 spin_unlock_irq(&zone
->lru_lock
);
902 __pagevec_release(&pvec
);
903 spin_lock_irq(&zone
->lru_lock
);
907 spin_unlock_irq(&zone
->lru_lock
);
909 pagevec_release(&pvec
);
913 * This moves pages from the active list to the inactive list.
915 * We move them the other way if the page is referenced by one or more
916 * processes, from rmap.
918 * If the pages are mostly unmapped, the processing is fast and it is
919 * appropriate to hold zone->lru_lock across the whole operation. But if
920 * the pages are mapped, the processing is slow (page_referenced()) so we
921 * should drop zone->lru_lock around each page. It's impossible to balance
922 * this, so instead we remove the pages from the LRU while processing them.
923 * It is safe to rely on PG_active against the non-LRU pages in here because
924 * nobody will play with that bit on a non-LRU page.
926 * The downside is that we have to touch page->_count against each page.
927 * But we had to alter page->flags anyway.
930 refill_inactive_zone(struct zone
*zone
, struct scan_control
*sc
)
933 int pgdeactivate
= 0;
935 int nr_pages
= sc
->nr_to_scan
;
936 LIST_HEAD(l_hold
); /* The pages which were snipped off */
937 LIST_HEAD(l_inactive
); /* Pages to go onto the inactive_list */
938 LIST_HEAD(l_active
); /* Pages to go onto the active_list */
941 int reclaim_mapped
= 0;
947 spin_lock_irq(&zone
->lru_lock
);
948 pgmoved
= isolate_lru_pages(nr_pages
, &zone
->active_list
,
949 &l_hold
, &pgscanned
);
950 zone
->pages_scanned
+= pgscanned
;
951 zone
->nr_active
-= pgmoved
;
952 spin_unlock_irq(&zone
->lru_lock
);
955 * `distress' is a measure of how much trouble we're having reclaiming
956 * pages. 0 -> no problems. 100 -> great trouble.
958 distress
= 100 >> zone
->prev_priority
;
961 * The point of this algorithm is to decide when to start reclaiming
962 * mapped memory instead of just pagecache. Work out how much memory
965 mapped_ratio
= (sc
->nr_mapped
* 100) / total_memory
;
968 * Now decide how much we really want to unmap some pages. The mapped
969 * ratio is downgraded - just because there's a lot of mapped memory
970 * doesn't necessarily mean that page reclaim isn't succeeding.
972 * The distress ratio is important - we don't want to start going oom.
974 * A 100% value of vm_swappiness overrides this algorithm altogether.
976 swap_tendency
= mapped_ratio
/ 2 + distress
+ vm_swappiness
;
979 * Now use this metric to decide whether to start moving mapped memory
980 * onto the inactive list.
982 if (swap_tendency
>= 100)
985 while (!list_empty(&l_hold
)) {
987 page
= lru_to_page(&l_hold
);
988 list_del(&page
->lru
);
989 if (page_mapped(page
)) {
990 if (!reclaim_mapped
||
991 (total_swap_pages
== 0 && PageAnon(page
)) ||
992 page_referenced(page
, 0)) {
993 list_add(&page
->lru
, &l_active
);
997 list_add(&page
->lru
, &l_inactive
);
1000 pagevec_init(&pvec
, 1);
1002 spin_lock_irq(&zone
->lru_lock
);
1003 while (!list_empty(&l_inactive
)) {
1004 page
= lru_to_page(&l_inactive
);
1005 prefetchw_prev_lru_page(page
, &l_inactive
, flags
);
1006 if (TestSetPageLRU(page
))
1008 if (!TestClearPageActive(page
))
1010 list_move(&page
->lru
, &zone
->inactive_list
);
1012 if (!pagevec_add(&pvec
, page
)) {
1013 zone
->nr_inactive
+= pgmoved
;
1014 spin_unlock_irq(&zone
->lru_lock
);
1015 pgdeactivate
+= pgmoved
;
1017 if (buffer_heads_over_limit
)
1018 pagevec_strip(&pvec
);
1019 __pagevec_release(&pvec
);
1020 spin_lock_irq(&zone
->lru_lock
);
1023 zone
->nr_inactive
+= pgmoved
;
1024 pgdeactivate
+= pgmoved
;
1025 if (buffer_heads_over_limit
) {
1026 spin_unlock_irq(&zone
->lru_lock
);
1027 pagevec_strip(&pvec
);
1028 spin_lock_irq(&zone
->lru_lock
);
1032 while (!list_empty(&l_active
)) {
1033 page
= lru_to_page(&l_active
);
1034 prefetchw_prev_lru_page(page
, &l_active
, flags
);
1035 if (TestSetPageLRU(page
))
1037 BUG_ON(!PageActive(page
));
1038 list_move(&page
->lru
, &zone
->active_list
);
1040 if (!pagevec_add(&pvec
, page
)) {
1041 zone
->nr_active
+= pgmoved
;
1043 spin_unlock_irq(&zone
->lru_lock
);
1044 __pagevec_release(&pvec
);
1045 spin_lock_irq(&zone
->lru_lock
);
1048 zone
->nr_active
+= pgmoved
;
1049 spin_unlock(&zone
->lru_lock
);
1051 __mod_page_state_zone(zone
, pgrefill
, pgscanned
);
1052 __mod_page_state(pgdeactivate
, pgdeactivate
);
1055 pagevec_release(&pvec
);
1059 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
1062 shrink_zone(struct zone
*zone
, struct scan_control
*sc
)
1064 unsigned long nr_active
;
1065 unsigned long nr_inactive
;
1067 atomic_inc(&zone
->reclaim_in_progress
);
1070 * Add one to `nr_to_scan' just to make sure that the kernel will
1071 * slowly sift through the active list.
1073 zone
->nr_scan_active
+= (zone
->nr_active
>> sc
->priority
) + 1;
1074 nr_active
= zone
->nr_scan_active
;
1075 if (nr_active
>= sc
->swap_cluster_max
)
1076 zone
->nr_scan_active
= 0;
1080 zone
->nr_scan_inactive
+= (zone
->nr_inactive
>> sc
->priority
) + 1;
1081 nr_inactive
= zone
->nr_scan_inactive
;
1082 if (nr_inactive
>= sc
->swap_cluster_max
)
1083 zone
->nr_scan_inactive
= 0;
1087 while (nr_active
|| nr_inactive
) {
1089 sc
->nr_to_scan
= min(nr_active
,
1090 (unsigned long)sc
->swap_cluster_max
);
1091 nr_active
-= sc
->nr_to_scan
;
1092 refill_inactive_zone(zone
, sc
);
1096 sc
->nr_to_scan
= min(nr_inactive
,
1097 (unsigned long)sc
->swap_cluster_max
);
1098 nr_inactive
-= sc
->nr_to_scan
;
1099 shrink_cache(zone
, sc
);
1103 throttle_vm_writeout();
1105 atomic_dec(&zone
->reclaim_in_progress
);
1109 * This is the direct reclaim path, for page-allocating processes. We only
1110 * try to reclaim pages from zones which will satisfy the caller's allocation
1113 * We reclaim from a zone even if that zone is over pages_high. Because:
1114 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
1116 * b) The zones may be over pages_high but they must go *over* pages_high to
1117 * satisfy the `incremental min' zone defense algorithm.
1119 * Returns the number of reclaimed pages.
1121 * If a zone is deemed to be full of pinned pages then just give it a light
1122 * scan then give up on it.
1125 shrink_caches(struct zone
**zones
, struct scan_control
*sc
)
1129 for (i
= 0; zones
[i
] != NULL
; i
++) {
1130 struct zone
*zone
= zones
[i
];
1132 if (!populated_zone(zone
))
1135 if (!cpuset_zone_allowed(zone
, __GFP_HARDWALL
))
1138 zone
->temp_priority
= sc
->priority
;
1139 if (zone
->prev_priority
> sc
->priority
)
1140 zone
->prev_priority
= sc
->priority
;
1142 if (zone
->all_unreclaimable
&& sc
->priority
!= DEF_PRIORITY
)
1143 continue; /* Let kswapd poll it */
1145 shrink_zone(zone
, sc
);
1150 * This is the main entry point to direct page reclaim.
1152 * If a full scan of the inactive list fails to free enough memory then we
1153 * are "out of memory" and something needs to be killed.
1155 * If the caller is !__GFP_FS then the probability of a failure is reasonably
1156 * high - the zone may be full of dirty or under-writeback pages, which this
1157 * caller can't do much about. We kick pdflush and take explicit naps in the
1158 * hope that some of these pages can be written. But if the allocating task
1159 * holds filesystem locks which prevent writeout this might not work, and the
1160 * allocation attempt will fail.
1162 int try_to_free_pages(struct zone
**zones
, gfp_t gfp_mask
)
1166 int total_scanned
= 0, total_reclaimed
= 0;
1167 struct reclaim_state
*reclaim_state
= current
->reclaim_state
;
1168 struct scan_control sc
;
1169 unsigned long lru_pages
= 0;
1172 sc
.gfp_mask
= gfp_mask
;
1173 sc
.may_writepage
= 0;
1176 inc_page_state(allocstall
);
1178 for (i
= 0; zones
[i
] != NULL
; i
++) {
1179 struct zone
*zone
= zones
[i
];
1181 if (!cpuset_zone_allowed(zone
, __GFP_HARDWALL
))
1184 zone
->temp_priority
= DEF_PRIORITY
;
1185 lru_pages
+= zone
->nr_active
+ zone
->nr_inactive
;
1188 for (priority
= DEF_PRIORITY
; priority
>= 0; priority
--) {
1189 sc
.nr_mapped
= read_page_state(nr_mapped
);
1191 sc
.nr_reclaimed
= 0;
1192 sc
.priority
= priority
;
1193 sc
.swap_cluster_max
= SWAP_CLUSTER_MAX
;
1195 disable_swap_token();
1196 shrink_caches(zones
, &sc
);
1197 shrink_slab(sc
.nr_scanned
, gfp_mask
, lru_pages
);
1198 if (reclaim_state
) {
1199 sc
.nr_reclaimed
+= reclaim_state
->reclaimed_slab
;
1200 reclaim_state
->reclaimed_slab
= 0;
1202 total_scanned
+= sc
.nr_scanned
;
1203 total_reclaimed
+= sc
.nr_reclaimed
;
1204 if (total_reclaimed
>= sc
.swap_cluster_max
) {
1210 * Try to write back as many pages as we just scanned. This
1211 * tends to cause slow streaming writers to write data to the
1212 * disk smoothly, at the dirtying rate, which is nice. But
1213 * that's undesirable in laptop mode, where we *want* lumpy
1214 * writeout. So in laptop mode, write out the whole world.
1216 if (total_scanned
> sc
.swap_cluster_max
+ sc
.swap_cluster_max
/2) {
1217 wakeup_pdflush(laptop_mode
? 0 : total_scanned
);
1218 sc
.may_writepage
= 1;
1221 /* Take a nap, wait for some writeback to complete */
1222 if (sc
.nr_scanned
&& priority
< DEF_PRIORITY
- 2)
1223 blk_congestion_wait(WRITE
, HZ
/10);
1226 for (i
= 0; zones
[i
] != 0; i
++) {
1227 struct zone
*zone
= zones
[i
];
1229 if (!cpuset_zone_allowed(zone
, __GFP_HARDWALL
))
1232 zone
->prev_priority
= zone
->temp_priority
;
1238 * For kswapd, balance_pgdat() will work across all this node's zones until
1239 * they are all at pages_high.
1241 * If `nr_pages' is non-zero then it is the number of pages which are to be
1242 * reclaimed, regardless of the zone occupancies. This is a software suspend
1245 * Returns the number of pages which were actually freed.
1247 * There is special handling here for zones which are full of pinned pages.
1248 * This can happen if the pages are all mlocked, or if they are all used by
1249 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
1250 * What we do is to detect the case where all pages in the zone have been
1251 * scanned twice and there has been zero successful reclaim. Mark the zone as
1252 * dead and from now on, only perform a short scan. Basically we're polling
1253 * the zone for when the problem goes away.
1255 * kswapd scans the zones in the highmem->normal->dma direction. It skips
1256 * zones which have free_pages > pages_high, but once a zone is found to have
1257 * free_pages <= pages_high, we scan that zone and the lower zones regardless
1258 * of the number of free pages in the lower zones. This interoperates with
1259 * the page allocator fallback scheme to ensure that aging of pages is balanced
1262 static int balance_pgdat(pg_data_t
*pgdat
, int nr_pages
, int order
)
1264 int to_free
= nr_pages
;
1268 int total_scanned
, total_reclaimed
;
1269 struct reclaim_state
*reclaim_state
= current
->reclaim_state
;
1270 struct scan_control sc
;
1274 total_reclaimed
= 0;
1275 sc
.gfp_mask
= GFP_KERNEL
;
1276 sc
.may_writepage
= 0;
1278 sc
.nr_mapped
= read_page_state(nr_mapped
);
1280 inc_page_state(pageoutrun
);
1282 for (i
= 0; i
< pgdat
->nr_zones
; i
++) {
1283 struct zone
*zone
= pgdat
->node_zones
+ i
;
1285 zone
->temp_priority
= DEF_PRIORITY
;
1288 for (priority
= DEF_PRIORITY
; priority
>= 0; priority
--) {
1289 int end_zone
= 0; /* Inclusive. 0 = ZONE_DMA */
1290 unsigned long lru_pages
= 0;
1292 /* The swap token gets in the way of swapout... */
1294 disable_swap_token();
1298 if (nr_pages
== 0) {
1300 * Scan in the highmem->dma direction for the highest
1301 * zone which needs scanning
1303 for (i
= pgdat
->nr_zones
- 1; i
>= 0; i
--) {
1304 struct zone
*zone
= pgdat
->node_zones
+ i
;
1306 if (!populated_zone(zone
))
1309 if (zone
->all_unreclaimable
&&
1310 priority
!= DEF_PRIORITY
)
1313 if (!zone_watermark_ok(zone
, order
,
1314 zone
->pages_high
, 0, 0)) {
1321 end_zone
= pgdat
->nr_zones
- 1;
1324 for (i
= 0; i
<= end_zone
; i
++) {
1325 struct zone
*zone
= pgdat
->node_zones
+ i
;
1327 lru_pages
+= zone
->nr_active
+ zone
->nr_inactive
;
1331 * Now scan the zone in the dma->highmem direction, stopping
1332 * at the last zone which needs scanning.
1334 * We do this because the page allocator works in the opposite
1335 * direction. This prevents the page allocator from allocating
1336 * pages behind kswapd's direction of progress, which would
1337 * cause too much scanning of the lower zones.
1339 for (i
= 0; i
<= end_zone
; i
++) {
1340 struct zone
*zone
= pgdat
->node_zones
+ i
;
1343 if (!populated_zone(zone
))
1346 if (zone
->all_unreclaimable
&& priority
!= DEF_PRIORITY
)
1349 if (nr_pages
== 0) { /* Not software suspend */
1350 if (!zone_watermark_ok(zone
, order
,
1351 zone
->pages_high
, end_zone
, 0))
1354 zone
->temp_priority
= priority
;
1355 if (zone
->prev_priority
> priority
)
1356 zone
->prev_priority
= priority
;
1358 sc
.nr_reclaimed
= 0;
1359 sc
.priority
= priority
;
1360 sc
.swap_cluster_max
= nr_pages
? nr_pages
: SWAP_CLUSTER_MAX
;
1361 atomic_inc(&zone
->reclaim_in_progress
);
1362 shrink_zone(zone
, &sc
);
1363 atomic_dec(&zone
->reclaim_in_progress
);
1364 reclaim_state
->reclaimed_slab
= 0;
1365 nr_slab
= shrink_slab(sc
.nr_scanned
, GFP_KERNEL
,
1367 sc
.nr_reclaimed
+= reclaim_state
->reclaimed_slab
;
1368 total_reclaimed
+= sc
.nr_reclaimed
;
1369 total_scanned
+= sc
.nr_scanned
;
1370 if (zone
->all_unreclaimable
)
1372 if (nr_slab
== 0 && zone
->pages_scanned
>=
1373 (zone
->nr_active
+ zone
->nr_inactive
) * 4)
1374 zone
->all_unreclaimable
= 1;
1376 * If we've done a decent amount of scanning and
1377 * the reclaim ratio is low, start doing writepage
1378 * even in laptop mode
1380 if (total_scanned
> SWAP_CLUSTER_MAX
* 2 &&
1381 total_scanned
> total_reclaimed
+total_reclaimed
/2)
1382 sc
.may_writepage
= 1;
1384 if (nr_pages
&& to_free
> total_reclaimed
)
1385 continue; /* swsusp: need to do more work */
1387 break; /* kswapd: all done */
1389 * OK, kswapd is getting into trouble. Take a nap, then take
1390 * another pass across the zones.
1392 if (total_scanned
&& priority
< DEF_PRIORITY
- 2)
1393 blk_congestion_wait(WRITE
, HZ
/10);
1396 * We do this so kswapd doesn't build up large priorities for
1397 * example when it is freeing in parallel with allocators. It
1398 * matches the direct reclaim path behaviour in terms of impact
1399 * on zone->*_priority.
1401 if ((total_reclaimed
>= SWAP_CLUSTER_MAX
) && (!nr_pages
))
1405 for (i
= 0; i
< pgdat
->nr_zones
; i
++) {
1406 struct zone
*zone
= pgdat
->node_zones
+ i
;
1408 zone
->prev_priority
= zone
->temp_priority
;
1410 if (!all_zones_ok
) {
1415 return total_reclaimed
;
1419 * The background pageout daemon, started as a kernel thread
1420 * from the init process.
1422 * This basically trickles out pages so that we have _some_
1423 * free memory available even if there is no other activity
1424 * that frees anything up. This is needed for things like routing
1425 * etc, where we otherwise might have all activity going on in
1426 * asynchronous contexts that cannot page things out.
1428 * If there are applications that are active memory-allocators
1429 * (most normal use), this basically shouldn't matter.
1431 static int kswapd(void *p
)
1433 unsigned long order
;
1434 pg_data_t
*pgdat
= (pg_data_t
*)p
;
1435 struct task_struct
*tsk
= current
;
1437 struct reclaim_state reclaim_state
= {
1438 .reclaimed_slab
= 0,
1442 daemonize("kswapd%d", pgdat
->node_id
);
1443 cpumask
= node_to_cpumask(pgdat
->node_id
);
1444 if (!cpus_empty(cpumask
))
1445 set_cpus_allowed(tsk
, cpumask
);
1446 current
->reclaim_state
= &reclaim_state
;
1449 * Tell the memory management that we're a "memory allocator",
1450 * and that if we need more memory we should get access to it
1451 * regardless (see "__alloc_pages()"). "kswapd" should
1452 * never get caught in the normal page freeing logic.
1454 * (Kswapd normally doesn't need memory anyway, but sometimes
1455 * you need a small amount of memory in order to be able to
1456 * page out something else, and this flag essentially protects
1457 * us from recursively trying to free more memory as we're
1458 * trying to free the first piece of memory in the first place).
1460 tsk
->flags
|= PF_MEMALLOC
| PF_SWAPWRITE
| PF_KSWAPD
;
1464 unsigned long new_order
;
1468 prepare_to_wait(&pgdat
->kswapd_wait
, &wait
, TASK_INTERRUPTIBLE
);
1469 new_order
= pgdat
->kswapd_max_order
;
1470 pgdat
->kswapd_max_order
= 0;
1471 if (order
< new_order
) {
1473 * Don't sleep if someone wants a larger 'order'
1479 order
= pgdat
->kswapd_max_order
;
1481 finish_wait(&pgdat
->kswapd_wait
, &wait
);
1483 balance_pgdat(pgdat
, 0, order
);
1489 * A zone is low on free memory, so wake its kswapd task to service it.
1491 void wakeup_kswapd(struct zone
*zone
, int order
)
1495 if (!populated_zone(zone
))
1498 pgdat
= zone
->zone_pgdat
;
1499 if (zone_watermark_ok(zone
, order
, zone
->pages_low
, 0, 0))
1501 if (pgdat
->kswapd_max_order
< order
)
1502 pgdat
->kswapd_max_order
= order
;
1503 if (!cpuset_zone_allowed(zone
, __GFP_HARDWALL
))
1505 if (!waitqueue_active(&pgdat
->kswapd_wait
))
1507 wake_up_interruptible(&pgdat
->kswapd_wait
);
1512 * Try to free `nr_pages' of memory, system-wide. Returns the number of freed
1515 int shrink_all_memory(int nr_pages
)
1518 int nr_to_free
= nr_pages
;
1520 struct reclaim_state reclaim_state
= {
1521 .reclaimed_slab
= 0,
1524 current
->reclaim_state
= &reclaim_state
;
1525 for_each_pgdat(pgdat
) {
1527 freed
= balance_pgdat(pgdat
, nr_to_free
, 0);
1529 nr_to_free
-= freed
;
1530 if (nr_to_free
<= 0)
1533 current
->reclaim_state
= NULL
;
1538 #ifdef CONFIG_HOTPLUG_CPU
1539 /* It's optimal to keep kswapds on the same CPUs as their memory, but
1540 not required for correctness. So if the last cpu in a node goes
1541 away, we get changed to run anywhere: as the first one comes back,
1542 restore their cpu bindings. */
1543 static int __devinit
cpu_callback(struct notifier_block
*nfb
,
1544 unsigned long action
,
1550 if (action
== CPU_ONLINE
) {
1551 for_each_pgdat(pgdat
) {
1552 mask
= node_to_cpumask(pgdat
->node_id
);
1553 if (any_online_cpu(mask
) != NR_CPUS
)
1554 /* One of our CPUs online: restore mask */
1555 set_cpus_allowed(pgdat
->kswapd
, mask
);
1560 #endif /* CONFIG_HOTPLUG_CPU */
1562 static int __init
kswapd_init(void)
1566 for_each_pgdat(pgdat
)
1568 = find_task_by_pid(kernel_thread(kswapd
, pgdat
, CLONE_KERNEL
));
1569 total_memory
= nr_free_pagecache_pages();
1570 hotcpu_notifier(cpu_callback
, 0);
1574 module_init(kswapd_init
)
1580 * If non-zero call zone_reclaim when the number of free pages falls below
1583 * In the future we may add flags to the mode. However, the page allocator
1584 * should only have to check that zone_reclaim_mode != 0 before calling
1587 int zone_reclaim_mode __read_mostly
;
1590 * Mininum time between zone reclaim scans
1592 #define ZONE_RECLAIM_INTERVAL HZ/2
1594 * Try to free up some pages from this zone through reclaim.
1596 int zone_reclaim(struct zone
*zone
, gfp_t gfp_mask
, unsigned int order
)
1598 int nr_pages
= 1 << order
;
1599 struct task_struct
*p
= current
;
1600 struct reclaim_state reclaim_state
;
1601 struct scan_control sc
= {
1602 .gfp_mask
= gfp_mask
,
1605 .nr_mapped
= read_page_state(nr_mapped
),
1611 if (!(gfp_mask
& __GFP_WAIT
) ||
1612 zone
->zone_pgdat
->node_id
!= numa_node_id() ||
1613 zone
->all_unreclaimable
||
1614 atomic_read(&zone
->reclaim_in_progress
) > 0)
1617 if (time_before(jiffies
,
1618 zone
->last_unsuccessful_zone_reclaim
+ ZONE_RECLAIM_INTERVAL
))
1621 disable_swap_token();
1623 if (nr_pages
> SWAP_CLUSTER_MAX
)
1624 sc
.swap_cluster_max
= nr_pages
;
1626 sc
.swap_cluster_max
= SWAP_CLUSTER_MAX
;
1629 p
->flags
|= PF_MEMALLOC
;
1630 reclaim_state
.reclaimed_slab
= 0;
1631 p
->reclaim_state
= &reclaim_state
;
1632 shrink_zone(zone
, &sc
);
1633 p
->reclaim_state
= NULL
;
1634 current
->flags
&= ~PF_MEMALLOC
;
1636 if (sc
.nr_reclaimed
== 0)
1637 zone
->last_unsuccessful_zone_reclaim
= jiffies
;
1639 return sc
.nr_reclaimed
> nr_pages
;