Commit 918fb770 authored by David Sterba's avatar David Sterba
Browse files

btrfs: use btrfs_is_data_reloc_root() where not done yet



Two remaining cases where we can use the helper.

Reviewed-by: default avatarJohannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent c6aeae86
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
+1 −1
Original line number Diff line number Diff line
@@ -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);