summaryrefslogtreecommitdiff
path: root/fs/btrfs/extent_io.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2023-03-07 19:39:40 +0300
committerDavid Sterba <dsterba@suse.com>2023-04-17 19:01:17 +0300
commit690834e47cf7868a4c13e32ea2332d9fe6590073 (patch)
tree144cdac26b79d0d143b159ce8d9a791fd0d08d6e /fs/btrfs/extent_io.c
parentae42a154ca8972739be29f811a69bef6c4818a26 (diff)
downloadlinux-690834e47cf7868a4c13e32ea2332d9fe6590073.tar.xz
btrfs: pass a btrfs_bio to btrfs_submit_compressed_read
btrfs_submit_compressed_read expects the bio passed to it to be embedded into a btrfs_bio structure. Pass the btrfs_bio directly to increase type safety and make the code self-documenting. Reviewed-by: Anand Jain <anand.jain@oracle.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Reviewed-by: Qu Wenruo <wqu@suse.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.c')
-rw-r--r--fs/btrfs/extent_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 2e594252af01..2b9e24782b36 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -155,7 +155,7 @@ static void submit_one_bio(struct btrfs_bio_ctrl *bio_ctrl)
if (btrfs_op(bio) == BTRFS_MAP_READ &&
bio_ctrl->compress_type != BTRFS_COMPRESS_NONE)
- btrfs_submit_compressed_read(bio, mirror_num);
+ btrfs_submit_compressed_read(btrfs_bio(bio), mirror_num);
else
btrfs_submit_bio(btrfs_bio(bio), mirror_num);