aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/super.c
diff options
context:
space:
mode:
authorChengguang Xu <cgxu519@gmx.com>2019-01-01 21:33:11 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2019-01-08 09:34:27 -0800
commitf365c6cc85b1d2348d73bf327258874fcc7ac161 (patch)
treef833b79c71e7e1cf78468b2e1346495519ff8fc4 /fs/f2fs/super.c
parentf2fs: don't access node/meta inode mapping after iput (diff)
downloadlinux-dev-f365c6cc85b1d2348d73bf327258874fcc7ac161.tar.xz
linux-dev-f365c6cc85b1d2348d73bf327258874fcc7ac161.zip
f2fs: change error code to -ENOMEM from -EINVAL
The error case of failing allocating memory should return -ENOMEM. Signed-off-by: Chengguang Xu <cgxu519@gmx.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r--fs/f2fs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 14f033e1ab42..bc32a1035f65 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -269,7 +269,7 @@ static int f2fs_set_qf_name(struct super_block *sb, int qtype,
if (!qname) {
f2fs_msg(sb, KERN_ERR,
"Not enough memory for storing quotafile name");
- return -EINVAL;
+ return -ENOMEM;
}
if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)