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

ext4: return EFSBADCRC if a bad checksum error is found in ext4_find_entry()

Previously a bad directory block with a bad checksum is skipped; we
should be returning EFSBADCRC (aka EBADMSG).
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 6febe6f2
...@@ -1456,7 +1456,8 @@ static struct buffer_head * ext4_find_entry (struct inode *dir, ...@@ -1456,7 +1456,8 @@ static struct buffer_head * ext4_find_entry (struct inode *dir,
EXT4_ERROR_INODE(dir, "checksumming directory " EXT4_ERROR_INODE(dir, "checksumming directory "
"block %lu", (unsigned long)block); "block %lu", (unsigned long)block);
brelse(bh); brelse(bh);
goto next; ret = ERR_PTR(-EFSBADCRC);
goto cleanup_and_exit;
} }
set_buffer_verified(bh); set_buffer_verified(bh);
i = search_dirblock(bh, dir, &fname, i = search_dirblock(bh, dir, &fname,
......
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