summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTheodore Ts'o2017-06-23 06:47:05 +0200
committerTheodore Ts'o2017-06-23 06:47:05 +0200
commitbdddf342796765a1a946e7c4aed2574f4488e4e5 (patch)
tree0ca09f4c7bde183969ea9a5ff7ff09a15c3f8a57 /fs
parentext4: return EIO on read error in ext4_find_entry (diff)
downloadkernel-qcow2-linux-bdddf342796765a1a946e7c4aed2574f4488e4e5.tar.gz
kernel-qcow2-linux-bdddf342796765a1a946e7c4aed2574f4488e4e5.tar.xz
kernel-qcow2-linux-bdddf342796765a1a946e7c4aed2574f4488e4e5.zip
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: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/ext4/namei.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 2a7f2dc7f4dd..13f0cadb1238 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1456,7 +1456,8 @@ restart:
EXT4_ERROR_INODE(dir, "checksumming directory "
"block %lu", (unsigned long)block);
brelse(bh);
- goto next;
+ ret = ERR_PTR(-EFSBADCRC);
+ goto cleanup_and_exit;
}
set_buffer_verified(bh);
i = search_dirblock(bh, dir, &fname,