aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/ctree.c
diff options
context:
space:
mode:
authorGravatar Filipe Manana <fdmanana@suse.com> 2022-03-11 11:35:34 +0000
committerGravatar David Sterba <dsterba@suse.com> 2022-05-16 17:03:07 +0200
commit6a2e9dc46f15dc8e0eb8c8986a49c36f4b2d23a4 (patch)
tree04d5fe0a8df6081bdc2cd16febe61dc5a000a2b8 /fs/btrfs/ctree.c
parentbtrfs: update outdated comment for read_block_for_search() (diff)
downloadlinux-6a2e9dc46f15dc8e0eb8c8986a49c36f4b2d23a4.tar.gz
linux-6a2e9dc46f15dc8e0eb8c8986a49c36f4b2d23a4.tar.bz2
linux-6a2e9dc46f15dc8e0eb8c8986a49c36f4b2d23a4.zip
btrfs: remove trivial wrapper btrfs_read_buffer()
The function btrfs_read_buffer() is useless, it just calls btree_read_extent_buffer_pages() with exactly the same arguments. So remove it and rename btree_read_extent_buffer_pages() to btrfs_read_extent_buffer(), which is a shorter name, has the "btrfs_" prefix (since it's used outside disk-io.c) and the name is clear enough about what it does. Reviewed-by: Josef Bacik <josef@toxicpanda.com> Signed-off-by: Filipe Manana <fdmanana@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.c')
-rw-r--r--fs/btrfs/ctree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 13d4833afcd3..a795e89de3f1 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -1450,7 +1450,7 @@ read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
btrfs_unlock_up_safe(p, level + 1);
/* now we're allowed to do a blocking uptodate check */
- ret = btrfs_read_buffer(tmp, gen, parent_level - 1, &first_key);
+ ret = btrfs_read_extent_buffer(tmp, gen, parent_level - 1, &first_key);
if (ret) {
free_extent_buffer(tmp);
btrfs_release_path(p);