svn commit: r273342 - head/sys/kern

Mark Johnston markj at FreeBSD.org
Mon Oct 20 20:21:41 UTC 2014


Author: markj
Date: Mon Oct 20 20:21:40 2014
New Revision: 273342
URL: https://svnweb.freebsd.org/changeset/base/273342

Log:
  Fix a typo from r189544, which replaced unp_global_rwlock with unp_list_lock
  and unp_link_rwlock.
  
  MFC after:	3 days

Modified:
  head/sys/kern/subr_witness.c

Modified: head/sys/kern/subr_witness.c
==============================================================================
--- head/sys/kern/subr_witness.c	Mon Oct 20 18:58:45 2014	(r273341)
+++ head/sys/kern/subr_witness.c	Mon Oct 20 20:21:40 2014	(r273342)
@@ -528,7 +528,7 @@ static struct witness_order_list_entry o
 	/*
 	 * UNIX Domain Sockets
 	 */
-	{ "unp_global_rwlock", &lock_class_rw },
+	{ "unp_link_rwlock", &lock_class_rw },
 	{ "unp_list_lock", &lock_class_mtx_sleep },
 	{ "unp", &lock_class_mtx_sleep },
 	{ "so_snd", &lock_class_mtx_sleep },


More information about the svn-src-all mailing list