4 * Copyright (C) 2002, Linus Torvalds.
6 * Contains functions related to preparing and submitting BIOs which contain
7 * multiple pagecache pages.
9 * 15May2002 Andrew Morton
12 * use bio_add_page() to build bio's just the right size
15 #include <linux/kernel.h>
16 #include <linux/export.h>
18 #include <linux/kdev_t.h>
19 #include <linux/gfp.h>
20 #include <linux/bio.h>
22 #include <linux/buffer_head.h>
23 #include <linux/blkdev.h>
24 #include <linux/highmem.h>
25 #include <linux/prefetch.h>
26 #include <linux/mpage.h>
27 #include <linux/mm_inline.h>
28 #include <linux/writeback.h>
29 #include <linux/backing-dev.h>
30 #include <linux/pagevec.h>
31 #include <linux/cleancache.h>
35 * I/O completion handler for multipage BIOs.
37 * The mpage code never puts partial pages into a BIO (except for end-of-file).
38 * If a page does not map to a contiguous run of blocks then it simply falls
39 * back to block_read_full_page().
41 * Why is this? If a page's completion depends on a number of different BIOs
42 * which can complete in any order (or at the same time) then determining the
43 * status of that page is hard. See end_buffer_async_read() for the details.
44 * There is no point in duplicating all that complexity.
46 static void mpage_end_io(struct bio *bio)
51 bio_for_each_segment_all(bv, bio, i) {
52 struct page *page = bv->bv_page;
53 page_endio(page, bio_data_dir(bio), bio->bi_error);
59 static struct bio *mpage_bio_submit(int rw, struct bio *bio)
61 bio->bi_end_io = mpage_end_io;
62 guard_bio_eod(rw, bio);
68 mpage_alloc(struct block_device *bdev,
69 sector_t first_sector, int nr_vecs,
74 /* Restrict the given (page cache) mask for slab allocations */
75 gfp_flags &= GFP_KERNEL;
76 bio = bio_alloc(gfp_flags, nr_vecs);
78 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
79 while (!bio && (nr_vecs /= 2))
80 bio = bio_alloc(gfp_flags, nr_vecs);
85 bio->bi_iter.bi_sector = first_sector;
91 * support function for mpage_readpages. The fs supplied get_block might
92 * return an up to date buffer. This is used to map that buffer into
93 * the page, which allows readpage to avoid triggering a duplicate call
96 * The idea is to avoid adding buffers to pages that don't already have
97 * them. So when the buffer is up to date and the page size == block size,
98 * this marks the page up to date instead of adding new buffers.
101 map_buffer_to_page(struct page *page, struct buffer_head *bh, int page_block)
103 struct inode *inode = page->mapping->host;
104 struct buffer_head *page_bh, *head;
107 if (!page_has_buffers(page)) {
109 * don't make any buffers if there is only one buffer on
110 * the page and the page just needs to be set up to date
112 if (inode->i_blkbits == PAGE_SHIFT &&
113 buffer_uptodate(bh)) {
114 SetPageUptodate(page);
117 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
119 head = page_buffers(page);
122 if (block == page_block) {
123 page_bh->b_state = bh->b_state;
124 page_bh->b_bdev = bh->b_bdev;
125 page_bh->b_blocknr = bh->b_blocknr;
128 page_bh = page_bh->b_this_page;
130 } while (page_bh != head);
134 * This is the worker routine which does all the work of mapping the disk
135 * blocks and constructs largest possible bios, submits them for IO if the
136 * blocks are not contiguous on the disk.
138 * We pass a buffer_head back and forth and use its buffer_mapped() flag to
139 * represent the validity of its disk mapping and to decide when to do the next
143 do_mpage_readpage(struct bio *bio, struct page *page, unsigned nr_pages,
144 sector_t *last_block_in_bio, struct buffer_head *map_bh,
145 unsigned long *first_logical_block, get_block_t get_block,
148 struct inode *inode = page->mapping->host;
149 const unsigned blkbits = inode->i_blkbits;
150 const unsigned blocks_per_page = PAGE_SIZE >> blkbits;
151 const unsigned blocksize = 1 << blkbits;
152 sector_t block_in_file;
154 sector_t last_block_in_file;
155 sector_t blocks[MAX_BUF_PER_PAGE];
157 unsigned first_hole = blocks_per_page;
158 struct block_device *bdev = NULL;
160 int fully_mapped = 1;
162 unsigned relative_block;
164 if (page_has_buffers(page))
167 block_in_file = (sector_t)page->index << (PAGE_SHIFT - blkbits);
168 last_block = block_in_file + nr_pages * blocks_per_page;
169 last_block_in_file = (i_size_read(inode) + blocksize - 1) >> blkbits;
170 if (last_block > last_block_in_file)
171 last_block = last_block_in_file;
175 * Map blocks using the result from the previous get_blocks call first.
177 nblocks = map_bh->b_size >> blkbits;
178 if (buffer_mapped(map_bh) && block_in_file > *first_logical_block &&
179 block_in_file < (*first_logical_block + nblocks)) {
180 unsigned map_offset = block_in_file - *first_logical_block;
181 unsigned last = nblocks - map_offset;
183 for (relative_block = 0; ; relative_block++) {
184 if (relative_block == last) {
185 clear_buffer_mapped(map_bh);
188 if (page_block == blocks_per_page)
190 blocks[page_block] = map_bh->b_blocknr + map_offset +
195 bdev = map_bh->b_bdev;
199 * Then do more get_blocks calls until we are done with this page.
201 map_bh->b_page = page;
202 while (page_block < blocks_per_page) {
206 if (block_in_file < last_block) {
207 map_bh->b_size = (last_block-block_in_file) << blkbits;
208 if (get_block(inode, block_in_file, map_bh, 0))
210 *first_logical_block = block_in_file;
213 if (!buffer_mapped(map_bh)) {
215 if (first_hole == blocks_per_page)
216 first_hole = page_block;
222 /* some filesystems will copy data into the page during
223 * the get_block call, in which case we don't want to
224 * read it again. map_buffer_to_page copies the data
225 * we just collected from get_block into the page's buffers
226 * so readpage doesn't have to repeat the get_block call
228 if (buffer_uptodate(map_bh)) {
229 map_buffer_to_page(page, map_bh, page_block);
233 if (first_hole != blocks_per_page)
234 goto confused; /* hole -> non-hole */
236 /* Contiguous blocks? */
237 if (page_block && blocks[page_block-1] != map_bh->b_blocknr-1)
239 nblocks = map_bh->b_size >> blkbits;
240 for (relative_block = 0; ; relative_block++) {
241 if (relative_block == nblocks) {
242 clear_buffer_mapped(map_bh);
244 } else if (page_block == blocks_per_page)
246 blocks[page_block] = map_bh->b_blocknr+relative_block;
250 bdev = map_bh->b_bdev;
253 if (first_hole != blocks_per_page) {
254 zero_user_segment(page, first_hole << blkbits, PAGE_SIZE);
255 if (first_hole == 0) {
256 SetPageUptodate(page);
260 } else if (fully_mapped) {
261 SetPageMappedToDisk(page);
264 if (fully_mapped && blocks_per_page == 1 && !PageUptodate(page) &&
265 cleancache_get_page(page) == 0) {
266 SetPageUptodate(page);
271 * This page will go to BIO. Do we need to send this BIO off first?
273 if (bio && (*last_block_in_bio != blocks[0] - 1))
274 bio = mpage_bio_submit(READ, bio);
278 if (first_hole == blocks_per_page) {
279 if (!bdev_read_page(bdev, blocks[0] << (blkbits - 9),
283 bio = mpage_alloc(bdev, blocks[0] << (blkbits - 9),
284 min_t(int, nr_pages, BIO_MAX_PAGES), gfp);
289 length = first_hole << blkbits;
290 if (bio_add_page(bio, page, length, 0) < length) {
291 bio = mpage_bio_submit(READ, bio);
295 relative_block = block_in_file - *first_logical_block;
296 nblocks = map_bh->b_size >> blkbits;
297 if ((buffer_boundary(map_bh) && relative_block == nblocks) ||
298 (first_hole != blocks_per_page))
299 bio = mpage_bio_submit(READ, bio);
301 *last_block_in_bio = blocks[blocks_per_page - 1];
307 bio = mpage_bio_submit(READ, bio);
308 if (!PageUptodate(page))
309 block_read_full_page(page, get_block);
316 * mpage_readpages - populate an address space with some pages & start reads against them
317 * @mapping: the address_space
318 * @pages: The address of a list_head which contains the target pages. These
319 * pages have their ->index populated and are otherwise uninitialised.
320 * The page at @pages->prev has the lowest file offset, and reads should be
321 * issued in @pages->prev to @pages->next order.
322 * @nr_pages: The number of pages at *@pages
323 * @get_block: The filesystem's block mapper function.
325 * This function walks the pages and the blocks within each page, building and
326 * emitting large BIOs.
328 * If anything unusual happens, such as:
330 * - encountering a page which has buffers
331 * - encountering a page which has a non-hole after a hole
332 * - encountering a page with non-contiguous blocks
334 * then this code just gives up and calls the buffer_head-based read function.
335 * It does handle a page which has holes at the end - that is a common case:
336 * the end-of-file on blocksize < PAGE_SIZE setups.
338 * BH_Boundary explanation:
340 * There is a problem. The mpage read code assembles several pages, gets all
341 * their disk mappings, and then submits them all. That's fine, but obtaining
342 * the disk mappings may require I/O. Reads of indirect blocks, for example.
344 * So an mpage read of the first 16 blocks of an ext2 file will cause I/O to be
345 * submitted in the following order:
346 * 12 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16
348 * because the indirect block has to be read to get the mappings of blocks
349 * 13,14,15,16. Obviously, this impacts performance.
351 * So what we do it to allow the filesystem's get_block() function to set
352 * BH_Boundary when it maps block 11. BH_Boundary says: mapping of the block
353 * after this one will require I/O against a block which is probably close to
354 * this one. So you should push what I/O you have currently accumulated.
356 * This all causes the disk requests to be issued in the correct order.
359 mpage_readpages(struct address_space *mapping, struct list_head *pages,
360 unsigned nr_pages, get_block_t get_block)
362 struct bio *bio = NULL;
364 sector_t last_block_in_bio = 0;
365 struct buffer_head map_bh;
366 unsigned long first_logical_block = 0;
367 gfp_t gfp = readahead_gfp_mask(mapping);
371 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
372 struct page *page = lru_to_page(pages);
374 prefetchw(&page->flags);
375 list_del(&page->lru);
376 if (!add_to_page_cache_lru(page, mapping,
379 bio = do_mpage_readpage(bio, page,
381 &last_block_in_bio, &map_bh,
382 &first_logical_block,
387 BUG_ON(!list_empty(pages));
389 mpage_bio_submit(READ, bio);
392 EXPORT_SYMBOL(mpage_readpages);
395 * This isn't called much at all
397 int mpage_readpage(struct page *page, get_block_t get_block)
399 struct bio *bio = NULL;
400 sector_t last_block_in_bio = 0;
401 struct buffer_head map_bh;
402 unsigned long first_logical_block = 0;
403 gfp_t gfp = mapping_gfp_constraint(page->mapping, GFP_KERNEL);
407 bio = do_mpage_readpage(bio, page, 1, &last_block_in_bio,
408 &map_bh, &first_logical_block, get_block, gfp);
410 mpage_bio_submit(READ, bio);
413 EXPORT_SYMBOL(mpage_readpage);
416 * Writing is not so simple.
418 * If the page has buffers then they will be used for obtaining the disk
419 * mapping. We only support pages which are fully mapped-and-dirty, with a
420 * special case for pages which are unmapped at the end: end-of-file.
422 * If the page has no buffers (preferred) then the page is mapped here.
424 * If all blocks are found to be contiguous then the page can go into the
425 * BIO. Otherwise fall back to the mapping's writepage().
427 * FIXME: This code wants an estimate of how many pages are still to be
428 * written, so it can intelligently allocate a suitably-sized BIO. For now,
429 * just allocate full-size (16-page) BIOs.
434 sector_t last_block_in_bio;
435 get_block_t *get_block;
436 unsigned use_writepage;
440 * We have our BIO, so we can now mark the buffers clean. Make
441 * sure to only clean buffers which we know we'll be writing.
443 static void clean_buffers(struct page *page, unsigned first_unmapped)
445 unsigned buffer_counter = 0;
446 struct buffer_head *bh, *head;
447 if (!page_has_buffers(page))
449 head = page_buffers(page);
453 if (buffer_counter++ == first_unmapped)
455 clear_buffer_dirty(bh);
456 bh = bh->b_this_page;
457 } while (bh != head);
460 * we cannot drop the bh if the page is not uptodate or a concurrent
461 * readpage would fail to serialize with the bh and it would read from
462 * disk before we reach the platter.
464 if (buffer_heads_over_limit && PageUptodate(page))
465 try_to_free_buffers(page);
468 static int __mpage_writepage(struct page *page, struct writeback_control *wbc,
471 struct mpage_data *mpd = data;
472 struct bio *bio = mpd->bio;
473 struct address_space *mapping = page->mapping;
474 struct inode *inode = page->mapping->host;
475 const unsigned blkbits = inode->i_blkbits;
476 unsigned long end_index;
477 const unsigned blocks_per_page = PAGE_SIZE >> blkbits;
479 sector_t block_in_file;
480 sector_t blocks[MAX_BUF_PER_PAGE];
482 unsigned first_unmapped = blocks_per_page;
483 struct block_device *bdev = NULL;
485 sector_t boundary_block = 0;
486 struct block_device *boundary_bdev = NULL;
488 struct buffer_head map_bh;
489 loff_t i_size = i_size_read(inode);
491 int wr = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
493 if (page_has_buffers(page)) {
494 struct buffer_head *head = page_buffers(page);
495 struct buffer_head *bh = head;
497 /* If they're all mapped and dirty, do it */
500 BUG_ON(buffer_locked(bh));
501 if (!buffer_mapped(bh)) {
503 * unmapped dirty buffers are created by
504 * __set_page_dirty_buffers -> mmapped data
506 if (buffer_dirty(bh))
508 if (first_unmapped == blocks_per_page)
509 first_unmapped = page_block;
513 if (first_unmapped != blocks_per_page)
514 goto confused; /* hole -> non-hole */
516 if (!buffer_dirty(bh) || !buffer_uptodate(bh))
519 if (bh->b_blocknr != blocks[page_block-1] + 1)
522 blocks[page_block++] = bh->b_blocknr;
523 boundary = buffer_boundary(bh);
525 boundary_block = bh->b_blocknr;
526 boundary_bdev = bh->b_bdev;
529 } while ((bh = bh->b_this_page) != head);
535 * Page has buffers, but they are all unmapped. The page was
536 * created by pagein or read over a hole which was handled by
537 * block_read_full_page(). If this address_space is also
538 * using mpage_readpages then this can rarely happen.
544 * The page has no buffers: map it to disk
546 BUG_ON(!PageUptodate(page));
547 block_in_file = (sector_t)page->index << (PAGE_SHIFT - blkbits);
548 last_block = (i_size - 1) >> blkbits;
549 map_bh.b_page = page;
550 for (page_block = 0; page_block < blocks_per_page; ) {
553 map_bh.b_size = 1 << blkbits;
554 if (mpd->get_block(inode, block_in_file, &map_bh, 1))
556 if (buffer_new(&map_bh))
557 unmap_underlying_metadata(map_bh.b_bdev,
559 if (buffer_boundary(&map_bh)) {
560 boundary_block = map_bh.b_blocknr;
561 boundary_bdev = map_bh.b_bdev;
564 if (map_bh.b_blocknr != blocks[page_block-1] + 1)
567 blocks[page_block++] = map_bh.b_blocknr;
568 boundary = buffer_boundary(&map_bh);
569 bdev = map_bh.b_bdev;
570 if (block_in_file == last_block)
574 BUG_ON(page_block == 0);
576 first_unmapped = page_block;
579 end_index = i_size >> PAGE_SHIFT;
580 if (page->index >= end_index) {
582 * The page straddles i_size. It must be zeroed out on each
583 * and every writepage invocation because it may be mmapped.
584 * "A file is mapped in multiples of the page size. For a file
585 * that is not a multiple of the page size, the remaining memory
586 * is zeroed when mapped, and writes to that region are not
587 * written out to the file."
589 unsigned offset = i_size & (PAGE_SIZE - 1);
591 if (page->index > end_index || !offset)
593 zero_user_segment(page, offset, PAGE_SIZE);
597 * This page will go to BIO. Do we need to send this BIO off first?
599 if (bio && mpd->last_block_in_bio != blocks[0] - 1)
600 bio = mpage_bio_submit(wr, bio);
604 if (first_unmapped == blocks_per_page) {
605 if (!bdev_write_page(bdev, blocks[0] << (blkbits - 9),
607 clean_buffers(page, first_unmapped);
611 bio = mpage_alloc(bdev, blocks[0] << (blkbits - 9),
612 BIO_MAX_PAGES, GFP_NOFS|__GFP_HIGH);
616 wbc_init_bio(wbc, bio);
620 * Must try to add the page before marking the buffer clean or
621 * the confused fail path above (OOM) will be very confused when
622 * it finds all bh marked clean (i.e. it will not write anything)
624 wbc_account_io(wbc, page, PAGE_SIZE);
625 length = first_unmapped << blkbits;
626 if (bio_add_page(bio, page, length, 0) < length) {
627 bio = mpage_bio_submit(wr, bio);
631 clean_buffers(page, first_unmapped);
633 BUG_ON(PageWriteback(page));
634 set_page_writeback(page);
636 if (boundary || (first_unmapped != blocks_per_page)) {
637 bio = mpage_bio_submit(wr, bio);
638 if (boundary_block) {
639 write_boundary_block(boundary_bdev,
640 boundary_block, 1 << blkbits);
643 mpd->last_block_in_bio = blocks[blocks_per_page - 1];
649 bio = mpage_bio_submit(wr, bio);
651 if (mpd->use_writepage) {
652 ret = mapping->a_ops->writepage(page, wbc);
658 * The caller has a ref on the inode, so *mapping is stable
660 mapping_set_error(mapping, ret);
667 * mpage_writepages - walk the list of dirty pages of the given address space & writepage() all of them
668 * @mapping: address space structure to write
669 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
670 * @get_block: the filesystem's block mapper function.
671 * If this is NULL then use a_ops->writepage. Otherwise, go
674 * This is a library function, which implements the writepages()
675 * address_space_operation.
677 * If a page is already under I/O, generic_writepages() skips it, even
678 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
679 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
680 * and msync() need to guarantee that all the data which was dirty at the time
681 * the call was made get new I/O started against them. If wbc->sync_mode is
682 * WB_SYNC_ALL then we were called for data integrity and we must wait for
683 * existing IO to complete.
686 mpage_writepages(struct address_space *mapping,
687 struct writeback_control *wbc, get_block_t get_block)
689 struct blk_plug plug;
692 blk_start_plug(&plug);
695 ret = generic_writepages(mapping, wbc);
697 struct mpage_data mpd = {
699 .last_block_in_bio = 0,
700 .get_block = get_block,
704 ret = write_cache_pages(mapping, wbc, __mpage_writepage, &mpd);
706 int wr = (wbc->sync_mode == WB_SYNC_ALL ?
708 mpage_bio_submit(wr, mpd.bio);
711 blk_finish_plug(&plug);
714 EXPORT_SYMBOL(mpage_writepages);
716 int mpage_writepage(struct page *page, get_block_t get_block,
717 struct writeback_control *wbc)
719 struct mpage_data mpd = {
721 .last_block_in_bio = 0,
722 .get_block = get_block,
725 int ret = __mpage_writepage(page, wbc, &mpd);
727 int wr = (wbc->sync_mode == WB_SYNC_ALL ?
729 mpage_bio_submit(wr, mpd.bio);
733 EXPORT_SYMBOL(mpage_writepage);