Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Mar 2013 05:44:03 +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: r248543 - head/sys/dev/ath
Message-ID:  <201303200544.r2K5i3PZ001542@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Wed Mar 20 05:44:03 2013
New Revision: 248543
URL: http://svnweb.freebsd.org/changeset/base/248543

Log:
  Fix the EDMA CABQ handling - for now, the CABQ takes a descriptor chain
  like the legacy chips expect.

Modified:
  head/sys/dev/ath/if_ath_tx_edma.c

Modified: head/sys/dev/ath/if_ath_tx_edma.c
==============================================================================
--- head/sys/dev/ath/if_ath_tx_edma.c	Wed Mar 20 05:31:34 2013	(r248542)
+++ head/sys/dev/ath/if_ath_tx_edma.c	Wed Mar 20 05:44:03 2013	(r248543)
@@ -267,6 +267,9 @@ ath_edma_xmit_handoff_mcast(struct ath_s
 		/* sync descriptor to memory */
 		bus_dmamap_sync(sc->sc_dmat, bf_last->bf_dmamap,
 		   BUS_DMASYNC_PREWRITE);
+
+		/* link descriptor */
+		*txq->axq_link = bf->bf_daddr;
 	}
 
 #ifdef	ATH_DEBUG_ALQ



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