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