diff options
author | Christoph Hellwig <hch@lst.de> | 2022-04-04 06:45:18 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-05-16 17:03:12 +0200 |
commit | 58ff51f148ec498758d66c226cb2f7a065b36478 (patch) | |
tree | f6f5fca79c1b748fcc93d38a5ff1a80400e57a12 /fs/btrfs/volumes.c | |
parent | btrfs: factor check and flush helpers from __btrfsic_submit_bio (diff) | |
download | linux-58ff51f148ec498758d66c226cb2f7a065b36478.tar.xz linux-58ff51f148ec498758d66c226cb2f7a065b36478.zip |
btrfs: check-integrity: split submit_bio from btrfsic checking
Require a separate call to the integrity checking helpers from the
actual bio submission.
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/btrfs/volumes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 8a3f1bd77b71..c000e39e3090 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -6742,7 +6742,8 @@ static void submit_stripe_bio(struct btrfs_io_context *bioc, struct bio *bio, btrfs_bio_counter_inc_noblocked(fs_info); - btrfsic_submit_bio(bio); + btrfsic_check_bio(bio); + submit_bio(bio); } static void bioc_error(struct btrfs_io_context *bioc, struct bio *bio, u64 logical) |