f2fs: correct return value of f2fs_trim_fs
Correct return value in two cases: - return EINVAL if end boundary is out-of-range. - return EIO if fs needs off-line check. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Родитель
764811581d
Коммит
3d165dc3ae
|
@ -2409,12 +2409,12 @@ int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (end <= MAIN_BLKADDR(sbi))
|
if (end <= MAIN_BLKADDR(sbi))
|
||||||
goto out;
|
return -EINVAL;
|
||||||
|
|
||||||
if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
|
if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
|
||||||
f2fs_msg(sbi->sb, KERN_WARNING,
|
f2fs_msg(sbi->sb, KERN_WARNING,
|
||||||
"Found FS corruption, run fsck to fix.");
|
"Found FS corruption, run fsck to fix.");
|
||||||
goto out;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* start/end segment number in main_area */
|
/* start/end segment number in main_area */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче