Lines Matching defs:netvsc_device
1148 struct netvsc_device { struct
1149 u32 nvsp_version;
1151 wait_queue_head_t wait_drain;
1152 bool destroy;
1153 bool tx_disable; /* if true, do not wake up queue again */
1156 void *recv_buf;
1157 u32 recv_buf_size; /* allocated bytes */
1158 struct vmbus_gpadl recv_buf_gpadl_handle;
1159 u32 recv_section_cnt;
1160 u32 recv_section_size;
1161 u32 recv_completion_cnt;
1164 void *send_buf;
1165 u32 send_buf_size;
1166 struct vmbus_gpadl send_buf_gpadl_handle;
1167 u32 send_section_cnt;
1168 u32 send_section_size;
1169 unsigned long *send_section_map;
1172 struct completion channel_init_wait;
1173 struct nvsp_message channel_init_pkt;
1175 struct nvsp_message revoke_packet;
1177 u32 max_chn;
1178 u32 num_chn;
1180 u32 netvsc_gso_max_size;
1182 atomic_t open_chn;
1183 struct work_struct subchan_work;
1184 wait_queue_head_t subchan_open;
1186 struct rndis_device *extension;
1188 u32 max_pkt; /* max number of pkt in one send, e.g. 8 */
1189 u32 pkt_align; /* alignment bytes, e.g. 8 */
1191 struct netvsc_channel chan_table[VRSS_CHANNEL_MAX];
1193 struct rcu_head rcu;