diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-14 06:34:36 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-15 18:12:50 -0700 |
commit | 84d42ea6b6269aee7eb3d91a4425a08b8965fd4a (patch) | |
tree | 77f93fedc0ae20036d12a59dad18cb92849d014d /fs/xfs/Makefile | |
parent | 718fa74b153f26623e5cacfb24522f72b7ae9d80 (diff) | |
download | linux-84d42ea6b6269aee7eb3d91a4425a08b8965fd4a.tar.gz linux-84d42ea6b6269aee7eb3d91a4425a08b8965fd4a.tar.bz2 linux-84d42ea6b6269aee7eb3d91a4425a08b8965fd4a.zip |
xfs: implement the metadata repair ioctl flag
Plumb in the pieces necessary to make the "scrub" subfunction of
the scrub ioctl actually work. This means that we make the IFLAG_REPAIR
flag to the scrub ioctl actually do something, and we add an errortag
knob so that xfstests can force the kernel to rebuild a metadata
structure even if there's nothing wrong with it.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 7ceb41a9786a..57de3f4bb2c7 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -163,4 +163,11 @@ xfs-y += $(addprefix scrub/, \ xfs-$(CONFIG_XFS_RT) += scrub/rtbitmap.o xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o + +# online repair +ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y) +xfs-y += $(addprefix scrub/, \ + repair.o \ + ) +endif endif |