From bc7cf7b94afddfb852af93c66bc9c99542765d34 Mon Sep 17 00:00:00 2001 From: Jaegeuk Kim Date: Thu, 12 Feb 2015 14:19:37 +1100 Subject: [PATCH] common: add _require_norecovery This patch adds checking code whether filesystem supports norecovery mount option or not. Use this in the following xfs test. xfs/200 (recovery vs ro-block device) Currently, norecovery mount option is used by xfs only. But some of log-based filesystems (e.g., f2fs) are able to support it later. Signed-off-by: Jaegeuk Kim Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- common/rc | 8 ++++++++ tests/xfs/200 | 1 + 2 files changed, 9 insertions(+) diff --git a/common/rc b/common/rc index 9d91ce04..7449a1de 100644 --- a/common/rc +++ b/common/rc @@ -2332,6 +2332,14 @@ _require_scratch_shutdown() _scratch_unmount } +# Does norecovery support by this fs? +_require_norecovery() +{ + _scratch_mount -o ro,norecovery || \ + _notrun "$FSTYP does not support norecovery" + _scratch_unmount +} + # Does fiemap support? _require_fiemap() { diff --git a/tests/xfs/200 b/tests/xfs/200 index c62d2b86..bd6d0fdc 100755 --- a/tests/xfs/200 +++ b/tests/xfs/200 @@ -46,6 +46,7 @@ _supported_os Linux _require_scratch_nocheck _require_scratch_shutdown +_require_norecovery _scratch_mkfs_xfs >/dev/null 2>&1 -- 2.39.5