blob: ad0e0ce31090ec57d677c5f67a0c2870a06e6df9 [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>
Minchan Kimb430e9d2013-07-03 15:01:24 -070023#include <linux/blkdev.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080024#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/pgtable.h>
26
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -080027static struct bio *get_swap_bio(gfp_t gfp_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct page *page, bio_end_io_t end_io)
29{
30 struct bio *bio;
31
32 bio = bio_alloc(gfp_flags, 1);
33 if (bio) {
Kent Overstreet4f024f32013-10-11 15:44:27 -070034 bio->bi_iter.bi_sector = map_swap_page(page, &bio->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 bio->bi_end_io = end_io;
Kent Overstreet6cf66b42014-12-22 12:48:42 +010036
37 bio_add_page(bio, page, PAGE_SIZE, 0);
38 BUG_ON(bio->bi_iter.bi_size != PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 }
40 return bio;
41}
42
Christoph Hellwig4246a0b2015-07-20 15:29:37 +020043void end_swap_bio_write(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct page *page = bio->bi_io_vec[0].bv_page;
46
Christoph Hellwig4246a0b2015-07-20 15:29:37 +020047 if (bio->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 SetPageError(page);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070049 /*
50 * We failed to write the page out to swap-space.
51 * Re-dirty the page in order to avoid it being reclaimed.
52 * Also print a dire warning that things will go BAD (tm)
53 * very quickly.
54 *
55 * Also clear PG_reclaim to avoid rotate_reclaimable_page()
56 */
57 set_page_dirty(page);
Joe Perches11705322016-03-17 14:19:50 -070058 pr_alert("Write-error on swap-device (%u:%u:%llu)\n",
59 imajor(bio->bi_bdev->bd_inode),
60 iminor(bio->bi_bdev->bd_inode),
61 (unsigned long long)bio->bi_iter.bi_sector);
Peter Zijlstra6ddab3b2006-09-25 23:31:26 -070062 ClearPageReclaim(page);
63 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 end_page_writeback(page);
65 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Minchan Kim3f2b1a02016-03-22 14:24:36 -070068static void swap_slot_free_notify(struct page *page)
69{
70 struct swap_info_struct *sis;
71 struct gendisk *disk;
72
73 /*
74 * There is no guarantee that the page is in swap cache - the software
75 * suspend code (at least) uses end_swap_bio_read() against a non-
76 * swapcache page. So we must check PG_swapcache before proceeding with
77 * this optimization.
78 */
79 if (unlikely(!PageSwapCache(page)))
80 return;
81
82 sis = page_swap_info(page);
83 if (!(sis->flags & SWP_BLKDEV))
84 return;
85
86 /*
87 * The swap subsystem performs lazy swap slot freeing,
88 * expecting that the page will be swapped out again.
89 * So we can avoid an unnecessary write if the page
90 * isn't redirtied.
91 * This is good for real swap storage because we can
92 * reduce unnecessary I/O and enhance wear-leveling
93 * if an SSD is used as the as swap device.
94 * But if in-memory swap device (eg zram) is used,
95 * this causes a duplicated copy between uncompressed
96 * data in VM-owned memory and compressed data in
97 * zram-owned memory. So let's free zram-owned memory
98 * and make the VM-owned decompressed page *dirty*,
99 * so the page should be swapped out somewhere again if
100 * we again wish to reclaim it.
101 */
102 disk = sis->bdev->bd_disk;
103 if (disk->fops->swap_slot_free_notify) {
104 swp_entry_t entry;
105 unsigned long offset;
106
107 entry.val = page_private(page);
108 offset = swp_offset(entry);
109
110 SetPageDirty(page);
111 disk->fops->swap_slot_free_notify(sis->bdev,
112 offset);
113 }
114}
115
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200116static void end_swap_bio_read(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct page *page = bio->bi_io_vec[0].bv_page;
119
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200120 if (bio->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 SetPageError(page);
122 ClearPageUptodate(page);
Joe Perches11705322016-03-17 14:19:50 -0700123 pr_alert("Read-error on swap-device (%u:%u:%llu)\n",
124 imajor(bio->bi_bdev->bd_inode),
125 iminor(bio->bi_bdev->bd_inode),
126 (unsigned long long)bio->bi_iter.bi_sector);
Minchan Kimb430e9d2013-07-03 15:01:24 -0700127 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Minchan Kimb430e9d2013-07-03 15:01:24 -0700129
130 SetPageUptodate(page);
Minchan Kim3f2b1a02016-03-22 14:24:36 -0700131 swap_slot_free_notify(page);
Minchan Kimb430e9d2013-07-03 15:01:24 -0700132out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unlock_page(page);
134 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Mel Gormana509bc12012-07-31 16:44:57 -0700137int generic_swapfile_activate(struct swap_info_struct *sis,
138 struct file *swap_file,
139 sector_t *span)
140{
141 struct address_space *mapping = swap_file->f_mapping;
142 struct inode *inode = mapping->host;
143 unsigned blocks_per_page;
144 unsigned long page_no;
145 unsigned blkbits;
146 sector_t probe_block;
147 sector_t last_block;
148 sector_t lowest_block = -1;
149 sector_t highest_block = 0;
150 int nr_extents = 0;
151 int ret;
152
153 blkbits = inode->i_blkbits;
154 blocks_per_page = PAGE_SIZE >> blkbits;
155
156 /*
157 * Map all the blocks into the extent list. This code doesn't try
158 * to be very smart.
159 */
160 probe_block = 0;
161 page_no = 0;
162 last_block = i_size_read(inode) >> blkbits;
163 while ((probe_block + blocks_per_page) <= last_block &&
164 page_no < sis->max) {
165 unsigned block_in_page;
166 sector_t first_block;
167
Mikulas Patocka7e4411b2016-07-28 15:48:47 -0700168 cond_resched();
169
Mel Gormana509bc12012-07-31 16:44:57 -0700170 first_block = bmap(inode, probe_block);
171 if (first_block == 0)
172 goto bad_bmap;
173
174 /*
175 * It must be PAGE_SIZE aligned on-disk
176 */
177 if (first_block & (blocks_per_page - 1)) {
178 probe_block++;
179 goto reprobe;
180 }
181
182 for (block_in_page = 1; block_in_page < blocks_per_page;
183 block_in_page++) {
184 sector_t block;
185
186 block = bmap(inode, probe_block + block_in_page);
187 if (block == 0)
188 goto bad_bmap;
189 if (block != first_block + block_in_page) {
190 /* Discontiguity */
191 probe_block++;
192 goto reprobe;
193 }
194 }
195
196 first_block >>= (PAGE_SHIFT - blkbits);
197 if (page_no) { /* exclude the header page */
198 if (first_block < lowest_block)
199 lowest_block = first_block;
200 if (first_block > highest_block)
201 highest_block = first_block;
202 }
203
204 /*
205 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
206 */
207 ret = add_swap_extent(sis, page_no, 1, first_block);
208 if (ret < 0)
209 goto out;
210 nr_extents += ret;
211 page_no++;
212 probe_block += blocks_per_page;
213reprobe:
214 continue;
215 }
216 ret = nr_extents;
217 *span = 1 + highest_block - lowest_block;
218 if (page_no == 0)
219 page_no = 1; /* force Empty message */
220 sis->max = page_no;
221 sis->pages = page_no - 1;
222 sis->highest_bit = page_no - 1;
223out:
224 return ret;
225bad_bmap:
Joe Perches11705322016-03-17 14:19:50 -0700226 pr_err("swapon: swapfile has holes\n");
Mel Gormana509bc12012-07-31 16:44:57 -0700227 ret = -EINVAL;
228 goto out;
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * We may have stale swap cache pages in memory: notice
233 * them here and get rid of the unnecessary final write.
234 */
235int swap_writepage(struct page *page, struct writeback_control *wbc)
236{
Seth Jennings2f772e62013-04-29 15:08:34 -0700237 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800239 if (try_to_free_swap(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 unlock_page(page);
241 goto out;
242 }
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400243 if (frontswap_store(page) == 0) {
Dan Magenheimer38b5faf2012-04-09 17:08:06 -0600244 set_page_writeback(page);
245 unlock_page(page);
246 end_page_writeback(page);
247 goto out;
248 }
Seth Jennings1eec6702013-04-29 15:08:35 -0700249 ret = __swap_writepage(page, wbc, end_swap_bio_write);
Seth Jennings2f772e62013-04-29 15:08:34 -0700250out:
251 return ret;
252}
253
Seth Jennings1eec6702013-04-29 15:08:35 -0700254int __swap_writepage(struct page *page, struct writeback_control *wbc,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200255 bio_end_io_t end_write_func)
Seth Jennings2f772e62013-04-29 15:08:34 -0700256{
257 struct bio *bio;
Mike Christie4e49ea42016-06-05 14:31:41 -0500258 int ret;
Seth Jennings2f772e62013-04-29 15:08:34 -0700259 struct swap_info_struct *sis = page_swap_info(page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700260
Andrew Mortoncc30c5d2016-10-07 17:00:52 -0700261 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700262 if (sis->flags & SWP_FILE) {
263 struct kiocb kiocb;
264 struct file *swap_file = sis->swap_file;
265 struct address_space *mapping = swap_file->f_mapping;
Al Viro62a80672014-04-04 23:12:29 -0400266 struct bio_vec bv = {
267 .bv_page = page,
268 .bv_len = PAGE_SIZE,
269 .bv_offset = 0
Mel Gorman62c230b2012-07-31 16:44:55 -0700270 };
Al Viro05afcb72015-01-23 01:08:07 -0500271 struct iov_iter from;
Mel Gorman62c230b2012-07-31 16:44:55 -0700272
Al Viro05afcb72015-01-23 01:08:07 -0500273 iov_iter_bvec(&from, ITER_BVEC | WRITE, &bv, 1, PAGE_SIZE);
Mel Gorman62c230b2012-07-31 16:44:55 -0700274 init_sync_kiocb(&kiocb, swap_file);
275 kiocb.ki_pos = page_file_offset(page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700276
Mel Gorman0cdc4442013-04-29 15:08:48 -0700277 set_page_writeback(page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700278 unlock_page(page);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700279 ret = mapping->a_ops->direct_IO(&kiocb, &from);
Mel Gorman62c230b2012-07-31 16:44:55 -0700280 if (ret == PAGE_SIZE) {
281 count_vm_event(PSWPOUT);
282 ret = 0;
Jerome Marchand2d30d312013-04-29 15:08:47 -0700283 } else {
Mel Gorman0cdc4442013-04-29 15:08:48 -0700284 /*
285 * In the case of swap-over-nfs, this can be a
286 * temporary failure if the system has limited
287 * memory for allocating transmit buffers.
288 * Mark the page dirty and avoid
289 * rotate_reclaimable_page but rate-limit the
290 * messages but do not flag PageError like
291 * the normal direct-to-bio case as it could
292 * be temporary.
293 */
Jerome Marchand2d30d312013-04-29 15:08:47 -0700294 set_page_dirty(page);
Mel Gorman0cdc4442013-04-29 15:08:48 -0700295 ClearPageReclaim(page);
Joe Perches11705322016-03-17 14:19:50 -0700296 pr_err_ratelimited("Write error on dio swapfile (%llu)\n",
297 page_file_offset(page));
Mel Gorman62c230b2012-07-31 16:44:55 -0700298 }
Mel Gorman0cdc4442013-04-29 15:08:48 -0700299 end_page_writeback(page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700300 return ret;
301 }
302
Jens Axboeda4e1e32021-03-02 14:53:21 -0700303 ret = bdev_write_page(sis->bdev, map_swap_page(page, &sis->bdev),
304 page, wbc);
Matthew Wilcoxdd6bd0d2014-06-04 16:07:48 -0700305 if (!ret) {
306 count_vm_event(PSWPOUT);
307 return 0;
308 }
309
310 ret = 0;
Seth Jennings1eec6702013-04-29 15:08:35 -0700311 bio = get_swap_bio(GFP_NOIO, page, end_write_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (bio == NULL) {
313 set_page_dirty(page);
314 unlock_page(page);
315 ret = -ENOMEM;
316 goto out;
317 }
318 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboeba13e832016-08-01 09:38:44 -0600319 bio_set_op_attrs(bio, REQ_OP_WRITE, REQ_SYNC);
320 else
321 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700322 count_vm_event(PSWPOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 set_page_writeback(page);
324 unlock_page(page);
Mike Christie4e49ea42016-06-05 14:31:41 -0500325 submit_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326out:
327 return ret;
328}
329
Minchan Kimaca8bf32009-06-16 15:33:02 -0700330int swap_readpage(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 struct bio *bio;
333 int ret = 0;
Mel Gorman62c230b2012-07-31 16:44:55 -0700334 struct swap_info_struct *sis = page_swap_info(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Andrew Mortoncc30c5d2016-10-07 17:00:52 -0700336 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800337 VM_BUG_ON_PAGE(!PageLocked(page), page);
338 VM_BUG_ON_PAGE(PageUptodate(page), page);
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400339 if (frontswap_load(page) == 0) {
Dan Magenheimer38b5faf2012-04-09 17:08:06 -0600340 SetPageUptodate(page);
341 unlock_page(page);
342 goto out;
343 }
Mel Gorman62c230b2012-07-31 16:44:55 -0700344
345 if (sis->flags & SWP_FILE) {
346 struct file *swap_file = sis->swap_file;
347 struct address_space *mapping = swap_file->f_mapping;
348
349 ret = mapping->a_ops->readpage(swap_file, page);
350 if (!ret)
351 count_vm_event(PSWPIN);
352 return ret;
353 }
354
Jens Axboeda4e1e32021-03-02 14:53:21 -0700355 ret = bdev_read_page(sis->bdev, map_swap_page(page, &sis->bdev), page);
Matthew Wilcoxdd6bd0d2014-06-04 16:07:48 -0700356 if (!ret) {
Minchan Kimb06bad12016-04-28 16:18:41 -0700357 if (trylock_page(page)) {
358 swap_slot_free_notify(page);
359 unlock_page(page);
360 }
361
Matthew Wilcoxdd6bd0d2014-06-04 16:07:48 -0700362 count_vm_event(PSWPIN);
363 return 0;
364 }
365
366 ret = 0;
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -0800367 bio = get_swap_bio(GFP_KERNEL, page, end_swap_bio_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (bio == NULL) {
369 unlock_page(page);
370 ret = -ENOMEM;
371 goto out;
372 }
Mike Christie95fe6c12016-06-05 14:31:48 -0500373 bio_set_op_attrs(bio, REQ_OP_READ, 0);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700374 count_vm_event(PSWPIN);
Mike Christie4e49ea42016-06-05 14:31:41 -0500375 submit_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376out:
377 return ret;
378}
Mel Gorman62c230b2012-07-31 16:44:55 -0700379
380int swap_set_page_dirty(struct page *page)
381{
382 struct swap_info_struct *sis = page_swap_info(page);
383
384 if (sis->flags & SWP_FILE) {
385 struct address_space *mapping = sis->swap_file->f_mapping;
Andrew Mortoncc30c5d2016-10-07 17:00:52 -0700386
387 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
Mel Gorman62c230b2012-07-31 16:44:55 -0700388 return mapping->a_ops->set_page_dirty(page);
389 } else {
390 return __set_page_dirty_no_writeback(page);
391 }
392}