mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
Btrfs: remove BUG() in print_extent_item
btrfs_print_leaf() is used in btrfs_get_extent_inline_ref_type, so here we really want to print the invalid value of ref type instead of causing a kernel panic. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
4335958de2
commit
07638ea598
@ -121,7 +121,10 @@ static void print_extent_item(struct extent_buffer *eb, int slot, int type)
|
|||||||
offset, btrfs_shared_data_ref_count(eb, sref));
|
offset, btrfs_shared_data_ref_count(eb, sref));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
BUG();
|
btrfs_err(eb->fs_info,
|
||||||
|
"extent %llu has invalid ref type %d",
|
||||||
|
eb->start, type);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
ptr += btrfs_extent_inline_ref_size(type);
|
ptr += btrfs_extent_inline_ref_size(type);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user