Date: Thu, 21 Feb 2013 21:47:36 +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: r247135 - head/sys/dev/ath Message-ID: <201302212147.r1LLla0k084720@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302212147.r1LLla0k084720>