diff options
author | Darrick J. Wong <djwong@kernel.org> | 2023-08-10 17:48:09 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2023-08-10 17:48:09 +0300 |
commit | b7d47a77b90498a76969bf729b296e14f139737f (patch) | |
tree | b2f14e1793bff4a382a25ded9fe82c799c098d33 /fs/xfs/Makefile | |
parent | 294012fb070e33fb4a0aace7ac8d26357b705cf4 (diff) | |
download | linux-b7d47a77b90498a76969bf729b296e14f139737f.tar.xz |
xfs: move the realtime summary file scrubber to a separate source file
Move the realtime summary file checking code to a separate file in
preparation to actually implement it.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index d59fcf3fd0d5..7762c01a85cf 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -169,7 +169,12 @@ xfs-y += $(addprefix scrub/, \ ) xfs-$(CONFIG_XFS_ONLINE_SCRUB_STATS) += scrub/stats.o -xfs-$(CONFIG_XFS_RT) += scrub/rtbitmap.o + +xfs-$(CONFIG_XFS_RT) += $(addprefix scrub/, \ + rtbitmap.o \ + rtsummary.o \ + ) + xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o # online repair |