From: Eric Sandeen Date: Wed, 31 Jan 2018 19:31:10 +0000 (-0800) Subject: xfs: add scrub to XFS_BUILD_OPTIONS X-Git-Tag: v4.19~1640^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=494370ccaae891de0a99b3c23b2df482c95cab8c;p=platform%2Fkernel%2Flinux-rpi3.git xfs: add scrub to XFS_BUILD_OPTIONS Advertise this config option along with the others. Signed-off-by: Eric Sandeen Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- diff --git a/fs/xfs/xfs_super.h b/fs/xfs/xfs_super.h index fcc5dfc..8cee8e8 100644 --- a/fs/xfs/xfs_super.h +++ b/fs/xfs/xfs_super.h @@ -44,6 +44,12 @@ extern void xfs_qm_exit(void); # define XFS_REALTIME_STRING #endif +#ifdef CONFIG_XFS_ONLINE_SCRUB +# define XFS_SCRUB_STRING "scrub, " +#else +# define XFS_SCRUB_STRING +#endif + #ifdef DEBUG # define XFS_DBG_STRING "debug" #else @@ -54,6 +60,7 @@ extern void xfs_qm_exit(void); #define XFS_BUILD_OPTIONS XFS_ACL_STRING \ XFS_SECURITY_STRING \ XFS_REALTIME_STRING \ + XFS_SCRUB_STRING \ XFS_DBG_STRING /* DBG must be last */ struct xfs_inode;