]> www.infradead.org Git - users/hch/block.git/commitdiff
nvmet:: use bdev based helpers in nvmet_bdev_zone_mgmt_emulate_all
authorChristoph Hellwig <hch@lst.de>
Tue, 5 Jul 2022 10:05:07 +0000 (12:05 +0200)
committerChristoph Hellwig <hch@lst.de>
Tue, 5 Jul 2022 10:06:30 +0000 (12:06 +0200)
Use the bdev based helpers instead of the queue based ones to clean up
the code a bit and prepare for storing all zone related fields in
struct gendisk.

Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/target/zns.c

index c4c99b832daf2b5882fa401bf0f568f537089c20..9d8717126ab3100287208adddf9956fbb2d5857f 100644 (file)
@@ -413,7 +413,7 @@ static u16 nvmet_bdev_zone_mgmt_emulate_all(struct nvmet_req *req)
                ret = 0;
        }
 
-       while (sector < get_capacity(bdev->bd_disk)) {
+       while (sector < bdev_nr_sectors(bdev)) {
                if (test_bit(blk_queue_zone_no(q, sector), d.zbitmap)) {
                        bio = blk_next_bio(bio, bdev, 0,
                                zsa_req_op(req->cmd->zms.zsa) | REQ_SYNC,
@@ -422,7 +422,7 @@ static u16 nvmet_bdev_zone_mgmt_emulate_all(struct nvmet_req *req)
                        /* This may take a while, so be nice to others */
                        cond_resched();
                }
-               sector += blk_queue_zone_sectors(q);
+               sector += bdev_zone_sectors(bdev);
        }
 
        if (bio) {