PERFORCE change 112916 for review

Kip Macy kmacy at FreeBSD.org
Mon Jan 15 00:05:14 UTC 2007


http://perforce.freebsd.org/chv.cgi?CH=112916

Change 112916 by kmacy at kmacy_serendipity:sam_wifi on 2007/01/15 00:04:17

	ensure that the ic lock is acquired before the driver softc lock
	enroll them in the proper order in WITNESS

Affected files ...

.. //depot/projects/wifi/sys/kern/subr_witness.c#20 edit

Differences ...

==== //depot/projects/wifi/sys/kern/subr_witness.c#20 (text+ko) ====

@@ -361,6 +361,18 @@
 	{ "nfsd_mtx", &lock_class_mtx_sleep },
 	{ "so_snd", &lock_class_mtx_sleep },
 	{ NULL, NULL },
+
+	/*
+	 * IEEE 802.11
+	 */
+	{ "802.11 com lock", &lock_class_mtx_sleep},
+	{ NULL, NULL },
+	/*
+	 * Network drivers
+	 */
+	{ "network driver", &lock_class_mtx_sleep},
+	{ NULL, NULL },
+
 	/*
 	 * CDEV
 	 */


More information about the p4-projects mailing list