btrfs: use bdev_rw_virt in scrub_one_super
authorChristoph Hellwig <hch@lst.de>
Sun, 13 Apr 2025 06:25:00 +0000 (08:25 +0200)
committerChristoph Hellwig <hch@lst.de>
Tue, 29 Apr 2025 19:03:21 +0000 (14:03 -0500)
Replace the code building a bio from a kernel direct map address and
submitting it synchronously with the bdev_rw_virt helper.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
fs/btrfs/scrub.c

index 2c5edcee94502b0625671137f856e385eb1aa26f..7bdb2bc0a21251a12ce406cb39b8862815952fec 100644 (file)
@@ -2770,17 +2770,11 @@ static int scrub_one_super(struct scrub_ctx *sctx, struct btrfs_device *dev,
                           struct page *page, u64 physical, u64 generation)
 {
        struct btrfs_fs_info *fs_info = sctx->fs_info;
-       struct bio_vec bvec;
-       struct bio bio;
        struct btrfs_super_block *sb = page_address(page);
        int ret;
 
-       bio_init(&bio, dev->bdev, &bvec, 1, REQ_OP_READ);
-       bio.bi_iter.bi_sector = physical >> SECTOR_SHIFT;
-       __bio_add_page(&bio, page, BTRFS_SUPER_INFO_SIZE, 0);
-       ret = submit_bio_wait(&bio);
-       bio_uninit(&bio);
-
+       ret = bdev_rw_virt(dev->bdev, physical >> SECTOR_SHIFT, sb,
+                       BTRFS_SUPER_INFO_SIZE, REQ_OP_READ);
        if (ret < 0)
                return ret;
        ret = btrfs_check_super_csum(fs_info, sb);