kern/166190: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Mon Jun 11 07:40:08 UTC 2012


The following reply was made to PR kern/166190; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/166190: commit references a PR
Date: Mon, 11 Jun 2012 07:32:08 +0000 (UTC)

 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-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-wireless mailing list