Эх сурвалжийг харах

btrfs: Remove never reached error handling code in __add_reloc_root

One of the error handling paths in __add_reloc_root contains btrfs_panic()
followed by some other code. As the name implies what it does is print
some error message and call BUG, naturally what follow afterwards is not
invoked. So remove this extra code.

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Nikolay Borisov 8 жил өмнө
parent
commit
e3f3ad1268

+ 0 - 2
fs/btrfs/relocation.c

@@ -1308,8 +1308,6 @@ static int __must_check __add_reloc_root(struct btrfs_root *root)
 		btrfs_panic(fs_info, -EEXIST,
 		btrfs_panic(fs_info, -EEXIST,
 			    "Duplicate root found for start=%llu while inserting into relocation tree",
 			    "Duplicate root found for start=%llu while inserting into relocation tree",
 			    node->bytenr);
 			    node->bytenr);
-		kfree(node);
-		return -EEXIST;
 	}
 	}
 
 
 	list_add_tail(&root->root_list, &rc->reloc_roots);
 	list_add_tail(&root->root_list, &rc->reloc_roots);