mirror of
https://github.com/kdave/btrfs-progs
synced 2025-05-16 23:08:38 +00:00
btrfs-progs: check: pass fs_info to check_fs_roots
The root pointer is not used anyway, will be cleaned up next. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3ca3f20071
commit
12fe1a57f6
@ -4050,13 +4050,14 @@ static int fs_root_objectid(u64 objectid)
|
||||
return is_fstree(objectid);
|
||||
}
|
||||
|
||||
static int check_fs_roots(struct btrfs_root *root,
|
||||
static int check_fs_roots(struct btrfs_fs_info *fs_info,
|
||||
struct cache_tree *root_cache)
|
||||
{
|
||||
struct btrfs_path path;
|
||||
struct btrfs_key key;
|
||||
struct walk_control wc;
|
||||
struct extent_buffer *leaf, *tree_node;
|
||||
struct btrfs_root *root = fs_info->fs_root;
|
||||
struct btrfs_root *tmp_root;
|
||||
struct btrfs_root *tree_root = root->fs_info->tree_root;
|
||||
int ret;
|
||||
@ -13094,7 +13095,7 @@ int cmd_check(int argc, char **argv)
|
||||
if (check_mode == CHECK_MODE_LOWMEM)
|
||||
ret = check_fs_roots_v2(root->fs_info);
|
||||
else
|
||||
ret = check_fs_roots(root, &root_cache);
|
||||
ret = check_fs_roots(info, &root_cache);
|
||||
err |= !!ret;
|
||||
if (ret) {
|
||||
error("errors found in fs roots");
|
||||
|
Loading…
Reference in New Issue
Block a user