mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
btrfs: Cleanup some redundant codes in btrfs_lookup_csums_range()
Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
This commit is contained in:
parent
7abadb6431
commit
628c8282be
@ -358,11 +358,8 @@ int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
|
||||
|
||||
btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
|
||||
if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
|
||||
key.type != BTRFS_EXTENT_CSUM_KEY)
|
||||
break;
|
||||
|
||||
btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
|
||||
if (key.offset > end)
|
||||
key.type != BTRFS_EXTENT_CSUM_KEY ||
|
||||
key.offset > end)
|
||||
break;
|
||||
|
||||
if (key.offset > start)
|
||||
|
Loading…
Reference in New Issue
Block a user