Skip to content

Commit d0ea6bd

Browse files
damien-lemoalsnitm
authored andcommitted
block: introduce bio zone helpers
Introduce the helper functions bio_zone_no() and bio_zone_is_seq(). Both are the BIO counterparts of the request helpers blk_rq_zone_no() and blk_rq_zone_is_seq(), respectively returning the number of the target zone of a bio and true if the BIO target zone is sequential. Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Acked-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
1 parent 1ee533e commit d0ea6bd

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

include/linux/blkdev.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,18 @@ static inline unsigned int blk_rq_stats_sectors(const struct request *rq)
10081008
/* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */
10091009
const char *blk_zone_cond_str(enum blk_zone_cond zone_cond);
10101010

1011+
static inline unsigned int bio_zone_no(struct bio *bio)
1012+
{
1013+
return blk_queue_zone_no(bdev_get_queue(bio->bi_bdev),
1014+
bio->bi_iter.bi_sector);
1015+
}
1016+
1017+
static inline unsigned int bio_zone_is_seq(struct bio *bio)
1018+
{
1019+
return blk_queue_zone_is_seq(bdev_get_queue(bio->bi_bdev),
1020+
bio->bi_iter.bi_sector);
1021+
}
1022+
10111023
static inline unsigned int blk_rq_zone_no(struct request *rq)
10121024
{
10131025
return blk_queue_zone_no(rq->q, blk_rq_pos(rq));

0 commit comments

Comments
 (0)