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

Adrian Chadd adrian at FreeBSD.org
Fri Apr 29 01:52:07 UTC 2016


Author: adrian
Date: Fri Apr 29 01:52:06 2016
New Revision: 298761
URL: https://svnweb.freebsd.org/changeset/base/298761

Log:
  [ath] turn the BA hardware bug back into a printf().
  
  I saw this happen a couple of times and all I saw was a dump of the
  transmit descriptors.  Log the message for now so I can see whta happened.

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	Fri Apr 29 01:51:27 2016	(r298760)
+++ head/sys/dev/ath/if_ath_tx.c	Fri Apr 29 01:52:06 2016	(r298761)
@@ -4876,7 +4876,7 @@ ath_tx_aggr_comp_aggr(struct ath_softc *
 
 	/* AR5416 BA bug; this requires an interface reset */
 	if (isaggr && tx_ok && (! hasba)) {
-		DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
+		device_printf(sc->sc_dev,
 		    "%s: AR5416 bug: hasba=%d; txok=%d, isaggr=%d, "
 		    "seq_st=%d\n",
 		    __func__, hasba, tx_ok, isaggr, seq_st);


More information about the svn-src-head mailing list