Lines Matching defs:netvsc_device
1007 struct netvsc_device { struct
1008 u32 nvsp_version;
1010 wait_queue_head_t wait_drain;
1011 bool destroy;
1012 bool tx_disable; /* if true, do not wake up queue again */
1015 void *recv_buf;
1016 u32 recv_buf_size; /* allocated bytes */
1017 u32 recv_buf_gpadl_handle;
1018 u32 recv_section_cnt;
1019 u32 recv_section_size;
1020 u32 recv_completion_cnt;
1023 void *send_buf;
1024 u32 send_buf_gpadl_handle;
1025 u32 send_section_cnt;
1026 u32 send_section_size;
1027 unsigned long *send_section_map;
1030 struct completion channel_init_wait;
1031 struct nvsp_message channel_init_pkt;
1033 struct nvsp_message revoke_packet;
1035 u32 max_chn;
1036 u32 num_chn;
1038 atomic_t open_chn;
1039 struct work_struct subchan_work;
1040 wait_queue_head_t subchan_open;
1042 struct rndis_device *extension;
1044 u32 max_pkt; /* max number of pkt in one send, e.g. 8 */
1045 u32 pkt_align; /* alignment bytes, e.g. 8 */
1047 struct netvsc_channel chan_table[VRSS_CHANNEL_MAX];
1049 struct rcu_head rcu;