diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-11-03 20:19:30 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-11-05 13:38:43 -0800 |
commit | 3f1bdf50ab1b9c94d0da010f8879895d29585fd9 (patch) | |
tree | ed4819200c1344d3347753a57cb6645f8e202348 /fs/xfs/libxfs/xfs_fs.h | |
parent | 7333c948c2bc9c6a37450722ee4f052360a29cd8 (diff) | |
download | lwn-3f1bdf50ab1b9c94d0da010f8879895d29585fd9.tar.gz lwn-3f1bdf50ab1b9c94d0da010f8879895d29585fd9.zip |
xfs: scrub the realtime group superblock
Enable scrubbing of realtime group superblocks.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_fs.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_fs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h index 4c0682173d61..50de6ad88dbe 100644 --- a/fs/xfs/libxfs/xfs_fs.h +++ b/fs/xfs/libxfs/xfs_fs.h @@ -736,9 +736,10 @@ struct xfs_scrub_metadata { #define XFS_SCRUB_TYPE_HEALTHY 27 /* everything checked out ok */ #define XFS_SCRUB_TYPE_DIRTREE 28 /* directory tree structure */ #define XFS_SCRUB_TYPE_METAPATH 29 /* metadata directory tree paths */ +#define XFS_SCRUB_TYPE_RGSUPER 30 /* realtime superblock */ /* Number of scrub subcommands. */ -#define XFS_SCRUB_TYPE_NR 30 +#define XFS_SCRUB_TYPE_NR 31 /* * This special type code only applies to the vectored scrub implementation. |