summaryrefslogtreecommitdiffstats
path: root/fs/xfs/Makefile
diff options
context:
space:
mode:
authorDarrick J. Wong2018-07-30 07:37:09 +0200
committerDarrick J. Wong2018-07-30 07:37:09 +0200
commitbc270b53e6aa3b9723e26a548fa1a1688ea61361 (patch)
tree5229acc648d38c095cdf6b6c9e5b2efc8acb6658 /fs/xfs/Makefile
parentxfs: pass transaction lock while setting up agresv on cyclic metadata (diff)
downloadkernel-qcow2-linux-bc270b53e6aa3b9723e26a548fa1a1688ea61361.tar.gz
kernel-qcow2-linux-bc270b53e6aa3b9723e26a548fa1a1688ea61361.tar.xz
kernel-qcow2-linux-bc270b53e6aa3b9723e26a548fa1a1688ea61361.zip
xfs: move the repair extent list into its own file
Move the xrep_extent_list code into a separate file. Logically, this data structure is really just a clumsy bitmap, and in the next patch we'll make this more obvious. No functional changes. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r--fs/xfs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile
index 2f3f75a7f180..7f96bdadc372 100644
--- a/fs/xfs/Makefile
+++ b/fs/xfs/Makefile
@@ -158,6 +158,7 @@ xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o
ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
xfs-y += $(addprefix scrub/, \
agheader_repair.o \
+ bitmap.o \
repair.o \
)
endif