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

Adrian Chadd adrian at FreeBSD.org
Thu Feb 21 21:47:37 UTC 2013


Author: adrian
Date: Thu Feb 21 21:47:35 2013
New Revision: 247135
URL: http://svnweb.freebsd.org/changeset/base/247135

Log:
  Disable debugging entries about BAW issues.  I haven't seen any issues
  to do with BAW tracking in the last 9 months or so.

Modified:
  head/sys/dev/ath/if_ath.c
  head/sys/dev/ath/if_ath_tx.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Thu Feb 21 21:35:09 2013	(r247134)
+++ head/sys/dev/ath/if_ath.c	Thu Feb 21 21:47:35 2013	(r247135)
@@ -3631,12 +3631,14 @@ ath_tx_default_comp(struct ath_softc *sc
 		st = ((bf->bf_state.bfs_txflags & HAL_TXDESC_NOACK) == 0) ?
 		    ts->ts_status : HAL_TXERR_XRETRY;
 
+#if 0
 	if (bf->bf_state.bfs_dobaw)
 		device_printf(sc->sc_dev,
 		    "%s: bf %p: seqno %d: dobaw should've been cleared!\n",
 		    __func__,
 		    bf,
 		    SEQNO(bf->bf_state.bfs_seqno));
+#endif
 	if (bf->bf_next != NULL)
 		device_printf(sc->sc_dev,
 		    "%s: bf %p: seqno %d: bf_next not NULL!\n",

Modified: head/sys/dev/ath/if_ath_tx.c
==============================================================================
--- head/sys/dev/ath/if_ath_tx.c	Thu Feb 21 21:35:09 2013	(r247134)
+++ head/sys/dev/ath/if_ath_tx.c	Thu Feb 21 21:47:35 2013	(r247135)
@@ -3373,6 +3373,7 @@ ath_tx_tid_drain_pkt(struct ath_softc *s
 			ath_tx_update_baw(sc, an, tid, bf);
 			bf->bf_state.bfs_dobaw = 0;
 		}
+#if 0
 		/*
 		 * This has become a non-fatal error now
 		 */
@@ -3380,6 +3381,7 @@ ath_tx_tid_drain_pkt(struct ath_softc *s
 			device_printf(sc->sc_dev,
 			    "%s: wasn't added: seqno %d\n",
 			    __func__, SEQNO(bf->bf_state.bfs_seqno));
+#endif
 	}
 	TAILQ_INSERT_TAIL(bf_cq, bf, bf_list);
 }


More information about the svn-src-head mailing list