summaryrefslogtreecommitdiff
path: root/root-tree.c
diff options
context:
space:
mode:
authorWang Sheng-Hui <shhuiw@gmail.com>2012-08-16 22:25:20 +0800
committerDavid Sterba <dsterba@suse.cz>2013-02-07 01:19:50 +0100
commit50e3ff573c65b563252d390d21b10b16d406f189 (patch)
treedc2c4e78c2a8500c38d29830295e026317287ae5 /root-tree.c
parent8a46573c2a6bc68385538e5d10131c984df198e9 (diff)
downloadbtrfs-progs-50e3ff573c65b563252d390d21b10b16d406f189.tar.gz
btrfs-progs: code cleanup for root-tree.c/btrfs_del_root
Remove the redundant if check on the condition ret > 0. Leave BUG_ON check here. Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com>
Diffstat (limited to 'root-tree.c')
-rw-r--r--root-tree.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/root-tree.c b/root-tree.c
index ecb7599..c10d068 100644
--- a/root-tree.c
+++ b/root-tree.c
@@ -181,14 +181,6 @@ int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
ret = btrfs_search_slot(trans, root, key, path, -1, 1);
if (ret < 0)
goto out;
- if (ret) {
-btrfs_print_leaf(root, path->nodes[0]);
-printk("failed to del %llu %u %llu\n",
- (unsigned long long)key->objectid,
- key->type,
- (unsigned long long)key->offset);
-
- }
BUG_ON(ret != 0);
leaf = path->nodes[0];
ri = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_item);