Lines Matching defs:igbvf_ring
125 struct igbvf_ring { struct
126 struct igbvf_adapter *adapter; /* backlink */
127 union igbvf_desc *desc; /* pointer to ring memory */
128 dma_addr_t dma; /* phys address of ring */
129 unsigned int size; /* length of ring in bytes */
130 unsigned int count; /* number of desc. in ring */
132 u16 next_to_use;
133 u16 next_to_clean;
135 u16 head;
136 u16 tail;
139 struct igbvf_buffer *buffer_info;
140 struct napi_struct napi;
142 char name[IFNAMSIZ + 5];
143 u32 eims_value;
144 u32 itr_val;
145 enum latency_range itr_range;
146 u16 itr_register;
147 int set_itr;
149 struct sk_buff *rx_skb_top;
151 struct igbvf_queue_stats stats;