@@ -193,33 +193,74 @@ state_quotafile_mount(
sv.qs_version = FS_QSTATV_VERSION1;
- if (xfsquotactl(XFS_GETQSTATV, dev, type, 0, (void *)&sv) < 0) {
- if (xfsquotactl(XFS_GETQSTAT, dev, type, 0, (void *)&s) < 0) {
- if (flags & VERBOSE_FLAG)
- fprintf(fp,
- _("%s quota are not enabled on %s\n"),
- type_to_string(type), dev);
- return;
+ if (type & XFS_USER_QUOTA) {
+ if (xfsquotactl(XFS_GETQSTATV, dev, XFS_USER_QUOTA,
+ 0, (void *)&sv) < 0) {
+ if (xfsquotactl(XFS_GETQSTAT, dev, XFS_USER_QUOTA,
+ 0, (void *)&s) < 0) {
+ if (flags & VERBOSE_FLAG)
+ fprintf(fp,
+ _("%s quota are not enabled on %s\n"),
+ type_to_string(XFS_USER_QUOTA),
+ dev);
+ return;
+ }
+ state_stat_to_statv(&s, &sv);
}
- state_stat_to_statv(&s, &sv);
- }
- if (type & XFS_USER_QUOTA)
state_qfilestat(fp, mount, XFS_USER_QUOTA, &sv.qs_uquota,
sv.qs_flags & XFS_QUOTA_UDQ_ACCT,
sv.qs_flags & XFS_QUOTA_UDQ_ENFD);
- if (type & XFS_GROUP_QUOTA)
+ state_timelimit(fp, XFS_BLOCK_QUOTA, sv.qs_btimelimit);
+ state_timelimit(fp, XFS_INODE_QUOTA, sv.qs_itimelimit);
+ state_timelimit(fp, XFS_RTBLOCK_QUOTA, sv.qs_rtbtimelimit);
+ }
+
+ if (type & XFS_GROUP_QUOTA) {
+ if (xfsquotactl(XFS_GETQSTATV, dev, XFS_GROUP_QUOTA,
+ 0, (void *)&sv) < 0) {
+ if (xfsquotactl(XFS_GETQSTAT, dev, XFS_GROUP_QUOTA,
+ 0, (void *)&s) < 0) {
+ if (flags & VERBOSE_FLAG)
+ fprintf(fp,
+ _("%s quota are not enabled on %s\n"),
+ type_to_string(XFS_GROUP_QUOTA),
+ dev);
+ return;
+ }
+ state_stat_to_statv(&s, &sv);
+ }
state_qfilestat(fp, mount, XFS_GROUP_QUOTA, &sv.qs_gquota,
sv.qs_flags & XFS_QUOTA_GDQ_ACCT,
sv.qs_flags & XFS_QUOTA_GDQ_ENFD);
- if (type & XFS_PROJ_QUOTA)
+
+ state_timelimit(fp, XFS_BLOCK_QUOTA, sv.qs_btimelimit);
+ state_timelimit(fp, XFS_INODE_QUOTA, sv.qs_itimelimit);
+ state_timelimit(fp, XFS_RTBLOCK_QUOTA, sv.qs_rtbtimelimit);
+ }
+
+ if (type & XFS_PROJ_QUOTA) {
+ if (xfsquotactl(XFS_GETQSTATV, dev, XFS_PROJ_QUOTA,
+ 0, (void *)&sv) < 0) {
+ if (xfsquotactl(XFS_GETQSTAT, dev, XFS_PROJ_QUOTA,
+ 0, (void *)&s) < 0) {
+ if (flags & VERBOSE_FLAG)
+ fprintf(fp,
+ _("%s quota are not enabled on %s\n"),
+ type_to_string(XFS_PROJ_QUOTA),
+ dev);
+ return;
+ }
+ state_stat_to_statv(&s, &sv);
+ }
state_qfilestat(fp, mount, XFS_PROJ_QUOTA, &sv.qs_pquota,
sv.qs_flags & XFS_QUOTA_PDQ_ACCT,
sv.qs_flags & XFS_QUOTA_PDQ_ENFD);
- state_timelimit(fp, XFS_BLOCK_QUOTA, sv.qs_btimelimit);
- state_timelimit(fp, XFS_INODE_QUOTA, sv.qs_itimelimit);
- state_timelimit(fp, XFS_RTBLOCK_QUOTA, sv.qs_rtbtimelimit);
+ state_timelimit(fp, XFS_BLOCK_QUOTA, sv.qs_btimelimit);
+ state_timelimit(fp, XFS_INODE_QUOTA, sv.qs_itimelimit);
+ state_timelimit(fp, XFS_RTBLOCK_QUOTA, sv.qs_rtbtimelimit);
+ }
}
static void
Since grace periods are now supported for three quota types (ugp), modify xfs_quota state command to report times for all three. Signed-off-by: Bill O'Donnell <billodo@redhat.com> --- quota/state.c | 71 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 56 insertions(+), 15 deletions(-)