From owner-svn-src-user@FreeBSD.ORG Fri Sep 26 06:41:34 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C4B1A63; Fri, 26 Sep 2014 06:41:34 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38526341; Fri, 26 Sep 2014 06:41:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8Q6fYf0074589; Fri, 26 Sep 2014 06:41:34 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8Q6fX22074587; Fri, 26 Sep 2014 06:41:33 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201409260641.s8Q6fX22074587@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Fri, 26 Sep 2014 06:41:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r272156 - 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.18-1 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: Fri, 26 Sep 2014 06:41:34 -0000 Author: pho Date: Fri Sep 26 06:41:33 2014 New Revision: 272156 URL: http://svnweb.freebsd.org/changeset/base/272156 Log: Simplify page stealer cleanup. Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/mmap5.sh user/pho/stress2/misc/mmap6.sh Modified: user/pho/stress2/misc/mmap5.sh ============================================================================== --- user/pho/stress2/misc/mmap5.sh Fri Sep 26 06:02:35 2014 (r272155) +++ user/pho/stress2/misc/mmap5.sh Fri Sep 26 06:41:33 2014 (r272156) @@ -44,10 +44,9 @@ cp /tmp/mmap5 /tmp/mmap5.inputfile (cd ../testcases/swap; ./swap -t 1m -i 2) & cp /tmp/mmap5 /tmp/mmap5.inputfile /tmp/mmap5 /tmp/mmap5.inputfile -while ps auxww | grep -v grep | grep -qw swap; do - killall -9 swap 2>/dev/null +while killall -9 swap; do sleep .1 -done +done > /dev/null 2>&1 wait rm -f /tmp/mmap5 /tmp/mmap5.inputfile exit Modified: user/pho/stress2/misc/mmap6.sh ============================================================================== --- user/pho/stress2/misc/mmap6.sh Fri Sep 26 06:02:35 2014 (r272155) +++ user/pho/stress2/misc/mmap6.sh Fri Sep 26 06:41:33 2014 (r272156) @@ -43,10 +43,9 @@ cp /tmp/mmap6 /tmp/mmap6.inputfile (cd ../testcases/swap; ./swap -t 1m -i 2) & cp /tmp/mmap6 /tmp/mmap6.inputfile /tmp/mmap6 /tmp/mmap6.inputfile -while ps auxww | grep -v grep | grep -qw swap; do - killall -9 swap 2>/dev/null +while killall -9 swap; do sleep .1 -done +done > /dev/null 2>&1 wait rm -f /tmp/mmap6 /tmp/mmap6.inputfile exit