From owner-svn-src-user@freebsd.org Wed Jun 22 11:38:27 2016 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 880E2AC5EC1 for ; Wed, 22 Jun 2016 11:38:27 +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 mx1.freebsd.org (Postfix) with ESMTPS id 551571866; Wed, 22 Jun 2016 11:38:27 +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 u5MBcQJP075038; Wed, 22 Jun 2016 11:38:26 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MBcQOK075037; Wed, 22 Jun 2016 11:38:26 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201606221138.u5MBcQOK075037@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Wed, 22 Jun 2016 11:38:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r302082 - 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.22 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: Wed, 22 Jun 2016 11:38:27 -0000 Author: pho Date: Wed Jun 22 11:38:26 2016 New Revision: 302082 URL: https://svnweb.freebsd.org/changeset/base/302082 Log: Do not filter on type in find(1). Sponsored by: EMC / Isilon Storage Division Modified: user/pho/stress2/misc/devfs.sh Modified: user/pho/stress2/misc/devfs.sh ============================================================================== --- user/pho/stress2/misc/devfs.sh Wed Jun 22 11:29:21 2016 (r302081) +++ user/pho/stress2/misc/devfs.sh Wed Jun 22 11:38:26 2016 (r302082) @@ -51,7 +51,7 @@ if [ $# -eq 0 ]; then else if [ $1 = find ]; then while [ -r $cont ]; do - find ${mntpoint}* -maxdepth 1 -type f > /dev/null 2>&1 + find ${mntpoint}* > /dev/null 2>&1 done else