From patchwork Wed Feb 10 01:50:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 8267821 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 94115BEEE5 for ; Wed, 10 Feb 2016 01:50:27 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C153F20254 for ; Wed, 10 Feb 2016 01:50:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ECE7C20270 for ; Wed, 10 Feb 2016 01:50:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756097AbcBJBuS (ORCPT ); Tue, 9 Feb 2016 20:50:18 -0500 Received: from imap.thunk.org ([74.207.234.97]:51042 "EHLO imap.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756129AbcBJBuN (ORCPT ); Tue, 9 Feb 2016 20:50:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=thunk.org; s=ef5046eb; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=j9vsmNFFluGB0734JzkMlbP4wZzUlm1qYouJzKu0/Gk=; b=vSAj8PATQeEFMZqrYD9b6z+NGkWiSM7A5Af0I+BwfwhsKvLuCDPKzOXl9w9DMG6TXUSWWrtVe0tDBmb99s4FuI/2JMdWnqh859VGbMZWHLYJxktM2SKh6y+I3PEw0r1C6Lcpxa3ZJsr4aKF6Vud5Rzwmfot3of5vpNUO142mAx4=; Received: from root (helo=closure.thunk.org) by imap.thunk.org with local-esmtp (Exim 4.84) (envelope-from ) id 1aTJv1-0005U9-KB; Wed, 10 Feb 2016 01:50:11 +0000 Received: by closure.thunk.org (Postfix, from userid 15806) id 0BA4E8202DE; Tue, 9 Feb 2016 20:50:10 -0500 (EST) From: Theodore Ts'o To: fstests@vger.kernel.org Cc: hughd@google.com, Junho Ryu , Theodore Ts'o Subject: [PATCH 12/12] xfstests: increase tmpfs memory size Date: Tue, 9 Feb 2016 20:50:01 -0500 Message-Id: <1455069001-17846-13-git-send-email-tytso@mit.edu> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1455069001-17846-1-git-send-email-tytso@mit.edu> References: <1455069001-17846-1-git-send-email-tytso@mit.edu> 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-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Hugh Dickins 512M is not enough for generic/129. Raise default tmpfs size to 1G. Signed-off-by: Hugh Dickins Signed-off-by: Junho Ryu Signed-off-by: Theodore Ts'o --- common/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/config b/common/config index c97facf..cacd815 100644 --- a/common/config +++ b/common/config @@ -316,8 +316,8 @@ _mount_opts() export MOUNT_OPTIONS="-o acl $GFS2_MOUNT_OPTIONS" ;; tmpfs) - # We need to specify the size at mount, use 512 MB by default - export MOUNT_OPTIONS="-o size=512M $TMPFS_MOUNT_OPTIONS" + # We need to specify the size at mount, use 1G by default + export MOUNT_OPTIONS="-o size=1G $TMPFS_MOUNT_OPTIONS" ;; *) ;;