diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 0364f9384f5a..630fed85cb89 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -3907,7 +3907,7 @@ static int check_swap_activate_fast(struct swap_info_struct *sis, /* hole */ if (!(map.m_flags & F2FS_MAP_FLAGS)) { f2fs_err(sbi, "Swapfile has holes\n"); - ret = -ENOENT; + ret = -EINVAL; goto out; } @@ -4063,7 +4063,7 @@ out: return ret; bad_bmap: f2fs_err(sbi, "Swapfile has holes\n"); - return -ENOENT; + return -EINVAL; } static int f2fs_swap_activate(struct swap_info_struct *sis, struct file *file,