From 9d5cb63d1a4a66ad4b73dc324b7fbad561fa31a2 Mon Sep 17 00:00:00 2001 From: Brian Foster Date: Tue, 13 May 2014 15:27:30 +1000 Subject: [PATCH] common: add _require_xfs_[mkfs_]finobt() checks for finobt tests Free inode btree tests must ensure that the userspace and kernel bits are compatible. Add a couple checks for the associated support. Signed-off-by: Brian Foster Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- common/rc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/common/rc b/common/rc index 4eb6e2ed..154cde14 100644 --- a/common/rc +++ b/common/rc @@ -1113,6 +1113,24 @@ _require_xfs_crc() umount $SCRATCH_MNT } +# this test requires the finobt feature to be available in mkfs.xfs +# +_require_xfs_mkfs_finobt() +{ + _scratch_mkfs_xfs_supported -m crc=1,finobt=1 >/dev/null 2>&1 \ + || _notrun "mkfs.xfs doesn't have finobt feature" +} + +# this test requires the xfs kernel support finobt feature +# +_require_xfs_finobt() +{ + _scratch_mkfs_xfs -m crc=1,finobt=1 >/dev/null 2>&1 + _scratch_mount >/dev/null 2>&1 \ + || _notrun "Kernel doesn't support finobt feature" + umount $SCRATCH_MNT +} + # this test requires that external log/realtime devices are not in use # _require_nonexternal() -- 2.30.2