summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_qm.c
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2024-02-22 12:30:51 -0800
committerDarrick J. Wong <djwong@kernel.org>2024-02-22 12:30:51 -0800
commit3d8f1426977f1bf10f867bcd26df6518ae6c2b2c (patch)
tree58942946ef7dc7d1b37fd4f4b10ce6c04bb6c475 /fs/xfs/xfs_qm.c
parent5385f1a60d4e5b73e8ecd2757865352b68f54fb9 (diff)
downloadlinux-3d8f1426977f1bf10f867bcd26df6518ae6c2b2c.tar.gz
linux-3d8f1426977f1bf10f867bcd26df6518ae6c2b2c.tar.bz2
linux-3d8f1426977f1bf10f867bcd26df6518ae6c2b2c.zip
xfs: report the health of quota counts
Report the health of quota counts. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r--fs/xfs/xfs_qm.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index b5b555698ae1..dca2f60b2e30 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -26,6 +26,7 @@
#include "xfs_ag.h"
#include "xfs_ialloc.h"
#include "xfs_log_priv.h"
+#include "xfs_health.h"
/*
* The global quota manager. There is only one of these for the entire
@@ -1408,8 +1409,12 @@ error_return:
xfs_warn(mp,
"Quotacheck: Failed to reset quota flags.");
}
- } else
+ xfs_fs_mark_sick(mp, XFS_SICK_FS_QUOTACHECK);
+ } else {
xfs_notice(mp, "Quotacheck: Done.");
+ xfs_fs_mark_healthy(mp, XFS_SICK_FS_QUOTACHECK);
+ }
+
return error;
error_purge: