Lines Matching refs:bio
89 struct bio *bio = &ioend->io_inline_bio; in xfs_destroy_ioend() local
90 struct bio *last = ioend->io_bio, *next; in xfs_destroy_ioend()
91 u64 start = bio->bi_iter.bi_sector; in xfs_destroy_ioend()
92 bool quiet = bio_flagged(bio, BIO_QUIET); in xfs_destroy_ioend()
94 for (bio = &ioend->io_inline_bio; bio; bio = next) { in xfs_destroy_ioend()
102 if (bio == last) in xfs_destroy_ioend()
105 next = bio->bi_private; in xfs_destroy_ioend()
108 bio_for_each_segment_all(bvec, bio, iter_all) in xfs_destroy_ioend()
110 bio_put(bio); in xfs_destroy_ioend()
398 struct bio *bio) in xfs_end_bio() argument
400 struct xfs_ioend *ioend = bio->bi_private; in xfs_end_bio()
415 xfs_destroy_ioend(ioend, blk_status_to_errno(bio->bi_status)); in xfs_end_bio()
704 struct bio *bio; in xfs_alloc_ioend() local
706 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &xfs_ioend_bioset); in xfs_alloc_ioend()
707 bio_set_dev(bio, bdev); in xfs_alloc_ioend()
708 bio->bi_iter.bi_sector = sector; in xfs_alloc_ioend()
709 bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc); in xfs_alloc_ioend()
710 bio->bi_write_hint = inode->i_write_hint; in xfs_alloc_ioend()
711 wbc_init_bio(wbc, bio); in xfs_alloc_ioend()
713 ioend = container_of(bio, struct xfs_ioend, io_inline_bio); in xfs_alloc_ioend()
721 ioend->io_bio = bio; in xfs_alloc_ioend()
732 static struct bio *
734 struct bio *prev) in xfs_chain_bio()
736 struct bio *new; in xfs_chain_bio()