* [PATCH 1/2] btrfs: Cleanup some redundant codes in btrfs_lookup_csums_range()
@ 2013-03-18 9:18 zwu.kernel
2013-03-18 9:18 ` [PATCH 2/2] btrfs: Cleanup some redundant codes in btrfs_log_inode() zwu.kernel
0 siblings, 1 reply; 2+ messages in thread
From: zwu.kernel @ 2013-03-18 9:18 UTC (permalink / raw)
To: linux-btrfs; +Cc: linux-kernel, Zhi Yong Wu
From: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
---
fs/btrfs/file-item.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/fs/btrfs/file-item.c b/fs/btrfs/file-item.c
index ec16020..1ba85b4 100644
--- a/fs/btrfs/file-item.c
+++ b/fs/btrfs/file-item.c
@@ -356,11 +356,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)
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-18 9:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-18 9:18 [PATCH 1/2] btrfs: Cleanup some redundant codes in btrfs_lookup_csums_range() zwu.kernel
2013-03-18 9:18 ` [PATCH 2/2] btrfs: Cleanup some redundant codes in btrfs_log_inode() zwu.kernel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox