2 * Copyright (C) 2010 Red Hat, Inc.
3 * Copyright (c) 2016 Christoph Hellwig.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 #include <linux/module.h>
15 #include <linux/compiler.h>
17 #include <linux/iomap.h>
18 #include <linux/uaccess.h>
19 #include <linux/gfp.h>
21 #include <linux/swap.h>
22 #include <linux/pagemap.h>
23 #include <linux/file.h>
24 #include <linux/uio.h>
25 #include <linux/backing-dev.h>
26 #include <linux/buffer_head.h>
27 #include <linux/task_io_accounting_ops.h>
28 #include <linux/dax.h>
29 #include <linux/sched/signal.h>
34 * Execute a iomap write on a segment of the mapping that spans a
35 * contiguous range of pages that have identical block mapping state.
37 * This avoids the need to map pages individually, do individual allocations
38 * for each page and most importantly avoid the need for filesystem specific
39 * locking per page. Instead, all the operations are amortised over the entire
40 * range of pages. It is assumed that the filesystems will lock whatever
41 * resources they require in the iomap_begin call, and release them in the
45 iomap_apply(struct inode
*inode
, loff_t pos
, loff_t length
, unsigned flags
,
46 const struct iomap_ops
*ops
, void *data
, iomap_actor_t actor
)
48 struct iomap iomap
= { 0 };
49 loff_t written
= 0, ret
;
52 * Need to map a range from start position for length bytes. This can
53 * span multiple pages - it is only guaranteed to return a range of a
54 * single type of pages (e.g. all into a hole, all mapped or all
55 * unwritten). Failure at this point has nothing to undo.
57 * If allocation is required for this range, reserve the space now so
58 * that the allocation is guaranteed to succeed later on. Once we copy
59 * the data into the page cache pages, then we cannot fail otherwise we
60 * expose transient stale data. If the reserve fails, we can safely
61 * back out at this point as there is nothing to undo.
63 ret
= ops
->iomap_begin(inode
, pos
, length
, flags
, &iomap
);
66 if (WARN_ON(iomap
.offset
> pos
))
70 * Cut down the length to the one actually provided by the filesystem,
71 * as it might not be able to give us the whole size that we requested.
73 if (iomap
.offset
+ iomap
.length
< pos
+ length
)
74 length
= iomap
.offset
+ iomap
.length
- pos
;
77 * Now that we have guaranteed that the space allocation will succeed.
78 * we can do the copy-in page by page without having to worry about
79 * failures exposing transient data.
81 written
= actor(inode
, pos
, length
, data
, &iomap
);
84 * Now the data has been copied, commit the range we've copied. This
85 * should not fail unless the filesystem has had a fatal error.
88 ret
= ops
->iomap_end(inode
, pos
, length
,
89 written
> 0 ? written
: 0,
93 return written
? written
: ret
;
97 iomap_write_failed(struct inode
*inode
, loff_t pos
, unsigned len
)
99 loff_t i_size
= i_size_read(inode
);
102 * Only truncate newly allocated pages beyoned EOF, even if the
103 * write started inside the existing inode size.
105 if (pos
+ len
> i_size
)
106 truncate_pagecache_range(inode
, max(pos
, i_size
), pos
+ len
);
110 iomap_write_begin(struct inode
*inode
, loff_t pos
, unsigned len
, unsigned flags
,
111 struct page
**pagep
, struct iomap
*iomap
)
113 pgoff_t index
= pos
>> PAGE_SHIFT
;
117 BUG_ON(pos
+ len
> iomap
->offset
+ iomap
->length
);
119 if (fatal_signal_pending(current
))
122 page
= grab_cache_page_write_begin(inode
->i_mapping
, index
, flags
);
126 status
= __block_write_begin_int(page
, pos
, len
, NULL
, iomap
);
127 if (unlikely(status
)) {
132 iomap_write_failed(inode
, pos
, len
);
140 iomap_write_end(struct inode
*inode
, loff_t pos
, unsigned len
,
141 unsigned copied
, struct page
*page
)
145 ret
= generic_write_end(NULL
, inode
->i_mapping
, pos
, len
,
148 iomap_write_failed(inode
, pos
, len
);
153 iomap_write_actor(struct inode
*inode
, loff_t pos
, loff_t length
, void *data
,
156 struct iov_iter
*i
= data
;
159 unsigned int flags
= AOP_FLAG_NOFS
;
162 * Copies from kernel address space cannot fail (NFSD is a big user).
164 if (!iter_is_iovec(i
))
165 flags
|= AOP_FLAG_UNINTERRUPTIBLE
;
169 unsigned long offset
; /* Offset into pagecache page */
170 unsigned long bytes
; /* Bytes to write to page */
171 size_t copied
; /* Bytes copied from user */
173 offset
= (pos
& (PAGE_SIZE
- 1));
174 bytes
= min_t(unsigned long, PAGE_SIZE
- offset
,
181 * Bring in the user page that we will copy from _first_.
182 * Otherwise there's a nasty deadlock on copying from the
183 * same page as we're writing to, without it being marked
186 * Not only is this an optimisation, but it is also required
187 * to check that the address is actually valid, when atomic
188 * usercopies are used, below.
190 if (unlikely(iov_iter_fault_in_readable(i
, bytes
))) {
195 status
= iomap_write_begin(inode
, pos
, bytes
, flags
, &page
,
197 if (unlikely(status
))
200 if (mapping_writably_mapped(inode
->i_mapping
))
201 flush_dcache_page(page
);
203 copied
= iov_iter_copy_from_user_atomic(page
, i
, offset
, bytes
);
205 flush_dcache_page(page
);
207 status
= iomap_write_end(inode
, pos
, bytes
, copied
, page
);
208 if (unlikely(status
< 0))
214 iov_iter_advance(i
, copied
);
215 if (unlikely(copied
== 0)) {
217 * If we were unable to copy any data at all, we must
218 * fall back to a single segment length write.
220 * If we didn't fallback here, we could livelock
221 * because not all segments in the iov can be copied at
222 * once without a pagefault.
224 bytes
= min_t(unsigned long, PAGE_SIZE
- offset
,
225 iov_iter_single_seg_count(i
));
232 balance_dirty_pages_ratelimited(inode
->i_mapping
);
233 } while (iov_iter_count(i
) && length
);
235 return written
? written
: status
;
239 iomap_file_buffered_write(struct kiocb
*iocb
, struct iov_iter
*iter
,
240 const struct iomap_ops
*ops
)
242 struct inode
*inode
= iocb
->ki_filp
->f_mapping
->host
;
243 loff_t pos
= iocb
->ki_pos
, ret
= 0, written
= 0;
245 while (iov_iter_count(iter
)) {
246 ret
= iomap_apply(inode
, pos
, iov_iter_count(iter
),
247 IOMAP_WRITE
, ops
, iter
, iomap_write_actor
);
254 return written
? written
: ret
;
256 EXPORT_SYMBOL_GPL(iomap_file_buffered_write
);
259 __iomap_read_page(struct inode
*inode
, loff_t offset
)
261 struct address_space
*mapping
= inode
->i_mapping
;
264 page
= read_mapping_page(mapping
, offset
>> PAGE_SHIFT
, NULL
);
267 if (!PageUptodate(page
)) {
269 return ERR_PTR(-EIO
);
275 iomap_dirty_actor(struct inode
*inode
, loff_t pos
, loff_t length
, void *data
,
282 struct page
*page
, *rpage
;
283 unsigned long offset
; /* Offset into pagecache page */
284 unsigned long bytes
; /* Bytes to write to page */
286 offset
= (pos
& (PAGE_SIZE
- 1));
287 bytes
= min_t(unsigned long, PAGE_SIZE
- offset
, length
);
289 rpage
= __iomap_read_page(inode
, pos
);
291 return PTR_ERR(rpage
);
293 status
= iomap_write_begin(inode
, pos
, bytes
,
294 AOP_FLAG_NOFS
| AOP_FLAG_UNINTERRUPTIBLE
,
297 if (unlikely(status
))
300 WARN_ON_ONCE(!PageUptodate(page
));
302 status
= iomap_write_end(inode
, pos
, bytes
, bytes
, page
);
303 if (unlikely(status
<= 0)) {
304 if (WARN_ON_ONCE(status
== 0))
315 balance_dirty_pages_ratelimited(inode
->i_mapping
);
322 iomap_file_dirty(struct inode
*inode
, loff_t pos
, loff_t len
,
323 const struct iomap_ops
*ops
)
328 ret
= iomap_apply(inode
, pos
, len
, IOMAP_WRITE
, ops
, NULL
,
338 EXPORT_SYMBOL_GPL(iomap_file_dirty
);
340 static int iomap_zero(struct inode
*inode
, loff_t pos
, unsigned offset
,
341 unsigned bytes
, struct iomap
*iomap
)
346 status
= iomap_write_begin(inode
, pos
, bytes
,
347 AOP_FLAG_UNINTERRUPTIBLE
| AOP_FLAG_NOFS
, &page
, iomap
);
351 zero_user(page
, offset
, bytes
);
352 mark_page_accessed(page
);
354 return iomap_write_end(inode
, pos
, bytes
, bytes
, page
);
357 static int iomap_dax_zero(loff_t pos
, unsigned offset
, unsigned bytes
,
360 sector_t sector
= iomap
->blkno
+
361 (((pos
& ~(PAGE_SIZE
- 1)) - iomap
->offset
) >> 9);
363 return __dax_zero_page_range(iomap
->bdev
, sector
, offset
, bytes
);
367 iomap_zero_range_actor(struct inode
*inode
, loff_t pos
, loff_t count
,
368 void *data
, struct iomap
*iomap
)
370 bool *did_zero
= data
;
374 /* already zeroed? we're done. */
375 if (iomap
->type
== IOMAP_HOLE
|| iomap
->type
== IOMAP_UNWRITTEN
)
379 unsigned offset
, bytes
;
381 offset
= pos
& (PAGE_SIZE
- 1); /* Within page */
382 bytes
= min_t(unsigned, PAGE_SIZE
- offset
, count
);
385 status
= iomap_dax_zero(pos
, offset
, bytes
, iomap
);
387 status
= iomap_zero(inode
, pos
, offset
, bytes
, iomap
);
402 iomap_zero_range(struct inode
*inode
, loff_t pos
, loff_t len
, bool *did_zero
,
403 const struct iomap_ops
*ops
)
408 ret
= iomap_apply(inode
, pos
, len
, IOMAP_ZERO
,
409 ops
, did_zero
, iomap_zero_range_actor
);
419 EXPORT_SYMBOL_GPL(iomap_zero_range
);
422 iomap_truncate_page(struct inode
*inode
, loff_t pos
, bool *did_zero
,
423 const struct iomap_ops
*ops
)
425 unsigned int blocksize
= i_blocksize(inode
);
426 unsigned int off
= pos
& (blocksize
- 1);
428 /* Block boundary? Nothing to do */
431 return iomap_zero_range(inode
, pos
, blocksize
- off
, did_zero
, ops
);
433 EXPORT_SYMBOL_GPL(iomap_truncate_page
);
436 iomap_page_mkwrite_actor(struct inode
*inode
, loff_t pos
, loff_t length
,
437 void *data
, struct iomap
*iomap
)
439 struct page
*page
= data
;
442 ret
= __block_write_begin_int(page
, pos
, length
, NULL
, iomap
);
446 block_commit_write(page
, 0, length
);
450 int iomap_page_mkwrite(struct vm_fault
*vmf
, const struct iomap_ops
*ops
)
452 struct page
*page
= vmf
->page
;
453 struct inode
*inode
= file_inode(vmf
->vma
->vm_file
);
454 unsigned long length
;
459 size
= i_size_read(inode
);
460 if ((page
->mapping
!= inode
->i_mapping
) ||
461 (page_offset(page
) > size
)) {
462 /* We overload EFAULT to mean page got truncated */
467 /* page is wholly or partially inside EOF */
468 if (((page
->index
+ 1) << PAGE_SHIFT
) > size
)
469 length
= size
& ~PAGE_MASK
;
473 offset
= page_offset(page
);
475 ret
= iomap_apply(inode
, offset
, length
,
476 IOMAP_WRITE
| IOMAP_FAULT
, ops
, page
,
477 iomap_page_mkwrite_actor
);
478 if (unlikely(ret
<= 0))
484 set_page_dirty(page
);
485 wait_for_stable_page(page
);
491 EXPORT_SYMBOL_GPL(iomap_page_mkwrite
);
494 struct fiemap_extent_info
*fi
;
498 static int iomap_to_fiemap(struct fiemap_extent_info
*fi
,
499 struct iomap
*iomap
, u32 flags
)
501 switch (iomap
->type
) {
506 flags
|= FIEMAP_EXTENT_DELALLOC
| FIEMAP_EXTENT_UNKNOWN
;
508 case IOMAP_UNWRITTEN
:
509 flags
|= FIEMAP_EXTENT_UNWRITTEN
;
515 if (iomap
->flags
& IOMAP_F_MERGED
)
516 flags
|= FIEMAP_EXTENT_MERGED
;
517 if (iomap
->flags
& IOMAP_F_SHARED
)
518 flags
|= FIEMAP_EXTENT_SHARED
;
520 return fiemap_fill_next_extent(fi
, iomap
->offset
,
521 iomap
->blkno
!= IOMAP_NULL_BLOCK
? iomap
->blkno
<< 9: 0,
522 iomap
->length
, flags
);
527 iomap_fiemap_actor(struct inode
*inode
, loff_t pos
, loff_t length
, void *data
,
530 struct fiemap_ctx
*ctx
= data
;
533 if (iomap
->type
== IOMAP_HOLE
)
536 ret
= iomap_to_fiemap(ctx
->fi
, &ctx
->prev
, 0);
539 case 0: /* success */
541 case 1: /* extent array full */
548 int iomap_fiemap(struct inode
*inode
, struct fiemap_extent_info
*fi
,
549 loff_t start
, loff_t len
, const struct iomap_ops
*ops
)
551 struct fiemap_ctx ctx
;
554 memset(&ctx
, 0, sizeof(ctx
));
556 ctx
.prev
.type
= IOMAP_HOLE
;
558 ret
= fiemap_check_flags(fi
, FIEMAP_FLAG_SYNC
);
562 if (fi
->fi_flags
& FIEMAP_FLAG_SYNC
) {
563 ret
= filemap_write_and_wait(inode
->i_mapping
);
569 ret
= iomap_apply(inode
, start
, len
, IOMAP_REPORT
, ops
, &ctx
,
571 /* inode with no (attribute) mapping will give ENOENT */
583 if (ctx
.prev
.type
!= IOMAP_HOLE
) {
584 ret
= iomap_to_fiemap(fi
, &ctx
.prev
, FIEMAP_EXTENT_LAST
);
591 EXPORT_SYMBOL_GPL(iomap_fiemap
);
594 * Private flags for iomap_dio, must not overlap with the public ones in
597 #define IOMAP_DIO_WRITE (1 << 30)
598 #define IOMAP_DIO_DIRTY (1 << 31)
602 iomap_dio_end_io_t
*end_io
;
610 /* used during submission and for synchronous completion: */
612 struct iov_iter
*iter
;
613 struct task_struct
*waiter
;
614 struct request_queue
*last_queue
;
618 /* used for aio completion: */
620 struct work_struct work
;
625 static ssize_t
iomap_dio_complete(struct iomap_dio
*dio
)
627 struct kiocb
*iocb
= dio
->iocb
;
631 ret
= dio
->end_io(iocb
,
632 dio
->error
? dio
->error
: dio
->size
,
640 /* check for short read */
641 if (iocb
->ki_pos
+ ret
> dio
->i_size
&&
642 !(dio
->flags
& IOMAP_DIO_WRITE
))
643 ret
= dio
->i_size
- iocb
->ki_pos
;
647 inode_dio_end(file_inode(iocb
->ki_filp
));
653 static void iomap_dio_complete_work(struct work_struct
*work
)
655 struct iomap_dio
*dio
= container_of(work
, struct iomap_dio
, aio
.work
);
656 struct kiocb
*iocb
= dio
->iocb
;
657 bool is_write
= (dio
->flags
& IOMAP_DIO_WRITE
);
660 ret
= iomap_dio_complete(dio
);
661 if (is_write
&& ret
> 0)
662 ret
= generic_write_sync(iocb
, ret
);
663 iocb
->ki_complete(iocb
, ret
, 0);
667 * Set an error in the dio if none is set yet. We have to use cmpxchg
668 * as the submission context and the completion context(s) can race to
671 static inline void iomap_dio_set_error(struct iomap_dio
*dio
, int ret
)
673 cmpxchg(&dio
->error
, 0, ret
);
676 static void iomap_dio_bio_end_io(struct bio
*bio
)
678 struct iomap_dio
*dio
= bio
->bi_private
;
679 bool should_dirty
= (dio
->flags
& IOMAP_DIO_DIRTY
);
682 iomap_dio_set_error(dio
, bio
->bi_error
);
684 if (atomic_dec_and_test(&dio
->ref
)) {
685 if (is_sync_kiocb(dio
->iocb
)) {
686 struct task_struct
*waiter
= dio
->submit
.waiter
;
688 WRITE_ONCE(dio
->submit
.waiter
, NULL
);
689 wake_up_process(waiter
);
690 } else if (dio
->flags
& IOMAP_DIO_WRITE
) {
691 struct inode
*inode
= file_inode(dio
->iocb
->ki_filp
);
693 INIT_WORK(&dio
->aio
.work
, iomap_dio_complete_work
);
694 queue_work(inode
->i_sb
->s_dio_done_wq
, &dio
->aio
.work
);
696 iomap_dio_complete_work(&dio
->aio
.work
);
701 bio_check_pages_dirty(bio
);
703 struct bio_vec
*bvec
;
706 bio_for_each_segment_all(bvec
, bio
, i
)
707 put_page(bvec
->bv_page
);
713 iomap_dio_zero(struct iomap_dio
*dio
, struct iomap
*iomap
, loff_t pos
,
716 struct page
*page
= ZERO_PAGE(0);
719 bio
= bio_alloc(GFP_KERNEL
, 1);
720 bio
->bi_bdev
= iomap
->bdev
;
721 bio
->bi_iter
.bi_sector
=
722 iomap
->blkno
+ ((pos
- iomap
->offset
) >> 9);
723 bio
->bi_private
= dio
;
724 bio
->bi_end_io
= iomap_dio_bio_end_io
;
727 if (bio_add_page(bio
, page
, len
, 0) != len
)
729 bio_set_op_attrs(bio
, REQ_OP_WRITE
, REQ_SYNC
| REQ_IDLE
);
731 atomic_inc(&dio
->ref
);
732 return submit_bio(bio
);
736 iomap_dio_actor(struct inode
*inode
, loff_t pos
, loff_t length
,
737 void *data
, struct iomap
*iomap
)
739 struct iomap_dio
*dio
= data
;
740 unsigned int blkbits
= blksize_bits(bdev_logical_block_size(iomap
->bdev
));
741 unsigned int fs_block_size
= i_blocksize(inode
), pad
;
742 unsigned int align
= iov_iter_alignment(dio
->submit
.iter
);
743 struct iov_iter iter
;
745 bool need_zeroout
= false;
748 if ((pos
| length
| align
) & ((1 << blkbits
) - 1))
751 switch (iomap
->type
) {
753 if (WARN_ON_ONCE(dio
->flags
& IOMAP_DIO_WRITE
))
756 case IOMAP_UNWRITTEN
:
757 if (!(dio
->flags
& IOMAP_DIO_WRITE
)) {
758 iov_iter_zero(length
, dio
->submit
.iter
);
762 dio
->flags
|= IOMAP_DIO_UNWRITTEN
;
766 if (iomap
->flags
& IOMAP_F_SHARED
)
767 dio
->flags
|= IOMAP_DIO_COW
;
768 if (iomap
->flags
& IOMAP_F_NEW
)
777 * Operate on a partial iter trimmed to the extent we were called for.
778 * We'll update the iter in the dio once we're done with this extent.
780 iter
= *dio
->submit
.iter
;
781 iov_iter_truncate(&iter
, length
);
783 nr_pages
= iov_iter_npages(&iter
, BIO_MAX_PAGES
);
788 /* zero out from the start of the block to the write offset */
789 pad
= pos
& (fs_block_size
- 1);
791 iomap_dio_zero(dio
, iomap
, pos
- pad
, pad
);
798 bio
= bio_alloc(GFP_KERNEL
, nr_pages
);
799 bio
->bi_bdev
= iomap
->bdev
;
800 bio
->bi_iter
.bi_sector
=
801 iomap
->blkno
+ ((pos
- iomap
->offset
) >> 9);
802 bio
->bi_private
= dio
;
803 bio
->bi_end_io
= iomap_dio_bio_end_io
;
805 ret
= bio_iov_iter_get_pages(bio
, &iter
);
811 if (dio
->flags
& IOMAP_DIO_WRITE
) {
812 bio_set_op_attrs(bio
, REQ_OP_WRITE
, REQ_SYNC
| REQ_IDLE
);
813 task_io_account_write(bio
->bi_iter
.bi_size
);
815 bio_set_op_attrs(bio
, REQ_OP_READ
, 0);
816 if (dio
->flags
& IOMAP_DIO_DIRTY
)
817 bio_set_pages_dirty(bio
);
820 dio
->size
+= bio
->bi_iter
.bi_size
;
821 pos
+= bio
->bi_iter
.bi_size
;
823 nr_pages
= iov_iter_npages(&iter
, BIO_MAX_PAGES
);
825 atomic_inc(&dio
->ref
);
827 dio
->submit
.last_queue
= bdev_get_queue(iomap
->bdev
);
828 dio
->submit
.cookie
= submit_bio(bio
);
832 /* zero out from the end of the write to the end of the block */
833 pad
= pos
& (fs_block_size
- 1);
835 iomap_dio_zero(dio
, iomap
, pos
, fs_block_size
- pad
);
838 iov_iter_advance(dio
->submit
.iter
, length
);
843 iomap_dio_rw(struct kiocb
*iocb
, struct iov_iter
*iter
,
844 const struct iomap_ops
*ops
, iomap_dio_end_io_t end_io
)
846 struct address_space
*mapping
= iocb
->ki_filp
->f_mapping
;
847 struct inode
*inode
= file_inode(iocb
->ki_filp
);
848 size_t count
= iov_iter_count(iter
);
849 loff_t pos
= iocb
->ki_pos
, end
= iocb
->ki_pos
+ count
- 1, ret
= 0;
850 unsigned int flags
= IOMAP_DIRECT
;
851 struct blk_plug plug
;
852 struct iomap_dio
*dio
;
854 lockdep_assert_held(&inode
->i_rwsem
);
859 dio
= kmalloc(sizeof(*dio
), GFP_KERNEL
);
864 atomic_set(&dio
->ref
, 1);
866 dio
->i_size
= i_size_read(inode
);
867 dio
->end_io
= end_io
;
871 dio
->submit
.iter
= iter
;
872 if (is_sync_kiocb(iocb
)) {
873 dio
->submit
.waiter
= current
;
874 dio
->submit
.cookie
= BLK_QC_T_NONE
;
875 dio
->submit
.last_queue
= NULL
;
878 if (iov_iter_rw(iter
) == READ
) {
879 if (pos
>= dio
->i_size
)
882 if (iter
->type
== ITER_IOVEC
)
883 dio
->flags
|= IOMAP_DIO_DIRTY
;
885 dio
->flags
|= IOMAP_DIO_WRITE
;
886 flags
|= IOMAP_WRITE
;
889 if (mapping
->nrpages
) {
890 ret
= filemap_write_and_wait_range(mapping
, iocb
->ki_pos
, end
);
894 ret
= invalidate_inode_pages2_range(mapping
,
895 iocb
->ki_pos
>> PAGE_SHIFT
, end
>> PAGE_SHIFT
);
900 inode_dio_begin(inode
);
902 blk_start_plug(&plug
);
904 ret
= iomap_apply(inode
, pos
, count
, flags
, ops
, dio
,
907 /* magic error code to fall back to buffered I/O */
913 } while ((count
= iov_iter_count(iter
)) > 0);
914 blk_finish_plug(&plug
);
917 iomap_dio_set_error(dio
, ret
);
919 if (ret
>= 0 && iov_iter_rw(iter
) == WRITE
&& !is_sync_kiocb(iocb
) &&
920 !inode
->i_sb
->s_dio_done_wq
) {
921 ret
= sb_init_dio_done_wq(inode
->i_sb
);
923 iomap_dio_set_error(dio
, ret
);
926 if (!atomic_dec_and_test(&dio
->ref
)) {
927 if (!is_sync_kiocb(iocb
))
931 set_current_state(TASK_UNINTERRUPTIBLE
);
932 if (!READ_ONCE(dio
->submit
.waiter
))
935 if (!(iocb
->ki_flags
& IOCB_HIPRI
) ||
936 !dio
->submit
.last_queue
||
937 !blk_mq_poll(dio
->submit
.last_queue
,
941 __set_current_state(TASK_RUNNING
);
945 * Try again to invalidate clean pages which might have been cached by
946 * non-direct readahead, or faulted in by get_user_pages() if the source
947 * of the write was an mmap'ed region of the file we're writing. Either
948 * one is a pretty crazy thing to do, so we don't support it 100%. If
949 * this invalidation fails, tough, the write still worked...
951 if (iov_iter_rw(iter
) == WRITE
&& mapping
->nrpages
) {
952 ret
= invalidate_inode_pages2_range(mapping
,
953 iocb
->ki_pos
>> PAGE_SHIFT
, end
>> PAGE_SHIFT
);
957 return iomap_dio_complete(dio
);
963 EXPORT_SYMBOL_GPL(iomap_dio_rw
);