summaryrefslogtreecommitdiff
path: root/fs/btrfs/bio.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2023-05-31 07:17:37 +0300
committerDavid Sterba <dsterba@suse.com>2023-06-19 14:59:34 +0300
commitcd4efd210edfb34f8cec3a0184899af751dc2d71 (patch)
treea03c951e4d386707566a08e15c5f7fdc9d53937e /fs/btrfs/bio.c
parentd69d7ffc26f10d7be3768a6762809c57f6443a43 (diff)
downloadlinux-cd4efd210edfb34f8cec3a0184899af751dc2d71.tar.xz
btrfs: rename __btrfs_map_block to btrfs_map_block
Now that the old btrfs_map_block is gone, drop the leading underscores from __btrfs_map_block. Reviewed-by: Qu Wenruo <wqu@suse.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.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 'fs/btrfs/bio.c')
-rw-r--r--fs/btrfs/bio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/bio.c b/fs/btrfs/bio.c
index 1b4d8d60c66f..ead288fa24db 100644
--- a/fs/btrfs/bio.c
+++ b/fs/btrfs/bio.c
@@ -623,8 +623,8 @@ static bool btrfs_submit_chunk(struct btrfs_bio *bbio, int mirror_num)
int error;
btrfs_bio_counter_inc_blocked(fs_info);
- error = __btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
- &bioc, &smap, &mirror_num, 1);
+ error = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
+ &bioc, &smap, &mirror_num, 1);
if (error) {
ret = errno_to_blk_status(error);
goto fail;