From: Theodore Ts'o Date: Fri, 15 Jun 2018 16:27:16 +0000 (-0400) Subject: ext4: include the illegal physical block in the bad map ext4_error msg X-Git-Tag: v4.9.112~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f135cc8c094152d361b3172d3f757369de28a08;p=platform%2Fkernel%2Flinux-amlogic.git ext4: include the illegal physical block in the bad map ext4_error msg commit bdbd6ce01a70f02e9373a584d0ae9538dcf0a121 upstream. Signed-off-by: Theodore Ts'o Cc: stable@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 7c025ee..81b16c3 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -377,9 +377,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, map->m_len)) { 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, - map->m_len); + map->m_pblk, map->m_len); return -EFSCORRUPTED; } return 0;