Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 913efaec authored by Chao Yu's avatar Chao Yu Committed by Jaegeuk Kim
Browse files

f2fs: fix to detect failure of dquot_initialize



dquot_initialize() can fail due to any exception inside quota subsystem,
f2fs needs to be aware of it, and return correct return value to caller.

Signed-off-by: default avatarChao Yu <yuchao0@huawei.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent f60d3b8f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2575,7 +2575,9 @@ static int f2fs_ioc_setproject(struct file *filp, __u32 projid)
	}
	f2fs_put_page(ipage, 1);

	dquot_initialize(inode);
	err = dquot_initialize(inode);
	if (err)
		goto out_unlock;

	transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
	if (!IS_ERR(transfer_to[PRJQUOTA])) {