blob: c0c79d67a6ed17efe694262479ad888492cd7e92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pagemap.h>
17#include <linux/swap.h>
18#include <linux/bio.h>
19#include <linux/swapops.h>
20#include <linux/writeback.h>
Olav Haugan81a28252013-11-14 09:14:11 -080021#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/pgtable.h>
23
Olav Haugan81a28252013-11-14 09:14:11 -080024/*
25 * We don't need to see swap errors more than once every 1 second to know
26 * that a problem is occurring.
27 */
28#define SWAP_ERROR_LOG_RATE_MS 1000
29
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -080030static struct bio *get_swap_bio(gfp_t gfp_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct page *page, bio_end_io_t end_io)
32{
33 struct bio *bio;
34
35 bio = bio_alloc(gfp_flags, 1);
36 if (bio) {
Lee Schermerhornd4906e12009-12-14 17:58:49 -080037 bio->bi_sector = map_swap_page(page, &bio->bi_bdev);
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -080038 bio->bi_sector <<= PAGE_SHIFT - 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 bio->bi_io_vec[0].bv_page = page;
40 bio->bi_io_vec[0].bv_len = PAGE_SIZE;
41 bio->bi_io_vec[0].bv_offset = 0;
42 bio->bi_vcnt = 1;
43 bio->bi_idx = 0;
44 bio->bi_size = PAGE_SIZE;
45 bio->bi_end_io = end_io;
46 }
47 return bio;
48}
49
NeilBrown6712ecf2007-09-27 12:47:43 +020050static void end_swap_bio_write(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
53 struct page *page = bio->bi_io_vec[0].bv_page;
Olav Haugan81a28252013-11-14 09:14:11 -080054 static unsigned long swap_error_rs_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070056 if (!uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 SetPageError(page);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070058 /*
59 * We failed to write the page out to swap-space.
60 * Re-dirty the page in order to avoid it being reclaimed.
61 * Also print a dire warning that things will go BAD (tm)
62 * very quickly.
63 *
64 * Also clear PG_reclaim to avoid rotate_reclaimable_page()
65 */
66 set_page_dirty(page);
Olav Haugan81a28252013-11-14 09:14:11 -080067 if (printk_timed_ratelimit(&swap_error_rs_time,
68 SWAP_ERROR_LOG_RATE_MS))
69 printk(KERN_ALERT "Write-error on swap-device (%u:%u:%Lu)\n",
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070070 imajor(bio->bi_bdev->bd_inode),
71 iminor(bio->bi_bdev->bd_inode),
72 (unsigned long long)bio->bi_sector);
73 ClearPageReclaim(page);
74 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 end_page_writeback(page);
76 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
NeilBrown6712ecf2007-09-27 12:47:43 +020079void end_swap_bio_read(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
82 struct page *page = bio->bi_io_vec[0].bv_page;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!uptodate) {
85 SetPageError(page);
86 ClearPageUptodate(page);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070087 printk(KERN_ALERT "Read-error on swap-device (%u:%u:%Lu)\n",
88 imajor(bio->bi_bdev->bd_inode),
89 iminor(bio->bi_bdev->bd_inode),
90 (unsigned long long)bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 } else {
92 SetPageUptodate(page);
93 }
94 unlock_page(page);
95 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/*
99 * We may have stale swap cache pages in memory: notice
100 * them here and get rid of the unnecessary final write.
101 */
102int swap_writepage(struct page *page, struct writeback_control *wbc)
103{
104 struct bio *bio;
105 int ret = 0, rw = WRITE;
106
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800107 if (try_to_free_swap(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unlock_page(page);
109 goto out;
110 }
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -0800111 bio = get_swap_bio(GFP_NOIO, page, end_swap_bio_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (bio == NULL) {
113 set_page_dirty(page);
114 unlock_page(page);
115 ret = -ENOMEM;
116 goto out;
117 }
118 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +0100119 rw |= REQ_SYNC;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700120 count_vm_event(PSWPOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 set_page_writeback(page);
122 unlock_page(page);
123 submit_bio(rw, bio);
124out:
125 return ret;
126}
127
Minchan Kimaca8bf32009-06-16 15:33:02 -0700128int swap_readpage(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct bio *bio;
131 int ret = 0;
132
Hugh Dickins51726b12009-01-06 14:39:25 -0800133 VM_BUG_ON(!PageLocked(page));
134 VM_BUG_ON(PageUptodate(page));
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -0800135 bio = get_swap_bio(GFP_KERNEL, page, end_swap_bio_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (bio == NULL) {
137 unlock_page(page);
138 ret = -ENOMEM;
139 goto out;
140 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700141 count_vm_event(PSWPIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 submit_bio(READ, bio);
143out:
144 return ret;
145}