diff options
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r-- | fs/btrfs/tree-log.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index c91babc6aa4b..c6bfa86e2f22 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -3520,8 +3520,11 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
3520 | * from this directory and from this transaction | 3520 | * from this directory and from this transaction |
3521 | */ | 3521 | */ |
3522 | ret = btrfs_next_leaf(root, path); | 3522 | ret = btrfs_next_leaf(root, path); |
3523 | if (ret == 1) { | 3523 | if (ret) { |
3524 | last_offset = (u64)-1; | 3524 | if (ret == 1) |
3525 | last_offset = (u64)-1; | ||
3526 | else | ||
3527 | err = ret; | ||
3525 | goto done; | 3528 | goto done; |
3526 | } | 3529 | } |
3527 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); | 3530 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |