svn commit: r342713 - stable/12/sys/net80211

Andriy Voskoboinyk avos at FreeBSD.org
Thu Jan 3 02:59:14 UTC 2019


Author: avos
Date: Thu Jan  3 02:59:12 2019
New Revision: 342713
URL: https://svnweb.freebsd.org/changeset/base/342713

Log:
  MFC r342604:
  net80211: fix duplicate sequence number bump for non-AMPDU QoS frames.
  
  This should be a part of r312972.

Modified:
  stable/12/sys/net80211/ieee80211_output.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/net80211/ieee80211_output.c
==============================================================================
--- stable/12/sys/net80211/ieee80211_output.c	Thu Jan  3 01:39:22 2019	(r342712)
+++ stable/12/sys/net80211/ieee80211_output.c	Thu Jan  3 02:59:12 2019	(r342713)
@@ -1698,7 +1698,6 @@ ieee80211_encap(struct ieee80211vap *vap, struct ieee8
 			 * capability; this may also change when we pull
 			 * aggregation up into net80211
 			 */
-			seqno = ni->ni_txseqs[tid]++;
 			*(uint16_t *)wh->i_seq =
 			    htole16(seqno << IEEE80211_SEQ_SEQ_SHIFT);
 			M_SEQNO_SET(m, seqno);


More information about the svn-src-all mailing list