mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-28 17:12:17 +00:00
btrfs-progs: check: pass fs_info to check_chunks_and_extents
The root pointer is set to fs_root as was originally. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
04f480bc01
commit
7349edaf28
@ -9830,7 +9830,7 @@ static int deal_root_from_list(struct list_head *list,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int check_chunks_and_extents(struct btrfs_root *root)
|
||||
static int check_chunks_and_extents(struct btrfs_fs_info *fs_info)
|
||||
{
|
||||
struct rb_root dev_cache;
|
||||
struct cache_tree chunk_cache;
|
||||
@ -9855,9 +9855,11 @@ static int check_chunks_and_extents(struct btrfs_root *root)
|
||||
struct list_head dropping_trees;
|
||||
struct list_head normal_trees;
|
||||
struct btrfs_root *root1;
|
||||
struct btrfs_root *root;
|
||||
u64 objectid;
|
||||
u8 level;
|
||||
|
||||
root = fs_info->fs_root;
|
||||
dev_cache = RB_ROOT;
|
||||
cache_tree_init(&chunk_cache);
|
||||
block_group_tree_init(&block_group_cache);
|
||||
@ -13027,7 +13029,7 @@ int cmd_check(int argc, char **argv)
|
||||
if (check_mode == CHECK_MODE_LOWMEM)
|
||||
ret = check_chunks_and_extents_v2(root);
|
||||
else
|
||||
ret = check_chunks_and_extents(root);
|
||||
ret = check_chunks_and_extents(info);
|
||||
err |= !!ret;
|
||||
if (ret)
|
||||
error(
|
||||
|
Loading…
Reference in New Issue
Block a user