From patchwork Sat Oct 1 15:48:54 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zorro Lang X-Patchwork-Id: 9359313 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6A1AF600C8 for ; Sat, 1 Oct 2016 15:49:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 58CC128CEB for ; Sat, 1 Oct 2016 15:49:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4AFA428CF2; Sat, 1 Oct 2016 15:49:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 387AE28CEB for ; Sat, 1 Oct 2016 15:49:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750822AbcJAPtF (ORCPT ); Sat, 1 Oct 2016 11:49:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55624 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750820AbcJAPtE (ORCPT ); Sat, 1 Oct 2016 11:49:04 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 434D67EA85; Sat, 1 Oct 2016 15:49:04 +0000 (UTC) Received: from localhost.localdomain.com (vpn1-6-221.pek2.redhat.com [10.72.6.221]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u91Fn2MC004704; Sat, 1 Oct 2016 11:49:03 -0400 From: Zorro Lang To: fstests@vger.kernel.org Cc: linux-xfs@vger.kernel.org Subject: [PATCH] fstests: fix failures caused by striped device Date: Sat, 1 Oct 2016 23:48:54 +0800 Message-Id: <1475336934-19105-1-git-send-email-zlang@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Sat, 01 Oct 2016 15:49:04 +0000 (UTC) Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP There're some failures if scratch_dev is a striped device: 1. generic/094 and generic/225 fiemap_tester fails. 2. generic/347 need -f to force usage of a misaligned device 3. xfs/010, xfs/013, xfs/042 and xfs/109 print "Warning: AG size is a multiple of stripe width", break the golden image 4. xfs/029 print more "extended-header" Only XFS can reproduce these failures, so this patch: 1. use "-d sunit=0,swidth=0,noalign" options for generic/094, generic/225 and xfs/029. 2. print the error output of mkfs.xfs to /dev/null forr xfs/010, xfs/013, xfs/042 and xfs/109 3. add -f option for generic/347 Signed-off-by: Zorro Lang --- Hi, This problem has been bothering me for a long time. Everytime when I test on a machine with striped RAID device, I'll hit these problems. Generally I'll ignore these failures, and run xfstests again on another machine. I know this patch is not the best way to deal with this problem, so I just try to throw away a poor example in order to get some great ideas:) Thanks, Zorro tests/generic/094 | 3 +++ tests/generic/225 | 3 +++ tests/generic/347 | 2 +- tests/xfs/010 | 3 ++- tests/xfs/013 | 2 +- tests/xfs/029 | 2 +- tests/xfs/042 | 2 +- tests/xfs/109 | 3 ++- 8 files changed, 14 insertions(+), 6 deletions(-) diff --git a/tests/generic/094 b/tests/generic/094 index 005de1d..e83b062 100755 --- a/tests/generic/094 +++ b/tests/generic/094 @@ -48,6 +48,9 @@ _require_odirect _require_xfs_io_command "fiemap" _require_xfs_io_command "falloc" +if [ "$FSTYP" = "xfs" ]; then + MKFS_OPTIONS="$MKFS_OPTIONS -d sunit=0,swidth=0,noalign" +fi _scratch_mkfs > /dev/null 2>&1 _scratch_mount > /dev/null 2>&1 diff --git a/tests/generic/225 b/tests/generic/225 index 5285e68..fec1a7a 100755 --- a/tests/generic/225 +++ b/tests/generic/225 @@ -47,6 +47,9 @@ _require_scratch _require_odirect _require_xfs_io_command "fiemap" +if [ "$FSTYP" = "xfs" ]; then + MKFS_OPTIONS="$MKFS_OPTIONS -d sunit=0,swidth=0,noalign" +fi _scratch_mkfs > /dev/null 2>&1 _scratch_mount > /dev/null 2>&1 diff --git a/tests/generic/347 b/tests/generic/347 index 3adc674..054c778 100755 --- a/tests/generic/347 +++ b/tests/generic/347 @@ -43,7 +43,7 @@ _setup_thin() { _dmthin_init $BACKING_SIZE $VIRTUAL_SIZE _dmthin_set_queue - _mkfs_dev $DMTHIN_VOL_DEV + _mkfs_dev -f $DMTHIN_VOL_DEV _dmthin_mount } diff --git a/tests/xfs/010 b/tests/xfs/010 index d350d64..d49a923 100755 --- a/tests/xfs/010 +++ b/tests/xfs/010 @@ -109,7 +109,8 @@ _require_xfs_finobt rm -f $seqres.full -_scratch_mkfs_xfs "-m crc=1,finobt=1 -d agcount=2" | _filter_mkfs 2>$seqres.full +_scratch_mkfs_xfs "-m crc=1,finobt=1 -d agcount=2" 2>/dev/null \ + | _filter_mkfs 2>$seqres.full # sparsely populate the fs such that we create records with free inodes _scratch_mount diff --git a/tests/xfs/013 b/tests/xfs/013 index 817558f..a00ebd6 100755 --- a/tests/xfs/013 +++ b/tests/xfs/013 @@ -105,7 +105,7 @@ _require_command "$KILLALL_PROG" killall rm -f $seqres.full -_scratch_mkfs_xfs "-m crc=1,finobt=1 -d agcount=2" | \ +_scratch_mkfs_xfs "-m crc=1,finobt=1 -d agcount=2" 2>/dev/null | \ _filter_mkfs 2>> $seqres.full _scratch_mount diff --git a/tests/xfs/029 b/tests/xfs/029 index 0709fce..01f4144 100755 --- a/tests/xfs/029 +++ b/tests/xfs/029 @@ -58,7 +58,7 @@ _supported_os Linux _require_scratch echo -_scratch_mkfs_xfs | _filter_mkfs 2>/dev/null +_scratch_mkfs_xfs -d sunit=0,swidth=0,noalign | _filter_mkfs 2>/dev/null echo _scratch_xfs_logprint | _filter_logprint diff --git a/tests/xfs/042 b/tests/xfs/042 index ba5eed3..66bcc35 100755 --- a/tests/xfs/042 +++ b/tests/xfs/042 @@ -74,7 +74,7 @@ rm -f $seqres.full _do_die_on_error=message_only echo -n "Make a 48 megabyte filesystem on SCRATCH_DEV and mount... " -_scratch_mkfs_xfs -dsize=48m,agcount=3 2>&1 >/dev/null || _fail "mkfs failed" +_scratch_mkfs_xfs -dsize=48m,agcount=3 >/dev/null 2>&1 || _fail "mkfs failed" _scratch_mount || _fail "mount failed" echo "done" diff --git a/tests/xfs/109 b/tests/xfs/109 index ac20619..dd60492 100755 --- a/tests/xfs/109 +++ b/tests/xfs/109 @@ -103,7 +103,8 @@ if [ -n "$FASTSTART" -a -f $SCRATCH_MNT/f0 ]; then fi _scratch_unmount -_scratch_mkfs_xfs -dsize=160m,agcount=4 $faststart | _filter_mkfs 2>$tmp.mkfs +_scratch_mkfs_xfs -dsize=160m,agcount=4 $faststart 2>/dev/null \ + | _filter_mkfs 2>$tmp.mkfs cat $tmp.mkfs >>$seqres.full _scratch_mount