mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
btrfs: use btrfs_is_data_reloc_root() where not done yet
Two remaining cases where we can use the helper. Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
c6aeae86b9
commit
918fb77073
|
|
@ -427,7 +427,7 @@ int btrfs_lookup_bio_sums(struct btrfs_bio *bbio)
|
|||
memset(csum_dst, 0, csum_size);
|
||||
count = 1;
|
||||
|
||||
if (btrfs_root_id(inode->root) == BTRFS_DATA_RELOC_TREE_OBJECTID) {
|
||||
if (btrfs_is_data_reloc_root(inode->root)) {
|
||||
u64 file_offset = bbio->file_offset + bio_offset;
|
||||
|
||||
btrfs_set_extent_bit(&inode->io_tree, file_offset,
|
||||
|
|
|
|||
|
|
@ -308,7 +308,7 @@ static void __cold btrfs_print_data_csum_error(struct btrfs_inode *inode,
|
|||
const u32 csum_size = root->fs_info->csum_size;
|
||||
|
||||
/* For data reloc tree, it's better to do a backref lookup instead. */
|
||||
if (btrfs_root_id(root) == BTRFS_DATA_RELOC_TREE_OBJECTID)
|
||||
if (btrfs_is_data_reloc_root(root))
|
||||
return print_data_reloc_error(inode, logical_start, csum,
|
||||
csum_expected, mirror_num);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user