Author: adrian
Date: Mon Jun 11 07:31:50 2012
New Revision: 236878
URL: http://svn.freebsd.org/changeset/base/236878

Log:
  Make sure the frames are queued to the head of the list, not the tail.
  See previous commit.
  
  PR:           kern/166190

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

Modified: head/sys/dev/ath/if_ath_tx.c
==============================================================================
--- head/sys/dev/ath/if_ath_tx.c        Mon Jun 11 07:29:25 2012        
(r236877)
+++ head/sys/dev/ath/if_ath_tx.c        Mon Jun 11 07:31:50 2012        
(r236878)
@@ -2318,7 +2318,7 @@ ath_tx_xmit_aggr(struct ath_softc *sc, s
        if (bf->bf_state.bfs_dobaw &&
            (! BAW_WITHIN(tap->txa_start, tap->txa_wnd,
            SEQNO(bf->bf_state.bfs_seqno)))) {
-               ATH_TXQ_INSERT_TAIL(tid, bf, bf_list);
+               ATH_TXQ_INSERT_HEAD(tid, bf, bf_list);
                ath_tx_tid_sched(sc, tid);
                return;
        }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to