Lines Matching full:bf

99 ath_printrxbuf(struct ath_softc *sc, const struct ath_buf *bf,  in ath_printrxbuf()  argument
102 const struct ath_rx_status *rs = &bf->bf_status.ds_rxstat; in ath_printrxbuf()
107 for (i = 0, ds = bf->bf_desc; i < bf->bf_nseg; i++, ds++) { in ath_printrxbuf()
110 ix, ds, (const struct ath_desc *)bf->bf_daddr + i, in ath_printrxbuf()
140 const struct ath_buf *bf = first_bf; in ath_printtxbuf_edma() local
145 printf("Q%u[%3u] (nseg=%d)", qnum, ix, bf->bf_nseg); in ath_printtxbuf_edma()
146 while (bf != NULL) { in ath_printtxbuf_edma()
155 n = ((bf->bf_nseg - 1) / 4) + 1; in ath_printtxbuf_edma()
157 for (i = 0, ds = (const char *) bf->bf_desc; in ath_printtxbuf_edma()
162 eds, (const struct ath_desc *)bf->bf_daddr + i, in ath_printtxbuf_edma()
164 bf->bf_state.bfs_txflags, in ath_printtxbuf_edma()
173 bf->bf_state.bfs_seqno, in ath_printtxbuf_edma()
174 bf->bf_state.bfs_retries, in ath_printtxbuf_edma()
175 bf->bf_state.bfs_addedbaw, in ath_printtxbuf_edma()
176 bf->bf_state.bfs_dobaw); in ath_printtxbuf_edma()
193 bf = bf->bf_next; in ath_printtxbuf_edma()
202 const struct ath_buf *bf = first_bf; in ath_printtxbuf_legacy() local
208 while (bf != NULL) { in ath_printtxbuf_legacy()
209 printf(" (bf=%p, lastds=%p)\n", bf, first_bf->bf_lastds); in ath_printtxbuf_legacy()
211 bf->bf_state.bfs_seqno, in ath_printtxbuf_legacy()
212 bf->bf_state.bfs_retries, in ath_printtxbuf_legacy()
213 bf->bf_state.bfs_addedbaw, in ath_printtxbuf_legacy()
214 bf->bf_state.bfs_dobaw); in ath_printtxbuf_legacy()
215 for (i = 0, ds = bf->bf_desc; i < bf->bf_nseg; i++, ds++) { in ath_printtxbuf_legacy()
217 ds, (const struct ath_desc *)bf->bf_daddr + i, in ath_printtxbuf_legacy()
218 ds->ds_link, ds->ds_data, bf->bf_state.bfs_txflags, in ath_printtxbuf_legacy()
236 bf = bf->bf_next; in ath_printtxbuf_legacy()