Lines Matching defs:igbvf_ring
146 struct igbvf_ring { struct
147 struct igbvf_adapter *adapter; /* backlink */
148 union igbvf_desc *desc; /* pointer to ring memory */
149 dma_addr_t dma; /* phys address of ring */
150 unsigned int size; /* length of ring in bytes */
151 unsigned int count; /* number of desc. in ring */
153 u16 next_to_use;
154 u16 next_to_clean;
156 u16 head;
157 u16 tail;
160 struct igbvf_buffer *buffer_info;
161 struct napi_struct napi;
163 char name[IFNAMSIZ + 5];
164 u32 eims_value;
165 u32 itr_val;
166 enum latency_range itr_range;
167 u16 itr_register;
168 int set_itr;
170 struct sk_buff *rx_skb_top;
172 struct igbvf_queue_stats stats;