Commit dc4103f9 authored by Wang Shilong's avatar Wang Shilong Committed by Chris Mason

Btrfs: remove unused argument from select_reloc_root()

@nr is no longer used, remove it from select_reloc_root()
Signed-off-by: default avatarWang Shilong <wangsl.fnst@cn.fujitsu.com>
Signed-off-by: default avatarJosef Bacik <jbacik@fb.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent eb653de1
...@@ -2454,7 +2454,7 @@ static noinline_for_stack ...@@ -2454,7 +2454,7 @@ static noinline_for_stack
struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans, struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
struct reloc_control *rc, struct reloc_control *rc,
struct backref_node *node, struct backref_node *node,
struct backref_edge *edges[], int *nr) struct backref_edge *edges[])
{ {
struct backref_node *next; struct backref_node *next;
struct btrfs_root *root; struct btrfs_root *root;
...@@ -2496,7 +2496,6 @@ struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans, ...@@ -2496,7 +2496,6 @@ struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
if (!root) if (!root)
return NULL; return NULL;
*nr = index;
next = node; next = node;
/* setup backref node path for btrfs_reloc_cow_block */ /* setup backref node path for btrfs_reloc_cow_block */
while (1) { while (1) {
...@@ -2643,7 +2642,6 @@ static int do_relocation(struct btrfs_trans_handle *trans, ...@@ -2643,7 +2642,6 @@ static int do_relocation(struct btrfs_trans_handle *trans,
u32 blocksize; u32 blocksize;
u64 bytenr; u64 bytenr;
u64 generation; u64 generation;
int nr;
int slot; int slot;
int ret; int ret;
int err = 0; int err = 0;
...@@ -2656,7 +2654,7 @@ static int do_relocation(struct btrfs_trans_handle *trans, ...@@ -2656,7 +2654,7 @@ static int do_relocation(struct btrfs_trans_handle *trans,
cond_resched(); cond_resched();
upper = edge->node[UPPER]; upper = edge->node[UPPER];
root = select_reloc_root(trans, rc, upper, edges, &nr); root = select_reloc_root(trans, rc, upper, edges);
BUG_ON(!root); BUG_ON(!root);
if (upper->eb && !upper->locked) { if (upper->eb && !upper->locked) {
......
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