From owner-svn-src-user@freebsd.org Mon Feb 4 08:30:31 2019 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AEA314C31AB for ; Mon, 4 Feb 2019 08:30:31 +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 9E80673005; Mon, 4 Feb 2019 08:30:30 +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 91C0A3517; Mon, 4 Feb 2019 08:30:30 +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 x148UUKc070355; Mon, 4 Feb 2019 08:30:30 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x148UUWt070352; Mon, 4 Feb 2019 08:30:30 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201902040830.x148UUWt070352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Mon, 4 Feb 2019 08:30:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r343733 - 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: 343733 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9E80673005 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Mon, 04 Feb 2019 08:30:31 -0000 Author: pho Date: Mon Feb 4 08:30:29 2019 New Revision: 343733 URL: https://svnweb.freebsd.org/changeset/base/343733 Log: Remove the incorrect check for "ufs extended attribute". Reported by: cem@ Modified: user/pho/stress2/misc/extattr.sh user/pho/stress2/misc/extattr2.sh user/pho/stress2/misc/extattr_set_fd.sh Modified: user/pho/stress2/misc/extattr.sh ============================================================================== --- user/pho/stress2/misc/extattr.sh Mon Feb 4 05:37:16 2019 (r343732) +++ user/pho/stress2/misc/extattr.sh Mon Feb 4 08:30:29 2019 (r343733) @@ -34,7 +34,6 @@ [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 . ../default.cfg -[ "`sysctl -in kern.features.ufs_extattr`" != "1" ] && exit 0 [ -z "`which setfacl`" ] && exit 0 odir=`pwd` Modified: user/pho/stress2/misc/extattr2.sh ============================================================================== --- user/pho/stress2/misc/extattr2.sh Mon Feb 4 05:37:16 2019 (r343732) +++ user/pho/stress2/misc/extattr2.sh Mon Feb 4 08:30:29 2019 (r343733) @@ -34,11 +34,12 @@ # "panic: softdep_deallocate_dependencies: dangling deps" seen: # https://people.freebsd.org/~pho/stress/log/kostik1121.txt # Fixed in r343536. +# "panic: ffs_truncate3" seen: +# https://people.freebsd.org/~pho/stress/log/extattr2.txt [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 . ../default.cfg -[ "`sysctl -in kern.features.ufs_extattr`" != "1" ] && exit 0 [ -z "`which setfacl`" ] && exit 0 here=`pwd` Modified: user/pho/stress2/misc/extattr_set_fd.sh ============================================================================== --- user/pho/stress2/misc/extattr_set_fd.sh Mon Feb 4 05:37:16 2019 (r343732) +++ user/pho/stress2/misc/extattr_set_fd.sh Mon Feb 4 08:30:29 2019 (r343733) @@ -34,7 +34,6 @@ [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 . ../default.cfg -[ "`sysctl -in kern.features.ufs_extattr`" != "1" ] && exit 0 [ -z "`which setfacl`" ] && exit 0 here=`pwd` From owner-svn-src-user@freebsd.org Mon Feb 4 09:08:37 2019 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2464914C4279 for ; Mon, 4 Feb 2019 09:08:37 +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 B5920748AE; Mon, 4 Feb 2019 09:08:36 +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 8A3843E07; Mon, 4 Feb 2019 09:08:36 +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 x1498al6090963; Mon, 4 Feb 2019 09:08:36 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1498aol090962; Mon, 4 Feb 2019 09:08:36 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201902040908.x1498aol090962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Mon, 4 Feb 2019 09:08:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r343736 - 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: 343736 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B5920748AE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Mon, 04 Feb 2019 09:08:37 -0000 Author: pho Date: Mon Feb 4 09:08:36 2019 New Revision: 343736 URL: https://svnweb.freebsd.org/changeset/base/343736 Log: Update the exclude list, start leak monitoring and enable the optional use of timeout(1). Sponsored by: Dell EMC Isilon Modified: user/pho/stress2/misc/all.sh Modified: user/pho/stress2/misc/all.sh ============================================================================== --- user/pho/stress2/misc/all.sh Mon Feb 4 08:38:02 2019 (r343735) +++ user/pho/stress2/misc/all.sh Mon Feb 4 09:08:36 2019 (r343736) @@ -39,29 +39,44 @@ # panic: 43 vncache entries remaining 20111220 # backingstore3.sh # g_vfs_done():md6a[WRITE(offset=...)]error = 28 20111230 +# buildworld3.sh WiP 20180919 # chain.sh WiP 20171225 +# contigmalloc3.sh panic: Bad link elm 0x6766fbc next->prev != elm 20180318 # crossmp4.sh Known nullfs issue 20150523 +# dev.sh g_access(958) error 6 seen 20180329 +# devfs4.sh WiP 20181031 +# Xextattr2.sh WiP 20180921 +# fdatasync2.sh Deadlock 20180312 +# fdgrowtable.sh Deadlock 20180303 # fsync.sh GEOM_JOURNAL: Cannot suspend file system /mnt 20160818 # fuse.sh Memory corruption seen in log file kostik734.txt 20141114 # fuse2.sh Deadlock seen 20121129 # fuse3.sh Deadlock seen 20141120 # gbde.sh panic: handle_written_inodeblock: Invalid link count... 20131128 +# gjournal2.sh panic: Journal overflow 20180125 # gjournal3.sh panic: Bio not on queue 20171225 +# gjournal4.sh CAM stuck in vmwait 20180517 +# graid1_4.sh umount stuck in mntref r338639 20180921 # graid1_8.sh Known issue 20170909 -# graid1_9.sh WiP 20180108 +# graid1_9.sh panic: Bad effnlink 20180212 +# kevent13.sh panic: mutex pipe mutex not owned at sys_pipe.c:1769 20181118 # lockf5.sh Spinning threads seen 20160718 +# ifconfig.sh WiP 20181029 +# ifconfig2.sh WiP 20181029 # maxvnodes2.sh WiP 20161129 # mdconfig.sh Panic: g_read_data(): invalid length 262144 20161128 # memguard.sh Waiting for fix commit # memguard2.sh Waiting for fix commit # memguard3.sh Waiting for fix commit +# mlockall2.sh Unrecoverable OOM killing seen 20190203 # mmap32.sh Kernel loop 20171118 -# msdos5.sh panic: Freeing unused sector 320185 25 fc000004 20170819 +# newfs4.sh watchdog fired. newbuf 20180618 # nfs10.sh Double fault 20151013 # nfs16.sh panic: Failed to register NFS lock locally - error=11 20160608 -# Xnullfs23.sh panic: Lock (lockmgr) nullfs not locked 20170817 +# oom2.sh Hang in pfault 20180324 # pfl3.sh panic: handle_written_inodeblock: live inodedep 20140812 -# ptrace9.sh WiP +# pageout.sh panic: handle_written_filepage: not started 20180303 +# Xptrace9.sh WiP # quota2.sh panic: dqflush: stray dquot 20120221 # quota3.sh panic: softdep_deallocate_dependencies: unrecovered ... 20111222 # quota6.sh panic: softdep_deallocate_dependencies: unrecovered ... 20130206 @@ -75,16 +90,17 @@ # suj11.sh panic: ufsdirhash_newblk: bad offset 20120118 # suj13.sh general protection fault in bufdaemon 20141130 # suj30.sh panic: flush_pagedep_deps: MKDIR_PARENT 20121020 +# suj31.sh OOM 20180408 # suj34.sh Various hangs and panics (SUJ + NULLFS issue) 20131210 # swap4.sh WiP 20171208 # swapoff2.sh swap_pager_force_pagein: read from swap failed 20171223 +# ucom.sh Stuck in tail -F 20180129 # umountf3.sh KDB: enter: watchdog timeout 20170514 # umountf7.sh panic: handle_written_inodeblock: live inodedep ... 20131129 # umountf9.sh panic: handle_written_inodeblock: live inodedep ... 20170221 # unionfs.sh insmntque: non-locked vp: xx is not exclusive locked... 20130909 # unionfs2.sh insmntque: mp-safe fs and non-locked vp is not ... 20111219 # unionfs3.sh insmntque: mp-safe fs and non-locked vp is not ... 20111216 -# Xzfs3.sh Page fault 20161118 # Test not to run for other reasons: @@ -108,7 +124,7 @@ # suj28.sh # Exclude NFS loopback tests -# nfs2.sh panic: wrong diroffset 20140219 +# nfs2.sh panic: wrong diroffset 20140219 # nfs5.sh # nfs6.sh # nfs11.sh vmwait deadlock 20151004 @@ -193,6 +209,8 @@ su $testuser -c "touch $probe" > /dev/null 2>&1 { echo "No write access to `dirname $RUNDIR`."; exit 1; } [ `swapinfo | wc -l` -eq 1 ] && echo "Consider adding a swap disk. Many tests rely on this." +mount | grep -wq $mntpoint && + echo "\$mntpoint ($mntpoint) is already in use" && exit 1 [ -x ../testcases/run/run ] || (cd ..; make) ping -c 2 -t 2 $BLASTHOST > /dev/null 2>&1 || @@ -200,11 +218,12 @@ ping -c 2 -t 2 $BLASTHOST > /dev/null 2>&1 || echo "$loops" | grep -Eq "^[0-9]+$" || { echo "The -l argument must be a positive number"; exit 1; } -rm -f $alllog $alllist $allelepsed +rm -f $alllist $allelepsed find `dirname $alllast` -maxdepth 1 -name $alllast -mtime +12h -delete touch $alllast $alllog chmod 640 $alllast $alllog find ../testcases -perm -1 \( -name "*.debug" -o -name "*.full" \) -delete +tail -2000 $alllog > ${alllog}.new; mv ${alllog}.new $alllog console=/dev/console printf "\r\n" > $console & @@ -250,6 +269,9 @@ while true; do [ -z "$lst" ] && exit echo "$lst" > $alllist + pgrep -fq vmstat.sh || + daemon ../tools/vmstat.sh > /tmp/stress2.d/vmstat 2>&1 + n1=0 n2=`echo $lst | wc -w | sed 's/ //g'` for i in $lst; do @@ -264,10 +286,12 @@ while true; do logger "Starting test all: $i" [ $all_debug ] && pre_debug [ -f $i ] || loops=1 # break - sync;sync;sync + sync; sleep .5; sync; sleep .5 start=`date '+%s'` ( - ./$i 2>&1 + [ $USE_TIMEOUT ] && + timeout -k 1m 1h ./$i 2>&1 || + ./$i 2>&1 e=$? [ $e -ne 0 ] && echo "FAIL $i exit code $e" @@ -276,6 +300,7 @@ while true; do grep -qw FAIL $alloutput && echo "$ts $i" >> $allfaillog && logger "stress2 test $i failed" + grep -qw FATAL $alloutput && exit $e rm -f $alloutput printf "$ts $rev $i $((`date '+%s'` - start))\n" >> \ $allelapsed From owner-svn-src-user@freebsd.org Mon Feb 4 14:10:32 2019 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7343514D1988 for ; Mon, 4 Feb 2019 14:10:32 +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 1B6CD88DCF; Mon, 4 Feb 2019 14:10:32 +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 00FE870D3; Mon, 4 Feb 2019 14:10:32 +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 x14EAVje050975; Mon, 4 Feb 2019 14:10:31 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x14EAVPt050974; Mon, 4 Feb 2019 14:10:31 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201902041410.x14EAVPt050974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Mon, 4 Feb 2019 14:10:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r343743 - 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: 343743 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1B6CD88DCF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Mon, 04 Feb 2019 14:10:32 -0000 Author: pho Date: Mon Feb 4 14:10:31 2019 New Revision: 343743 URL: https://svnweb.freebsd.org/changeset/base/343743 Log: Added latest finding: OOM killing. Sponsored by: Dell EMC Isilon Modified: user/pho/stress2/misc/chain.sh Modified: user/pho/stress2/misc/chain.sh ============================================================================== --- user/pho/stress2/misc/chain.sh Mon Feb 4 13:30:47 2019 (r343742) +++ user/pho/stress2/misc/chain.sh Mon Feb 4 14:10:31 2019 (r343743) @@ -2,8 +2,13 @@ # Unkillable process in "vm map (user)" seen. # https://people.freebsd.org/~pho/stress/log/kostik1070.txt +# Fixed by: r327468 +# OOM killing: https://people.freebsd.org/~pho/stress/log/chain.txt + # Test scenario by Peter Jeremy + +# $FreeBSD$ if [ ! -f /usr/local/include/libmill.h -o \ ! -x /usr/local/lib/libmill.so ]; then From owner-svn-src-user@freebsd.org Tue Feb 5 08:15:20 2019 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D93A14D4594 for ; Tue, 5 Feb 2019 08:15:20 +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 40CBC94349; Tue, 5 Feb 2019 08:15:20 +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 304321B1FC; Tue, 5 Feb 2019 08:15:20 +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 x158FK59031639; Tue, 5 Feb 2019 08:15:20 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x158FKfQ031638; Tue, 5 Feb 2019 08:15:20 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201902050815.x158FKfQ031638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Tue, 5 Feb 2019 08:15:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r343768 - 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: 343768 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 40CBC94349 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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, 05 Feb 2019 08:15:20 -0000 Author: pho Date: Tue Feb 5 08:15:19 2019 New Revision: 343768 URL: https://svnweb.freebsd.org/changeset/base/343768 Log: PR: 235513 Sponsored by: Dell EMC Isilon Added: user/pho/stress2/misc/devfs4.sh (contents, props changed) Added: user/pho/stress2/misc/devfs4.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/pho/stress2/misc/devfs4.sh Tue Feb 5 08:15:19 2019 (r343768) @@ -0,0 +1,37 @@ +#!/bin/sh + +# +# SPDX-License-Identifier: BSD-2-Clause-FreeBSD +# +# Copyright (c) 2019 Dell EMC Isilon +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# +# $FreeBSD$ +# + +# Bug 235513 - panic: dead bo 0xfffff8000a838b48 +# https://people.freebsd.org/~pho/stress/log/devfs4.txt + +[ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 + +umount -f /dev && mount /dev