From patchwork Wed Jan 18 09:21:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Boyang Xue X-Patchwork-Id: 9522955 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 A87E2601C3 for ; Wed, 18 Jan 2017 09:30:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9D64828553 for ; Wed, 18 Jan 2017 09:30:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 924012855B; Wed, 18 Jan 2017 09:30:20 +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 32D3728553 for ; Wed, 18 Jan 2017 09:30:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751788AbdARJaS (ORCPT ); Wed, 18 Jan 2017 04:30:18 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44360 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751993AbdARJaO (ORCPT ); Wed, 18 Jan 2017 04:30:14 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (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 C41A08553F for ; Wed, 18 Jan 2017 09:21:24 +0000 (UTC) Received: from fs-qe.usersys.redhat.com (ibm-x3250m4-06.rhts.eng.pek2.redhat.com [10.73.4.177]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id v0I9LMIM023731 for ; Wed, 18 Jan 2017 04:21:24 -0500 From: bxue@redhat.com To: fstests@vger.kernel.org Subject: [PATCH v2 2/2] generic/405: test mkfs against thin provision device Date: Wed, 18 Jan 2017 17:21:20 +0800 Message-Id: <1484731280-7010-2-git-send-email-bxue@redhat.com> In-Reply-To: <1484731280-7010-1-git-send-email-bxue@redhat.com> References: <1484731280-7010-1-git-send-email-bxue@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 18 Jan 2017 09:21:24 +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 From: Boyang Xue Test mkfs against thin provision device, which has very small backing size and very big virtual size. mkfs should return error when it hits EIO. Signed-off-by: Boyang Xue --- tests/generic/405 | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++ tests/generic/405.out | 2 ++ tests/generic/group | 1 + 3 files changed, 76 insertions(+) create mode 100755 tests/generic/405 create mode 100644 tests/generic/405.out diff --git a/tests/generic/405 b/tests/generic/405 new file mode 100755 index 0000000..01eb5ff --- /dev/null +++ b/tests/generic/405 @@ -0,0 +1,73 @@ +#! /bin/bash +# FS QA Test 405 +# +# Test mkfs against thin provision device, which has very small backing size, +# mkfs should return error when it hits EIO. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016 Red Hat Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- +# + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +# Initialize dmthin device with very small backing size & very big virtual +# size, with the hope that mkfs hit EIO at mkfs time +BACKING_SIZE=$((1 * 1024 * 1024 / 512)) # 1M +VIRTUAL_SIZE=$((1 * 1024 * 1024 * 1024 * 1024 / 512)) # 1T + +_cleanup() +{ + _dmthin_cleanup + cd / + rm -f $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/dmthin + +# remove previous $seqres.full before test +rm -f $seqres.full + +# real QA test starts here +_supported_fs generic +_supported_os Linux +# $SCRATCH_DEV won't be directly created filesystem on, so fsck isn't required +_require_scratch_nocheck +_require_dm_target thin-pool + +_dmthin_init $BACKING_SIZE $VIRTUAL_SIZE + +# try mkfs on dmthin device, expect mkfs failure if 1M isn't big enough to hold +# all the metadata. But if mkfs returns success, we expect the filesystem is +# consistent, make sure it doesn't currupt silently. +$MKFS_PROG -t $FSTYP $DMTHIN_VOL_DEV >>$seqres.full 2>&1 +if [ $? -eq 0 ]; then + _dmthin_check_fs +fi + +echo "Silence is golden" +status=0 +exit diff --git a/tests/generic/405.out b/tests/generic/405.out new file mode 100644 index 0000000..bae761d --- /dev/null +++ b/tests/generic/405.out @@ -0,0 +1,2 @@ +QA output created by 405 +Silence is golden diff --git a/tests/generic/group b/tests/generic/group index 6fc9c3d..5621906 100644 --- a/tests/generic/group +++ b/tests/generic/group @@ -407,3 +407,4 @@ 402 auto quick rw 403 auto quick attr 404 auto quick insert +405 auto mkfs