Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Sep 2008 22:26:42 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 149918 for review
Message-ID:  <200809162226.m8GMQgE6060019@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=149918

Change 149918 by sam@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200809162226.m8GMQgE6060019>