svn commit: r343292 - head/sys/dev/iwn

Andriy Voskoboinyk avos at FreeBSD.org
Tue Jan 22 01:44:48 UTC 2019


Author: avos
Date: Tue Jan 22 01:44:47 2019
New Revision: 343292
URL: https://svnweb.freebsd.org/changeset/base/343292

Log:
  iwn(4): drop i_seq field initialization for A-MPDU frames.
  
  It is done by net80211 since r319460.
  
  MFC after:	24 days
  X-MFC-With:	343094

Modified:
  head/sys/dev/iwn/if_iwn.c

Modified: head/sys/dev/iwn/if_iwn.c
==============================================================================
--- head/sys/dev/iwn/if_iwn.c	Tue Jan 22 01:11:17 2019	(r343291)
+++ head/sys/dev/iwn/if_iwn.c	Tue Jan 22 01:44:47 2019	(r343292)
@@ -4587,10 +4587,6 @@ iwn_tx_data(struct iwn_softc *sc, struct mbuf *m, stru
 		if (!IEEE80211_AMPDU_RUNNING(tap))
 			return (EINVAL);
 
-		/* NB: clear Fragment Number field. */
-		/* XXX move this to net80211 */
-		*(uint16_t *)wh->i_seq = 0;
-
 		ac = *(int *)tap->txa_private;
 	}
 


More information about the svn-src-all mailing list