Lines Matching defs:igbvf_ring
138 struct igbvf_ring { struct
139 struct igbvf_adapter *adapter; /* backlink */
140 union igbvf_desc *desc; /* pointer to ring memory */
141 dma_addr_t dma; /* phys address of ring */
142 unsigned int size; /* length of ring in bytes */
143 unsigned int count; /* number of desc. in ring */
145 u16 next_to_use;
146 u16 next_to_clean;
148 u16 head;
149 u16 tail;
152 struct igbvf_buffer *buffer_info;
153 struct napi_struct napi;
155 char name[IFNAMSIZ + 5];
156 u32 eims_value;
157 u32 itr_val;
158 u16 itr_register;
159 int set_itr;
161 struct sk_buff *rx_skb_top;
163 struct igbvf_queue_stats stats;