Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Apr 2016 01:52:06 +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: r298761 - head/sys/dev/ath
Message-ID:  <201604290152.u3T1q6Jt068890@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



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