From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> When checking a filesystem, explicitly run xfs_scrub in dry run mode so that it will not ever try to preen, fix, or optimize anything. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- common/xfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/xfs b/common/xfs index cfdbfff..9224499 100644 --- a/common/xfs +++ b/common/xfs @@ -331,7 +331,7 @@ _check_xfs_filesystem() if [ "$type" = "xfs" ]; then if [ -n "$TEST_XFS_SCRUB" ] && [ -x "$XFS_SCRUB_PROG" ]; then - "$XFS_SCRUB_PROG" $scrubflag -vd $device >>$seqres.full + "$XFS_SCRUB_PROG" $scrubflag -v -d -n $device >>$seqres.full if [ $? -ne 0 ]; then _log_err "filesystem on $device failed scrub" ok=0 -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html