Lines Matching defs:ixgbe_ring
308 struct ixgbe_ring { struct
309 struct ixgbe_ring *next; /* pointer to next ring in q_vector */ argument
310 struct ixgbe_q_vector *q_vector; /* backpointer to host q_vector */
311 struct net_device *netdev; /* netdev ring belongs to */
312 struct bpf_prog *xdp_prog;
313 struct device *dev; /* device for DMA mapping */
314 void *desc; /* descriptor ring memory */
315 union {
319 unsigned long state;
320 u8 __iomem *tail;
321 dma_addr_t dma; /* phys. address of descriptor ring */
322 unsigned int size; /* length in bytes */
324 u16 count; /* amount of descriptors */
326 u8 queue_index; /* needed for multiqueue queue management */
327 u8 reg_idx; /* holds the special value that gets
332 u16 next_to_use;
333 u16 next_to_clean;
358 enum ixgbe_ring_f_enum { argument