Lines Matching defs:pci_vtnet_softc
103 struct pci_vtnet_softc { struct
104 struct virtio_softc vsc_vs;
105 struct vqueue_info vsc_queues[VTNET_MAXQ - 1];
106 pthread_mutex_t vsc_mtx;
108 net_backend_t *vsc_be;
110 bool features_negotiated; /* protected by rx_mtx */
112 int resetting; /* protected by tx_mtx */
114 uint64_t vsc_features; /* negotiated features */
116 pthread_mutex_t rx_mtx;
117 int rx_merge; /* merged rx bufs in use */
119 pthread_t tx_tid;
120 pthread_mutex_t tx_mtx;
121 pthread_cond_t tx_cond;
122 int tx_in_progress;
124 size_t vhdrlen;
125 size_t be_vhdrlen;
127 struct virtio_net_config vsc_config;
128 struct virtio_consts vsc_consts;