Author: adrian
Date: Sat Jan 21 06:53:30 2017
New Revision: 312562
URL: https://svnweb.freebsd.org/changeset/base/312562

Log:
  [ath] ensure both iv_ampdu_limit and iv_ampdu_rxmax is set.
  
  A recent change enforced the VAP limit as well as the peer limit.
  I now need to actually set iv_ampdu_limit or we don't transmit more
  than 8K sized aggregates.
  
  This restores the expected (suboptimal, but still much faster) behaviour.
  
  Tested:
  
  * AR9380, STA mode

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c   Sat Jan 21 06:48:52 2017        (r312561)
+++ head/sys/dev/ath/if_ath.c   Sat Jan 21 06:53:30 2017        (r312562)
@@ -1638,6 +1638,7 @@ ath_vap_create(struct ieee80211com *ic, 
         * However, for now that's enforced by the TX path.
         */
        vap->iv_ampdu_rxmax = IEEE80211_HTCAP_MAXRXAMPDU_64K;
+       vap->iv_ampdu_limit = IEEE80211_HTCAP_MAXRXAMPDU_64K;
 
        avp->av_bslot = -1;
        if (needbeacon) {
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to