PERFORCE change 127301 for review

Kevin Lo kevlo at FreeBSD.org
Mon Oct 8 01:12:40 PDT 2007


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

Change 127301 by kevlo at kevlo_rtsl on 2007/10/08 08:11:39

	Forgot to destroy mutex in bwi_detach().

Affected files ...

.. //depot/projects/wifi/sys/dev/bwi/if_bwi.c#5 edit

Differences ...

==== //depot/projects/wifi/sys/dev/bwi/if_bwi.c#5 (text+ko) ====

@@ -482,7 +482,9 @@
 	bwi_dma_free(sc);
 	if_free(ifp);
 
-	return 0;
+	BWI_LOCK_DESTROY(sc);
+
+	return (0);
 }
 
 void


More information about the p4-projects mailing list