Lines Matching defs:aq_txring
1219 struct aq_txring { struct
1220 struct aq_softc *txr_sc;
1221 int txr_index;
1222 kmutex_t txr_mutex;
1223 bool txr_active;
1224 bool txr_stopping;
1225 bool txr_sending;
1226 time_t txr_lastsent;
1228 pcq_t *txr_pcq;
1229 void *txr_softint;
1231 aq_tx_desc_t *txr_txdesc; /* aq_tx_desc_t[AQ_TXD_NUM] */
1232 bus_dmamap_t txr_txdesc_dmamap;
1233 bus_dma_segment_t txr_txdesc_seg[1];
1234 bus_size_t txr_txdesc_size;
1236 struct {
1239 } txr_mbufs[AQ_TXD_NUM];
1240 unsigned int txr_prodidx;
1241 unsigned int txr_considx;
1242 int txr_nfree;