summaryrefslogtreecommitdiffstats
path: root/include/linux/f2fs_fs.h
diff options
context:
space:
mode:
authorZhiguo Niu <zhiguo.niu@unisoc.com>2023-10-16 19:27:31 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2023-10-16 12:52:39 -0700
commita5e80e18f268ea7c7a36bc4159de0deb3b5a2171 (patch)
tree508e86135da005caa3221fe3532a8a0aa975dbf5 /include/linux/f2fs_fs.h
parent37768434b7a7d00ac5a08b2c1d31aa7aaa0846a0 (diff)
downloadlinux-a5e80e18f268ea7c7a36bc4159de0deb3b5a2171.tar.gz
linux-a5e80e18f268ea7c7a36bc4159de0deb3b5a2171.tar.bz2
linux-a5e80e18f268ea7c7a36bc4159de0deb3b5a2171.zip
f2fs: fix error path of __f2fs_build_free_nids
If NAT is corrupted, let scan_nat_page() return EFSCORRUPTED, so that, caller can set SBI_NEED_FSCK flag into checkpoint for later repair by fsck. Also, this patch introduces a new fscorrupted error flag, and in above scenario, it will persist the error flag into superblock synchronously to avoid it has no luck to trigger a checkpoint to record SBI_NEED_FSCK Signed-off-by: Zhiguo Niu <zhiguo.niu@unisoc.com> Signed-off-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'include/linux/f2fs_fs.h')
-rw-r--r--include/linux/f2fs_fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h
index 07ed69c2840d..039fe0ce8d83 100644
--- a/include/linux/f2fs_fs.h
+++ b/include/linux/f2fs_fs.h
@@ -104,6 +104,7 @@ enum f2fs_error {
ERROR_CORRUPTED_VERITY_XATTR,
ERROR_CORRUPTED_XATTR,
ERROR_INVALID_NODE_REFERENCE,
+ ERROR_INCONSISTENT_NAT,
ERROR_MAX,
};