Commit de143792 authored by Jeff Mahoney's avatar Jeff Mahoney Committed by David Sterba

btrfs: struct btrfsic_state->root should be an fs_info

The root member is never used except for obtaining an fs_info pointer.
Signed-off-by: default avatarJeff Mahoney <jeffm@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 2b2e27eb
...@@ -254,7 +254,7 @@ struct btrfsic_state { ...@@ -254,7 +254,7 @@ struct btrfsic_state {
struct list_head all_blocks_list; struct list_head all_blocks_list;
struct btrfsic_block_hashtable block_hashtable; struct btrfsic_block_hashtable block_hashtable;
struct btrfsic_block_link_hashtable block_link_hashtable; struct btrfsic_block_link_hashtable block_link_hashtable;
struct btrfs_root *root; struct btrfs_fs_info *fs_info;
u64 max_superblock_generation; u64 max_superblock_generation;
struct btrfsic_block *latest_superblock; struct btrfsic_block *latest_superblock;
u32 metablock_size; u32 metablock_size;
...@@ -717,7 +717,7 @@ static int btrfsic_process_superblock(struct btrfsic_state *state, ...@@ -717,7 +717,7 @@ static int btrfsic_process_superblock(struct btrfsic_state *state,
} }
num_copies = num_copies =
btrfs_num_copies(state->root->fs_info, btrfs_num_copies(state->fs_info,
next_bytenr, state->metablock_size); next_bytenr, state->metablock_size);
if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES) if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
pr_info("num_copies(log_bytenr=%llu) = %d\n", pr_info("num_copies(log_bytenr=%llu) = %d\n",
...@@ -888,7 +888,7 @@ static int btrfsic_process_superblock_dev_mirror( ...@@ -888,7 +888,7 @@ static int btrfsic_process_superblock_dev_mirror(
} }
num_copies = num_copies =
btrfs_num_copies(state->root->fs_info, btrfs_num_copies(state->fs_info,
next_bytenr, state->metablock_size); next_bytenr, state->metablock_size);
if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES) if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
pr_info("num_copies(log_bytenr=%llu) = %d\n", pr_info("num_copies(log_bytenr=%llu) = %d\n",
...@@ -1263,7 +1263,7 @@ static int btrfsic_create_link_to_next_block( ...@@ -1263,7 +1263,7 @@ static int btrfsic_create_link_to_next_block(
*next_blockp = NULL; *next_blockp = NULL;
if (0 == *num_copiesp) { if (0 == *num_copiesp) {
*num_copiesp = *num_copiesp =
btrfs_num_copies(state->root->fs_info, btrfs_num_copies(state->fs_info,
next_bytenr, state->metablock_size); next_bytenr, state->metablock_size);
if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES) if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
pr_info("num_copies(log_bytenr=%llu) = %d\n", pr_info("num_copies(log_bytenr=%llu) = %d\n",
...@@ -1457,7 +1457,7 @@ static int btrfsic_handle_extent_data( ...@@ -1457,7 +1457,7 @@ static int btrfsic_handle_extent_data(
chunk_len = num_bytes; chunk_len = num_bytes;
num_copies = num_copies =
btrfs_num_copies(state->root->fs_info, btrfs_num_copies(state->fs_info,
next_bytenr, state->datablock_size); next_bytenr, state->datablock_size);
if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES) if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
pr_info("num_copies(log_bytenr=%llu) = %d\n", pr_info("num_copies(log_bytenr=%llu) = %d\n",
...@@ -1539,7 +1539,7 @@ static int btrfsic_map_block(struct btrfsic_state *state, u64 bytenr, u32 len, ...@@ -1539,7 +1539,7 @@ static int btrfsic_map_block(struct btrfsic_state *state, u64 bytenr, u32 len,
struct btrfs_device *device; struct btrfs_device *device;
length = len; length = len;
ret = btrfs_map_block(state->root->fs_info, BTRFS_MAP_READ, ret = btrfs_map_block(state->fs_info, BTRFS_MAP_READ,
bytenr, &length, &multi, mirror_num); bytenr, &length, &multi, mirror_num);
if (ret) { if (ret) {
...@@ -1741,7 +1741,7 @@ static int btrfsic_test_for_metadata(struct btrfsic_state *state, ...@@ -1741,7 +1741,7 @@ static int btrfsic_test_for_metadata(struct btrfsic_state *state,
num_pages = state->metablock_size >> PAGE_SHIFT; num_pages = state->metablock_size >> PAGE_SHIFT;
h = (struct btrfs_header *)datav[0]; h = (struct btrfs_header *)datav[0];
if (memcmp(h->fsid, state->root->fs_info->fsid, BTRFS_UUID_SIZE)) if (memcmp(h->fsid, state->fs_info->fsid, BTRFS_UUID_SIZE))
return 1; return 1;
for (i = 0; i < num_pages; i++) { for (i = 0; i < num_pages; i++) {
...@@ -2276,7 +2276,7 @@ static int btrfsic_process_written_superblock( ...@@ -2276,7 +2276,7 @@ static int btrfsic_process_written_superblock(
} }
num_copies = num_copies =
btrfs_num_copies(state->root->fs_info, btrfs_num_copies(state->fs_info,
next_bytenr, BTRFS_SUPER_INFO_SIZE); next_bytenr, BTRFS_SUPER_INFO_SIZE);
if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES) if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
pr_info("num_copies(log_bytenr=%llu) = %d\n", pr_info("num_copies(log_bytenr=%llu) = %d\n",
...@@ -2705,7 +2705,7 @@ static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state *state, ...@@ -2705,7 +2705,7 @@ static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state *state,
struct btrfsic_block_data_ctx block_ctx; struct btrfsic_block_data_ctx block_ctx;
int match = 0; int match = 0;
num_copies = btrfs_num_copies(state->root->fs_info, num_copies = btrfs_num_copies(state->fs_info,
bytenr, state->metablock_size); bytenr, state->metablock_size);
for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) { for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
...@@ -2936,7 +2936,7 @@ int btrfsic_mount(struct btrfs_root *root, ...@@ -2936,7 +2936,7 @@ int btrfsic_mount(struct btrfs_root *root,
btrfsic_is_initialized = 1; btrfsic_is_initialized = 1;
} }
mutex_lock(&btrfsic_mutex); mutex_lock(&btrfsic_mutex);
state->root = root; state->fs_info = root->fs_info;
state->print_mask = print_mask; state->print_mask = print_mask;
state->include_extent_data = including_extent_data; state->include_extent_data = including_extent_data;
state->csum_size = 0; state->csum_size = 0;
......
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