Lines Matching defs:ixgbe_ring
352 struct ixgbe_ring { struct
353 struct ixgbe_ring *next; /* pointer to next ring in q_vector */ argument
354 struct ixgbe_q_vector *q_vector; /* backpointer to host q_vector */
355 struct net_device *netdev; /* netdev ring belongs to */
356 struct bpf_prog *xdp_prog;
357 struct device *dev; /* device for DMA mapping */
358 void *desc; /* descriptor ring memory */
359 union {
363 unsigned long state;
364 u8 __iomem *tail;
365 dma_addr_t dma; /* phys. address of descriptor ring */
366 unsigned int size; /* length in bytes */
368 u16 count; /* amount of descriptors */
370 u8 queue_index; /* needed for multiqueue queue management */
371 u8 reg_idx; /* holds the special value that gets
376 u16 next_to_use;
377 u16 next_to_clean;
379 unsigned long last_rx_timestamp;
404 enum ixgbe_ring_f_enum { argument