Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 Mar 2008 17:41:49 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 139090 for review
Message-ID:  <200803311741.m2VHfnKs052566@repoman.freebsd.org>

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

Change 139090 by sam@sam_ebb on 2008/03/31 17:41:22

	don't use IFQ_DRV_DEQUEUE until we've sorted out locking
	of the driver-private q

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_output.c#44 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_output.c#44 (text+ko) ====

@@ -132,7 +132,7 @@
 		return;
 	}
 	for (;;) {
-		IFQ_DRV_DEQUEUE(&ifp->if_snd, m);
+		IFQ_DEQUEUE(&ifp->if_snd, m);
 		if (m == NULL)
 			break;
 		/*



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