PERFORCE change 149918 for review

Sam Leffler sam at FreeBSD.org
Tue Sep 16 22:26:43 UTC 2008


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

Change 149918 by sam at sam_ebb on 2008/09/16 22:25:47

	fix clone destruction; can't use the simple api because that
	does not remove the ifnet from cloner's list; use the newly
	exposed if_clone_destroyif api to do this

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_freebsd.c#34 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_freebsd.c#34 (text+ko) ====

@@ -152,7 +152,7 @@
 void
 ieee80211_vap_destroy(struct ieee80211vap *vap)
 {
-	ifc_simple_destroy(&wlan_cloner, vap->iv_ifp);
+	if_clone_destroyif(&wlan_cloner, vap->iv_ifp);
 }
 
 static int


More information about the p4-projects mailing list