svn commit: r192183 - user/kmacy/ZFS_MFC/sys/kern

Kip Macy kmacy at FreeBSD.org
Sat May 16 04:25:13 UTC 2009


Author: kmacy
Date: Sat May 16 04:25:12 2009
New Revision: 192183
URL: http://svn.freebsd.org/changeset/base/192183

Log:
  add dirty record to dbuf lock order

Modified:
  user/kmacy/ZFS_MFC/sys/kern/subr_witness.c

Modified: user/kmacy/ZFS_MFC/sys/kern/subr_witness.c
==============================================================================
--- user/kmacy/ZFS_MFC/sys/kern/subr_witness.c	Sat May 16 03:47:48 2009	(r192182)
+++ user/kmacy/ZFS_MFC/sys/kern/subr_witness.c	Sat May 16 04:25:12 2009	(r192183)
@@ -397,6 +397,12 @@ static struct witness_order_list_entry o
 	{ "vnode interlock", &lock_class_mtx_sleep },
 	{ NULL, NULL },
 	/*
+	 * ZFS locking
+	 */
+	{ "dr->dt.di.dr_mtx", &lock_class_sx },
+	{ "db->db_mtx", &lock_class_sx },
+	{ NULL, NULL },
+	/*
 	 * spin locks
 	 */
 #ifdef SMP


More information about the svn-src-user mailing list