aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/relocation.c
diff options
context:
space:
mode:
authorStefan Behrens <sbehrens@giantdisaster.de>2013-08-23 10:34:43 +0200
committerChris Mason <chris.mason@fusionio.com>2013-09-01 08:16:29 -0400
commit23fa76b0ba78b7d84708d9ee683587d8a5bbceef (patch)
tree10f09a05563e978d57228943f83fd1cf1c21d388 /fs/btrfs/relocation.c
parentBtrfs: fix for patch "cleanup: don't check the same thing twice" (diff)
downloadlinux-dev-23fa76b0ba78b7d84708d9ee683587d8a5bbceef.tar.xz
linux-dev-23fa76b0ba78b7d84708d9ee683587d8a5bbceef.zip
Btrf: cleanup: don't check for root_refs == 0 twice
btrfs_read_fs_root_no_name() already checks if btrfs_root_refs() is zero and returns ENOENT in this case. There is no need to do it again in three more places. Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r--fs/btrfs/relocation.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
index cf5e30ff7093..aacc2121e87c 100644
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -2354,9 +2354,6 @@ again:
if (IS_ERR(root))
continue;
- if (btrfs_root_refs(&root->root_item) == 0)
- continue;
-
trans = btrfs_join_transaction(root);
BUG_ON(IS_ERR(trans));