svn commit: r236878 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Mon Jun 11 07:31:51 UTC 2012


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;
 	}


More information about the svn-src-all mailing list