Lines Matching defs:ixgbe_ring
356 struct ixgbe_ring { struct
357 struct ixgbe_ring *next; /* pointer to next ring in q_vector */ argument
358 struct ixgbe_q_vector *q_vector; /* backpointer to host q_vector */
359 struct net_device *netdev; /* netdev ring belongs to */
360 struct bpf_prog *xdp_prog;
361 struct device *dev; /* device for DMA mapping */
362 void *desc; /* descriptor ring memory */
363 union {
367 unsigned long state;
368 u8 __iomem *tail;
369 dma_addr_t dma; /* phys. address of descriptor ring */
370 unsigned int size; /* length in bytes */
372 u16 count; /* amount of descriptors */
374 u8 queue_index; /* needed for multiqueue queue management */
375 u8 reg_idx; /* holds the special value that gets
380 u16 next_to_use;
381 u16 next_to_clean;
383 unsigned long last_rx_timestamp;
408 enum ixgbe_ring_f_enum { argument