diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-11-03 20:19:03 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-11-05 13:38:35 -0800 |
commit | 0d2c636e489c115add86bd66952880f92b5edab7 (patch) | |
tree | b34a21b5bb208e279a559008e07110aa000157c8 /fs/xfs/scrub/scrub.c | |
parent | 87b7c205da8a7d90958c7e64fe5014a1d2f06b63 (diff) |
xfs: repair metadata directory file path connectivity
Fix disconnected or incorrect metadata directory paths.
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 a30ed3d0dcaf..1ac33bea6f0a 100644 --- a/fs/xfs/scrub/scrub.c +++ b/fs/xfs/scrub/scrub.c @@ -447,7 +447,7 @@ static const struct xchk_meta_ops meta_scrub_ops[] = { .setup = xchk_setup_metapath, .scrub = xchk_metapath, .has = xfs_has_metadir, - .repair = xrep_notsupported, + .repair = xrep_metapath, }, }; |