From owner-svn-src-user@freebsd.org Tue Dec 17 08:55:58 2019 Return-Path: Delivered-To: svn-src-user@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E86571E0BD1 for ; Tue, 17 Dec 2019 08:55:58 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47cX6k5fbJz4245; Tue, 17 Dec 2019 08:55:58 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8AE4B5C2; Tue, 17 Dec 2019 08:55:58 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBH8twBW098902; Tue, 17 Dec 2019 08:55:58 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBH8tw9W098901; Tue, 17 Dec 2019 08:55:58 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201912170855.xBH8tw9W098901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Tue, 17 Dec 2019 08:55:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r355845 - user/pho/stress2/misc X-SVN-Group: user X-SVN-Commit-Author: pho X-SVN-Commit-Paths: user/pho/stress2/misc X-SVN-Commit-Revision: 355845 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Dec 2019 08:55:59 -0000 Author: pho Date: Tue Dec 17 08:55:58 2019 New Revision: 355845 URL: https://svnweb.freebsd.org/changeset/base/355845 Log: Increase the vnode cap (kern.maxvnodes) to allow the test to complete in a reasonable time. Modified: user/pho/stress2/misc/core5.sh Modified: user/pho/stress2/misc/core5.sh ============================================================================== --- user/pho/stress2/misc/core5.sh Tue Dec 17 08:30:11 2019 (r355844) +++ user/pho/stress2/misc/core5.sh Tue Dec 17 08:55:58 2019 (r355845) @@ -35,11 +35,10 @@ # Fixed by r279237. # 20150714 Slowdown seen with core5 waiting in vlruwk. -# sysctl vfs.vlru_allow_cache_src=1 resolves this. -# For now change MAXVNODES from 1.000 to 1.500. +# sysctl vfs.vlru_allow_cache_src=1 used to resolve this. +# For now change MAXVNODES from 1.000 to 4.000. [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 - . ../default.cfg here=`pwd` @@ -135,7 +134,7 @@ EOF #include #include -#define MAXVNODES 1500 +#define MAXVNODES 4000 #define NBFILES 10000 #define PARALLEL 4 #define RTIME (10 * 60)