summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/tree-log.c
diff options
context:
space:
mode:
authorQu Wenruo <wqu@suse.com>2020-04-17 15:08:21 +0800
committerDavid Sterba <dsterba@suse.com>2020-05-25 11:25:24 +0200
commite3b8336117e515a260da32fa10bb3354ba12c429 (patch)
tree65874d1b55f5a0812e9d4d41b5312f8bcfb55ef4 /fs/btrfs/tree-log.c
parentb335eab890ed4c5b8e45e4b3d12f303686298850 (diff)
downloadlinux-stable-e3b8336117e515a260da32fa10bb3354ba12c429.tar.gz
linux-stable-e3b8336117e515a260da32fa10bb3354ba12c429.tar.bz2
linux-stable-e3b8336117e515a260da32fa10bb3354ba12c429.zip
btrfs: remove the redundant parameter level in btrfs_bin_search()
All callers pass the eb::level so we can get read it directly inside the btrfs_bin_search and key_search. This is inspired by the work of Marek in U-boot. CC: Marek Behun <marek.behun@nic.cz> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Reviewed-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: Qu Wenruo <wqu@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r--fs/btrfs/tree-log.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
index 02ebdd9edc19..0254e8d10e4a 100644
--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -3816,8 +3816,7 @@ static int drop_objectid_items(struct btrfs_trans_handle *trans,
found_key.offset = 0;
found_key.type = 0;
- ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
- &start_slot);
+ ret = btrfs_bin_search(path->nodes[0], &found_key, &start_slot);
if (ret < 0)
break;