Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fs/mpage.c |
| 4 | * |
| 5 | * Copyright (C) 2002, Linus Torvalds. |
| 6 | * |
| 7 | * Contains functions related to preparing and submitting BIOs which contain |
| 8 | * multiple pagecache pages. |
| 9 | * |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 10 | * 15May2002 Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Initial version |
| 12 | * 27Jun2002 axboe@suse.de |
| 13 | * use bio_add_page() to build bio's just the right size |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
Paul Gortmaker | 630d9c4 | 2011-11-16 23:57:37 -0500 | [diff] [blame] | 17 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/mm.h> |
| 19 | #include <linux/kdev_t.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/bio.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/buffer_head.h> |
| 24 | #include <linux/blkdev.h> |
| 25 | #include <linux/highmem.h> |
| 26 | #include <linux/prefetch.h> |
| 27 | #include <linux/mpage.h> |
Andrew Morton | 02c4363 | 2016-03-15 14:55:15 -0700 | [diff] [blame] | 28 | #include <linux/mm_inline.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/writeback.h> |
| 30 | #include <linux/backing-dev.h> |
| 31 | #include <linux/pagevec.h> |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 32 | #include <linux/cleancache.h> |
Akinobu Mita | 4db96b7 | 2014-10-09 15:26:55 -0700 | [diff] [blame] | 33 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Mohan Srinivasan | f2fe7ba | 2016-12-14 16:39:51 -0800 | [diff] [blame] | 35 | #define CREATE_TRACE_POINTS |
| 36 | #include <trace/events/android_fs.h> |
| 37 | |
| 38 | EXPORT_TRACEPOINT_SYMBOL(android_fs_datawrite_start); |
| 39 | EXPORT_TRACEPOINT_SYMBOL(android_fs_datawrite_end); |
| 40 | EXPORT_TRACEPOINT_SYMBOL(android_fs_dataread_start); |
| 41 | EXPORT_TRACEPOINT_SYMBOL(android_fs_dataread_end); |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* |
| 44 | * I/O completion handler for multipage BIOs. |
| 45 | * |
| 46 | * The mpage code never puts partial pages into a BIO (except for end-of-file). |
| 47 | * If a page does not map to a contiguous run of blocks then it simply falls |
| 48 | * back to block_read_full_page(). |
| 49 | * |
| 50 | * Why is this? If a page's completion depends on a number of different BIOs |
| 51 | * which can complete in any order (or at the same time) then determining the |
| 52 | * status of that page is hard. See end_buffer_async_read() for the details. |
| 53 | * There is no point in duplicating all that complexity. |
| 54 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 55 | static void mpage_end_io(struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 57 | struct bio_vec *bv; |
Ming Lei | 6dc4f10 | 2019-02-15 19:13:19 +0800 | [diff] [blame] | 58 | struct bvec_iter_all iter_all; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Mohan Srinivasan | f2fe7ba | 2016-12-14 16:39:51 -0800 | [diff] [blame] | 60 | if (trace_android_fs_dataread_end_enabled() && |
| 61 | (bio_data_dir(bio) == READ)) { |
| 62 | struct page *first_page = bio->bi_io_vec[0].bv_page; |
| 63 | |
| 64 | if (first_page != NULL) |
| 65 | trace_android_fs_dataread_end(first_page->mapping->host, |
| 66 | page_offset(first_page), |
| 67 | bio->bi_iter.bi_size); |
| 68 | } |
| 69 | |
Christoph Hellwig | 2b070cf | 2019-04-25 09:03:00 +0200 | [diff] [blame] | 70 | bio_for_each_segment_all(bv, bio, iter_all) { |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 71 | struct page *page = bv->bv_page; |
Tejun Heo | 3f289dc | 2018-07-18 04:47:36 -0700 | [diff] [blame] | 72 | page_endio(page, bio_op(bio), |
| 73 | blk_status_to_errno(bio->bi_status)); |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | bio_put(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 79 | static struct bio *mpage_bio_submit(int op, int op_flags, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Mohan Srinivasan | f2fe7ba | 2016-12-14 16:39:51 -0800 | [diff] [blame] | 81 | if (trace_android_fs_dataread_start_enabled() && (op == REQ_OP_READ)) { |
| 82 | struct page *first_page = bio->bi_io_vec[0].bv_page; |
| 83 | |
| 84 | if (first_page != NULL) { |
| 85 | char *path, pathbuf[MAX_TRACE_PATHBUF_LEN]; |
| 86 | |
| 87 | path = android_fstrace_get_pathname(pathbuf, |
| 88 | MAX_TRACE_PATHBUF_LEN, |
| 89 | first_page->mapping->host); |
| 90 | trace_android_fs_dataread_start( |
| 91 | first_page->mapping->host, |
| 92 | page_offset(first_page), |
| 93 | bio->bi_iter.bi_size, |
| 94 | current->pid, |
| 95 | path, |
| 96 | current->comm); |
| 97 | } |
| 98 | } |
Hai Shan | c32b0d4 | 2011-01-13 15:45:51 -0800 | [diff] [blame] | 99 | bio->bi_end_io = mpage_end_io; |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 100 | bio_set_op_attrs(bio, op, op_flags); |
Ming Lei | 83c9c54 | 2020-01-05 09:41:14 +0800 | [diff] [blame] | 101 | guard_bio_eod(bio); |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 102 | submit_bio(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return NULL; |
| 104 | } |
| 105 | |
| 106 | static struct bio * |
| 107 | mpage_alloc(struct block_device *bdev, |
| 108 | sector_t first_sector, int nr_vecs, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 109 | gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
| 111 | struct bio *bio; |
| 112 | |
Michal Hocko | 8a5c743 | 2016-07-26 15:24:53 -0700 | [diff] [blame] | 113 | /* Restrict the given (page cache) mask for slab allocations */ |
| 114 | gfp_flags &= GFP_KERNEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | bio = bio_alloc(gfp_flags, nr_vecs); |
| 116 | |
| 117 | if (bio == NULL && (current->flags & PF_MEMALLOC)) { |
| 118 | while (!bio && (nr_vecs /= 2)) |
| 119 | bio = bio_alloc(gfp_flags, nr_vecs); |
| 120 | } |
| 121 | |
| 122 | if (bio) { |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 123 | bio_set_dev(bio, bdev); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 124 | bio->bi_iter.bi_sector = first_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
| 126 | return bio; |
| 127 | } |
| 128 | |
| 129 | /* |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 130 | * support function for mpage_readahead. The fs supplied get_block might |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | * return an up to date buffer. This is used to map that buffer into |
| 132 | * the page, which allows readpage to avoid triggering a duplicate call |
| 133 | * to get_block. |
| 134 | * |
| 135 | * The idea is to avoid adding buffers to pages that don't already have |
| 136 | * them. So when the buffer is up to date and the page size == block size, |
| 137 | * this marks the page up to date instead of adding new buffers. |
| 138 | */ |
| 139 | static void |
| 140 | map_buffer_to_page(struct page *page, struct buffer_head *bh, int page_block) |
| 141 | { |
| 142 | struct inode *inode = page->mapping->host; |
| 143 | struct buffer_head *page_bh, *head; |
| 144 | int block = 0; |
| 145 | |
| 146 | if (!page_has_buffers(page)) { |
| 147 | /* |
| 148 | * don't make any buffers if there is only one buffer on |
| 149 | * the page and the page just needs to be set up to date |
| 150 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 151 | if (inode->i_blkbits == PAGE_SHIFT && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | buffer_uptodate(bh)) { |
| 153 | SetPageUptodate(page); |
| 154 | return; |
| 155 | } |
Fabian Frederick | 9340747 | 2017-02-27 14:28:32 -0800 | [diff] [blame] | 156 | create_empty_buffers(page, i_blocksize(inode), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | head = page_buffers(page); |
| 159 | page_bh = head; |
| 160 | do { |
| 161 | if (block == page_block) { |
| 162 | page_bh->b_state = bh->b_state; |
| 163 | page_bh->b_bdev = bh->b_bdev; |
| 164 | page_bh->b_blocknr = bh->b_blocknr; |
| 165 | break; |
| 166 | } |
| 167 | page_bh = page_bh->b_this_page; |
| 168 | block++; |
| 169 | } while (page_bh != head); |
| 170 | } |
| 171 | |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 172 | struct mpage_readpage_args { |
| 173 | struct bio *bio; |
| 174 | struct page *page; |
| 175 | unsigned int nr_pages; |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 176 | bool is_readahead; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 177 | sector_t last_block_in_bio; |
| 178 | struct buffer_head map_bh; |
| 179 | unsigned long first_logical_block; |
| 180 | get_block_t *get_block; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 183 | /* |
| 184 | * This is the worker routine which does all the work of mapping the disk |
| 185 | * blocks and constructs largest possible bios, submits them for IO if the |
| 186 | * blocks are not contiguous on the disk. |
| 187 | * |
| 188 | * We pass a buffer_head back and forth and use its buffer_mapped() flag to |
| 189 | * represent the validity of its disk mapping and to decide when to do the next |
| 190 | * get_block() call. |
| 191 | */ |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 192 | static struct bio *do_mpage_readpage(struct mpage_readpage_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 194 | struct page *page = args->page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | struct inode *inode = page->mapping->host; |
| 196 | const unsigned blkbits = inode->i_blkbits; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 197 | const unsigned blocks_per_page = PAGE_SIZE >> blkbits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | const unsigned blocksize = 1 << blkbits; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 199 | struct buffer_head *map_bh = &args->map_bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | sector_t block_in_file; |
| 201 | sector_t last_block; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 202 | sector_t last_block_in_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | sector_t blocks[MAX_BUF_PER_PAGE]; |
| 204 | unsigned page_block; |
| 205 | unsigned first_hole = blocks_per_page; |
| 206 | struct block_device *bdev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | int length; |
| 208 | int fully_mapped = 1; |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 209 | int op_flags; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 210 | unsigned nblocks; |
| 211 | unsigned relative_block; |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 212 | gfp_t gfp; |
| 213 | |
| 214 | if (args->is_readahead) { |
| 215 | op_flags = REQ_RAHEAD; |
| 216 | gfp = readahead_gfp_mask(page->mapping); |
| 217 | } else { |
| 218 | op_flags = 0; |
| 219 | gfp = mapping_gfp_constraint(page->mapping, GFP_KERNEL); |
| 220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
| 222 | if (page_has_buffers(page)) |
| 223 | goto confused; |
| 224 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 225 | block_in_file = (sector_t)page->index << (PAGE_SHIFT - blkbits); |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 226 | last_block = block_in_file + args->nr_pages * blocks_per_page; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 227 | last_block_in_file = (i_size_read(inode) + blocksize - 1) >> blkbits; |
| 228 | if (last_block > last_block_in_file) |
| 229 | last_block = last_block_in_file; |
| 230 | page_block = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 232 | /* |
| 233 | * Map blocks using the result from the previous get_blocks call first. |
| 234 | */ |
| 235 | nblocks = map_bh->b_size >> blkbits; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 236 | if (buffer_mapped(map_bh) && |
| 237 | block_in_file > args->first_logical_block && |
| 238 | block_in_file < (args->first_logical_block + nblocks)) { |
| 239 | unsigned map_offset = block_in_file - args->first_logical_block; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 240 | unsigned last = nblocks - map_offset; |
| 241 | |
| 242 | for (relative_block = 0; ; relative_block++) { |
| 243 | if (relative_block == last) { |
| 244 | clear_buffer_mapped(map_bh); |
| 245 | break; |
| 246 | } |
| 247 | if (page_block == blocks_per_page) |
| 248 | break; |
| 249 | blocks[page_block] = map_bh->b_blocknr + map_offset + |
| 250 | relative_block; |
| 251 | page_block++; |
| 252 | block_in_file++; |
| 253 | } |
| 254 | bdev = map_bh->b_bdev; |
| 255 | } |
| 256 | |
| 257 | /* |
| 258 | * Then do more get_blocks calls until we are done with this page. |
| 259 | */ |
| 260 | map_bh->b_page = page; |
| 261 | while (page_block < blocks_per_page) { |
| 262 | map_bh->b_state = 0; |
| 263 | map_bh->b_size = 0; |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | if (block_in_file < last_block) { |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 266 | map_bh->b_size = (last_block-block_in_file) << blkbits; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 267 | if (args->get_block(inode, block_in_file, map_bh, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | goto confused; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 269 | args->first_logical_block = block_in_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 272 | if (!buffer_mapped(map_bh)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | fully_mapped = 0; |
| 274 | if (first_hole == blocks_per_page) |
| 275 | first_hole = page_block; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 276 | page_block++; |
| 277 | block_in_file++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | continue; |
| 279 | } |
| 280 | |
| 281 | /* some filesystems will copy data into the page during |
| 282 | * the get_block call, in which case we don't want to |
| 283 | * read it again. map_buffer_to_page copies the data |
| 284 | * we just collected from get_block into the page's buffers |
| 285 | * so readpage doesn't have to repeat the get_block call |
| 286 | */ |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 287 | if (buffer_uptodate(map_bh)) { |
| 288 | map_buffer_to_page(page, map_bh, page_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | goto confused; |
| 290 | } |
| 291 | |
| 292 | if (first_hole != blocks_per_page) |
| 293 | goto confused; /* hole -> non-hole */ |
| 294 | |
| 295 | /* Contiguous blocks? */ |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 296 | if (page_block && blocks[page_block-1] != map_bh->b_blocknr-1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | goto confused; |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 298 | nblocks = map_bh->b_size >> blkbits; |
| 299 | for (relative_block = 0; ; relative_block++) { |
| 300 | if (relative_block == nblocks) { |
| 301 | clear_buffer_mapped(map_bh); |
| 302 | break; |
| 303 | } else if (page_block == blocks_per_page) |
| 304 | break; |
| 305 | blocks[page_block] = map_bh->b_blocknr+relative_block; |
| 306 | page_block++; |
| 307 | block_in_file++; |
| 308 | } |
| 309 | bdev = map_bh->b_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | if (first_hole != blocks_per_page) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 313 | zero_user_segment(page, first_hole << blkbits, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | if (first_hole == 0) { |
| 315 | SetPageUptodate(page); |
| 316 | unlock_page(page); |
| 317 | goto out; |
| 318 | } |
| 319 | } else if (fully_mapped) { |
| 320 | SetPageMappedToDisk(page); |
| 321 | } |
| 322 | |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 323 | if (fully_mapped && blocks_per_page == 1 && !PageUptodate(page) && |
| 324 | cleancache_get_page(page) == 0) { |
| 325 | SetPageUptodate(page); |
| 326 | goto confused; |
| 327 | } |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | /* |
| 330 | * This page will go to BIO. Do we need to send this BIO off first? |
| 331 | */ |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 332 | if (args->bio && (args->last_block_in_bio != blocks[0] - 1)) |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 333 | args->bio = mpage_bio_submit(REQ_OP_READ, op_flags, args->bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
| 335 | alloc_new: |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 336 | if (args->bio == NULL) { |
Matthew Wilcox | 47a191f | 2014-06-04 16:07:46 -0700 | [diff] [blame] | 337 | if (first_hole == blocks_per_page) { |
| 338 | if (!bdev_read_page(bdev, blocks[0] << (blkbits - 9), |
| 339 | page)) |
| 340 | goto out; |
| 341 | } |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 342 | args->bio = mpage_alloc(bdev, blocks[0] << (blkbits - 9), |
| 343 | min_t(int, args->nr_pages, |
| 344 | BIO_MAX_PAGES), |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 345 | gfp); |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 346 | if (args->bio == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | goto confused; |
| 348 | } |
| 349 | |
| 350 | length = first_hole << blkbits; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 351 | if (bio_add_page(args->bio, page, length, 0) < length) { |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 352 | args->bio = mpage_bio_submit(REQ_OP_READ, op_flags, args->bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | goto alloc_new; |
| 354 | } |
| 355 | |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 356 | relative_block = block_in_file - args->first_logical_block; |
Miquel van Smoorenburg | 38c8e61 | 2009-01-06 14:39:02 -0800 | [diff] [blame] | 357 | nblocks = map_bh->b_size >> blkbits; |
| 358 | if ((buffer_boundary(map_bh) && relative_block == nblocks) || |
| 359 | (first_hole != blocks_per_page)) |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 360 | args->bio = mpage_bio_submit(REQ_OP_READ, op_flags, args->bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | else |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 362 | args->last_block_in_bio = blocks[blocks_per_page - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | out: |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 364 | return args->bio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | confused: |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 367 | if (args->bio) |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 368 | args->bio = mpage_bio_submit(REQ_OP_READ, op_flags, args->bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (!PageUptodate(page)) |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 370 | block_read_full_page(page, args->get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | else |
| 372 | unlock_page(page); |
| 373 | goto out; |
| 374 | } |
| 375 | |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 376 | /** |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 377 | * mpage_readahead - start reads against pages |
| 378 | * @rac: Describes which pages to read. |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 379 | * @get_block: The filesystem's block mapper function. |
| 380 | * |
| 381 | * This function walks the pages and the blocks within each page, building and |
| 382 | * emitting large BIOs. |
| 383 | * |
| 384 | * If anything unusual happens, such as: |
| 385 | * |
| 386 | * - encountering a page which has buffers |
| 387 | * - encountering a page which has a non-hole after a hole |
| 388 | * - encountering a page with non-contiguous blocks |
| 389 | * |
| 390 | * then this code just gives up and calls the buffer_head-based read function. |
| 391 | * It does handle a page which has holes at the end - that is a common case: |
Kirill A. Shutemov | ea1754a | 2016-04-01 15:29:48 +0300 | [diff] [blame] | 392 | * the end-of-file on blocksize < PAGE_SIZE setups. |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 393 | * |
| 394 | * BH_Boundary explanation: |
| 395 | * |
| 396 | * There is a problem. The mpage read code assembles several pages, gets all |
| 397 | * their disk mappings, and then submits them all. That's fine, but obtaining |
| 398 | * the disk mappings may require I/O. Reads of indirect blocks, for example. |
| 399 | * |
| 400 | * So an mpage read of the first 16 blocks of an ext2 file will cause I/O to be |
| 401 | * submitted in the following order: |
Mauro Carvalho Chehab | 0117d42 | 2017-05-12 07:45:42 -0300 | [diff] [blame] | 402 | * |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 403 | * 12 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 |
Randy Dunlap | 78a4a50 | 2008-02-29 22:02:31 -0800 | [diff] [blame] | 404 | * |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 405 | * because the indirect block has to be read to get the mappings of blocks |
| 406 | * 13,14,15,16. Obviously, this impacts performance. |
| 407 | * |
| 408 | * So what we do it to allow the filesystem's get_block() function to set |
| 409 | * BH_Boundary when it maps block 11. BH_Boundary says: mapping of the block |
| 410 | * after this one will require I/O against a block which is probably close to |
| 411 | * this one. So you should push what I/O you have currently accumulated. |
| 412 | * |
| 413 | * This all causes the disk requests to be issued in the correct order. |
| 414 | */ |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 415 | void mpage_readahead(struct readahead_control *rac, get_block_t get_block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 417 | struct page *page; |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 418 | struct mpage_readpage_args args = { |
| 419 | .get_block = get_block, |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 420 | .is_readahead = true, |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 421 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 423 | while ((page = readahead_page(rac))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | prefetchw(&page->flags); |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 425 | args.page = page; |
| 426 | args.nr_pages = readahead_count(rac); |
| 427 | args.bio = do_mpage_readpage(&args); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 428 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 430 | if (args.bio) |
Jens Axboe | 74c8164 | 2018-08-17 15:45:36 -0700 | [diff] [blame] | 431 | mpage_bio_submit(REQ_OP_READ, REQ_RAHEAD, args.bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
Greg Kroah-Hartman | d483eed | 2020-07-02 12:51:03 +0200 | [diff] [blame] | 433 | EXPORT_SYMBOL_NS(mpage_readahead, ANDROID_GKI_VFS_EXPORT_ONLY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /* |
| 436 | * This isn't called much at all |
| 437 | */ |
| 438 | int mpage_readpage(struct page *page, get_block_t get_block) |
| 439 | { |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 440 | struct mpage_readpage_args args = { |
| 441 | .page = page, |
| 442 | .nr_pages = 1, |
| 443 | .get_block = get_block, |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 444 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
Jens Axboe | 357c120 | 2018-08-17 15:45:32 -0700 | [diff] [blame] | 446 | args.bio = do_mpage_readpage(&args); |
| 447 | if (args.bio) |
| 448 | mpage_bio_submit(REQ_OP_READ, 0, args.bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | return 0; |
| 450 | } |
Greg Kroah-Hartman | d483eed | 2020-07-02 12:51:03 +0200 | [diff] [blame] | 451 | EXPORT_SYMBOL_NS(mpage_readpage, ANDROID_GKI_VFS_EXPORT_ONLY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * Writing is not so simple. |
| 455 | * |
| 456 | * If the page has buffers then they will be used for obtaining the disk |
| 457 | * mapping. We only support pages which are fully mapped-and-dirty, with a |
| 458 | * special case for pages which are unmapped at the end: end-of-file. |
| 459 | * |
| 460 | * If the page has no buffers (preferred) then the page is mapped here. |
| 461 | * |
| 462 | * If all blocks are found to be contiguous then the page can go into the |
| 463 | * BIO. Otherwise fall back to the mapping's writepage(). |
| 464 | * |
| 465 | * FIXME: This code wants an estimate of how many pages are still to be |
| 466 | * written, so it can intelligently allocate a suitably-sized BIO. For now, |
| 467 | * just allocate full-size (16-page) BIOs. |
| 468 | */ |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 469 | |
Dmitri Vorobiev | ced117c | 2009-03-31 00:41:20 +0300 | [diff] [blame] | 470 | struct mpage_data { |
| 471 | struct bio *bio; |
| 472 | sector_t last_block_in_bio; |
| 473 | get_block_t *get_block; |
| 474 | unsigned use_writepage; |
| 475 | }; |
| 476 | |
Matthew Wilcox | 90768ee | 2014-06-04 16:07:44 -0700 | [diff] [blame] | 477 | /* |
| 478 | * We have our BIO, so we can now mark the buffers clean. Make |
| 479 | * sure to only clean buffers which we know we'll be writing. |
| 480 | */ |
| 481 | static void clean_buffers(struct page *page, unsigned first_unmapped) |
| 482 | { |
| 483 | unsigned buffer_counter = 0; |
| 484 | struct buffer_head *bh, *head; |
| 485 | if (!page_has_buffers(page)) |
| 486 | return; |
| 487 | head = page_buffers(page); |
| 488 | bh = head; |
| 489 | |
| 490 | do { |
| 491 | if (buffer_counter++ == first_unmapped) |
| 492 | break; |
| 493 | clear_buffer_dirty(bh); |
| 494 | bh = bh->b_this_page; |
| 495 | } while (bh != head); |
| 496 | |
| 497 | /* |
| 498 | * we cannot drop the bh if the page is not uptodate or a concurrent |
| 499 | * readpage would fail to serialize with the bh and it would read from |
| 500 | * disk before we reach the platter. |
| 501 | */ |
| 502 | if (buffer_heads_over_limit && PageUptodate(page)) |
| 503 | try_to_free_buffers(page); |
| 504 | } |
| 505 | |
Matthew Wilcox | f892760 | 2017-10-13 15:58:15 -0700 | [diff] [blame] | 506 | /* |
| 507 | * For situations where we want to clean all buffers attached to a page. |
| 508 | * We don't need to calculate how many buffers are attached to the page, |
| 509 | * we just need to specify a number larger than the maximum number of buffers. |
| 510 | */ |
| 511 | void clean_page_buffers(struct page *page) |
| 512 | { |
| 513 | clean_buffers(page, ~0U); |
| 514 | } |
| 515 | |
Dmitri Vorobiev | ced117c | 2009-03-31 00:41:20 +0300 | [diff] [blame] | 516 | static int __mpage_writepage(struct page *page, struct writeback_control *wbc, |
Alex Tomas | 29a814d | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 517 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 519 | struct mpage_data *mpd = data; |
| 520 | struct bio *bio = mpd->bio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | struct address_space *mapping = page->mapping; |
| 522 | struct inode *inode = page->mapping->host; |
| 523 | const unsigned blkbits = inode->i_blkbits; |
| 524 | unsigned long end_index; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 525 | const unsigned blocks_per_page = PAGE_SIZE >> blkbits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | sector_t last_block; |
| 527 | sector_t block_in_file; |
| 528 | sector_t blocks[MAX_BUF_PER_PAGE]; |
| 529 | unsigned page_block; |
| 530 | unsigned first_unmapped = blocks_per_page; |
| 531 | struct block_device *bdev = NULL; |
| 532 | int boundary = 0; |
| 533 | sector_t boundary_block = 0; |
| 534 | struct block_device *boundary_bdev = NULL; |
| 535 | int length; |
| 536 | struct buffer_head map_bh; |
| 537 | loff_t i_size = i_size_read(inode); |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 538 | int ret = 0; |
Jens Axboe | 7637241 | 2016-11-01 10:00:38 -0600 | [diff] [blame] | 539 | int op_flags = wbc_to_write_flags(wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 541 | if (page_has_buffers(page)) { |
| 542 | struct buffer_head *head = page_buffers(page); |
| 543 | struct buffer_head *bh = head; |
| 544 | |
| 545 | /* If they're all mapped and dirty, do it */ |
| 546 | page_block = 0; |
| 547 | do { |
| 548 | BUG_ON(buffer_locked(bh)); |
| 549 | if (!buffer_mapped(bh)) { |
| 550 | /* |
| 551 | * unmapped dirty buffers are created by |
| 552 | * __set_page_dirty_buffers -> mmapped data |
| 553 | */ |
| 554 | if (buffer_dirty(bh)) |
| 555 | goto confused; |
| 556 | if (first_unmapped == blocks_per_page) |
| 557 | first_unmapped = page_block; |
| 558 | continue; |
| 559 | } |
| 560 | |
| 561 | if (first_unmapped != blocks_per_page) |
| 562 | goto confused; /* hole -> non-hole */ |
| 563 | |
| 564 | if (!buffer_dirty(bh) || !buffer_uptodate(bh)) |
| 565 | goto confused; |
| 566 | if (page_block) { |
| 567 | if (bh->b_blocknr != blocks[page_block-1] + 1) |
| 568 | goto confused; |
| 569 | } |
| 570 | blocks[page_block++] = bh->b_blocknr; |
| 571 | boundary = buffer_boundary(bh); |
| 572 | if (boundary) { |
| 573 | boundary_block = bh->b_blocknr; |
| 574 | boundary_bdev = bh->b_bdev; |
| 575 | } |
| 576 | bdev = bh->b_bdev; |
| 577 | } while ((bh = bh->b_this_page) != head); |
| 578 | |
| 579 | if (first_unmapped) |
| 580 | goto page_is_mapped; |
| 581 | |
| 582 | /* |
| 583 | * Page has buffers, but they are all unmapped. The page was |
| 584 | * created by pagein or read over a hole which was handled by |
| 585 | * block_read_full_page(). If this address_space is also |
Matthew Wilcox (Oracle) | d438834 | 2020-06-01 21:47:02 -0700 | [diff] [blame] | 586 | * using mpage_readahead then this can rarely happen. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | */ |
| 588 | goto confused; |
| 589 | } |
| 590 | |
| 591 | /* |
| 592 | * The page has no buffers: map it to disk |
| 593 | */ |
| 594 | BUG_ON(!PageUptodate(page)); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 595 | block_in_file = (sector_t)page->index << (PAGE_SHIFT - blkbits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | last_block = (i_size - 1) >> blkbits; |
| 597 | map_bh.b_page = page; |
| 598 | for (page_block = 0; page_block < blocks_per_page; ) { |
| 599 | |
| 600 | map_bh.b_state = 0; |
Badari Pulavarty | b0cf232 | 2006-03-26 01:38:00 -0800 | [diff] [blame] | 601 | map_bh.b_size = 1 << blkbits; |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 602 | if (mpd->get_block(inode, block_in_file, &map_bh, 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | goto confused; |
| 604 | if (buffer_new(&map_bh)) |
Jan Kara | e64855c | 2016-11-04 18:08:15 +0100 | [diff] [blame] | 605 | clean_bdev_bh_alias(&map_bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | if (buffer_boundary(&map_bh)) { |
| 607 | boundary_block = map_bh.b_blocknr; |
| 608 | boundary_bdev = map_bh.b_bdev; |
| 609 | } |
| 610 | if (page_block) { |
| 611 | if (map_bh.b_blocknr != blocks[page_block-1] + 1) |
| 612 | goto confused; |
| 613 | } |
| 614 | blocks[page_block++] = map_bh.b_blocknr; |
| 615 | boundary = buffer_boundary(&map_bh); |
| 616 | bdev = map_bh.b_bdev; |
| 617 | if (block_in_file == last_block) |
| 618 | break; |
| 619 | block_in_file++; |
| 620 | } |
| 621 | BUG_ON(page_block == 0); |
| 622 | |
| 623 | first_unmapped = page_block; |
| 624 | |
| 625 | page_is_mapped: |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 626 | end_index = i_size >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | if (page->index >= end_index) { |
| 628 | /* |
| 629 | * The page straddles i_size. It must be zeroed out on each |
Adam Buchbinder | 2a61aa4 | 2009-12-11 16:35:40 -0500 | [diff] [blame] | 630 | * and every writepage invocation because it may be mmapped. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * "A file is mapped in multiples of the page size. For a file |
| 632 | * that is not a multiple of the page size, the remaining memory |
| 633 | * is zeroed when mapped, and writes to that region are not |
| 634 | * written out to the file." |
| 635 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 636 | unsigned offset = i_size & (PAGE_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 638 | if (page->index > end_index || !offset) |
| 639 | goto confused; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 640 | zero_user_segment(page, offset, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /* |
| 644 | * This page will go to BIO. Do we need to send this BIO off first? |
| 645 | */ |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 646 | if (bio && mpd->last_block_in_bio != blocks[0] - 1) |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 647 | bio = mpage_bio_submit(REQ_OP_WRITE, op_flags, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
| 649 | alloc_new: |
| 650 | if (bio == NULL) { |
Matthew Wilcox | 47a191f | 2014-06-04 16:07:46 -0700 | [diff] [blame] | 651 | if (first_unmapped == blocks_per_page) { |
| 652 | if (!bdev_write_page(bdev, blocks[0] << (blkbits - 9), |
Matthew Wilcox | f892760 | 2017-10-13 15:58:15 -0700 | [diff] [blame] | 653 | page, wbc)) |
Matthew Wilcox | 47a191f | 2014-06-04 16:07:46 -0700 | [diff] [blame] | 654 | goto out; |
Matthew Wilcox | 47a191f | 2014-06-04 16:07:46 -0700 | [diff] [blame] | 655 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | bio = mpage_alloc(bdev, blocks[0] << (blkbits - 9), |
Kent Overstreet | b54ffb7 | 2015-05-19 14:31:01 +0200 | [diff] [blame] | 657 | BIO_MAX_PAGES, GFP_NOFS|__GFP_HIGH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (bio == NULL) |
| 659 | goto confused; |
Tejun Heo | 429b3fb | 2015-05-22 17:14:04 -0400 | [diff] [blame] | 660 | |
Tejun Heo | b16b1de | 2015-06-02 08:39:48 -0600 | [diff] [blame] | 661 | wbc_init_bio(wbc, bio); |
Jens Axboe | 8e8f929 | 2017-06-27 09:30:05 -0600 | [diff] [blame] | 662 | bio->bi_write_hint = inode->i_write_hint; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | /* |
| 666 | * Must try to add the page before marking the buffer clean or |
| 667 | * the confused fail path above (OOM) will be very confused when |
| 668 | * it finds all bh marked clean (i.e. it will not write anything) |
| 669 | */ |
Tejun Heo | 34e51a5 | 2019-06-27 13:39:49 -0700 | [diff] [blame] | 670 | wbc_account_cgroup_owner(wbc, page, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | length = first_unmapped << blkbits; |
| 672 | if (bio_add_page(bio, page, length, 0) < length) { |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 673 | bio = mpage_bio_submit(REQ_OP_WRITE, op_flags, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | goto alloc_new; |
| 675 | } |
| 676 | |
Matthew Wilcox | 90768ee | 2014-06-04 16:07:44 -0700 | [diff] [blame] | 677 | clean_buffers(page, first_unmapped); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
| 679 | BUG_ON(PageWriteback(page)); |
| 680 | set_page_writeback(page); |
| 681 | unlock_page(page); |
| 682 | if (boundary || (first_unmapped != blocks_per_page)) { |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 683 | bio = mpage_bio_submit(REQ_OP_WRITE, op_flags, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | if (boundary_block) { |
| 685 | write_boundary_block(boundary_bdev, |
| 686 | boundary_block, 1 << blkbits); |
| 687 | } |
| 688 | } else { |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 689 | mpd->last_block_in_bio = blocks[blocks_per_page - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | } |
| 691 | goto out; |
| 692 | |
| 693 | confused: |
| 694 | if (bio) |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 695 | bio = mpage_bio_submit(REQ_OP_WRITE, op_flags, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 697 | if (mpd->use_writepage) { |
| 698 | ret = mapping->a_ops->writepage(page, wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | } else { |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 700 | ret = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | goto out; |
| 702 | } |
| 703 | /* |
| 704 | * The caller has a ref on the inode, so *mapping is stable |
| 705 | */ |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 706 | mapping_set_error(mapping, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | out: |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 708 | mpd->bio = bio; |
| 709 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | /** |
Randy Dunlap | 78a4a50 | 2008-02-29 22:02:31 -0800 | [diff] [blame] | 713 | * mpage_writepages - walk the list of dirty pages of the given address space & writepage() all of them |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | * @mapping: address space structure to write |
| 715 | * @wbc: subtract the number of written pages from *@wbc->nr_to_write |
| 716 | * @get_block: the filesystem's block mapper function. |
| 717 | * If this is NULL then use a_ops->writepage. Otherwise, go |
| 718 | * direct-to-BIO. |
| 719 | * |
| 720 | * This is a library function, which implements the writepages() |
| 721 | * address_space_operation. |
| 722 | * |
| 723 | * If a page is already under I/O, generic_writepages() skips it, even |
| 724 | * if it's dirty. This is desirable behaviour for memory-cleaning writeback, |
| 725 | * but it is INCORRECT for data-integrity system calls such as fsync(). fsync() |
| 726 | * and msync() need to guarantee that all the data which was dirty at the time |
| 727 | * the call was made get new I/O started against them. If wbc->sync_mode is |
| 728 | * WB_SYNC_ALL then we were called for data integrity and we must wait for |
| 729 | * existing IO to complete. |
| 730 | */ |
| 731 | int |
| 732 | mpage_writepages(struct address_space *mapping, |
| 733 | struct writeback_control *wbc, get_block_t get_block) |
| 734 | { |
Jens Axboe | 2ed1a6b | 2010-06-22 12:52:14 +0200 | [diff] [blame] | 735 | struct blk_plug plug; |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 736 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Jens Axboe | 2ed1a6b | 2010-06-22 12:52:14 +0200 | [diff] [blame] | 738 | blk_start_plug(&plug); |
| 739 | |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 740 | if (!get_block) |
| 741 | ret = generic_writepages(mapping, wbc); |
| 742 | else { |
| 743 | struct mpage_data mpd = { |
| 744 | .bio = NULL, |
| 745 | .last_block_in_bio = 0, |
| 746 | .get_block = get_block, |
| 747 | .use_writepage = 1, |
| 748 | }; |
| 749 | |
| 750 | ret = write_cache_pages(mapping, wbc, __mpage_writepage, &mpd); |
Roman Pen | 5948edb | 2015-09-15 08:27:25 -0600 | [diff] [blame] | 751 | if (mpd.bio) { |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 752 | int op_flags = (wbc->sync_mode == WB_SYNC_ALL ? |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 753 | REQ_SYNC : 0); |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 754 | mpage_bio_submit(REQ_OP_WRITE, op_flags, mpd.bio); |
Roman Pen | 5948edb | 2015-09-15 08:27:25 -0600 | [diff] [blame] | 755 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
Jens Axboe | 2ed1a6b | 2010-06-22 12:52:14 +0200 | [diff] [blame] | 757 | blk_finish_plug(&plug); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | return ret; |
| 759 | } |
| 760 | EXPORT_SYMBOL(mpage_writepages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
| 762 | int mpage_writepage(struct page *page, get_block_t get_block, |
| 763 | struct writeback_control *wbc) |
| 764 | { |
Miklos Szeredi | 0ea9718 | 2007-05-10 22:22:51 -0700 | [diff] [blame] | 765 | struct mpage_data mpd = { |
| 766 | .bio = NULL, |
| 767 | .last_block_in_bio = 0, |
| 768 | .get_block = get_block, |
| 769 | .use_writepage = 0, |
| 770 | }; |
| 771 | int ret = __mpage_writepage(page, wbc, &mpd); |
Roman Pen | 5948edb | 2015-09-15 08:27:25 -0600 | [diff] [blame] | 772 | if (mpd.bio) { |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 773 | int op_flags = (wbc->sync_mode == WB_SYNC_ALL ? |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 774 | REQ_SYNC : 0); |
Mike Christie | eed25cd | 2016-06-05 14:31:59 -0500 | [diff] [blame] | 775 | mpage_bio_submit(REQ_OP_WRITE, op_flags, mpd.bio); |
Roman Pen | 5948edb | 2015-09-15 08:27:25 -0600 | [diff] [blame] | 776 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | return ret; |
| 778 | } |
| 779 | EXPORT_SYMBOL(mpage_writepage); |