From: Darrick J. Wong <djwong@xxxxxxxxxx> Add code to scrub realtime refcount btrees. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- libxfs/xfs_fs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libxfs/xfs_fs.h b/libxfs/xfs_fs.h index 5819576a51a..453b0861225 100644 --- a/libxfs/xfs_fs.h +++ b/libxfs/xfs_fs.h @@ -746,9 +746,10 @@ struct xfs_scrub_metadata { #define XFS_SCRUB_TYPE_RGSUPER 28 /* realtime superblock */ #define XFS_SCRUB_TYPE_RGBITMAP 29 /* realtime group bitmap */ #define XFS_SCRUB_TYPE_RTRMAPBT 30 /* rtgroup reverse mapping btree */ +#define XFS_SCRUB_TYPE_RTREFCBT 31 /* realtime reference count btree */ /* Number of scrub subcommands. */ -#define XFS_SCRUB_TYPE_NR 31 +#define XFS_SCRUB_TYPE_NR 32 /* i: Repair this metadata. */ #define XFS_SCRUB_IFLAG_REPAIR (1u << 0)