svn commit: r206879 - head/sys/kern

Attilio Rao attilio at FreeBSD.org
Mon Apr 19 23:40:46 UTC 2010


Author: attilio
Date: Mon Apr 19 23:40:46 2010
New Revision: 206879
URL: http://svn.freebsd.org/changeset/base/206879

Log:
  getblk lockmgr is mostly used as a msleep() and may lead too easilly to
  false positives.
  Whitelist it.
  
  Reported by:	Erik Cederstrand <erik at cederstrand dot dk>

Modified:
  head/sys/kern/kern_clock.c

Modified: head/sys/kern/kern_clock.c
==============================================================================
--- head/sys/kern/kern_clock.c	Mon Apr 19 23:27:54 2010	(r206878)
+++ head/sys/kern/kern_clock.c	Mon Apr 19 23:40:46 2010	(r206879)
@@ -163,6 +163,7 @@ SYSCTL_PROC(_kern, OID_AUTO, cp_times, C
 
 #ifdef DEADLKRES
 static const char *blessed[] = {
+	"getblk",
 	"so_snd_sx",
 	"so_rcv_sx",
 	NULL


More information about the svn-src-all mailing list