aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/extents.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r--fs/ext4/extents.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 142e3443476f..f473ddf0bd94 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -1238,9 +1238,9 @@ static int ext4_ext_search_left(struct inode *inode,
1238 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { 1238 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1239 EXT4_ERROR_INODE(inode, 1239 EXT4_ERROR_INODE(inode,
1240 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!", 1240 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
1241 ix != NULL ? ix->ei_block : 0, 1241 ix != NULL ? le32_to_cpu(ix->ei_block) : 0,
1242 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ? 1242 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
1243 EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block : 0, 1243 le32_to_cpu(EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block) : 0,
1244 depth); 1244 depth);
1245 return -EIO; 1245 return -EIO;
1246 } 1246 }