aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/xfs/quota/xfs_qm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/xfs/quota/xfs_qm.c b/fs/xfs/quota/xfs_qm.c
index 762af2d1b50f..3e4a8ad8a34c 100644
--- a/fs/xfs/quota/xfs_qm.c
+++ b/fs/xfs/quota/xfs_qm.c
@@ -388,6 +388,17 @@ xfs_qm_mount_quotas(
388 return XFS_ERROR(error); 388 return XFS_ERROR(error);
389 } 389 }
390 } 390 }
391 /*
392 * If one type of quotas is off, then it will lose its
393 * quotachecked status, since we won't be doing accounting for
394 * that type anymore.
395 */
396 if (!XFS_IS_UQUOTA_ON(mp)) {
397 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
398 }
399 if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp))) {
400 mp->m_qflags &= ~XFS_OQUOTA_CHKD;
401 }
391 402
392 write_changes: 403 write_changes:
393 /* 404 /*