Commit 15b34517 authored by David Sterba's avatar David Sterba

btrfs: remove unused parameter from adjust_slots_upwards

Never used.
Reviewed-by: default avatarLiu Bo <bo.li.liu@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 0e8d931a
...@@ -1589,8 +1589,7 @@ int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans, ...@@ -1589,8 +1589,7 @@ int btrfs_qgroup_trace_leaf_items(struct btrfs_trans_handle *trans,
* If we increment the root nodes slot counter past the number of * If we increment the root nodes slot counter past the number of
* elements, 1 is returned to signal completion of the search. * elements, 1 is returned to signal completion of the search.
*/ */
static int adjust_slots_upwards(struct btrfs_root *root, static int adjust_slots_upwards(struct btrfs_path *path, int root_level)
struct btrfs_path *path, int root_level)
{ {
int level = 0; int level = 0;
int nr, slot; int nr, slot;
...@@ -1731,7 +1730,7 @@ int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans, ...@@ -1731,7 +1730,7 @@ int btrfs_qgroup_trace_subtree(struct btrfs_trans_handle *trans,
goto out; goto out;
/* Nonzero return here means we completed our search */ /* Nonzero return here means we completed our search */
ret = adjust_slots_upwards(root, path, root_level); ret = adjust_slots_upwards(path, root_level);
if (ret) if (ret)
break; break;
......
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