Simplify code to make it more readable

Signed-off-by: Timofey Titovets <nefelim...@gmail.com>
---
 fs/btrfs/backref.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c
index 0005b8851..2081a8de7 100644
--- a/fs/btrfs/backref.c
+++ b/fs/btrfs/backref.c
@@ -588,10 +588,10 @@ static int add_all_parents(struct btrfs_root *root, 
struct btrfs_path *path,
                        ret = btrfs_next_old_item(root, path, time_seq);
        }

-       if (ret > 0)
-               ret = 0;
-       else if (ret < 0)
+       if (ret < 0)
                free_inode_elem_list(eie);
+       else
+               ret = 0;
        return ret;
 }

--
2.13.1
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to