From: Hugh Dickins Date: Thu, 18 Feb 2016 23:48:48 +0000 (+1100) Subject: xfstests: increase tmpfs memory size X-Git-Tag: v2022.05.01~2603 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=99fd47b2b2c8639753e44c1014bc6902109c4741;p=xfstests-dev.git xfstests: increase tmpfs memory size 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 Signed-off-by: Dave Chinner --- diff --git a/common/config b/common/config index c97facf8..cacd815c 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" ;; *) ;;