Lines Matching defs:i40e_ring
326 struct i40e_ring { struct
327 struct i40e_ring *next; /* pointer to next ring in q_vector */ argument
328 void *desc; /* Descriptor ring memory */
329 struct device *dev; /* Used for DMA mapping */
330 struct net_device *netdev; /* netdev ring maps to */
331 struct bpf_prog *xdp_prog;
332 union {
338 u16 queue_index; /* Queue number of ring */
339 u8 dcb_tc; /* Traffic class of ring */
340 u8 __iomem *tail;
347 struct xdp_buff xdp;
352 u16 next_to_process;
358 u16 itr_setting;
360 u16 count; /* Number of descriptors */
361 u16 reg_idx; /* HW register index of the ring */
362 u16 rx_buf_len;
365 u16 next_to_use;
366 u16 next_to_clean;
367 u16 xdp_tx_active;
369 u8 atr_sample_rate;
370 u8 atr_count;
372 bool ring_active; /* is ring online or not */
373 bool arm_wb; /* do something to arm write back */
374 u8 packet_stride;
376 u16 flags;
404 static inline bool ring_uses_build_skb(struct i40e_ring *ring) in ring_uses_build_skb() argument