4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 * Swap reorganised 29.12.95, Stephen Tweedie
8 #include <linux/config.h>
10 #include <linux/hugetlb.h>
11 #include <linux/mman.h>
12 #include <linux/slab.h>
13 #include <linux/kernel_stat.h>
14 #include <linux/swap.h>
15 #include <linux/vmalloc.h>
16 #include <linux/pagemap.h>
17 #include <linux/namei.h>
18 #include <linux/shm.h>
19 #include <linux/blkdev.h>
20 #include <linux/writeback.h>
21 #include <linux/proc_fs.h>
22 #include <linux/seq_file.h>
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/rmap.h>
26 #include <linux/security.h>
27 #include <linux/backing-dev.h>
28 #include <linux/syscalls.h>
30 #include <asm/pgtable.h>
31 #include <asm/tlbflush.h>
32 #include <linux/swapops.h>
34 DEFINE_SPINLOCK(swaplock
);
35 unsigned int nr_swapfiles
;
36 long total_swap_pages
;
37 static int swap_overflow
;
39 EXPORT_SYMBOL(total_swap_pages
);
41 static const char Bad_file
[] = "Bad swap file entry ";
42 static const char Unused_file
[] = "Unused swap file entry ";
43 static const char Bad_offset
[] = "Bad swap offset entry ";
44 static const char Unused_offset
[] = "Unused swap offset entry ";
46 struct swap_list_t swap_list
= {-1, -1};
48 struct swap_info_struct swap_info
[MAX_SWAPFILES
];
50 static DECLARE_MUTEX(swapon_sem
);
53 * We need this because the bdev->unplug_fn can sleep and we cannot
54 * hold swap_list_lock while calling the unplug_fn. And swap_list_lock
55 * cannot be turned into a semaphore.
57 static DECLARE_RWSEM(swap_unplug_sem
);
59 #define SWAPFILE_CLUSTER 256
61 void swap_unplug_io_fn(struct backing_dev_info
*unused_bdi
, struct page
*page
)
65 down_read(&swap_unplug_sem
);
66 entry
.val
= page
->private;
67 if (PageSwapCache(page
)) {
68 struct block_device
*bdev
= swap_info
[swp_type(entry
)].bdev
;
69 struct backing_dev_info
*bdi
;
72 * If the page is removed from swapcache from under us (with a
73 * racy try_to_unuse/swapoff) we need an additional reference
74 * count to avoid reading garbage from page->private above. If
75 * the WARN_ON triggers during a swapoff it maybe the race
76 * condition and it's harmless. However if it triggers without
77 * swapoff it signals a problem.
79 WARN_ON(page_count(page
) <= 1);
81 bdi
= bdev
->bd_inode
->i_mapping
->backing_dev_info
;
82 bdi
->unplug_io_fn(bdi
, page
);
84 up_read(&swap_unplug_sem
);
87 static inline int scan_swap_map(struct swap_info_struct
*si
)
91 * We try to cluster swap pages by allocating them
92 * sequentially in swap. Once we've allocated
93 * SWAPFILE_CLUSTER pages this way, however, we resort to
94 * first-free allocation, starting a new cluster. This
95 * prevents us from scattering swap pages all over the entire
96 * swap partition, so that we reduce overall disk seek times
97 * between swap pages. -- sct */
99 while (si
->cluster_next
<= si
->highest_bit
) {
100 offset
= si
->cluster_next
++;
101 if (si
->swap_map
[offset
])
107 si
->cluster_nr
= SWAPFILE_CLUSTER
;
109 /* try to find an empty (even not aligned) cluster. */
110 offset
= si
->lowest_bit
;
112 if (offset
+SWAPFILE_CLUSTER
-1 <= si
->highest_bit
)
115 for (nr
= offset
; nr
< offset
+SWAPFILE_CLUSTER
; nr
++)
116 if (si
->swap_map
[nr
])
119 goto check_next_cluster
;
121 /* We found a completly empty cluster, so start
126 /* No luck, so now go finegrined as usual. -Andrea */
127 for (offset
= si
->lowest_bit
; offset
<= si
->highest_bit
; offset
++) {
128 if (si
->swap_map
[offset
])
130 si
->lowest_bit
= offset
+1;
132 if (offset
== si
->lowest_bit
)
134 if (offset
== si
->highest_bit
)
136 if (si
->lowest_bit
> si
->highest_bit
) {
137 si
->lowest_bit
= si
->max
;
140 si
->swap_map
[offset
] = 1;
143 si
->cluster_next
= offset
+1;
146 si
->lowest_bit
= si
->max
;
151 swp_entry_t
get_swap_page(void)
153 struct swap_info_struct
* p
;
154 unsigned long offset
;
156 int type
, wrapped
= 0;
158 entry
.val
= 0; /* Out of memory */
160 type
= swap_list
.next
;
163 if (nr_swap_pages
<= 0)
167 p
= &swap_info
[type
];
168 if ((p
->flags
& SWP_ACTIVE
) == SWP_ACTIVE
) {
170 offset
= scan_swap_map(p
);
171 swap_device_unlock(p
);
173 entry
= swp_entry(type
,offset
);
174 type
= swap_info
[type
].next
;
176 p
->prio
!= swap_info
[type
].prio
) {
177 swap_list
.next
= swap_list
.head
;
179 swap_list
.next
= type
;
186 if (type
< 0 || p
->prio
!= swap_info
[type
].prio
) {
187 type
= swap_list
.head
;
192 goto out
; /* out of swap space */
199 static struct swap_info_struct
* swap_info_get(swp_entry_t entry
)
201 struct swap_info_struct
* p
;
202 unsigned long offset
, type
;
206 type
= swp_type(entry
);
207 if (type
>= nr_swapfiles
)
209 p
= & swap_info
[type
];
210 if (!(p
->flags
& SWP_USED
))
212 offset
= swp_offset(entry
);
213 if (offset
>= p
->max
)
215 if (!p
->swap_map
[offset
])
218 if (p
->prio
> swap_info
[swap_list
.next
].prio
)
219 swap_list
.next
= type
;
224 printk(KERN_ERR
"swap_free: %s%08lx\n", Unused_offset
, entry
.val
);
227 printk(KERN_ERR
"swap_free: %s%08lx\n", Bad_offset
, entry
.val
);
230 printk(KERN_ERR
"swap_free: %s%08lx\n", Unused_file
, entry
.val
);
233 printk(KERN_ERR
"swap_free: %s%08lx\n", Bad_file
, entry
.val
);
238 static void swap_info_put(struct swap_info_struct
* p
)
240 swap_device_unlock(p
);
244 static int swap_entry_free(struct swap_info_struct
*p
, unsigned long offset
)
246 int count
= p
->swap_map
[offset
];
248 if (count
< SWAP_MAP_MAX
) {
250 p
->swap_map
[offset
] = count
;
252 if (offset
< p
->lowest_bit
)
253 p
->lowest_bit
= offset
;
254 if (offset
> p
->highest_bit
)
255 p
->highest_bit
= offset
;
264 * Caller has made sure that the swapdevice corresponding to entry
265 * is still around or has not been recycled.
267 void swap_free(swp_entry_t entry
)
269 struct swap_info_struct
* p
;
271 p
= swap_info_get(entry
);
273 swap_entry_free(p
, swp_offset(entry
));
279 * Check if we're the only user of a swap page,
280 * when the page is locked.
282 static int exclusive_swap_page(struct page
*page
)
285 struct swap_info_struct
* p
;
288 entry
.val
= page
->private;
289 p
= swap_info_get(entry
);
291 /* Is the only swap cache user the cache itself? */
292 if (p
->swap_map
[swp_offset(entry
)] == 1) {
293 /* Recheck the page count with the swapcache lock held.. */
294 write_lock_irq(&swapper_space
.tree_lock
);
295 if (page_count(page
) == 2)
297 write_unlock_irq(&swapper_space
.tree_lock
);
305 * We can use this swap cache entry directly
306 * if there are no other references to it.
308 * Here "exclusive_swap_page()" does the real
309 * work, but we opportunistically check whether
310 * we need to get all the locks first..
312 int can_share_swap_page(struct page
*page
)
316 if (!PageLocked(page
))
318 switch (page_count(page
)) {
320 if (!PagePrivate(page
))
324 if (!PageSwapCache(page
))
326 retval
= exclusive_swap_page(page
);
329 if (PageReserved(page
))
337 * Work out if there are any other processes sharing this
338 * swap cache page. Free it if you can. Return success.
340 int remove_exclusive_swap_page(struct page
*page
)
343 struct swap_info_struct
* p
;
346 BUG_ON(PagePrivate(page
));
347 BUG_ON(!PageLocked(page
));
349 if (!PageSwapCache(page
))
351 if (PageWriteback(page
))
353 if (page_count(page
) != 2) /* 2: us + cache */
356 entry
.val
= page
->private;
357 p
= swap_info_get(entry
);
361 /* Is the only swap cache user the cache itself? */
363 if (p
->swap_map
[swp_offset(entry
)] == 1) {
364 /* Recheck the page count with the swapcache lock held.. */
365 write_lock_irq(&swapper_space
.tree_lock
);
366 if ((page_count(page
) == 2) && !PageWriteback(page
)) {
367 __delete_from_swap_cache(page
);
371 write_unlock_irq(&swapper_space
.tree_lock
);
377 page_cache_release(page
);
384 * Free the swap entry like above, but also try to
385 * free the page cache entry if it is the last user.
387 void free_swap_and_cache(swp_entry_t entry
)
389 struct swap_info_struct
* p
;
390 struct page
*page
= NULL
;
392 p
= swap_info_get(entry
);
394 if (swap_entry_free(p
, swp_offset(entry
)) == 1)
395 page
= find_trylock_page(&swapper_space
, entry
.val
);
401 BUG_ON(PagePrivate(page
));
402 page_cache_get(page
);
403 one_user
= (page_count(page
) == 2);
404 /* Only cache user (+us), or swap space full? Free it! */
405 if (!PageWriteback(page
) && (one_user
|| vm_swap_full())) {
406 delete_from_swap_cache(page
);
410 page_cache_release(page
);
415 * Always set the resulting pte to be nowrite (the same as COW pages
416 * after one process has exited). We don't know just how many PTEs will
417 * share this swap entry, so be cautious and let do_wp_page work out
418 * what to do if a write is requested later.
420 * vma->vm_mm->page_table_lock is held.
422 static void unuse_pte(struct vm_area_struct
*vma
, pte_t
*pte
,
423 unsigned long addr
, swp_entry_t entry
, struct page
*page
)
425 inc_mm_counter(vma
->vm_mm
, rss
);
427 set_pte_at(vma
->vm_mm
, addr
, pte
,
428 pte_mkold(mk_pte(page
, vma
->vm_page_prot
)));
429 page_add_anon_rmap(page
, vma
, addr
);
432 * Move the page to the active list so it is not
433 * immediately swapped out again after swapon.
438 static int unuse_pte_range(struct vm_area_struct
*vma
, pmd_t
*pmd
,
439 unsigned long addr
, unsigned long end
,
440 swp_entry_t entry
, struct page
*page
)
443 pte_t swp_pte
= swp_entry_to_pte(entry
);
445 pte
= pte_offset_map(pmd
, addr
);
448 * swapoff spends a _lot_ of time in this loop!
449 * Test inline before going to call unuse_pte.
451 if (unlikely(pte_same(*pte
, swp_pte
))) {
452 unuse_pte(vma
, pte
, addr
, entry
, page
);
456 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
461 static inline int unuse_pmd_range(struct vm_area_struct
*vma
, pud_t
*pud
,
462 unsigned long addr
, unsigned long end
,
463 swp_entry_t entry
, struct page
*page
)
468 pmd
= pmd_offset(pud
, addr
);
470 next
= pmd_addr_end(addr
, end
);
471 if (pmd_none_or_clear_bad(pmd
))
473 if (unuse_pte_range(vma
, pmd
, addr
, next
, entry
, page
))
475 } while (pmd
++, addr
= next
, addr
!= end
);
479 static inline int unuse_pud_range(struct vm_area_struct
*vma
, pgd_t
*pgd
,
480 unsigned long addr
, unsigned long end
,
481 swp_entry_t entry
, struct page
*page
)
486 pud
= pud_offset(pgd
, addr
);
488 next
= pud_addr_end(addr
, end
);
489 if (pud_none_or_clear_bad(pud
))
491 if (unuse_pmd_range(vma
, pud
, addr
, next
, entry
, page
))
493 } while (pud
++, addr
= next
, addr
!= end
);
497 static int unuse_vma(struct vm_area_struct
*vma
,
498 swp_entry_t entry
, struct page
*page
)
501 unsigned long addr
, end
, next
;
504 addr
= page_address_in_vma(page
, vma
);
508 end
= addr
+ PAGE_SIZE
;
510 addr
= vma
->vm_start
;
514 pgd
= pgd_offset(vma
->vm_mm
, addr
);
516 next
= pgd_addr_end(addr
, end
);
517 if (pgd_none_or_clear_bad(pgd
))
519 if (unuse_pud_range(vma
, pgd
, addr
, next
, entry
, page
))
521 } while (pgd
++, addr
= next
, addr
!= end
);
525 static int unuse_mm(struct mm_struct
*mm
,
526 swp_entry_t entry
, struct page
*page
)
528 struct vm_area_struct
*vma
;
530 if (!down_read_trylock(&mm
->mmap_sem
)) {
532 * Our reference to the page stops try_to_unmap_one from
533 * unmapping its ptes, so swapoff can make progress.
536 down_read(&mm
->mmap_sem
);
539 spin_lock(&mm
->page_table_lock
);
540 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
541 if (vma
->anon_vma
&& unuse_vma(vma
, entry
, page
))
544 spin_unlock(&mm
->page_table_lock
);
545 up_read(&mm
->mmap_sem
);
547 * Currently unuse_mm cannot fail, but leave error handling
548 * at call sites for now, since we change it from time to time.
554 * Scan swap_map from current position to next entry still in use.
555 * Recycle to start on reaching the end, returning 0 when empty.
557 static int find_next_to_unuse(struct swap_info_struct
*si
, int prev
)
564 * No need for swap_device_lock(si) here: we're just looking
565 * for whether an entry is in use, not modifying it; false
566 * hits are okay, and sys_swapoff() has already prevented new
567 * allocations from this area (while holding swap_list_lock()).
576 * No entries in use at top of swap_map,
577 * loop back to start and recheck there.
583 count
= si
->swap_map
[i
];
584 if (count
&& count
!= SWAP_MAP_BAD
)
591 * We completely avoid races by reading each swap page in advance,
592 * and then search for the process using it. All the necessary
593 * page table adjustments can then be made atomically.
595 static int try_to_unuse(unsigned int type
)
597 struct swap_info_struct
* si
= &swap_info
[type
];
598 struct mm_struct
*start_mm
;
599 unsigned short *swap_map
;
600 unsigned short swcount
;
605 int reset_overflow
= 0;
609 * When searching mms for an entry, a good strategy is to
610 * start at the first mm we freed the previous entry from
611 * (though actually we don't notice whether we or coincidence
612 * freed the entry). Initialize this start_mm with a hold.
614 * A simpler strategy would be to start at the last mm we
615 * freed the previous entry from; but that would take less
616 * advantage of mmlist ordering, which clusters forked mms
617 * together, child after parent. If we race with dup_mmap(), we
618 * prefer to resolve parent before child, lest we miss entries
619 * duplicated after we scanned child: using last mm would invert
620 * that. Though it's only a serious concern when an overflowed
621 * swap count is reset from SWAP_MAP_MAX, preventing a rescan.
624 atomic_inc(&init_mm
.mm_users
);
627 * Keep on scanning until all entries have gone. Usually,
628 * one pass through swap_map is enough, but not necessarily:
629 * there are races when an instance of an entry might be missed.
631 while ((i
= find_next_to_unuse(si
, i
)) != 0) {
632 if (signal_pending(current
)) {
638 * Get a page for the entry, using the existing swap
639 * cache page if there is one. Otherwise, get a clean
640 * page and read the swap into it.
642 swap_map
= &si
->swap_map
[i
];
643 entry
= swp_entry(type
, i
);
644 page
= read_swap_cache_async(entry
, NULL
, 0);
647 * Either swap_duplicate() failed because entry
648 * has been freed independently, and will not be
649 * reused since sys_swapoff() already disabled
650 * allocation from here, or alloc_page() failed.
659 * Don't hold on to start_mm if it looks like exiting.
661 if (atomic_read(&start_mm
->mm_users
) == 1) {
664 atomic_inc(&init_mm
.mm_users
);
668 * Wait for and lock page. When do_swap_page races with
669 * try_to_unuse, do_swap_page can handle the fault much
670 * faster than try_to_unuse can locate the entry. This
671 * apparently redundant "wait_on_page_locked" lets try_to_unuse
672 * defer to do_swap_page in such a case - in some tests,
673 * do_swap_page and try_to_unuse repeatedly compete.
675 wait_on_page_locked(page
);
676 wait_on_page_writeback(page
);
678 wait_on_page_writeback(page
);
681 * Remove all references to entry.
682 * Whenever we reach init_mm, there's no address space
683 * to search, but use it as a reminder to search shmem.
688 if (start_mm
== &init_mm
)
689 shmem
= shmem_unuse(entry
, page
);
691 retval
= unuse_mm(start_mm
, entry
, page
);
694 int set_start_mm
= (*swap_map
>= swcount
);
695 struct list_head
*p
= &start_mm
->mmlist
;
696 struct mm_struct
*new_start_mm
= start_mm
;
697 struct mm_struct
*prev_mm
= start_mm
;
698 struct mm_struct
*mm
;
700 atomic_inc(&new_start_mm
->mm_users
);
701 atomic_inc(&prev_mm
->mm_users
);
702 spin_lock(&mmlist_lock
);
703 while (*swap_map
> 1 && !retval
&&
704 (p
= p
->next
) != &start_mm
->mmlist
) {
705 mm
= list_entry(p
, struct mm_struct
, mmlist
);
706 if (atomic_inc_return(&mm
->mm_users
) == 1) {
707 atomic_dec(&mm
->mm_users
);
710 spin_unlock(&mmlist_lock
);
719 else if (mm
== &init_mm
) {
721 shmem
= shmem_unuse(entry
, page
);
723 retval
= unuse_mm(mm
, entry
, page
);
724 if (set_start_mm
&& *swap_map
< swcount
) {
726 atomic_inc(&mm
->mm_users
);
730 spin_lock(&mmlist_lock
);
732 spin_unlock(&mmlist_lock
);
735 start_mm
= new_start_mm
;
739 page_cache_release(page
);
744 * How could swap count reach 0x7fff when the maximum
745 * pid is 0x7fff, and there's no way to repeat a swap
746 * page within an mm (except in shmem, where it's the
747 * shared object which takes the reference count)?
748 * We believe SWAP_MAP_MAX cannot occur in Linux 2.4.
750 * If that's wrong, then we should worry more about
751 * exit_mmap() and do_munmap() cases described above:
752 * we might be resetting SWAP_MAP_MAX too early here.
753 * We know "Undead"s can happen, they're okay, so don't
754 * report them; but do report if we reset SWAP_MAP_MAX.
756 if (*swap_map
== SWAP_MAP_MAX
) {
757 swap_device_lock(si
);
759 swap_device_unlock(si
);
764 * If a reference remains (rare), we would like to leave
765 * the page in the swap cache; but try_to_unmap could
766 * then re-duplicate the entry once we drop page lock,
767 * so we might loop indefinitely; also, that page could
768 * not be swapped out to other storage meanwhile. So:
769 * delete from cache even if there's another reference,
770 * after ensuring that the data has been saved to disk -
771 * since if the reference remains (rarer), it will be
772 * read from disk into another page. Splitting into two
773 * pages would be incorrect if swap supported "shared
774 * private" pages, but they are handled by tmpfs files.
776 * Note shmem_unuse already deleted a swappage from
777 * the swap cache, unless the move to filepage failed:
778 * in which case it left swappage in cache, lowered its
779 * swap count to pass quickly through the loops above,
780 * and now we must reincrement count to try again later.
782 if ((*swap_map
> 1) && PageDirty(page
) && PageSwapCache(page
)) {
783 struct writeback_control wbc
= {
784 .sync_mode
= WB_SYNC_NONE
,
787 swap_writepage(page
, &wbc
);
789 wait_on_page_writeback(page
);
791 if (PageSwapCache(page
)) {
793 swap_duplicate(entry
);
795 delete_from_swap_cache(page
);
799 * So we could skip searching mms once swap count went
800 * to 1, we did not mark any present ptes as dirty: must
801 * mark page dirty so shrink_list will preserve it.
805 page_cache_release(page
);
808 * Make sure that we aren't completely killing
809 * interactive performance.
815 if (reset_overflow
) {
816 printk(KERN_WARNING
"swapoff: cleared swap entry overflow\n");
823 * After a successful try_to_unuse, if no swap is now in use, we know we
824 * can empty the mmlist. swap_list_lock must be held on entry and exit.
825 * Note that mmlist_lock nests inside swap_list_lock, and an mm must be
826 * added to the mmlist just after page_duplicate - before would be racy.
828 static void drain_mmlist(void)
830 struct list_head
*p
, *next
;
833 for (i
= 0; i
< nr_swapfiles
; i
++)
834 if (swap_info
[i
].inuse_pages
)
836 spin_lock(&mmlist_lock
);
837 list_for_each_safe(p
, next
, &init_mm
.mmlist
)
839 spin_unlock(&mmlist_lock
);
843 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
844 * corresponds to page offset `offset'.
846 sector_t
map_swap_page(struct swap_info_struct
*sis
, pgoff_t offset
)
848 struct swap_extent
*se
= sis
->curr_swap_extent
;
849 struct swap_extent
*start_se
= se
;
852 struct list_head
*lh
;
854 if (se
->start_page
<= offset
&&
855 offset
< (se
->start_page
+ se
->nr_pages
)) {
856 return se
->start_block
+ (offset
- se
->start_page
);
859 if (lh
== &sis
->extent_list
)
861 se
= list_entry(lh
, struct swap_extent
, list
);
862 sis
->curr_swap_extent
= se
;
863 BUG_ON(se
== start_se
); /* It *must* be present */
868 * Free all of a swapdev's extent information
870 static void destroy_swap_extents(struct swap_info_struct
*sis
)
872 while (!list_empty(&sis
->extent_list
)) {
873 struct swap_extent
*se
;
875 se
= list_entry(sis
->extent_list
.next
,
876 struct swap_extent
, list
);
884 * Add a block range (and the corresponding page range) into this swapdev's
885 * extent list. The extent list is kept sorted in block order.
887 * This function rather assumes that it is called in ascending sector_t order.
888 * It doesn't look for extent coalescing opportunities.
891 add_swap_extent(struct swap_info_struct
*sis
, unsigned long start_page
,
892 unsigned long nr_pages
, sector_t start_block
)
894 struct swap_extent
*se
;
895 struct swap_extent
*new_se
;
896 struct list_head
*lh
;
898 lh
= sis
->extent_list
.next
; /* The highest-addressed block */
899 while (lh
!= &sis
->extent_list
) {
900 se
= list_entry(lh
, struct swap_extent
, list
);
901 if (se
->start_block
+ se
->nr_pages
== start_block
&&
902 se
->start_page
+ se
->nr_pages
== start_page
) {
904 se
->nr_pages
+= nr_pages
;
911 * No merge. Insert a new extent, preserving ordering.
913 new_se
= kmalloc(sizeof(*se
), GFP_KERNEL
);
916 new_se
->start_page
= start_page
;
917 new_se
->nr_pages
= nr_pages
;
918 new_se
->start_block
= start_block
;
920 lh
= sis
->extent_list
.prev
; /* The lowest block */
921 while (lh
!= &sis
->extent_list
) {
922 se
= list_entry(lh
, struct swap_extent
, list
);
923 if (se
->start_block
> start_block
)
927 list_add_tail(&new_se
->list
, lh
);
933 * A `swap extent' is a simple thing which maps a contiguous range of pages
934 * onto a contiguous range of disk blocks. An ordered list of swap extents
935 * is built at swapon time and is then used at swap_writepage/swap_readpage
936 * time for locating where on disk a page belongs.
938 * If the swapfile is an S_ISBLK block device, a single extent is installed.
939 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
940 * swap files identically.
942 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
943 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
944 * swapfiles are handled *identically* after swapon time.
946 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
947 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
948 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
949 * requirements, they are simply tossed out - we will never use those blocks
952 * For S_ISREG swapfiles we hold i_sem across the life of the swapon. This
953 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
954 * which will scribble on the fs.
956 * The amount of disk space which a single swap extent represents varies.
957 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
958 * extents in the list. To avoid much list walking, we cache the previous
959 * search location in `curr_swap_extent', and start new searches from there.
960 * This is extremely effective. The average number of iterations in
961 * map_swap_page() has been measured at about 0.3 per page. - akpm.
963 static int setup_swap_extents(struct swap_info_struct
*sis
)
966 unsigned blocks_per_page
;
967 unsigned long page_no
;
969 sector_t probe_block
;
973 inode
= sis
->swap_file
->f_mapping
->host
;
974 if (S_ISBLK(inode
->i_mode
)) {
975 ret
= add_swap_extent(sis
, 0, sis
->max
, 0);
979 blkbits
= inode
->i_blkbits
;
980 blocks_per_page
= PAGE_SIZE
>> blkbits
;
983 * Map all the blocks into the extent list. This code doesn't try
988 last_block
= i_size_read(inode
) >> blkbits
;
989 while ((probe_block
+ blocks_per_page
) <= last_block
&&
990 page_no
< sis
->max
) {
991 unsigned block_in_page
;
992 sector_t first_block
;
994 first_block
= bmap(inode
, probe_block
);
995 if (first_block
== 0)
999 * It must be PAGE_SIZE aligned on-disk
1001 if (first_block
& (blocks_per_page
- 1)) {
1006 for (block_in_page
= 1; block_in_page
< blocks_per_page
;
1010 block
= bmap(inode
, probe_block
+ block_in_page
);
1013 if (block
!= first_block
+ block_in_page
) {
1021 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1023 ret
= add_swap_extent(sis
, page_no
, 1,
1024 first_block
>> (PAGE_SHIFT
- blkbits
));
1028 probe_block
+= blocks_per_page
;
1036 sis
->highest_bit
= page_no
- 1;
1038 sis
->curr_swap_extent
= list_entry(sis
->extent_list
.prev
,
1039 struct swap_extent
, list
);
1042 printk(KERN_ERR
"swapon: swapfile has holes\n");
1048 #if 0 /* We don't need this yet */
1049 #include <linux/backing-dev.h>
1050 int page_queue_congested(struct page
*page
)
1052 struct backing_dev_info
*bdi
;
1054 BUG_ON(!PageLocked(page
)); /* It pins the swap_info_struct */
1056 if (PageSwapCache(page
)) {
1057 swp_entry_t entry
= { .val
= page
->private };
1058 struct swap_info_struct
*sis
;
1060 sis
= get_swap_info_struct(swp_type(entry
));
1061 bdi
= sis
->bdev
->bd_inode
->i_mapping
->backing_dev_info
;
1063 bdi
= page
->mapping
->backing_dev_info
;
1064 return bdi_write_congested(bdi
);
1068 asmlinkage
long sys_swapoff(const char __user
* specialfile
)
1070 struct swap_info_struct
* p
= NULL
;
1071 unsigned short *swap_map
;
1072 struct file
*swap_file
, *victim
;
1073 struct address_space
*mapping
;
1074 struct inode
*inode
;
1079 if (!capable(CAP_SYS_ADMIN
))
1082 pathname
= getname(specialfile
);
1083 err
= PTR_ERR(pathname
);
1084 if (IS_ERR(pathname
))
1087 victim
= filp_open(pathname
, O_RDWR
|O_LARGEFILE
, 0);
1089 err
= PTR_ERR(victim
);
1093 mapping
= victim
->f_mapping
;
1096 for (type
= swap_list
.head
; type
>= 0; type
= swap_info
[type
].next
) {
1097 p
= swap_info
+ type
;
1098 if ((p
->flags
& SWP_ACTIVE
) == SWP_ACTIVE
) {
1099 if (p
->swap_file
->f_mapping
== mapping
)
1109 if (!security_vm_enough_memory(p
->pages
))
1110 vm_unacct_memory(p
->pages
);
1117 swap_list
.head
= p
->next
;
1119 swap_info
[prev
].next
= p
->next
;
1121 if (type
== swap_list
.next
) {
1122 /* just pick something that's safe... */
1123 swap_list
.next
= swap_list
.head
;
1125 nr_swap_pages
-= p
->pages
;
1126 total_swap_pages
-= p
->pages
;
1127 p
->flags
&= ~SWP_WRITEOK
;
1129 current
->flags
|= PF_SWAPOFF
;
1130 err
= try_to_unuse(type
);
1131 current
->flags
&= ~PF_SWAPOFF
;
1133 /* wait for any unplug function to finish */
1134 down_write(&swap_unplug_sem
);
1135 up_write(&swap_unplug_sem
);
1138 /* re-insert swap space back into swap_list */
1140 for (prev
= -1, i
= swap_list
.head
; i
>= 0; prev
= i
, i
= swap_info
[i
].next
)
1141 if (p
->prio
>= swap_info
[i
].prio
)
1145 swap_list
.head
= swap_list
.next
= p
- swap_info
;
1147 swap_info
[prev
].next
= p
- swap_info
;
1148 nr_swap_pages
+= p
->pages
;
1149 total_swap_pages
+= p
->pages
;
1150 p
->flags
|= SWP_WRITEOK
;
1157 swap_device_lock(p
);
1158 swap_file
= p
->swap_file
;
1159 p
->swap_file
= NULL
;
1161 swap_map
= p
->swap_map
;
1164 destroy_swap_extents(p
);
1165 swap_device_unlock(p
);
1169 inode
= mapping
->host
;
1170 if (S_ISBLK(inode
->i_mode
)) {
1171 struct block_device
*bdev
= I_BDEV(inode
);
1172 set_blocksize(bdev
, p
->old_block_size
);
1175 down(&inode
->i_sem
);
1176 inode
->i_flags
&= ~S_SWAPFILE
;
1179 filp_close(swap_file
, NULL
);
1183 filp_close(victim
, NULL
);
1188 #ifdef CONFIG_PROC_FS
1190 static void *swap_start(struct seq_file
*swap
, loff_t
*pos
)
1192 struct swap_info_struct
*ptr
= swap_info
;
1198 for (i
= 0; i
< nr_swapfiles
; i
++, ptr
++) {
1199 if (!(ptr
->flags
& SWP_USED
) || !ptr
->swap_map
)
1208 static void *swap_next(struct seq_file
*swap
, void *v
, loff_t
*pos
)
1210 struct swap_info_struct
*ptr
= v
;
1211 struct swap_info_struct
*endptr
= swap_info
+ nr_swapfiles
;
1213 for (++ptr
; ptr
< endptr
; ptr
++) {
1214 if (!(ptr
->flags
& SWP_USED
) || !ptr
->swap_map
)
1223 static void swap_stop(struct seq_file
*swap
, void *v
)
1228 static int swap_show(struct seq_file
*swap
, void *v
)
1230 struct swap_info_struct
*ptr
= v
;
1235 seq_puts(swap
, "Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1237 file
= ptr
->swap_file
;
1238 len
= seq_path(swap
, file
->f_vfsmnt
, file
->f_dentry
, " \t\n\\");
1239 seq_printf(swap
, "%*s%s\t%d\t%ld\t%d\n",
1240 len
< 40 ? 40 - len
: 1, " ",
1241 S_ISBLK(file
->f_dentry
->d_inode
->i_mode
) ?
1242 "partition" : "file\t",
1243 ptr
->pages
<< (PAGE_SHIFT
- 10),
1244 ptr
->inuse_pages
<< (PAGE_SHIFT
- 10),
1249 static struct seq_operations swaps_op
= {
1250 .start
= swap_start
,
1256 static int swaps_open(struct inode
*inode
, struct file
*file
)
1258 return seq_open(file
, &swaps_op
);
1261 static struct file_operations proc_swaps_operations
= {
1264 .llseek
= seq_lseek
,
1265 .release
= seq_release
,
1268 static int __init
procswaps_init(void)
1270 struct proc_dir_entry
*entry
;
1272 entry
= create_proc_entry("swaps", 0, NULL
);
1274 entry
->proc_fops
= &proc_swaps_operations
;
1277 __initcall(procswaps_init
);
1278 #endif /* CONFIG_PROC_FS */
1281 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1283 * The swapon system call
1285 asmlinkage
long sys_swapon(const char __user
* specialfile
, int swap_flags
)
1287 struct swap_info_struct
* p
;
1289 struct block_device
*bdev
= NULL
;
1290 struct file
*swap_file
= NULL
;
1291 struct address_space
*mapping
;
1295 static int least_priority
;
1296 union swap_header
*swap_header
= NULL
;
1297 int swap_header_version
;
1298 int nr_good_pages
= 0;
1299 unsigned long maxpages
= 1;
1301 unsigned short *swap_map
;
1302 struct page
*page
= NULL
;
1303 struct inode
*inode
= NULL
;
1306 if (!capable(CAP_SYS_ADMIN
))
1310 for (type
= 0 ; type
< nr_swapfiles
; type
++,p
++)
1311 if (!(p
->flags
& SWP_USED
))
1315 * Test if adding another swap device is possible. There are
1316 * two limiting factors: 1) the number of bits for the swap
1317 * type swp_entry_t definition and 2) the number of bits for
1318 * the swap type in the swap ptes as defined by the different
1319 * architectures. To honor both limitations a swap entry
1320 * with swap offset 0 and swap type ~0UL is created, encoded
1321 * to a swap pte, decoded to a swp_entry_t again and finally
1322 * the swap type part is extracted. This will mask all bits
1323 * from the initial ~0UL that can't be encoded in either the
1324 * swp_entry_t or the architecture definition of a swap pte.
1326 if (type
> swp_type(pte_to_swp_entry(swp_entry_to_pte(swp_entry(~0UL,0))))) {
1330 if (type
>= nr_swapfiles
)
1331 nr_swapfiles
= type
+1;
1332 INIT_LIST_HEAD(&p
->extent_list
);
1333 p
->flags
= SWP_USED
;
1335 p
->swap_file
= NULL
;
1336 p
->old_block_size
= 0;
1342 spin_lock_init(&p
->sdev_lock
);
1344 if (swap_flags
& SWAP_FLAG_PREFER
) {
1346 (swap_flags
& SWAP_FLAG_PRIO_MASK
)>>SWAP_FLAG_PRIO_SHIFT
;
1348 p
->prio
= --least_priority
;
1351 name
= getname(specialfile
);
1352 error
= PTR_ERR(name
);
1357 swap_file
= filp_open(name
, O_RDWR
|O_LARGEFILE
, 0);
1358 error
= PTR_ERR(swap_file
);
1359 if (IS_ERR(swap_file
)) {
1364 p
->swap_file
= swap_file
;
1365 mapping
= swap_file
->f_mapping
;
1366 inode
= mapping
->host
;
1369 for (i
= 0; i
< nr_swapfiles
; i
++) {
1370 struct swap_info_struct
*q
= &swap_info
[i
];
1372 if (i
== type
|| !q
->swap_file
)
1374 if (mapping
== q
->swap_file
->f_mapping
)
1379 if (S_ISBLK(inode
->i_mode
)) {
1380 bdev
= I_BDEV(inode
);
1381 error
= bd_claim(bdev
, sys_swapon
);
1386 p
->old_block_size
= block_size(bdev
);
1387 error
= set_blocksize(bdev
, PAGE_SIZE
);
1391 } else if (S_ISREG(inode
->i_mode
)) {
1392 p
->bdev
= inode
->i_sb
->s_bdev
;
1393 down(&inode
->i_sem
);
1395 if (IS_SWAPFILE(inode
)) {
1403 swapfilesize
= i_size_read(inode
) >> PAGE_SHIFT
;
1406 * Read the swap header.
1408 if (!mapping
->a_ops
->readpage
) {
1412 page
= read_cache_page(mapping
, 0,
1413 (filler_t
*)mapping
->a_ops
->readpage
, swap_file
);
1415 error
= PTR_ERR(page
);
1418 wait_on_page_locked(page
);
1419 if (!PageUptodate(page
))
1422 swap_header
= page_address(page
);
1424 if (!memcmp("SWAP-SPACE",swap_header
->magic
.magic
,10))
1425 swap_header_version
= 1;
1426 else if (!memcmp("SWAPSPACE2",swap_header
->magic
.magic
,10))
1427 swap_header_version
= 2;
1429 printk("Unable to find swap-space signature\n");
1434 switch (swap_header_version
) {
1436 printk(KERN_ERR
"version 0 swap is no longer supported. "
1437 "Use mkswap -v1 %s\n", name
);
1441 /* Check the swap header's sub-version and the size of
1442 the swap file and bad block lists */
1443 if (swap_header
->info
.version
!= 1) {
1445 "Unable to handle swap header version %d\n",
1446 swap_header
->info
.version
);
1453 * Find out how many pages are allowed for a single swap
1454 * device. There are two limiting factors: 1) the number of
1455 * bits for the swap offset in the swp_entry_t type and
1456 * 2) the number of bits in the a swap pte as defined by
1457 * the different architectures. In order to find the
1458 * largest possible bit mask a swap entry with swap type 0
1459 * and swap offset ~0UL is created, encoded to a swap pte,
1460 * decoded to a swp_entry_t again and finally the swap
1461 * offset is extracted. This will mask all the bits from
1462 * the initial ~0UL mask that can't be encoded in either
1463 * the swp_entry_t or the architecture definition of a
1466 maxpages
= swp_offset(pte_to_swp_entry(swp_entry_to_pte(swp_entry(0,~0UL)))) - 1;
1467 if (maxpages
> swap_header
->info
.last_page
)
1468 maxpages
= swap_header
->info
.last_page
;
1469 p
->highest_bit
= maxpages
- 1;
1472 if (swap_header
->info
.nr_badpages
> MAX_SWAP_BADPAGES
)
1475 /* OK, set up the swap map and apply the bad block list */
1476 if (!(p
->swap_map
= vmalloc(maxpages
* sizeof(short)))) {
1482 memset(p
->swap_map
, 0, maxpages
* sizeof(short));
1483 for (i
=0; i
<swap_header
->info
.nr_badpages
; i
++) {
1484 int page
= swap_header
->info
.badpages
[i
];
1485 if (page
<= 0 || page
>= swap_header
->info
.last_page
)
1488 p
->swap_map
[page
] = SWAP_MAP_BAD
;
1490 nr_good_pages
= swap_header
->info
.last_page
-
1491 swap_header
->info
.nr_badpages
-
1492 1 /* header page */;
1497 if (swapfilesize
&& maxpages
> swapfilesize
) {
1499 "Swap area shorter than signature indicates\n");
1503 if (!nr_good_pages
) {
1504 printk(KERN_WARNING
"Empty swap-file\n");
1508 p
->swap_map
[0] = SWAP_MAP_BAD
;
1510 p
->pages
= nr_good_pages
;
1512 error
= setup_swap_extents(p
);
1518 swap_device_lock(p
);
1519 p
->flags
= SWP_ACTIVE
;
1520 nr_swap_pages
+= nr_good_pages
;
1521 total_swap_pages
+= nr_good_pages
;
1522 printk(KERN_INFO
"Adding %dk swap on %s. Priority:%d extents:%d\n",
1523 nr_good_pages
<<(PAGE_SHIFT
-10), name
,
1524 p
->prio
, p
->nr_extents
);
1526 /* insert swap space into swap_list: */
1528 for (i
= swap_list
.head
; i
>= 0; i
= swap_info
[i
].next
) {
1529 if (p
->prio
>= swap_info
[i
].prio
) {
1536 swap_list
.head
= swap_list
.next
= p
- swap_info
;
1538 swap_info
[prev
].next
= p
- swap_info
;
1540 swap_device_unlock(p
);
1547 set_blocksize(bdev
, p
->old_block_size
);
1552 swap_map
= p
->swap_map
;
1553 p
->swap_file
= NULL
;
1556 if (!(swap_flags
& SWAP_FLAG_PREFER
))
1559 destroy_swap_extents(p
);
1562 filp_close(swap_file
, NULL
);
1564 if (page
&& !IS_ERR(page
)) {
1566 page_cache_release(page
);
1572 inode
->i_flags
|= S_SWAPFILE
;
1578 void si_swapinfo(struct sysinfo
*val
)
1581 unsigned long nr_to_be_unused
= 0;
1584 for (i
= 0; i
< nr_swapfiles
; i
++) {
1585 if (!(swap_info
[i
].flags
& SWP_USED
) ||
1586 (swap_info
[i
].flags
& SWP_WRITEOK
))
1588 nr_to_be_unused
+= swap_info
[i
].inuse_pages
;
1590 val
->freeswap
= nr_swap_pages
+ nr_to_be_unused
;
1591 val
->totalswap
= total_swap_pages
+ nr_to_be_unused
;
1596 * Verify that a swap entry is valid and increment its swap map count.
1598 * Note: if swap_map[] reaches SWAP_MAP_MAX the entries are treated as
1599 * "permanent", but will be reclaimed by the next swapoff.
1601 int swap_duplicate(swp_entry_t entry
)
1603 struct swap_info_struct
* p
;
1604 unsigned long offset
, type
;
1607 type
= swp_type(entry
);
1608 if (type
>= nr_swapfiles
)
1610 p
= type
+ swap_info
;
1611 offset
= swp_offset(entry
);
1613 swap_device_lock(p
);
1614 if (offset
< p
->max
&& p
->swap_map
[offset
]) {
1615 if (p
->swap_map
[offset
] < SWAP_MAP_MAX
- 1) {
1616 p
->swap_map
[offset
]++;
1618 } else if (p
->swap_map
[offset
] <= SWAP_MAP_MAX
) {
1619 if (swap_overflow
++ < 5)
1620 printk(KERN_WARNING
"swap_dup: swap entry overflow\n");
1621 p
->swap_map
[offset
] = SWAP_MAP_MAX
;
1625 swap_device_unlock(p
);
1630 printk(KERN_ERR
"swap_dup: %s%08lx\n", Bad_file
, entry
.val
);
1634 struct swap_info_struct
*
1635 get_swap_info_struct(unsigned type
)
1637 return &swap_info
[type
];
1641 * swap_device_lock prevents swap_map being freed. Don't grab an extra
1642 * reference on the swaphandle, it doesn't matter if it becomes unused.
1644 int valid_swaphandles(swp_entry_t entry
, unsigned long *offset
)
1646 int ret
= 0, i
= 1 << page_cluster
;
1648 struct swap_info_struct
*swapdev
= swp_type(entry
) + swap_info
;
1650 if (!page_cluster
) /* no readahead */
1652 toff
= (swp_offset(entry
) >> page_cluster
) << page_cluster
;
1653 if (!toff
) /* first page is swap header */
1657 swap_device_lock(swapdev
);
1659 /* Don't read-ahead past the end of the swap area */
1660 if (toff
>= swapdev
->max
)
1662 /* Don't read in free or bad pages */
1663 if (!swapdev
->swap_map
[toff
])
1665 if (swapdev
->swap_map
[toff
] == SWAP_MAP_BAD
)
1670 swap_device_unlock(swapdev
);