diff options
author | Darrick J. Wong <djwong@kernel.org> | 2023-12-15 21:03:43 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2023-12-15 21:03:43 +0300 |
commit | ffd37b22bd2b7cca7749c85a0a08268158903e55 (patch) | |
tree | 484c5b4ed5abceb8b5e78f7012250e7ad19113a9 /fs/xfs/Makefile | |
parent | a59eb5fc21b2a6dc160ee6cdf77f20bc186a88fd (diff) | |
download | linux-ffd37b22bd2b7cca7749c85a0a08268158903e55.tar.xz |
xfs: online repair of realtime bitmaps
Fix all the file metadata surrounding the realtime bitmap file, which
includes the rt geometry, file size, forks, and space mappings. The
bitmap contents themselves cannot be fixed without rt rmap, so that will
come later.
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index a7830df42c4e..e7727451d1c8 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -192,5 +192,9 @@ xfs-y += $(addprefix scrub/, \ refcount_repair.o \ repair.o \ ) + +xfs-$(CONFIG_XFS_RT) += $(addprefix scrub/, \ + rtbitmap_repair.o \ + ) endif endif |