From owner-svn-src-user@freebsd.org Thu Sep 17 08:54:51 2015 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 4AAF09CEC4B for ; Thu, 17 Sep 2015 08:54:51 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org (repo.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 3C486149D; Thu, 17 Sep 2015 08:54:51 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8H8spc4090124; Thu, 17 Sep 2015 08:54:51 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8H8soWg090118; Thu, 17 Sep 2015 08:54:50 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201509170854.t8H8soWg090118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Thu, 17 Sep 2015 08:54:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r287910 - 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.20 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, 17 Sep 2015 08:54:51 -0000 Author: pho Date: Thu Sep 17 08:54:49 2015 New Revision: 287910 URL: https://svnweb.freebsd.org/changeset/base/287910 Log: The combination of SUJ and NULLFS(5) has known issues. Skip tests until this is resolved. Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/nullfs2.sh user/pho/stress2/misc/nullfs3.sh user/pho/stress2/misc/nullfs5.sh user/pho/stress2/misc/nullfs7.sh Modified: user/pho/stress2/misc/nullfs2.sh ============================================================================== --- user/pho/stress2/misc/nullfs2.sh Thu Sep 17 07:04:15 2015 (r287909) +++ user/pho/stress2/misc/nullfs2.sh Thu Sep 17 08:54:49 2015 (r287910) @@ -38,6 +38,11 @@ . ../default.cfg +# NULLFS(5) and SUJ has known issues. +mount | grep "on `df $RUNDIR | sed '1d;s/.* //'` " | \ + grep -q "journaled soft-updates" && + { echo "Skipping test due to SUJ."; exit 0; } + mount | grep -q "on $mntpoint " && umount -f $mntpoint mount -t nullfs $RUNDIR $mntpoint Modified: user/pho/stress2/misc/nullfs3.sh ============================================================================== --- user/pho/stress2/misc/nullfs3.sh Thu Sep 17 07:04:15 2015 (r287909) +++ user/pho/stress2/misc/nullfs3.sh Thu Sep 17 08:54:49 2015 (r287910) @@ -36,6 +36,11 @@ . ../default.cfg +# NULLFS(5) and SUJ has known issues. +mount | grep "on `df $RUNDIR | sed '1d;s/.* //'` " | \ + grep -q "journaled soft-updates" && + { echo "Skipping test due to SUJ."; exit 0; } + [ -d $RUNDIR/stressX ] || mkdir -p $RUNDIR/stressX mp=$mntpoint Modified: user/pho/stress2/misc/nullfs5.sh ============================================================================== --- user/pho/stress2/misc/nullfs5.sh Thu Sep 17 07:04:15 2015 (r287909) +++ user/pho/stress2/misc/nullfs5.sh Thu Sep 17 08:54:49 2015 (r287910) @@ -28,15 +28,26 @@ # $FreeBSD$ # -# Composit test: nullfs2.sh + kinfo.sh +# Composite test: nullfs2.sh + kinfo.sh # Kernel page fault with the following non-sleepable locks held from # nullfs/null_vnops.c:531 +# Fatal trap 12: page fault while in kernel mode +# https://people.freebsd.org/~pho/stress/log/jeff106.txt + +# panic: vholdl: inactive held vnode: +# https://people.freebsd.org/~pho/stress/log/kostik815.txt + [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 . ../default.cfg +# NULLFS(5) and SUJ has known issues. +mount | grep "on `df $RUNDIR | sed '1d;s/.* //'` " | \ + grep -q "journaled soft-updates" && + { echo "Skipping test due to SUJ."; exit 0; } + odir=`pwd` cd /tmp sed '1,/^EOF/d;s/60/600/' < $odir/kinfo.sh > kinfo.c @@ -62,7 +73,5 @@ umount $mntpoint 2>&1 | grep -v busy mount | grep -q $mntpoint && umount -f $mntpoint -for j in `jot 5`; do - wait -done +wait rm -f /tmp/kinfo Modified: user/pho/stress2/misc/nullfs7.sh ============================================================================== --- user/pho/stress2/misc/nullfs7.sh Thu Sep 17 07:04:15 2015 (r287909) +++ user/pho/stress2/misc/nullfs7.sh Thu Sep 17 08:54:49 2015 (r287910) @@ -36,6 +36,11 @@ . ../default.cfg +# NULLFS(5) and SUJ has known issues. +mount | grep "on `df $RUNDIR | sed '1d;s/.* //'` " | \ + grep -q "journaled soft-updates" && + { echo "Skipping test due to SUJ."; exit 0; } + mount | grep $mntpoint | grep -q /dev/md && umount -f $mntpoint mdconfig -l | grep -q md$mdstart && mdconfig -d -u $mdstart