From patchwork Sat Feb 13 17:41:08 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: 8300491 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 359F89F372 for ; Sat, 13 Feb 2016 17:41:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7000F20435 for ; Sat, 13 Feb 2016 17:41:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3A48420451 for ; Sat, 13 Feb 2016 17:41:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751101AbcBMRl1 (ORCPT ); Sat, 13 Feb 2016 12:41:27 -0500 Received: from imap.thunk.org ([74.207.234.97]:34550 "EHLO imap.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbcBMRlQ (ORCPT ); Sat, 13 Feb 2016 12:41:16 -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=xQ0s6iBy6stYjI6v3wirW9J5XAYVCV6il4ipw8SXBszHjAQ1rgLvRxhgS0cyQeieJA/qOTKBFIfQjP5sc8xdandhigdczJhQ4fVlL4fSe/8mpndWat9hrB2R2mkCzRNQlfZGOitXs+Y7zFCH7wzLjNoyvPuuZB3QmRIgsycmJoE=; Received: from root (helo=closure.thunk.org) by imap.thunk.org with local-esmtp (Exim 4.84) (envelope-from ) id 1aUeC3-0004di-Ae; Sat, 13 Feb 2016 17:41:15 +0000 Received: by closure.thunk.org (Postfix, from userid 15806) id 066E082E0A5; Sat, 13 Feb 2016 12:41:13 -0500 (EST) From: Theodore Ts'o To: fstests@vger.kernel.org Cc: hughd@google.com, Junho Ryu , Theodore Ts'o Subject: [PATCH 15/16] xfstests: increase tmpfs memory size Date: Sat, 13 Feb 2016 12:41:08 -0500 Message-Id: <1455385269-26319-16-git-send-email-tytso@mit.edu> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1455385269-26319-1-git-send-email-tytso@mit.edu> References: <1455385269-26319-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=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable 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 Reviewed-by: Christoph Hellwig --- 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" ;; *) ;;