Date: Tue, 31 Jan 2017 20:57:40 +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: r313026 - head/sys/dev/ath Message-ID: <201701312057.v0VKvehU073636@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Tue Jan 31 20:57:40 2017 New Revision: 313026 URL: https://svnweb.freebsd.org/changeset/base/313026 Log: [ath] log seqno, type and subtype when assigning sequence numbers for A-MPDU. This is just to improve adrian-debugging. 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 Tue Jan 31 20:13:50 2017 (r313025) +++ head/sys/dev/ath/if_ath_tx.c Tue Jan 31 20:57:40 2017 (r313026) @@ -2979,7 +2979,9 @@ ath_tx_tid_seqno_assign(struct ath_softc M_SEQNO_SET(m0, seqno); /* Return so caller can do something with it if needed */ - DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: -> seqno=%d\n", __func__, seqno); + DPRINTF(sc, ATH_DEBUG_SW_TX, + "%s: -> subtype=0x%x, tid=%d, seqno=%d\n", + __func__, subtype, tid, seqno); return seqno; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701312057.v0VKvehU073636>