diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 12:30:57 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 12:30:57 -0800 |
commit | 96ed2ae4a9b06b417e1c20c086c77755a43284bf (patch) | |
tree | c61a2f29ef98053819ac53cff972695622f4b4a0 /fs/xfs/scrub/scrub.c | |
parent | 7038c6e5261eef2442bff086f80a493dbd8bfdc9 (diff) |
xfs: repair dquots based on live quotacheck results
Use the shadow quota counters that live quotacheck creates to reset the
incore dquot counters.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/scrub/scrub.c')
-rw-r--r-- | fs/xfs/scrub/scrub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/scrub.c b/fs/xfs/scrub/scrub.c index 71a9eb48e1de..9112c0985c62 100644 --- a/fs/xfs/scrub/scrub.c +++ b/fs/xfs/scrub/scrub.c @@ -367,7 +367,7 @@ static const struct xchk_meta_ops meta_scrub_ops[] = { .type = ST_FS, .setup = xchk_setup_quotacheck, .scrub = xchk_quotacheck, - .repair = xrep_notsupported, + .repair = xrep_quotacheck, }, }; |