1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2010 Red Hat, Inc. 4 * Copyright (c) 2016-2021 Christoph Hellwig. 5 */ 6 #include <linux/module.h> 7 #include <linux/compiler.h> 8 #include <linux/fs.h> 9 #include <linux/fscrypt.h> 10 #include <linux/pagemap.h> 11 #include <linux/iomap.h> 12 #include <linux/backing-dev.h> 13 #include <linux/uio.h> 14 #include <linux/task_io_accounting_ops.h> 15 #include "trace.h" 16 17 #include "../internal.h" 18 19 /* 20 * Private flags for iomap_dio, must not overlap with the public ones in 21 * iomap.h: 22 */ 23 #define IOMAP_DIO_WRITE_FUA (1 << 28) 24 #define IOMAP_DIO_NEED_SYNC (1 << 29) 25 #define IOMAP_DIO_WRITE (1 << 30) 26 #define IOMAP_DIO_DIRTY (1 << 31) 27 28 struct iomap_dio { 29 struct kiocb *iocb; 30 const struct iomap_dio_ops *dops; 31 loff_t i_size; 32 loff_t size; 33 atomic_t ref; 34 unsigned flags; 35 int error; 36 size_t done_before; 37 bool wait_for_completion; 38 39 union { 40 /* used during submission and for synchronous completion: */ 41 struct { 42 struct iov_iter *iter; 43 struct task_struct *waiter; 44 struct bio *poll_bio; 45 } submit; 46 47 /* used for aio completion: */ 48 struct { 49 struct work_struct work; 50 } aio; 51 }; 52 }; 53 54 static void iomap_dio_submit_bio(const struct iomap_iter *iter, 55 struct iomap_dio *dio, struct bio *bio, loff_t pos) 56 { 57 atomic_inc(&dio->ref); 58 59 if (dio->iocb->ki_flags & IOCB_HIPRI) { 60 bio_set_polled(bio, dio->iocb); 61 dio->submit.poll_bio = bio; 62 } 63 64 if (dio->dops && dio->dops->submit_io) 65 dio->dops->submit_io(iter, bio, pos); 66 else 67 submit_bio(bio); 68 } 69 70 ssize_t iomap_dio_complete(struct iomap_dio *dio) 71 { 72 const struct iomap_dio_ops *dops = dio->dops; 73 struct kiocb *iocb = dio->iocb; 74 struct inode *inode = file_inode(iocb->ki_filp); 75 loff_t offset = iocb->ki_pos; 76 ssize_t ret = dio->error; 77 78 if (dops && dops->end_io) 79 ret = dops->end_io(iocb, dio->size, ret, dio->flags); 80 81 if (likely(!ret)) { 82 ret = dio->size; 83 /* check for short read */ 84 if (offset + ret > dio->i_size && 85 !(dio->flags & IOMAP_DIO_WRITE)) 86 ret = dio->i_size - offset; 87 iocb->ki_pos += ret; 88 } 89 90 /* 91 * Try again to invalidate clean pages which might have been cached by 92 * non-direct readahead, or faulted in by get_user_pages() if the source 93 * of the write was an mmap'ed region of the file we're writing. Either 94 * one is a pretty crazy thing to do, so we don't support it 100%. If 95 * this invalidation fails, tough, the write still worked... 96 * 97 * And this page cache invalidation has to be after ->end_io(), as some 98 * filesystems convert unwritten extents to real allocations in 99 * ->end_io() when necessary, otherwise a racing buffer read would cache 100 * zeros from unwritten extents. 101 */ 102 if (!dio->error && dio->size && 103 (dio->flags & IOMAP_DIO_WRITE) && inode->i_mapping->nrpages) { 104 int err; 105 err = invalidate_inode_pages2_range(inode->i_mapping, 106 offset >> PAGE_SHIFT, 107 (offset + dio->size - 1) >> PAGE_SHIFT); 108 if (err) 109 dio_warn_stale_pagecache(iocb->ki_filp); 110 } 111 112 inode_dio_end(file_inode(iocb->ki_filp)); 113 /* 114 * If this is a DSYNC write, make sure we push it to stable storage now 115 * that we've written data. 116 */ 117 if (ret > 0 && (dio->flags & IOMAP_DIO_NEED_SYNC)) 118 ret = generic_write_sync(iocb, ret); 119 120 if (ret > 0) 121 ret += dio->done_before; 122 123 kfree(dio); 124 125 return ret; 126 } 127 EXPORT_SYMBOL_GPL(iomap_dio_complete); 128 129 static void iomap_dio_complete_work(struct work_struct *work) 130 { 131 struct iomap_dio *dio = container_of(work, struct iomap_dio, aio.work); 132 struct kiocb *iocb = dio->iocb; 133 134 iocb->ki_complete(iocb, iomap_dio_complete(dio)); 135 } 136 137 /* 138 * Set an error in the dio if none is set yet. We have to use cmpxchg 139 * as the submission context and the completion context(s) can race to 140 * update the error. 141 */ 142 static inline void iomap_dio_set_error(struct iomap_dio *dio, int ret) 143 { 144 cmpxchg(&dio->error, 0, ret); 145 } 146 147 static void iomap_dio_bio_end_io(struct bio *bio) 148 { 149 struct iomap_dio *dio = bio->bi_private; 150 bool should_dirty = (dio->flags & IOMAP_DIO_DIRTY); 151 152 if (bio->bi_status) 153 iomap_dio_set_error(dio, blk_status_to_errno(bio->bi_status)); 154 155 if (atomic_dec_and_test(&dio->ref)) { 156 if (dio->wait_for_completion) { 157 struct task_struct *waiter = dio->submit.waiter; 158 WRITE_ONCE(dio->submit.waiter, NULL); 159 blk_wake_io_task(waiter); 160 } else if (dio->flags & IOMAP_DIO_WRITE) { 161 struct inode *inode = file_inode(dio->iocb->ki_filp); 162 163 WRITE_ONCE(dio->iocb->private, NULL); 164 INIT_WORK(&dio->aio.work, iomap_dio_complete_work); 165 queue_work(inode->i_sb->s_dio_done_wq, &dio->aio.work); 166 } else { 167 WRITE_ONCE(dio->iocb->private, NULL); 168 iomap_dio_complete_work(&dio->aio.work); 169 } 170 } 171 172 if (should_dirty) { 173 bio_check_pages_dirty(bio); 174 } else { 175 bio_release_pages(bio, false); 176 bio_put(bio); 177 } 178 } 179 180 static void iomap_dio_zero(const struct iomap_iter *iter, struct iomap_dio *dio, 181 loff_t pos, unsigned len) 182 { 183 struct inode *inode = file_inode(dio->iocb->ki_filp); 184 struct page *page = ZERO_PAGE(0); 185 int flags = REQ_SYNC | REQ_IDLE; 186 struct bio *bio; 187 188 bio = bio_alloc(iter->iomap.bdev, 1, REQ_OP_WRITE | flags, GFP_KERNEL); 189 fscrypt_set_bio_crypt_ctx(bio, inode, pos >> inode->i_blkbits, 190 GFP_KERNEL); 191 bio->bi_iter.bi_sector = iomap_sector(&iter->iomap, pos); 192 bio->bi_private = dio; 193 bio->bi_end_io = iomap_dio_bio_end_io; 194 195 get_page(page); 196 __bio_add_page(bio, page, len, 0); 197 iomap_dio_submit_bio(iter, dio, bio, pos); 198 } 199 200 /* 201 * Figure out the bio's operation flags from the dio request, the 202 * mapping, and whether or not we want FUA. Note that we can end up 203 * clearing the WRITE_FUA flag in the dio request. 204 */ 205 static inline unsigned int iomap_dio_bio_opflags(struct iomap_dio *dio, 206 const struct iomap *iomap, bool use_fua) 207 { 208 unsigned int opflags = REQ_SYNC | REQ_IDLE; 209 210 if (!(dio->flags & IOMAP_DIO_WRITE)) { 211 WARN_ON_ONCE(iomap->flags & IOMAP_F_ZONE_APPEND); 212 return REQ_OP_READ; 213 } 214 215 if (iomap->flags & IOMAP_F_ZONE_APPEND) 216 opflags |= REQ_OP_ZONE_APPEND; 217 else 218 opflags |= REQ_OP_WRITE; 219 220 if (use_fua) 221 opflags |= REQ_FUA; 222 else 223 dio->flags &= ~IOMAP_DIO_WRITE_FUA; 224 225 return opflags; 226 } 227 228 static loff_t iomap_dio_bio_iter(const struct iomap_iter *iter, 229 struct iomap_dio *dio) 230 { 231 const struct iomap *iomap = &iter->iomap; 232 struct inode *inode = iter->inode; 233 unsigned int blkbits = blksize_bits(bdev_logical_block_size(iomap->bdev)); 234 unsigned int fs_block_size = i_blocksize(inode), pad; 235 unsigned int align = iov_iter_alignment(dio->submit.iter); 236 loff_t length = iomap_length(iter); 237 loff_t pos = iter->pos; 238 unsigned int bio_opf; 239 struct bio *bio; 240 bool need_zeroout = false; 241 bool use_fua = false; 242 int nr_pages, ret = 0; 243 size_t copied = 0; 244 size_t orig_count; 245 246 if ((pos | length | align) & ((1 << blkbits) - 1)) 247 return -EINVAL; 248 249 if (iomap->type == IOMAP_UNWRITTEN) { 250 dio->flags |= IOMAP_DIO_UNWRITTEN; 251 need_zeroout = true; 252 } 253 254 if (iomap->flags & IOMAP_F_SHARED) 255 dio->flags |= IOMAP_DIO_COW; 256 257 if (iomap->flags & IOMAP_F_NEW) { 258 need_zeroout = true; 259 } else if (iomap->type == IOMAP_MAPPED) { 260 /* 261 * Use a FUA write if we need datasync semantics, this is a pure 262 * data IO that doesn't require any metadata updates (including 263 * after IO completion such as unwritten extent conversion) and 264 * the underlying device supports FUA. This allows us to avoid 265 * cache flushes on IO completion. 266 */ 267 if (!(iomap->flags & (IOMAP_F_SHARED|IOMAP_F_DIRTY)) && 268 (dio->flags & IOMAP_DIO_WRITE_FUA) && 269 blk_queue_fua(bdev_get_queue(iomap->bdev))) 270 use_fua = true; 271 } 272 273 /* 274 * Save the original count and trim the iter to just the extent we 275 * are operating on right now. The iter will be re-expanded once 276 * we are done. 277 */ 278 orig_count = iov_iter_count(dio->submit.iter); 279 iov_iter_truncate(dio->submit.iter, length); 280 281 if (!iov_iter_count(dio->submit.iter)) 282 goto out; 283 284 /* 285 * We can only poll for single bio I/Os. 286 */ 287 if (need_zeroout || 288 ((dio->flags & IOMAP_DIO_WRITE) && pos >= i_size_read(inode))) 289 dio->iocb->ki_flags &= ~IOCB_HIPRI; 290 291 if (need_zeroout) { 292 /* zero out from the start of the block to the write offset */ 293 pad = pos & (fs_block_size - 1); 294 if (pad) 295 iomap_dio_zero(iter, dio, pos - pad, pad); 296 } 297 298 /* 299 * Set the operation flags early so that bio_iov_iter_get_pages 300 * can set up the page vector appropriately for a ZONE_APPEND 301 * operation. 302 */ 303 bio_opf = iomap_dio_bio_opflags(dio, iomap, use_fua); 304 305 nr_pages = bio_iov_vecs_to_alloc(dio->submit.iter, BIO_MAX_VECS); 306 do { 307 size_t n; 308 if (dio->error) { 309 iov_iter_revert(dio->submit.iter, copied); 310 copied = ret = 0; 311 goto out; 312 } 313 314 bio = bio_alloc(iomap->bdev, nr_pages, bio_opf, GFP_KERNEL); 315 fscrypt_set_bio_crypt_ctx(bio, inode, pos >> inode->i_blkbits, 316 GFP_KERNEL); 317 bio->bi_iter.bi_sector = iomap_sector(iomap, pos); 318 bio->bi_write_hint = dio->iocb->ki_hint; 319 bio->bi_ioprio = dio->iocb->ki_ioprio; 320 bio->bi_private = dio; 321 bio->bi_end_io = iomap_dio_bio_end_io; 322 323 ret = bio_iov_iter_get_pages(bio, dio->submit.iter); 324 if (unlikely(ret)) { 325 /* 326 * We have to stop part way through an IO. We must fall 327 * through to the sub-block tail zeroing here, otherwise 328 * this short IO may expose stale data in the tail of 329 * the block we haven't written data to. 330 */ 331 bio_put(bio); 332 goto zero_tail; 333 } 334 335 n = bio->bi_iter.bi_size; 336 if (dio->flags & IOMAP_DIO_WRITE) { 337 task_io_account_write(n); 338 } else { 339 if (dio->flags & IOMAP_DIO_DIRTY) 340 bio_set_pages_dirty(bio); 341 } 342 343 dio->size += n; 344 copied += n; 345 346 nr_pages = bio_iov_vecs_to_alloc(dio->submit.iter, 347 BIO_MAX_VECS); 348 /* 349 * We can only poll for single bio I/Os. 350 */ 351 if (nr_pages) 352 dio->iocb->ki_flags &= ~IOCB_HIPRI; 353 iomap_dio_submit_bio(iter, dio, bio, pos); 354 pos += n; 355 } while (nr_pages); 356 357 /* 358 * We need to zeroout the tail of a sub-block write if the extent type 359 * requires zeroing or the write extends beyond EOF. If we don't zero 360 * the block tail in the latter case, we can expose stale data via mmap 361 * reads of the EOF block. 362 */ 363 zero_tail: 364 if (need_zeroout || 365 ((dio->flags & IOMAP_DIO_WRITE) && pos >= i_size_read(inode))) { 366 /* zero out from the end of the write to the end of the block */ 367 pad = pos & (fs_block_size - 1); 368 if (pad) 369 iomap_dio_zero(iter, dio, pos, fs_block_size - pad); 370 } 371 out: 372 /* Undo iter limitation to current extent */ 373 iov_iter_reexpand(dio->submit.iter, orig_count - copied); 374 if (copied) 375 return copied; 376 return ret; 377 } 378 379 static loff_t iomap_dio_hole_iter(const struct iomap_iter *iter, 380 struct iomap_dio *dio) 381 { 382 loff_t length = iov_iter_zero(iomap_length(iter), dio->submit.iter); 383 384 dio->size += length; 385 if (!length) 386 return -EFAULT; 387 return length; 388 } 389 390 static loff_t iomap_dio_inline_iter(const struct iomap_iter *iomi, 391 struct iomap_dio *dio) 392 { 393 const struct iomap *iomap = &iomi->iomap; 394 struct iov_iter *iter = dio->submit.iter; 395 void *inline_data = iomap_inline_data(iomap, iomi->pos); 396 loff_t length = iomap_length(iomi); 397 loff_t pos = iomi->pos; 398 size_t copied; 399 400 if (WARN_ON_ONCE(!iomap_inline_data_valid(iomap))) 401 return -EIO; 402 403 if (dio->flags & IOMAP_DIO_WRITE) { 404 loff_t size = iomi->inode->i_size; 405 406 if (pos > size) 407 memset(iomap_inline_data(iomap, size), 0, pos - size); 408 copied = copy_from_iter(inline_data, length, iter); 409 if (copied) { 410 if (pos + copied > size) 411 i_size_write(iomi->inode, pos + copied); 412 mark_inode_dirty(iomi->inode); 413 } 414 } else { 415 copied = copy_to_iter(inline_data, length, iter); 416 } 417 dio->size += copied; 418 if (!copied) 419 return -EFAULT; 420 return copied; 421 } 422 423 static loff_t iomap_dio_iter(const struct iomap_iter *iter, 424 struct iomap_dio *dio) 425 { 426 switch (iter->iomap.type) { 427 case IOMAP_HOLE: 428 if (WARN_ON_ONCE(dio->flags & IOMAP_DIO_WRITE)) 429 return -EIO; 430 return iomap_dio_hole_iter(iter, dio); 431 case IOMAP_UNWRITTEN: 432 if (!(dio->flags & IOMAP_DIO_WRITE)) 433 return iomap_dio_hole_iter(iter, dio); 434 return iomap_dio_bio_iter(iter, dio); 435 case IOMAP_MAPPED: 436 return iomap_dio_bio_iter(iter, dio); 437 case IOMAP_INLINE: 438 return iomap_dio_inline_iter(iter, dio); 439 case IOMAP_DELALLOC: 440 /* 441 * DIO is not serialised against mmap() access at all, and so 442 * if the page_mkwrite occurs between the writeback and the 443 * iomap_iter() call in the DIO path, then it will see the 444 * DELALLOC block that the page-mkwrite allocated. 445 */ 446 pr_warn_ratelimited("Direct I/O collision with buffered writes! File: %pD4 Comm: %.20s\n", 447 dio->iocb->ki_filp, current->comm); 448 return -EIO; 449 default: 450 WARN_ON_ONCE(1); 451 return -EIO; 452 } 453 } 454 455 /* 456 * iomap_dio_rw() always completes O_[D]SYNC writes regardless of whether the IO 457 * is being issued as AIO or not. This allows us to optimise pure data writes 458 * to use REQ_FUA rather than requiring generic_write_sync() to issue a 459 * REQ_FLUSH post write. This is slightly tricky because a single request here 460 * can be mapped into multiple disjoint IOs and only a subset of the IOs issued 461 * may be pure data writes. In that case, we still need to do a full data sync 462 * completion. 463 * 464 * When page faults are disabled and @dio_flags includes IOMAP_DIO_PARTIAL, 465 * __iomap_dio_rw can return a partial result if it encounters a non-resident 466 * page in @iter after preparing a transfer. In that case, the non-resident 467 * pages can be faulted in and the request resumed with @done_before set to the 468 * number of bytes previously transferred. The request will then complete with 469 * the correct total number of bytes transferred; this is essential for 470 * completing partial requests asynchronously. 471 * 472 * Returns -ENOTBLK In case of a page invalidation invalidation failure for 473 * writes. The callers needs to fall back to buffered I/O in this case. 474 */ 475 struct iomap_dio * 476 __iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter, 477 const struct iomap_ops *ops, const struct iomap_dio_ops *dops, 478 unsigned int dio_flags, size_t done_before) 479 { 480 struct address_space *mapping = iocb->ki_filp->f_mapping; 481 struct inode *inode = file_inode(iocb->ki_filp); 482 struct iomap_iter iomi = { 483 .inode = inode, 484 .pos = iocb->ki_pos, 485 .len = iov_iter_count(iter), 486 .flags = IOMAP_DIRECT, 487 }; 488 loff_t end = iomi.pos + iomi.len - 1, ret = 0; 489 bool wait_for_completion = 490 is_sync_kiocb(iocb) || (dio_flags & IOMAP_DIO_FORCE_WAIT); 491 struct blk_plug plug; 492 struct iomap_dio *dio; 493 494 if (!iomi.len) 495 return NULL; 496 497 dio = kmalloc(sizeof(*dio), GFP_KERNEL); 498 if (!dio) 499 return ERR_PTR(-ENOMEM); 500 501 dio->iocb = iocb; 502 atomic_set(&dio->ref, 1); 503 dio->size = 0; 504 dio->i_size = i_size_read(inode); 505 dio->dops = dops; 506 dio->error = 0; 507 dio->flags = 0; 508 dio->done_before = done_before; 509 510 dio->submit.iter = iter; 511 dio->submit.waiter = current; 512 dio->submit.poll_bio = NULL; 513 514 if (iov_iter_rw(iter) == READ) { 515 if (iomi.pos >= dio->i_size) 516 goto out_free_dio; 517 518 if (iocb->ki_flags & IOCB_NOWAIT) { 519 if (filemap_range_needs_writeback(mapping, iomi.pos, 520 end)) { 521 ret = -EAGAIN; 522 goto out_free_dio; 523 } 524 iomi.flags |= IOMAP_NOWAIT; 525 } 526 527 if (iter_is_iovec(iter)) 528 dio->flags |= IOMAP_DIO_DIRTY; 529 } else { 530 iomi.flags |= IOMAP_WRITE; 531 dio->flags |= IOMAP_DIO_WRITE; 532 533 if (iocb->ki_flags & IOCB_NOWAIT) { 534 if (filemap_range_has_page(mapping, iomi.pos, end)) { 535 ret = -EAGAIN; 536 goto out_free_dio; 537 } 538 iomi.flags |= IOMAP_NOWAIT; 539 } 540 541 /* for data sync or sync, we need sync completion processing */ 542 if (iocb->ki_flags & IOCB_DSYNC) 543 dio->flags |= IOMAP_DIO_NEED_SYNC; 544 545 /* 546 * For datasync only writes, we optimistically try using FUA for 547 * this IO. Any non-FUA write that occurs will clear this flag, 548 * hence we know before completion whether a cache flush is 549 * necessary. 550 */ 551 if ((iocb->ki_flags & (IOCB_DSYNC | IOCB_SYNC)) == IOCB_DSYNC) 552 dio->flags |= IOMAP_DIO_WRITE_FUA; 553 } 554 555 if (dio_flags & IOMAP_DIO_OVERWRITE_ONLY) { 556 ret = -EAGAIN; 557 if (iomi.pos >= dio->i_size || 558 iomi.pos + iomi.len > dio->i_size) 559 goto out_free_dio; 560 iomi.flags |= IOMAP_OVERWRITE_ONLY; 561 } 562 563 ret = filemap_write_and_wait_range(mapping, iomi.pos, end); 564 if (ret) 565 goto out_free_dio; 566 567 if (iov_iter_rw(iter) == WRITE) { 568 /* 569 * Try to invalidate cache pages for the range we are writing. 570 * If this invalidation fails, let the caller fall back to 571 * buffered I/O. 572 */ 573 if (invalidate_inode_pages2_range(mapping, 574 iomi.pos >> PAGE_SHIFT, end >> PAGE_SHIFT)) { 575 trace_iomap_dio_invalidate_fail(inode, iomi.pos, 576 iomi.len); 577 ret = -ENOTBLK; 578 goto out_free_dio; 579 } 580 581 if (!wait_for_completion && !inode->i_sb->s_dio_done_wq) { 582 ret = sb_init_dio_done_wq(inode->i_sb); 583 if (ret < 0) 584 goto out_free_dio; 585 } 586 } 587 588 inode_dio_begin(inode); 589 590 blk_start_plug(&plug); 591 while ((ret = iomap_iter(&iomi, ops)) > 0) { 592 iomi.processed = iomap_dio_iter(&iomi, dio); 593 594 /* 595 * We can only poll for single bio I/Os. 596 */ 597 iocb->ki_flags &= ~IOCB_HIPRI; 598 } 599 600 blk_finish_plug(&plug); 601 602 /* 603 * We only report that we've read data up to i_size. 604 * Revert iter to a state corresponding to that as some callers (such 605 * as the splice code) rely on it. 606 */ 607 if (iov_iter_rw(iter) == READ && iomi.pos >= dio->i_size) 608 iov_iter_revert(iter, iomi.pos - dio->i_size); 609 610 if (ret == -EFAULT && dio->size && (dio_flags & IOMAP_DIO_PARTIAL)) { 611 if (!(iocb->ki_flags & IOCB_NOWAIT)) 612 wait_for_completion = true; 613 ret = 0; 614 } 615 616 /* magic error code to fall back to buffered I/O */ 617 if (ret == -ENOTBLK) { 618 wait_for_completion = true; 619 ret = 0; 620 } 621 if (ret < 0) 622 iomap_dio_set_error(dio, ret); 623 624 /* 625 * If all the writes we issued were FUA, we don't need to flush the 626 * cache on IO completion. Clear the sync flag for this case. 627 */ 628 if (dio->flags & IOMAP_DIO_WRITE_FUA) 629 dio->flags &= ~IOMAP_DIO_NEED_SYNC; 630 631 WRITE_ONCE(iocb->private, dio->submit.poll_bio); 632 633 /* 634 * We are about to drop our additional submission reference, which 635 * might be the last reference to the dio. There are three different 636 * ways we can progress here: 637 * 638 * (a) If this is the last reference we will always complete and free 639 * the dio ourselves. 640 * (b) If this is not the last reference, and we serve an asynchronous 641 * iocb, we must never touch the dio after the decrement, the 642 * I/O completion handler will complete and free it. 643 * (c) If this is not the last reference, but we serve a synchronous 644 * iocb, the I/O completion handler will wake us up on the drop 645 * of the final reference, and we will complete and free it here 646 * after we got woken by the I/O completion handler. 647 */ 648 dio->wait_for_completion = wait_for_completion; 649 if (!atomic_dec_and_test(&dio->ref)) { 650 if (!wait_for_completion) 651 return ERR_PTR(-EIOCBQUEUED); 652 653 for (;;) { 654 set_current_state(TASK_UNINTERRUPTIBLE); 655 if (!READ_ONCE(dio->submit.waiter)) 656 break; 657 658 if (!dio->submit.poll_bio || 659 !bio_poll(dio->submit.poll_bio, NULL, 0)) 660 blk_io_schedule(); 661 } 662 __set_current_state(TASK_RUNNING); 663 } 664 665 return dio; 666 667 out_free_dio: 668 kfree(dio); 669 if (ret) 670 return ERR_PTR(ret); 671 return NULL; 672 } 673 EXPORT_SYMBOL_GPL(__iomap_dio_rw); 674 675 ssize_t 676 iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter, 677 const struct iomap_ops *ops, const struct iomap_dio_ops *dops, 678 unsigned int dio_flags, size_t done_before) 679 { 680 struct iomap_dio *dio; 681 682 dio = __iomap_dio_rw(iocb, iter, ops, dops, dio_flags, done_before); 683 if (IS_ERR_OR_NULL(dio)) 684 return PTR_ERR_OR_ZERO(dio); 685 return iomap_dio_complete(dio); 686 } 687 EXPORT_SYMBOL_GPL(iomap_dio_rw); 688