svn commit: r224890 - user/adrian/if_ath_tx/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Mon Aug 15 16:06:29 UTC 2011


Author: adrian
Date: Mon Aug 15 16:06:28 2011
New Revision: 224890
URL: http://svn.freebsd.org/changeset/base/224890

Log:
  This needs to be fixed too - status=0 means "success".

Modified:
  user/adrian/if_ath_tx/sys/net80211/ieee80211_ht.c

Modified: user/adrian/if_ath_tx/sys/net80211/ieee80211_ht.c
==============================================================================
--- user/adrian/if_ath_tx/sys/net80211/ieee80211_ht.c	Mon Aug 15 15:26:36 2011	(r224889)
+++ user/adrian/if_ath_tx/sys/net80211/ieee80211_ht.c	Mon Aug 15 16:06:28 2011	(r224890)
@@ -2212,7 +2212,7 @@ ieee80211_bar_response(struct ieee80211_
 	struct ieee80211_tx_ampdu *tap, int status)
 {
 
-	if (status != 0) {		/* got ACK */
+	if (status == 0) {		/* got ACK */
 		IEEE80211_NOTE(ni->ni_vap, IEEE80211_MSG_11N,
 		    ni, "BAR moves BA win <%u:%u> (%u frames) txseq %u tid %u",
 		    tap->txa_start,


More information about the svn-src-user mailing list