f2fs: avoid unneeded sync on quota file

We only need to sync quota file with appointed quota type instead of all
types in f2fs_quota_{on,off}.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Chao Yu 2017-08-07 16:37:59 +08:00 committed by Jaegeuk Kim
parent d9872a698c
commit 9a20d391cd
1 changed files with 2 additions and 2 deletions

View File

@ -1176,7 +1176,7 @@ static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
struct inode *inode;
int err;
err = f2fs_quota_sync(sb, -1);
err = f2fs_quota_sync(sb, type);
if (err)
return err;
@ -1204,7 +1204,7 @@ static int f2fs_quota_off(struct super_block *sb, int type)
if (!inode || !igrab(inode))
return dquot_quota_off(sb, type);
f2fs_quota_sync(sb, -1);
f2fs_quota_sync(sb, type);
err = dquot_quota_off(sb, type);
if (err)