btrfs-progs: cleanup duplicate assignment of variable leaf for btrfs-image

The value of variable leaf in while loop don't have to be set
for every round. Just move it outside.

Signed-off-by: Gui Hecheng <guihc.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
Gui Hecheng 2014-06-19 09:46:00 +08:00 committed by David Sterba
parent c24c92f4ae
commit 16668ba6da

View File

@ -1090,8 +1090,9 @@ static int copy_space_cache(struct btrfs_root *root,
return ret;
}
leaf = path->nodes[0];
while (1) {
leaf = path->nodes[0];
if (path->slots[0] >= btrfs_header_nritems(leaf)) {
ret = btrfs_next_leaf(root, path);
if (ret < 0) {
@ -1157,8 +1158,9 @@ static int copy_from_extent_tree(struct metadump_struct *metadump,
}
ret = 0;
leaf = path->nodes[0];
while (1) {
leaf = path->nodes[0];
if (path->slots[0] >= btrfs_header_nritems(leaf)) {
ret = btrfs_next_leaf(extent_root, path);
if (ret < 0) {