Make sure the frames are queued to the head of the list, not the tail.

See previous commit.

PR:		kern/166190
This commit is contained in:
adrian 2012-06-11 07:31:50 +00:00
parent d2da34afea
commit 932f2b787a

View File

@ -2318,7 +2318,7 @@ ath_tx_xmit_aggr(struct ath_softc *sc, struct ath_node *an, struct ath_buf *bf)
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;
}