svn commit: r297379 - user/pho/stress2/misc

Peter Holm pho at FreeBSD.org
Tue Mar 29 10:25:03 UTC 2016


Author: pho
Date: Tue Mar 29 10:25:01 2016
New Revision: 297379
URL: https://svnweb.freebsd.org/changeset/base/297379

Log:
  Added missing wait(2) and added finding.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  user/pho/stress2/misc/cluster.sh

Modified: user/pho/stress2/misc/cluster.sh
==============================================================================
--- user/pho/stress2/misc/cluster.sh	Tue Mar 29 10:22:00 2016	(r297378)
+++ user/pho/stress2/misc/cluster.sh	Tue Mar 29 10:25:01 2016	(r297379)
@@ -30,6 +30,9 @@
 
 # Open four (sparse) files for random read and write.
 
+# "panic: softdep_deallocate_dependencies: dangling deps" seen:
+# https://people.freebsd.org/~pho/stress/log/kirk075.txt
+
 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
 
 . ../default.cfg
@@ -253,7 +256,7 @@ main(int argc, char *argv[])
 	test(rd);
 	test(tr);
 	test(mv);
-	for (i = 0; i < 3; i++)
+	for (i = 0; i < 4; i++)
 		if (wait(NULL) == -1)
 			err(1, "wait");
 


More information about the svn-src-user mailing list