Lines Matching refs:txq
624 static void print_queue(struct ath_softc *sc, struct ath_txq *txq, in print_queue() argument
627 ath_txq_lock(sc, txq); in print_queue()
629 seq_printf(file, "%s: %d ", "qnum", txq->axq_qnum); in print_queue()
630 seq_printf(file, "%s: %2d ", "qdepth", txq->axq_depth); in print_queue()
631 seq_printf(file, "%s: %2d ", "ampdu-depth", txq->axq_ampdu_depth); in print_queue()
632 seq_printf(file, "%s: %3d ", "pending", txq->pending_frames); in print_queue()
633 seq_printf(file, "%s: %d\n", "stopped", txq->stopped); in print_queue()
635 ath_txq_unlock(sc, txq); in print_queue()
642 struct ath_txq *txq; in read_file_queues() local
649 txq = sc->tx.txq_map[i]; in read_file_queues()
651 print_queue(sc, txq, file); in read_file_queues()
783 struct ath_tx_status *ts, struct ath_txq *txq, in ath_debug_stat_tx() argument
786 int qnum = txq->axq_qnum; in ath_debug_stat_tx()