svn commit: r184281 - head/sys/net80211

Sam Leffler sam at FreeBSD.org
Sat Oct 25 17:32:03 PDT 2008


Author: sam
Date: Sun Oct 26 00:32:02 2008
New Revision: 184281
URL: http://svn.freebsd.org/changeset/base/184281

Log:
  fix old merge botch that causes gaps in the tx seq# space for QoS frames

Modified:
  head/sys/net80211/ieee80211_output.c

Modified: head/sys/net80211/ieee80211_output.c
==============================================================================
--- head/sys/net80211/ieee80211_output.c	Sat Oct 25 23:58:59 2008	(r184280)
+++ head/sys/net80211/ieee80211_output.c	Sun Oct 26 00:32:02 2008	(r184281)
@@ -1083,7 +1083,6 @@ ieee80211_encap(struct ieee80211_node *n
 			    htole16(ni->ni_txseqs[tid] << IEEE80211_SEQ_SEQ_SHIFT);
 			ni->ni_txseqs[tid]++;
 		}
-		ni->ni_txseqs[tid]++;
 	} else {
 		*(uint16_t *)wh->i_seq =
 		    htole16(ni->ni_txseqs[IEEE80211_NONQOS_TID] << IEEE80211_SEQ_SEQ_SHIFT);


More information about the svn-src-all mailing list