mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
btrfs: convert logic BUG_ON()'s in replace_path to ASSERT()'s
A few BUG_ON()'s in replace_path are purely to keep us from making logical mistakes, so replace them with ASSERT()'s. Reviewed-by: Qu Wenruo <wqu@suse.com> Signed-off-by: Josef Bacik <josef@toxicpanda.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
592fbcd50c
commit
7a9213a935
@ -1211,8 +1211,8 @@ int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
|
|||||||
int ret;
|
int ret;
|
||||||
int slot;
|
int slot;
|
||||||
|
|
||||||
BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
|
ASSERT(src->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
|
||||||
BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
|
ASSERT(dest->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
|
||||||
|
|
||||||
last_snapshot = btrfs_root_last_snapshot(&src->root_item);
|
last_snapshot = btrfs_root_last_snapshot(&src->root_item);
|
||||||
again:
|
again:
|
||||||
@ -1243,7 +1243,7 @@ again:
|
|||||||
parent = eb;
|
parent = eb;
|
||||||
while (1) {
|
while (1) {
|
||||||
level = btrfs_header_level(parent);
|
level = btrfs_header_level(parent);
|
||||||
BUG_ON(level < lowest_level);
|
ASSERT(level >= lowest_level);
|
||||||
|
|
||||||
ret = btrfs_bin_search(parent, &key, &slot);
|
ret = btrfs_bin_search(parent, &key, &slot);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user