From: Darrick J. Wong <djwong@xxxxxxxxxx> Advertise the existence of the metadata directory feature; this will be used by scrub to decide if it needs to scan the metadir too. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- libxfs/xfs_fs.h | 1 + libxfs/xfs_sb.c | 2 ++ man/man2/ioctl_xfs_fsgeometry.2 | 3 +++ 3 files changed, 6 insertions(+) diff --git a/libxfs/xfs_fs.h b/libxfs/xfs_fs.h index a39fd65e6ee..7de31a6692a 100644 --- a/libxfs/xfs_fs.h +++ b/libxfs/xfs_fs.h @@ -239,6 +239,7 @@ typedef struct xfs_fsop_resblks { #define XFS_FSOP_GEOM_FLAGS_BIGTIME (1 << 21) /* 64-bit nsec timestamps */ #define XFS_FSOP_GEOM_FLAGS_INOBTCNT (1 << 22) /* inobt btree counter */ #define XFS_FSOP_GEOM_FLAGS_NREXT64 (1 << 23) /* large extent counters */ +#define XFS_FSOP_GEOM_FLAGS_METADIR (1 << 30) /* metadata directories */ #define XFS_FSOP_GEOM_FLAGS_ATOMIC_SWAP (1U << 31) /* atomic file extent swap */ /* diff --git a/libxfs/xfs_sb.c b/libxfs/xfs_sb.c index 6452856d45b..55a5c5fc631 100644 --- a/libxfs/xfs_sb.c +++ b/libxfs/xfs_sb.c @@ -1231,6 +1231,8 @@ xfs_fs_geometry( geo->flags |= XFS_FSOP_GEOM_FLAGS_NREXT64; if (xfs_swapext_supported(mp)) geo->flags |= XFS_FSOP_GEOM_FLAGS_ATOMIC_SWAP; + if (xfs_has_metadir(mp)) + geo->flags |= XFS_FSOP_GEOM_FLAGS_METADIR; geo->rtsectsize = sbp->sb_blocksize; geo->dirblocksize = xfs_dir2_dirblock_bytes(sbp); diff --git a/man/man2/ioctl_xfs_fsgeometry.2 b/man/man2/ioctl_xfs_fsgeometry.2 index 7c563ca0454..19328bb4be4 100644 --- a/man/man2/ioctl_xfs_fsgeometry.2 +++ b/man/man2/ioctl_xfs_fsgeometry.2 @@ -214,6 +214,9 @@ Filesystem supports sharing blocks between files. .TP .B XFS_FSOP_GEOM_FLAGS_ATOMICSWAP Filesystem can exchange file contents atomically via FIEXCHANGE_RANGE. +.TP +.B XFS_FSOP_GEOM_FLAGS_METADIR +Filesystem contains a metadata directory tree. .RE .SH XFS METADATA HEALTH REPORTING .PP