Commit 179d1e6a authored by David Sterba's avatar David Sterba

btrfs: remove unused parameter fs_info from from tree_advance

Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent c7da9597
...@@ -5269,8 +5269,7 @@ static int tree_move_next_or_upnext(struct btrfs_path *path, ...@@ -5269,8 +5269,7 @@ static int tree_move_next_or_upnext(struct btrfs_path *path,
* Returns 1 if it had to move up and next. 0 is returned if it moved only next * Returns 1 if it had to move up and next. 0 is returned if it moved only next
* or down. * or down.
*/ */
static int tree_advance(struct btrfs_fs_info *fs_info, static int tree_advance(struct btrfs_path *path,
struct btrfs_path *path,
int *level, int root_level, int *level, int root_level,
int allow_down, int allow_down,
struct btrfs_key *key) struct btrfs_key *key)
...@@ -5457,7 +5456,7 @@ int btrfs_compare_trees(struct btrfs_root *left_root, ...@@ -5457,7 +5456,7 @@ int btrfs_compare_trees(struct btrfs_root *left_root,
while (1) { while (1) {
if (advance_left && !left_end_reached) { if (advance_left && !left_end_reached) {
ret = tree_advance(fs_info, left_path, &left_level, ret = tree_advance(left_path, &left_level,
left_root_level, left_root_level,
advance_left != ADVANCE_ONLY_NEXT, advance_left != ADVANCE_ONLY_NEXT,
&left_key); &left_key);
...@@ -5468,7 +5467,7 @@ int btrfs_compare_trees(struct btrfs_root *left_root, ...@@ -5468,7 +5467,7 @@ int btrfs_compare_trees(struct btrfs_root *left_root,
advance_left = 0; advance_left = 0;
} }
if (advance_right && !right_end_reached) { if (advance_right && !right_end_reached) {
ret = tree_advance(fs_info, right_path, &right_level, ret = tree_advance(right_path, &right_level,
right_root_level, right_root_level,
advance_right != ADVANCE_ONLY_NEXT, advance_right != ADVANCE_ONLY_NEXT,
&right_key); &right_key);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment