From patchwork Fri Dec 22 18:26:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 10130991 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 CD1746019D for ; Fri, 22 Dec 2017 18:26:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C48FB292D3 for ; Fri, 22 Dec 2017 18:26:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B93BA29427; Fri, 22 Dec 2017 18:26:12 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 47CFF292D3 for ; Fri, 22 Dec 2017 18:26:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756731AbdLVS0L (ORCPT ); Fri, 22 Dec 2017 13:26:11 -0500 Received: from imap.thunk.org ([74.207.234.97]:50948 "EHLO imap.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755940AbdLVS0L (ORCPT ); Fri, 22 Dec 2017 13:26:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=thunk.org; s=ef5046eb; h=Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Sw36W0+ZGgMneZ7RD44mthAJ5zsKDZRtygFjIQdT7l4=; b=yTJbUqeU9l7rXzsglleuUK4Rrd 8P+vbGrzkGUfzmBiqueznfzENTn7n8u4+QgM/nOoq7p3vVxdLutvsBnXA5sHGoyF+by+cZ6cMA2C+ UBw7xKJOacxdeIMLQ5JMaWY5AUu34Q236sMvWCoq4tt2RLt9wKNxob4S044ZoRBYRLcM=; Received: from root (helo=callcc.thunk.org) by imap.thunk.org with local-esmtp (Exim 4.89) (envelope-from ) id 1eSS1K-0002Az-EY; Fri, 22 Dec 2017 18:26:10 +0000 Received: by callcc.thunk.org (Postfix, from userid 15806) id AC775C00526; Fri, 22 Dec 2017 13:26:09 -0500 (EST) From: Theodore Ts'o To: fstests@vger.kernel.org Cc: Ext4 Developers List , Theodore Ts'o Subject: [PATCH] ext4: use a slightly bigger file system in ext4/021 Date: Fri, 22 Dec 2017 13:26:07 -0500 Message-Id: <20171222182607.7745-1-tytso@mit.edu> X-Mailer: git-send-email 2.11.0.rc0.7.gbe5a750 X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@thunk.org X-SA-Exim-Scanned: No (on imap.thunk.org); SAEximRunCond expanded to false Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP An 8 MB file system may not be big enough for certain file system configurations --- in particular, if the inode size is 2048 bytes. Make the test file system 10MB instead. Signed-off-by: Theodore Ts'o --- tests/ext4/021 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ext4/021 b/tests/ext4/021 index 8a780873..e46b43be 100755 --- a/tests/ext4/021 +++ b/tests/ext4/021 @@ -50,7 +50,7 @@ _require_scratch _require_dumpe2fs # 8M in bytes -fssize=$((8 * 1024 * 1024)) +fssize=$((10 * 1024 * 1024)) _scratch_mkfs_sized $fssize >> $seqres.full 2>&1 _require_metadata_journaling $SCRATCH_DEV