btrfs: tree-checker: fix inline ref size in error messages
commit f398e70dd69e6ceea71463a5380e6118f219197e upstream.
The error message should accurately reflect the size rather than the
type.
Fixes: f82d1c7ca8
("btrfs: tree-checker: Add EXTENT_ITEM and METADATA_ITEM check")
CC: stable@vger.kernel.org # 5.4+
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Chung-Chiang Cheng <cccheng@synology.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2b772a7596
commit
ad854a86da
|
@ -1417,7 +1417,7 @@ static int check_extent_item(struct extent_buffer *leaf,
|
||||||
if (unlikely(ptr + btrfs_extent_inline_ref_size(inline_type) > end)) {
|
if (unlikely(ptr + btrfs_extent_inline_ref_size(inline_type) > end)) {
|
||||||
extent_err(leaf, slot,
|
extent_err(leaf, slot,
|
||||||
"inline ref item overflows extent item, ptr %lu iref size %u end %lu",
|
"inline ref item overflows extent item, ptr %lu iref size %u end %lu",
|
||||||
ptr, inline_type, end);
|
ptr, btrfs_extent_inline_ref_size(inline_type), end);
|
||||||
return -EUCLEAN;
|
return -EUCLEAN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue