Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/mm/page_io.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 5 | * |
| 6 | * Swap reorganised 29.12.95, |
| 7 | * Asynchronous swapping added 30.12.95. Stephen Tweedie |
| 8 | * Removed race in async swapping. 14.4.1996. Bruno Haible |
| 9 | * Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie |
| 10 | * Always use brw_page, life becomes simpler. 12 May 1998 Eric Biederman |
| 11 | */ |
| 12 | |
| 13 | #include <linux/mm.h> |
| 14 | #include <linux/kernel_stat.h> |
| 15 | #include <linux/pagemap.h> |
| 16 | #include <linux/swap.h> |
| 17 | #include <linux/bio.h> |
| 18 | #include <linux/swapops.h> |
| 19 | #include <linux/writeback.h> |
| 20 | #include <asm/pgtable.h> |
| 21 | |
Hugh Dickins | f29ad6a | 2009-12-14 17:58:40 -0800 | [diff] [blame^] | 22 | static struct bio *get_swap_bio(gfp_t gfp_flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct page *page, bio_end_io_t end_io) |
| 24 | { |
| 25 | struct bio *bio; |
| 26 | |
| 27 | bio = bio_alloc(gfp_flags, 1); |
| 28 | if (bio) { |
Hugh Dickins | f29ad6a | 2009-12-14 17:58:40 -0800 | [diff] [blame^] | 29 | swp_entry_t entry; |
| 30 | entry.val = page_private(page); |
| 31 | bio->bi_sector = map_swap_page(entry, &bio->bi_bdev); |
| 32 | bio->bi_sector <<= PAGE_SHIFT - 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | bio->bi_io_vec[0].bv_page = page; |
| 34 | bio->bi_io_vec[0].bv_len = PAGE_SIZE; |
| 35 | bio->bi_io_vec[0].bv_offset = 0; |
| 36 | bio->bi_vcnt = 1; |
| 37 | bio->bi_idx = 0; |
| 38 | bio->bi_size = PAGE_SIZE; |
| 39 | bio->bi_end_io = end_io; |
| 40 | } |
| 41 | return bio; |
| 42 | } |
| 43 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 44 | static void end_swap_bio_write(struct bio *bio, int err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
| 46 | const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); |
| 47 | struct page *page = bio->bi_io_vec[0].bv_page; |
| 48 | |
Peter Zijlstra | 6ddab3b | 2006-09-25 23:31:26 -0700 | [diff] [blame] | 49 | if (!uptodate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | SetPageError(page); |
Peter Zijlstra | 6ddab3b | 2006-09-25 23:31:26 -0700 | [diff] [blame] | 51 | /* |
| 52 | * We failed to write the page out to swap-space. |
| 53 | * Re-dirty the page in order to avoid it being reclaimed. |
| 54 | * Also print a dire warning that things will go BAD (tm) |
| 55 | * very quickly. |
| 56 | * |
| 57 | * Also clear PG_reclaim to avoid rotate_reclaimable_page() |
| 58 | */ |
| 59 | set_page_dirty(page); |
| 60 | printk(KERN_ALERT "Write-error on swap-device (%u:%u:%Lu)\n", |
| 61 | imajor(bio->bi_bdev->bd_inode), |
| 62 | iminor(bio->bi_bdev->bd_inode), |
| 63 | (unsigned long long)bio->bi_sector); |
| 64 | ClearPageReclaim(page); |
| 65 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | end_page_writeback(page); |
| 67 | bio_put(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
| 69 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 70 | void end_swap_bio_read(struct bio *bio, int err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); |
| 73 | struct page *page = bio->bi_io_vec[0].bv_page; |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | if (!uptodate) { |
| 76 | SetPageError(page); |
| 77 | ClearPageUptodate(page); |
Peter Zijlstra | 6ddab3b | 2006-09-25 23:31:26 -0700 | [diff] [blame] | 78 | printk(KERN_ALERT "Read-error on swap-device (%u:%u:%Lu)\n", |
| 79 | imajor(bio->bi_bdev->bd_inode), |
| 80 | iminor(bio->bi_bdev->bd_inode), |
| 81 | (unsigned long long)bio->bi_sector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } else { |
| 83 | SetPageUptodate(page); |
| 84 | } |
| 85 | unlock_page(page); |
| 86 | bio_put(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* |
| 90 | * We may have stale swap cache pages in memory: notice |
| 91 | * them here and get rid of the unnecessary final write. |
| 92 | */ |
| 93 | int swap_writepage(struct page *page, struct writeback_control *wbc) |
| 94 | { |
| 95 | struct bio *bio; |
| 96 | int ret = 0, rw = WRITE; |
| 97 | |
Hugh Dickins | a2c43ee | 2009-01-06 14:39:36 -0800 | [diff] [blame] | 98 | if (try_to_free_swap(page)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | unlock_page(page); |
| 100 | goto out; |
| 101 | } |
Hugh Dickins | f29ad6a | 2009-12-14 17:58:40 -0800 | [diff] [blame^] | 102 | bio = get_swap_bio(GFP_NOIO, page, end_swap_bio_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | if (bio == NULL) { |
| 104 | set_page_dirty(page); |
| 105 | unlock_page(page); |
| 106 | ret = -ENOMEM; |
| 107 | goto out; |
| 108 | } |
| 109 | if (wbc->sync_mode == WB_SYNC_ALL) |
Jens Axboe | 93dbb39 | 2009-02-16 10:25:40 +0100 | [diff] [blame] | 110 | rw |= (1 << BIO_RW_SYNCIO) | (1 << BIO_RW_UNPLUG); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 111 | count_vm_event(PSWPOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | set_page_writeback(page); |
| 113 | unlock_page(page); |
| 114 | submit_bio(rw, bio); |
| 115 | out: |
| 116 | return ret; |
| 117 | } |
| 118 | |
Minchan Kim | aca8bf3 | 2009-06-16 15:33:02 -0700 | [diff] [blame] | 119 | int swap_readpage(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { |
| 121 | struct bio *bio; |
| 122 | int ret = 0; |
| 123 | |
Hugh Dickins | 51726b1 | 2009-01-06 14:39:25 -0800 | [diff] [blame] | 124 | VM_BUG_ON(!PageLocked(page)); |
| 125 | VM_BUG_ON(PageUptodate(page)); |
Hugh Dickins | f29ad6a | 2009-12-14 17:58:40 -0800 | [diff] [blame^] | 126 | bio = get_swap_bio(GFP_KERNEL, page, end_swap_bio_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (bio == NULL) { |
| 128 | unlock_page(page); |
| 129 | ret = -ENOMEM; |
| 130 | goto out; |
| 131 | } |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 132 | count_vm_event(PSWPIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | submit_bio(READ, bio); |
| 134 | out: |
| 135 | return ret; |
| 136 | } |