Lines Matching defs:igb_tx_ring
233 struct igb_tx_ring { struct
234 struct lwkt_serialize tx_serialize;
235 struct igb_softc *sc;
236 struct ifaltq_subque *ifsq;
237 uint32_t me;
238 int16_t tx_running;
241 uint16_t tx_flags;
244 struct e1000_tx_desc *tx_base;
245 int num_tx_desc;
246 uint32_t next_avail_desc;
247 uint32_t next_to_clean;
248 int tx_avail;
249 int tx_nmbuf;
250 uint32_t *tx_hdr;
251 struct igb_tx_buf *tx_buf;
252 bus_dma_tag_t tx_tag;
253 int tx_nsegs;
254 int intr_nsegs;
255 int wreg_nsegs;
256 int tx_intr_vec;
257 uint32_t tx_intr_mask;
258 struct ifsubq_watchdog tx_watchdog;
259 struct callout tx_gc_timer;
262 u_long tx_packets;
263 u_long tx_gc;
265 struct igb_dma txdma;
266 bus_dma_tag_t tx_hdr_dtag;
267 bus_dmamap_t tx_hdr_dmap;
268 bus_addr_t tx_hdr_paddr;
269 int tx_intr_cpuid;