Commit bdbd6ce0 authored by Theodore Ts'o's avatar Theodore Ts'o

ext4: include the illegal physical block in the bad map ext4_error msg

Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
Cc: stable@kernel.org
parent bc890a60
...@@ -402,9 +402,9 @@ static int __check_block_validity(struct inode *inode, const char *func, ...@@ -402,9 +402,9 @@ static int __check_block_validity(struct inode *inode, const char *func,
if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
map->m_len)) { map->m_len)) {
ext4_error_inode(inode, func, line, map->m_pblk, ext4_error_inode(inode, func, line, map->m_pblk,
"lblock %lu mapped to illegal pblock " "lblock %lu mapped to illegal pblock %llu "
"(length %d)", (unsigned long) map->m_lblk, "(length %d)", (unsigned long) map->m_lblk,
map->m_len); map->m_pblk, map->m_len);
return -EFSCORRUPTED; return -EFSCORRUPTED;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment