Skip to content

Commit

Permalink
btrfs: tree-checker: get fs_info from eb in check_dev_item
Browse files Browse the repository at this point in the history
We can read fs_info from extent buffer and can drop it from the
parameters.

Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
David Sterba committed Apr 29, 2019
1 parent 5617ed8 commit 412a231
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/btrfs/tree-checker.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,10 +629,10 @@ static void dev_item_err(const struct extent_buffer *eb, int slot,
va_end(args);
}

static int check_dev_item(struct btrfs_fs_info *fs_info,
struct extent_buffer *leaf,
static int check_dev_item(struct extent_buffer *leaf,
struct btrfs_key *key, int slot)
{
struct btrfs_fs_info *fs_info = leaf->fs_info;
struct btrfs_dev_item *ditem;
u64 max_devid = max(BTRFS_MAX_DEVS(fs_info), BTRFS_MAX_DEVS_SYS_CHUNK);

Expand Down Expand Up @@ -797,7 +797,7 @@ static int check_leaf_item(struct extent_buffer *leaf,
key->offset);
break;
case BTRFS_DEV_ITEM_KEY:
ret = check_dev_item(leaf->fs_info, leaf, key, slot);
ret = check_dev_item(leaf, key, slot);
break;
case BTRFS_INODE_ITEM_KEY:
ret = check_inode_item(leaf->fs_info, leaf, key, slot);
Expand Down

0 comments on commit 412a231

Please sign in to comment.