diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-11-04 05:19:02 +0100 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-11-05 22:38:34 +0100 |
commit | b3c03efa5972f084e40104307dbe432359279cf2 (patch) | |
tree | ed41aeb53a63c54ca9b03283afa6deeda696a17a /fs/xfs/Makefile | |
parent | xfs: move repair temporary files to the metadata directory tree (diff) | |
download | linux-b3c03efa5972f084e40104307dbe432359279cf2.tar.xz linux-b3c03efa5972f084e40104307dbe432359279cf2.zip |
xfs: check metadata directory file path connectivity
Create a new scrubber type that checks that well known metadata
directory paths are connected to the metadata inode that the incore
structures think is in use. For example, check that "/quota/user" in
the metadata directory tree actually points to
mp->m_quotainfo->qi_uquotaip->i_ino.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index ba418a40aeb5..d80c2817eb48 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -174,6 +174,7 @@ xfs-y += $(addprefix scrub/, \ inode.o \ iscan.o \ listxattr.o \ + metapath.o \ nlinks.o \ parent.o \ readdir.o \ |