mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-11 03:31:17 +00:00
btrfs-progs: Refactor btrfs_num_copies to use btrfs_fs_info
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3e611c6983
commit
a30579b1a7
@ -88,8 +88,8 @@ static int debug_corrupt_block(struct extent_buffer *eb,
|
||||
fsync(eb->fd);
|
||||
}
|
||||
|
||||
num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
|
||||
eb->start, eb->len);
|
||||
num_copies = btrfs_num_copies(root->fs_info, eb->start,
|
||||
eb->len);
|
||||
if (num_copies == 1)
|
||||
break;
|
||||
|
||||
|
@ -149,7 +149,7 @@ static int print_mapping_info(struct btrfs_fs_info *fs_info, u64 logical,
|
||||
int mirror_num;
|
||||
int ret = 0;
|
||||
|
||||
num_copies = btrfs_num_copies(&fs_info->mapping_tree, logical, len);
|
||||
num_copies = btrfs_num_copies(fs_info, logical, len);
|
||||
for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
|
||||
ret = __print_mapping_info(fs_info, logical, len, mirror_num);
|
||||
if (ret < 0)
|
||||
|
@ -7214,8 +7214,7 @@ again:
|
||||
fprintf(stderr, "mirror %d bytenr %llu csum %u expected csum %u\n",
|
||||
mirror, bytenr + tmp,
|
||||
csum, csum_expected);
|
||||
num_copies = btrfs_num_copies(
|
||||
&root->fs_info->mapping_tree,
|
||||
num_copies = btrfs_num_copies(root->fs_info,
|
||||
bytenr, num_bytes);
|
||||
if (mirror < num_copies - 1) {
|
||||
mirror += 1;
|
||||
|
@ -366,8 +366,7 @@ again:
|
||||
done = pread(dev_fd, inbuf+count, length, dev_bytenr);
|
||||
/* Need both checks, or we miss negative values due to u64 conversion */
|
||||
if (done < 0 || done < length) {
|
||||
num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
|
||||
bytenr, length);
|
||||
num_copies = btrfs_num_copies(root->fs_info, bytenr, length);
|
||||
mirror_num++;
|
||||
/* mirror_num is 1-indexed, so num_copies is a valid mirror. */
|
||||
if (mirror_num > num_copies) {
|
||||
@ -404,8 +403,7 @@ again:
|
||||
|
||||
ret = decompress(root, inbuf, outbuf, disk_size, &ram_size, compress);
|
||||
if (ret) {
|
||||
num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
|
||||
bytenr, length);
|
||||
num_copies = btrfs_num_copies(root->fs_info, bytenr, length);
|
||||
mirror_num++;
|
||||
if (mirror_num >= num_copies) {
|
||||
ret = -1;
|
||||
|
@ -370,8 +370,7 @@ struct extent_buffer* read_tree_block(
|
||||
ret = -EIO;
|
||||
break;
|
||||
}
|
||||
num_copies = btrfs_num_copies(&fs_info->mapping_tree,
|
||||
eb->start, eb->len);
|
||||
num_copies = btrfs_num_copies(fs_info, eb->start, eb->len);
|
||||
if (num_copies == 1) {
|
||||
ignore = 1;
|
||||
continue;
|
||||
|
@ -884,8 +884,7 @@ static int read_data_extent(struct metadump_struct *md,
|
||||
int cur_mirror;
|
||||
int ret;
|
||||
|
||||
num_copies = btrfs_num_copies(&root->fs_info->mapping_tree, logical,
|
||||
bytes_left);
|
||||
num_copies = btrfs_num_copies(root->fs_info, logical, bytes_left);
|
||||
|
||||
/* Try our best to read data, just like read_tree_block() */
|
||||
for (cur_mirror = 0; cur_mirror < num_copies; cur_mirror++) {
|
||||
|
@ -1215,8 +1215,9 @@ int btrfs_alloc_data_chunk(struct btrfs_trans_handle *trans,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
|
||||
int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
|
||||
{
|
||||
struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
|
||||
struct cache_extent *ce;
|
||||
struct map_lookup *map;
|
||||
int ret;
|
||||
|
@ -228,7 +228,7 @@ int btrfs_update_device(struct btrfs_trans_handle *trans,
|
||||
int btrfs_scan_one_device(int fd, const char *path,
|
||||
struct btrfs_fs_devices **fs_devices_ret,
|
||||
u64 *total_devs, u64 super_offset, unsigned sbflags);
|
||||
int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len);
|
||||
int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len);
|
||||
struct list_head *btrfs_scanned_uuids(void);
|
||||
int btrfs_add_system_chunk(struct btrfs_root *root, struct btrfs_key *key,
|
||||
struct btrfs_chunk *chunk, int item_size);
|
||||
|
Loading…
Reference in New Issue
Block a user