blob: 4a379629e31f17f1bc3b93c02b12fb489653cbce [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>
Mel Gorman62c230b2012-07-31 16:44:55 -070020#include <linux/buffer_head.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/writeback.h>
Dan Magenheimer38b5faf2012-04-09 17:08:06 -060022#include <linux/frontswap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/pgtable.h>
24
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -080025static struct bio *get_swap_bio(gfp_t gfp_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct page *page, bio_end_io_t end_io)
27{
28 struct bio *bio;
29
30 bio = bio_alloc(gfp_flags, 1);
31 if (bio) {
Lee Schermerhornd4906e12009-12-14 17:58:49 -080032 bio->bi_sector = map_swap_page(page, &bio->bi_bdev);
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -080033 bio->bi_sector <<= PAGE_SHIFT - 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 bio->bi_io_vec[0].bv_page = page;
35 bio->bi_io_vec[0].bv_len = PAGE_SIZE;
36 bio->bi_io_vec[0].bv_offset = 0;
37 bio->bi_vcnt = 1;
38 bio->bi_idx = 0;
39 bio->bi_size = PAGE_SIZE;
40 bio->bi_end_io = end_io;
41 }
42 return bio;
43}
44
NeilBrown6712ecf2007-09-27 12:47:43 +020045static void end_swap_bio_write(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
48 struct page *page = bio->bi_io_vec[0].bv_page;
49
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070050 if (!uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 SetPageError(page);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070052 /*
53 * We failed to write the page out to swap-space.
54 * Re-dirty the page in order to avoid it being reclaimed.
55 * Also print a dire warning that things will go BAD (tm)
56 * very quickly.
57 *
58 * Also clear PG_reclaim to avoid rotate_reclaimable_page()
59 */
60 set_page_dirty(page);
61 printk(KERN_ALERT "Write-error on swap-device (%u:%u:%Lu)\n",
62 imajor(bio->bi_bdev->bd_inode),
63 iminor(bio->bi_bdev->bd_inode),
64 (unsigned long long)bio->bi_sector);
65 ClearPageReclaim(page);
66 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 end_page_writeback(page);
68 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
NeilBrown6712ecf2007-09-27 12:47:43 +020071void end_swap_bio_read(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
74 struct page *page = bio->bi_io_vec[0].bv_page;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (!uptodate) {
77 SetPageError(page);
78 ClearPageUptodate(page);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070079 printk(KERN_ALERT "Read-error on swap-device (%u:%u:%Lu)\n",
80 imajor(bio->bi_bdev->bd_inode),
81 iminor(bio->bi_bdev->bd_inode),
82 (unsigned long long)bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 } else {
84 SetPageUptodate(page);
85 }
86 unlock_page(page);
87 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Mel Gormana509bc12012-07-31 16:44:57 -070090int generic_swapfile_activate(struct swap_info_struct *sis,
91 struct file *swap_file,
92 sector_t *span)
93{
94 struct address_space *mapping = swap_file->f_mapping;
95 struct inode *inode = mapping->host;
96 unsigned blocks_per_page;
97 unsigned long page_no;
98 unsigned blkbits;
99 sector_t probe_block;
100 sector_t last_block;
101 sector_t lowest_block = -1;
102 sector_t highest_block = 0;
103 int nr_extents = 0;
104 int ret;
105
106 blkbits = inode->i_blkbits;
107 blocks_per_page = PAGE_SIZE >> blkbits;
108
109 /*
110 * Map all the blocks into the extent list. This code doesn't try
111 * to be very smart.
112 */
113 probe_block = 0;
114 page_no = 0;
115 last_block = i_size_read(inode) >> blkbits;
116 while ((probe_block + blocks_per_page) <= last_block &&
117 page_no < sis->max) {
118 unsigned block_in_page;
119 sector_t first_block;
120
121 first_block = bmap(inode, probe_block);
122 if (first_block == 0)
123 goto bad_bmap;
124
125 /*
126 * It must be PAGE_SIZE aligned on-disk
127 */
128 if (first_block & (blocks_per_page - 1)) {
129 probe_block++;
130 goto reprobe;
131 }
132
133 for (block_in_page = 1; block_in_page < blocks_per_page;
134 block_in_page++) {
135 sector_t block;
136
137 block = bmap(inode, probe_block + block_in_page);
138 if (block == 0)
139 goto bad_bmap;
140 if (block != first_block + block_in_page) {
141 /* Discontiguity */
142 probe_block++;
143 goto reprobe;
144 }
145 }
146
147 first_block >>= (PAGE_SHIFT - blkbits);
148 if (page_no) { /* exclude the header page */
149 if (first_block < lowest_block)
150 lowest_block = first_block;
151 if (first_block > highest_block)
152 highest_block = first_block;
153 }
154
155 /*
156 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
157 */
158 ret = add_swap_extent(sis, page_no, 1, first_block);
159 if (ret < 0)
160 goto out;
161 nr_extents += ret;
162 page_no++;
163 probe_block += blocks_per_page;
164reprobe:
165 continue;
166 }
167 ret = nr_extents;
168 *span = 1 + highest_block - lowest_block;
169 if (page_no == 0)
170 page_no = 1; /* force Empty message */
171 sis->max = page_no;
172 sis->pages = page_no - 1;
173 sis->highest_bit = page_no - 1;
174out:
175 return ret;
176bad_bmap:
177 printk(KERN_ERR "swapon: swapfile has holes\n");
178 ret = -EINVAL;
179 goto out;
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*
183 * We may have stale swap cache pages in memory: notice
184 * them here and get rid of the unnecessary final write.
185 */
186int swap_writepage(struct page *page, struct writeback_control *wbc)
187{
188 struct bio *bio;
189 int ret = 0, rw = WRITE;
Mel Gorman62c230b2012-07-31 16:44:55 -0700190 struct swap_info_struct *sis = page_swap_info(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800192 if (try_to_free_swap(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unlock_page(page);
194 goto out;
195 }
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400196 if (frontswap_store(page) == 0) {
Dan Magenheimer38b5faf2012-04-09 17:08:06 -0600197 set_page_writeback(page);
198 unlock_page(page);
199 end_page_writeback(page);
200 goto out;
201 }
Mel Gorman62c230b2012-07-31 16:44:55 -0700202
203 if (sis->flags & SWP_FILE) {
204 struct kiocb kiocb;
205 struct file *swap_file = sis->swap_file;
206 struct address_space *mapping = swap_file->f_mapping;
207 struct iovec iov = {
208 .iov_base = page_address(page),
209 .iov_len = PAGE_SIZE,
210 };
211
212 init_sync_kiocb(&kiocb, swap_file);
213 kiocb.ki_pos = page_file_offset(page);
214 kiocb.ki_left = PAGE_SIZE;
215 kiocb.ki_nbytes = PAGE_SIZE;
216
217 unlock_page(page);
218 ret = mapping->a_ops->direct_IO(KERNEL_WRITE,
219 &kiocb, &iov,
220 kiocb.ki_pos, 1);
221 if (ret == PAGE_SIZE) {
222 count_vm_event(PSWPOUT);
223 ret = 0;
224 }
225 return ret;
226 }
227
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -0800228 bio = get_swap_bio(GFP_NOIO, page, end_swap_bio_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (bio == NULL) {
230 set_page_dirty(page);
231 unlock_page(page);
232 ret = -ENOMEM;
233 goto out;
234 }
235 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +0100236 rw |= REQ_SYNC;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700237 count_vm_event(PSWPOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 set_page_writeback(page);
239 unlock_page(page);
240 submit_bio(rw, bio);
241out:
242 return ret;
243}
244
Minchan Kimaca8bf32009-06-16 15:33:02 -0700245int swap_readpage(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct bio *bio;
248 int ret = 0;
Mel Gorman62c230b2012-07-31 16:44:55 -0700249 struct swap_info_struct *sis = page_swap_info(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Hugh Dickins51726b12009-01-06 14:39:25 -0800251 VM_BUG_ON(!PageLocked(page));
252 VM_BUG_ON(PageUptodate(page));
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400253 if (frontswap_load(page) == 0) {
Dan Magenheimer38b5faf2012-04-09 17:08:06 -0600254 SetPageUptodate(page);
255 unlock_page(page);
256 goto out;
257 }
Mel Gorman62c230b2012-07-31 16:44:55 -0700258
259 if (sis->flags & SWP_FILE) {
260 struct file *swap_file = sis->swap_file;
261 struct address_space *mapping = swap_file->f_mapping;
262
263 ret = mapping->a_ops->readpage(swap_file, page);
264 if (!ret)
265 count_vm_event(PSWPIN);
266 return ret;
267 }
268
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -0800269 bio = get_swap_bio(GFP_KERNEL, page, end_swap_bio_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (bio == NULL) {
271 unlock_page(page);
272 ret = -ENOMEM;
273 goto out;
274 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700275 count_vm_event(PSWPIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 submit_bio(READ, bio);
277out:
278 return ret;
279}
Mel Gorman62c230b2012-07-31 16:44:55 -0700280
281int swap_set_page_dirty(struct page *page)
282{
283 struct swap_info_struct *sis = page_swap_info(page);
284
285 if (sis->flags & SWP_FILE) {
286 struct address_space *mapping = sis->swap_file->f_mapping;
287 return mapping->a_ops->set_page_dirty(page);
288 } else {
289 return __set_page_dirty_no_writeback(page);
290 }
291}