Skip to content

Commit

Permalink
btrfs: remove unused parameter from read_block_for_search
Browse files Browse the repository at this point in the history
Never used in that function.

Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
David Sterba committed Feb 17, 2017
1 parent 6655bc3 commit cda79c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/btrfs/ctree.c
Original file line number Diff line number Diff line change
Expand Up @@ -2440,7 +2440,7 @@ noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
static int
read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
struct extent_buffer **eb_ret, int level, int slot,
const struct btrfs_key *key, u64 time_seq)
const struct btrfs_key *key)
{
struct btrfs_fs_info *fs_info = root->fs_info;
u64 blocknr;
Expand Down Expand Up @@ -2871,7 +2871,7 @@ int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
}

err = read_block_for_search(root, p, &b, level,
slot, key, 0);
slot, key);
if (err == -EAGAIN)
goto again;
if (err) {
Expand Down Expand Up @@ -3015,7 +3015,7 @@ int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
}

err = read_block_for_search(root, p, &b, level,
slot, key, time_seq);
slot, key);
if (err == -EAGAIN)
goto again;
if (err) {
Expand Down Expand Up @@ -5786,7 +5786,7 @@ int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
next = c;
next_rw_lock = path->locks[level];
ret = read_block_for_search(root, path, &next, level,
slot, &key, 0);
slot, &key);
if (ret == -EAGAIN)
goto again;

Expand Down Expand Up @@ -5836,7 +5836,7 @@ int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
break;

ret = read_block_for_search(root, path, &next, level,
0, &key, 0);
0, &key);
if (ret == -EAGAIN)
goto again;

Expand Down

0 comments on commit cda79c5

Please sign in to comment.