Lines Matching defs:netvsc_device
1068 struct netvsc_device { struct
1069 u32 nvsp_version;
1071 wait_queue_head_t wait_drain;
1072 bool destroy;
1073 bool tx_disable; /* if true, do not wake up queue again */
1076 void *recv_buf;
1077 u32 recv_buf_size; /* allocated bytes */
1078 u32 recv_buf_gpadl_handle;
1079 u32 recv_section_cnt;
1080 u32 recv_section_size;
1081 u32 recv_completion_cnt;
1084 void *send_buf;
1085 u32 send_buf_gpadl_handle;
1086 u32 send_section_cnt;
1087 u32 send_section_size;
1088 unsigned long *send_section_map;
1091 struct completion channel_init_wait;
1092 struct nvsp_message channel_init_pkt;
1094 struct nvsp_message revoke_packet;
1096 u32 max_chn;
1097 u32 num_chn;
1099 atomic_t open_chn;
1100 struct work_struct subchan_work;
1101 wait_queue_head_t subchan_open;
1103 struct rndis_device *extension;
1105 u32 max_pkt; /* max number of pkt in one send, e.g. 8 */
1106 u32 pkt_align; /* alignment bytes, e.g. 8 */
1108 struct netvsc_channel chan_table[VRSS_CHANNEL_MAX];
1110 struct rcu_head rcu;