diff options
author | 2024-08-27 03:40:11 +0200 | |
---|---|---|
committer | 2024-09-10 16:51:19 +0200 | |
commit | 792e86ef31b91c98c529f8c4fb6aa14886584193 (patch) | |
tree | 7c55d401ea6b120866861830b03048f09e1056a7 /fs/btrfs/direct-io.c | |
parent | btrfs: subpage: remove btrfs_fs_info::subpage_info member (diff) | |
download | linux-rng-792e86ef31b91c98c529f8c4fb6aa14886584193.tar.xz linux-rng-792e86ef31b91c98c529f8c4fb6aa14886584193.zip |
btrfs: rename btrfs_submit_bio() to btrfs_submit_bbio()
The function name is a bit misleading as it submits the btrfs_bio
(bbio), rename it so we can use btrfs_submit_bio() when an actual bio is
submitted.
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/direct-io.c')
-rw-r--r-- | fs/btrfs/direct-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/direct-io.c b/fs/btrfs/direct-io.c index 364bce34f034..ea7f918b1c45 100644 --- a/fs/btrfs/direct-io.c +++ b/fs/btrfs/direct-io.c @@ -726,7 +726,7 @@ static void btrfs_dio_submit_io(const struct iomap_iter *iter, struct bio *bio, } } - btrfs_submit_bio(bbio, 0); + btrfs_submit_bbio(bbio, 0); } static const struct iomap_ops btrfs_dio_iomap_ops = { |