diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2019-05-20 19:17:56 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2019-05-23 10:03:11 -0400 |
commit | bc88ac96a9acff450f612b7a21dc934005683187 (patch) | |
tree | 9a2a0a8a404eadad53c97c313434525e158917e4 | |
parent | e0654264c4806dc436b291294a0fbf9be7571ab6 (diff) |
f2fs: link f2fs quota ops for sysfile
This patch reverts:
commit fb40d618b039 ("f2fs: don't clear CP_QUOTA_NEED_FSCK_FLAG").
We were missing error handlers used in f2fs quota ops.
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r-- | fs/f2fs/checkpoint.c | 6 | ||||
-rw-r--r-- | fs/f2fs/super.c | 5 |
2 files changed, 3 insertions, 8 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index ed70b68b2b38..9c07b71037ee 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c | |||
@@ -1328,10 +1328,8 @@ static void update_ckpt_flags(struct f2fs_sb_info *sbi, struct cp_control *cpc) | |||
1328 | 1328 | ||
1329 | if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH)) | 1329 | if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH)) |
1330 | __set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG); | 1330 | __set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG); |
1331 | /* | 1331 | else |
1332 | * TODO: we count on fsck.f2fs to clear this flag until we figure out | 1332 | __clear_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG); |
1333 | * missing cases which clear it incorrectly. | ||
1334 | */ | ||
1335 | 1333 | ||
1336 | if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR)) | 1334 | if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR)) |
1337 | __set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG); | 1335 | __set_ckpt_flags(ckpt, CP_QUOTA_NEED_FSCK_FLAG); |
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 6b959bbb336a..56fa80ccff47 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c | |||
@@ -3160,10 +3160,7 @@ try_onemore: | |||
3160 | 3160 | ||
3161 | #ifdef CONFIG_QUOTA | 3161 | #ifdef CONFIG_QUOTA |
3162 | sb->dq_op = &f2fs_quota_operations; | 3162 | sb->dq_op = &f2fs_quota_operations; |
3163 | if (f2fs_sb_has_quota_ino(sbi)) | 3163 | sb->s_qcop = &f2fs_quotactl_ops; |
3164 | sb->s_qcop = &dquot_quotactl_sysfile_ops; | ||
3165 | else | ||
3166 | sb->s_qcop = &f2fs_quotactl_ops; | ||
3167 | sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ; | 3164 | sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ; |
3168 | 3165 | ||
3169 | if (f2fs_sb_has_quota_ino(sbi)) { | 3166 | if (f2fs_sb_has_quota_ino(sbi)) { |