Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Sep 2012 04:11:43 +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: r240333 - head/sys/dev/ath
Message-ID:  <201209110411.q8B4BhCA074521@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Tue Sep 11 04:11:42 2012
New Revision: 240333
URL: http://svn.freebsd.org/changeset/base/240333

Log:
  Clear the correct descriptor when going through the chained together
  gather DMA descriptor list.
  
  Pointy hat to: adrian@, for even USING bf->bf_desc here instead of 'ds'.

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	Tue Sep 11 03:02:40 2012	(r240332)
+++ head/sys/dev/ath/if_ath_tx.c	Tue Sep 11 04:11:42 2012	(r240333)
@@ -380,7 +380,7 @@ ath_tx_chaindesclist(struct ath_softc *s
 
 		/* Make sure the 11n aggregate fields are cleared */
 		if (ath_tx_is_11n(sc))
-			ath_hal_clr11n_aggr(sc->sc_ah, bf->bf_desc);
+			ath_hal_clr11n_aggr(sc->sc_ah, (struct ath_desc *) ds);
 
 		isFirstDesc = 0;
 #ifdef	ATH_DEBUG



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209110411.q8B4BhCA074521>