Date: Mon, 11 Jun 2012 07:31:51 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r236878 - head/sys/dev/ath Message-ID: <201206110731.q5B7VpOc050430@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206110731.q5B7VpOc050430>