/* * Return the data direction, READ or WRITE.
*/ #define bio_data_dir(bio) \
(op_is_write(bio_op(bio)) ? WRITE : READ)
/* * Check whether this bio carries any data or not. A NULL bio is allowed.
*/ staticinlinebool bio_has_data(struct bio *bio)
{ if (bio &&
bio->bi_iter.bi_size &&
bio_op(bio) != REQ_OP_DISCARD &&
bio_op(bio) != REQ_OP_SECURE_ERASE &&
bio_op(bio) != REQ_OP_WRITE_ZEROES) returntrue;
/* * drivers should _never_ use the all version - the bio may have been split * before it got to the driver and the driver won't own all of it
*/ #define bio_for_each_segment_all(bvl, bio, iter) \ for (bvl = bvec_init_iter_all(&iter); bio_next_segment((bio), &iter); )
if (bio_no_advance_iter(bio))
iter->bi_size -= bytes; else
bvec_iter_advance(bio->bi_io_vec, iter, bytes); /* TODO: It is reasonable to complete bio with error here. */
}
/* @bytes should be less or equal to bvec[i->bi_idx].bv_len */ staticinlinevoid bio_advance_iter_single(conststruct bio *bio, struct bvec_iter *iter, unsignedint bytes)
{
iter->bi_sector += bytes >> 9;
if (bio_no_advance_iter(bio))
iter->bi_size -= bytes; else
bvec_iter_advance_single(bio->bi_io_vec, iter, bytes);
}
void __bio_advance(struct bio *, unsigned bytes);
/** * bio_advance - increment/complete a bio by some number of bytes * @bio: bio to advance * @nbytes: number of bytes to complete * * This updates bi_sector, bi_size and bi_idx; if the number of bytes to * complete doesn't align with a bvec boundary, then bv_len and bv_offset will * be updated on the last bvec as well. * * @bio will then represent the remaining, uncompleted portion of the io.
*/ staticinlinevoid bio_advance(struct bio *bio, unsignedint nbytes)
{ if (nbytes == bio->bi_iter.bi_size) {
bio->bi_iter.bi_size = 0; return;
}
__bio_advance(bio, nbytes);
}
/* * Iterate over all multi-page bvecs. Drivers shouldn't use this version for the * same reasons as bio_for_each_segment_all().
*/ #define bio_for_each_bvec_all(bvl, bio, i) \ for (i = 0, bvl = bio_first_bvec_all(bio); \
i < (bio)->bi_vcnt; i++, bvl++)
/* * We special case discard/write same/write zeroes, because they * interpret bi_size differently:
*/
switch (bio_op(bio)) { case REQ_OP_DISCARD: case REQ_OP_SECURE_ERASE: case REQ_OP_WRITE_ZEROES: return 0; default: break;
}
bio_for_each_segment(bv, bio, iter)
segs++;
return segs;
}
/* * get a reference to a bio, so it won't disappear. the intended use is * something like: * * bio_get(bio); * submit_bio(rw, bio); * if (bio->bi_flags ...) * do_something * bio_put(bio); * * without the bio_get(), it could potentially complete I/O before submit_bio * returns. and then bio would be freed memory when if (bio->bi_flags ...) * runs
*/ staticinlinevoid bio_get(struct bio *bio)
{
bio->bi_flags |= (1 << BIO_REFFED);
smp_mb__before_atomic();
atomic_inc(&bio->__bi_cnt);
}
/** * struct folio_iter - State for iterating all folios in a bio. * @folio: The current folio we're iterating. NULL after the last folio. * @offset: The byte offset within the current folio. * @length: The number of bytes in this iteration (will not cross folio * boundary).
*/ struct folio_iter { struct folio *folio;
size_t offset;
size_t length; /* private: for use by the iterator */ struct folio *_next;
size_t _seg_count; int _i;
};
staticinlinevoid bio_first_folio(struct folio_iter *fi, struct bio *bio, int i)
{ struct bio_vec *bvec = bio_first_bvec_all(bio) + i;
if (unlikely(i >= bio->bi_vcnt)) {
fi->folio = NULL; return;
}
/** * bio_for_each_folio_all - Iterate over each folio in a bio. * @fi: struct folio_iter which is updated for each folio. * @bio: struct bio to iterate over.
*/ #define bio_for_each_folio_all(fi, bio) \ for (bio_first_folio(&fi, bio, 0); fi.folio; bio_next_folio(&fi, bio))
void bio_trim(struct bio *bio, sector_t offset, sector_t size); externstruct bio *bio_split(struct bio *bio, int sectors,
gfp_t gfp, struct bio_set *bs); int bio_split_io_at(struct bio *bio, conststruct queue_limits *lim, unsigned *segs, unsigned max_bytes, unsigned len_align);
/** * bio_next_split - get next @sectors from a bio, splitting if necessary * @bio: bio to split * @sectors: number of sectors to split from the front of @bio * @gfp: gfp mask * @bs: bio set to allocate from * * Return: a bio representing the next @sectors of @bio - if the bio is smaller * than @sectors, returns the original bio unchanged.
*/ staticinlinestruct bio *bio_next_split(struct bio *bio, int sectors,
gfp_t gfp, struct bio_set *bs)
{ if (sectors >= bio_sectors(bio)) return bio;
struct bio *bio_alloc_bioset(struct block_device *bdev, unsignedshort nr_vecs,
blk_opf_t opf, gfp_t gfp_mask, struct bio_set *bs); struct bio *bio_kmalloc(unsignedshort nr_vecs, gfp_t gfp_mask); externvoid bio_put(struct bio *);
struct bio *bio_alloc_clone(struct block_device *bdev, struct bio *bio_src,
gfp_t gfp, struct bio_set *bs); int bio_init_clone(struct block_device *bdev, struct bio *bio, struct bio *bio_src, gfp_t gfp);
/* * Calculate number of bvec segments that should be allocated to fit data * pointed by @iter. If @iter is backed by bvec it's going to be reused * instead of allocating a new one.
*/ staticinlineint bio_iov_vecs_to_alloc(struct iov_iter *iter, int max_segs)
{ if (iov_iter_is_bvec(iter)) return 0; return iov_iter_npages(iter, max_segs);
}
struct request_queue;
void bio_init(struct bio *bio, struct block_device *bdev, struct bio_vec *table, unsignedshort max_vecs, blk_opf_t opf); externvoid bio_uninit(struct bio *); void bio_reset(struct bio *bio, struct block_device *bdev, blk_opf_t opf); void bio_chain(struct bio *, struct bio *);
int __must_check bio_add_page(struct bio *bio, struct page *page, unsigned len, unsigned off); bool __must_check bio_add_folio(struct bio *bio, struct folio *folio,
size_t len, size_t off); void __bio_add_page(struct bio *bio, struct page *page, unsignedint len, unsignedint off); void bio_add_folio_nofail(struct bio *bio, struct folio *folio, size_t len,
size_t off); void bio_add_virt_nofail(struct bio *bio, void *vaddr, unsigned len);
/** * bio_add_max_vecs - number of bio_vecs needed to add data to a bio * @kaddr: kernel virtual address to add * @len: length in bytes to add * * Calculate how many bio_vecs need to be allocated to add the kernel virtual * address range in [@kaddr:@len] in the worse case.
*/ staticinlineunsignedint bio_add_max_vecs(void *kaddr, unsignedint len)
{ if (is_vmalloc_addr(kaddr)) return DIV_ROUND_UP(offset_in_page(kaddr) + len, PAGE_SIZE); return 1;
}
unsignedint bio_add_vmalloc_chunk(struct bio *bio, void *vaddr, unsigned len); bool bio_add_vmalloc(struct bio *bio, void *vaddr, unsignedint len);
int submit_bio_wait(struct bio *bio); int bdev_rw_virt(struct block_device *bdev, sector_t sector, void *data,
size_t len, enum req_op op);
int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter); void bio_iov_bvec_set(struct bio *bio, conststruct iov_iter *iter); void __bio_release_pages(struct bio *bio, bool mark_dirty); externvoid bio_set_pages_dirty(struct bio *bio); externvoid bio_check_pages_dirty(struct bio *bio);
externvoid bio_copy_data_iter(struct bio *dst, struct bvec_iter *dst_iter, struct bio *src, struct bvec_iter *src_iter); externvoid bio_copy_data(struct bio *dst, struct bio *src); externvoid bio_free_pages(struct bio *bio); void guard_bio_eod(struct bio *bio); void zero_fill_bio_iter(struct bio *bio, struct bvec_iter iter);
staticinlinevoid zero_fill_bio(struct bio *bio)
{
zero_fill_bio_iter(bio, bio->bi_iter);
}
staticinlinevoid bio_release_pages(struct bio *bio, bool mark_dirty)
{ if (bio_flagged(bio, BIO_PAGE_PINNED))
__bio_release_pages(bio, mark_dirty);
}
/* * BIO list management for use by remapping drivers (e.g. DM or MD) and loop. * * A bio_list anchors a singly-linked list of bios chained through the bi_next * member of the bio. The bio_list also caches the last list member to allow * fast access to the tail.
*/ struct bio_list { struct bio *head; struct bio *tail;
};
if (bl->head)
bl2->tail->bi_next = bl->head; else
bl->tail = bl2->tail;
bl->head = bl2->head;
}
staticinlinestruct bio *bio_list_peek(struct bio_list *bl)
{ return bl->head;
}
staticinlinestruct bio *bio_list_pop(struct bio_list *bl)
{ struct bio *bio = bl->head;
if (bio) {
bl->head = bl->head->bi_next; if (!bl->head)
bl->tail = NULL;
bio->bi_next = NULL;
}
return bio;
}
staticinlinestruct bio *bio_list_get(struct bio_list *bl)
{ struct bio *bio = bl->head;
bl->head = bl->tail = NULL;
return bio;
}
/* * Increment chain count for the bio. Make sure the CHAIN flag update * is visible before the raised count.
*/ staticinlinevoid bio_inc_remaining(struct bio *bio)
{
bio_set_flag(bio, BIO_CHAIN);
smp_mb__before_atomic();
atomic_inc(&bio->__bi_remaining);
}
/* * bio_set is used to allow other portions of the IO system to * allocate their own private memory pools for bio and iovec structures. * These memory pools in turn all allocate from the bio_slab * and the bvec_slabs[].
*/ #define BIO_POOL_SIZE 2
/* * Mark a bio as polled. Note that for async polled IO, the caller must * expect -EWOULDBLOCK if we cannot allocate a request (or other resources). * We cannot block waiting for requests on polled IO, as those completions * must be found by the caller. This is different than IRQ driven IO, where * it's safe to wait for IO to complete.
*/ staticinlinevoid bio_set_polled(struct bio *bio, struct kiocb *kiocb)
{
bio->bi_opf |= REQ_POLLED; if (kiocb->ki_flags & IOCB_NOWAIT)
bio->bi_opf |= REQ_NOWAIT;
}
staticinlinevoid bio_clear_polled(struct bio *bio)
{
bio->bi_opf &= ~REQ_POLLED;
}
/** * bio_is_zone_append - is this a zone append bio? * @bio: bio to check * * Check if @bio is a zone append operation. Core block layer code and end_io * handlers must use this instead of an open coded REQ_OP_ZONE_APPEND check * because the block layer can rewrite REQ_OP_ZONE_APPEND to REQ_OP_WRITE if * it is not natively supported.
*/ staticinlinebool bio_is_zone_append(struct bio *bio)
{ if (!IS_ENABLED(CONFIG_BLK_DEV_ZONED)) returnfalse; return bio_op(bio) == REQ_OP_ZONE_APPEND ||
bio_flagged(bio, BIO_EMULATES_ZONE_APPEND);
}
struct bio *blk_next_bio(struct bio *bio, struct block_device *bdev, unsignedint nr_pages, blk_opf_t opf, gfp_t gfp); struct bio *bio_chain_and_submit(struct bio *prev, struct bio *new);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.