From owner-svn-src-user@FreeBSD.ORG Thu Dec 5 17:50:19 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40BA872E; Thu, 5 Dec 2013 17:50:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1435A1F35; Thu, 5 Dec 2013 17:50:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5HoIWT002409; Thu, 5 Dec 2013 17:50:18 GMT (envelope-from pho@svn.freebsd.org) Received: (from pho@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB5HoIuB002385; Thu, 5 Dec 2013 17:50:18 GMT (envelope-from pho@svn.freebsd.org) Message-Id: <201312051750.rB5HoIuB002385@svn.freebsd.org> From: Peter Holm Date: Thu, 5 Dec 2013 17:50:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r258993 - user/pho/stress2/misc X-SVN-Group: user 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.17 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: Thu, 05 Dec 2013 17:50:19 -0000 Author: pho Date: Thu Dec 5 17:50:18 2013 New Revision: 258993 URL: http://svnweb.freebsd.org/changeset/base/258993 Log: Remove old Id tags, improve the unmount in tmpfs.sh Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/tmpfs.sh user/pho/stress2/misc/tmpfs3.sh user/pho/stress2/misc/tmpfs4.sh Modified: user/pho/stress2/misc/tmpfs.sh ============================================================================== --- user/pho/stress2/misc/tmpfs.sh Thu Dec 5 17:23:19 2013 (r258992) +++ user/pho/stress2/misc/tmpfs.sh Thu Dec 5 17:50:18 2013 (r258993) @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: nfs.sh,v 1.2 2008/02/25 16:31:43 pho Exp $ +# $FreeBSD$ # # panic: tmpfs_alloc_vp: type 0xc866ce58 0, seen. @@ -42,5 +42,6 @@ export runRUNTIME=10m # Run t (cd ..; ./run.sh marcus.cfg) -umount $mntpoint -mount | grep "$mntpoint" | grep -q tmpfs && umount -f $mntpoint +while mount | grep $mntpoint | grep -q tmpfs; do + umount $mntpoint || sleep 1 +done Modified: user/pho/stress2/misc/tmpfs3.sh ============================================================================== --- user/pho/stress2/misc/tmpfs3.sh Thu Dec 5 17:23:19 2013 (r258992) +++ user/pho/stress2/misc/tmpfs3.sh Thu Dec 5 17:50:18 2013 (r258993) @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: nfs.sh,v 1.2 2008/02/25 16:31:43 pho Exp $ +# $FreeBSD$ # # panic: tmpfs_alloc_vp: type 0xc866ce58 0, seen. Modified: user/pho/stress2/misc/tmpfs4.sh ============================================================================== --- user/pho/stress2/misc/tmpfs4.sh Thu Dec 5 17:23:19 2013 (r258992) +++ user/pho/stress2/misc/tmpfs4.sh Thu Dec 5 17:50:18 2013 (r258993) @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: nfs.sh,v 1.2 2008/02/25 16:31:43 pho Exp $ +# $FreeBSD$ # # Regression test from kern/122038 by gprspb mail ru