Symbol: vtnet_softc
sys/dev/netmap/if_vtnet_netmap.h
163
struct vtnet_softc *sc = if_getsoftc(ifp);
sys/dev/netmap/if_vtnet_netmap.h
258
struct vtnet_softc *sc = if_getsoftc(ifp);
sys/dev/netmap/if_vtnet_netmap.h
351
struct vtnet_softc *sc = if_getsoftc(na->ifp);
sys/dev/netmap/if_vtnet_netmap.h
370
vtnet_netmap_tx_slots(struct vtnet_softc *sc)
sys/dev/netmap/if_vtnet_netmap.h
393
vtnet_netmap_rx_slots(struct vtnet_softc *sc)
sys/dev/netmap/if_vtnet_netmap.h
40
struct vtnet_softc *sc = if_getsoftc(ifp);
sys/dev/netmap/if_vtnet_netmap.h
418
struct vtnet_softc *sc = if_getsoftc(na->ifp);
sys/dev/netmap/if_vtnet_netmap.h
430
vtnet_netmap_attach(struct vtnet_softc *sc)
sys/dev/netmap/if_vtnet_netmap.h
69
struct vtnet_softc *sc = if_getsoftc(ifp);
sys/dev/virtio/network/if_vtnet.c
1013
vtnet_free_rx_filters(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
1028
vtnet_alloc_virtqueues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
1081
vtnet_alloc_interface(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
1095
vtnet_setup_interface(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
110
static int vtnet_negotiate_features(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
111
static int vtnet_setup_features(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
112
static int vtnet_init_rxq(struct vtnet_softc *, int);
sys/dev/virtio/network/if_vtnet.c
113
static int vtnet_init_txq(struct vtnet_softc *, int);
sys/dev/virtio/network/if_vtnet.c
114
static int vtnet_alloc_rxtx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
115
static void vtnet_free_rxtx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
116
static int vtnet_alloc_rx_filters(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
117
static void vtnet_free_rx_filters(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
118
static int vtnet_alloc_virtqueues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
119
static void vtnet_alloc_interface(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
120
static int vtnet_setup_interface(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
121
static int vtnet_ioctl_mtu(struct vtnet_softc *, u_int);
sys/dev/virtio/network/if_vtnet.c
1215
vtnet_rx_cluster_size(struct vtnet_softc *sc, int mtu)
sys/dev/virtio/network/if_vtnet.c
122
static int vtnet_ioctl_ifflags(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
123
static int vtnet_ioctl_multi(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
124
static int vtnet_ioctl_ifcap(struct vtnet_softc *, struct ifreq *);
sys/dev/virtio/network/if_vtnet.c
1255
vtnet_ioctl_mtu(struct vtnet_softc *sc, u_int mtu)
sys/dev/virtio/network/if_vtnet.c
1281
vtnet_ioctl_ifflags(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
131
vtnet_rx_alloc_buf(struct vtnet_softc *, int , struct mbuf **);
sys/dev/virtio/network/if_vtnet.c
1322
vtnet_ioctl_multi(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
1338
vtnet_ioctl_ifcap(struct vtnet_softc *sc, struct ifreq *ifr)
sys/dev/virtio/network/if_vtnet.c
1443
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
1554
vtnet_rx_alloc_buf(struct vtnet_softc *sc, int nbufs, struct mbuf **m_tailp)
sys/dev/virtio/network/if_vtnet.c
1601
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
1691
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
1721
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
1769
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
1791
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
185
static void vtnet_tx_start_all(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
1871
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
188
static void vtnet_accum_stats(struct vtnet_softc *,
sys/dev/virtio/network/if_vtnet.c
192
static void vtnet_start_taskqueues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
193
static void vtnet_free_taskqueues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
194
static void vtnet_drain_taskqueues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
196
static void vtnet_drain_rxtx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
197
static void vtnet_stop_rendezvous(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
1976
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
198
static void vtnet_stop(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
199
static int vtnet_virtio_reinit(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
200
static void vtnet_init_rx_filters(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
201
static int vtnet_init_rx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
202
static int vtnet_init_tx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
203
static int vtnet_init_rxtx_queues(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
204
static void vtnet_set_active_vq_pairs(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2043
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
205
static void vtnet_update_rx_offloads(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
206
static int vtnet_reinit(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
207
static void vtnet_init_locked(struct vtnet_softc *, int);
sys/dev/virtio/network/if_vtnet.c
210
static void vtnet_free_ctrl_vq(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
211
static void vtnet_exec_ctrl_cmd(struct vtnet_softc *, void *,
sys/dev/virtio/network/if_vtnet.c
2114
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
213
static int vtnet_ctrl_mac_cmd(struct vtnet_softc *, uint8_t *);
sys/dev/virtio/network/if_vtnet.c
214
static int vtnet_ctrl_guest_offloads(struct vtnet_softc *, uint64_t);
sys/dev/virtio/network/if_vtnet.c
215
static int vtnet_ctrl_mq_cmd(struct vtnet_softc *, uint16_t);
sys/dev/virtio/network/if_vtnet.c
216
static int vtnet_ctrl_rx_cmd(struct vtnet_softc *, uint8_t, bool);
sys/dev/virtio/network/if_vtnet.c
217
static int vtnet_set_promisc(struct vtnet_softc *, bool);
sys/dev/virtio/network/if_vtnet.c
218
static int vtnet_set_allmulti(struct vtnet_softc *, bool);
sys/dev/virtio/network/if_vtnet.c
219
static void vtnet_rx_filter(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
220
static void vtnet_rx_filter_mac(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
221
static int vtnet_exec_vlan_filter(struct vtnet_softc *, int, uint16_t);
sys/dev/virtio/network/if_vtnet.c
222
static void vtnet_rx_filter_vlan(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2229
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
223
static void vtnet_update_vlan_filter(struct vtnet_softc *, int, uint16_t);
sys/dev/virtio/network/if_vtnet.c
227
static void vtnet_update_speed_duplex(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
228
static int vtnet_is_link_up(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
229
static void vtnet_update_link_status(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2316
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
232
static void vtnet_get_macaddr(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
233
static void vtnet_set_macaddr(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
234
static void vtnet_attached_set_macaddr(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
236
static void vtnet_set_rx_process_limit(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2412
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
242
static void vtnet_setup_queue_sysctl(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
243
static void vtnet_load_tunables(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
244
static void vtnet_setup_sysctl(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2473
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
250
static void vtnet_enable_rx_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
251
static void vtnet_enable_tx_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2514
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
252
static void vtnet_enable_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
253
static void vtnet_disable_rx_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
254
static void vtnet_disable_tx_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
255
static void vtnet_disable_interrupts(struct vtnet_softc *);
sys/dev/virtio/network/if_vtnet.c
2569
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
257
static int vtnet_tunable_int(struct vtnet_softc *, const char *, int);
sys/dev/virtio/network/if_vtnet.c
2670
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2720
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2735
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2801
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2829
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2845
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2864
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2919
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
2957
vtnet_tx_start_all(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
2976
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
3027
vtnet_accum_stats(struct vtnet_softc *sc, struct vtnet_rxq_stats *rxacc,
sys/dev/virtio/network/if_vtnet.c
3058
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
3088
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
3109
vtnet_start_taskqueues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3147
vtnet_free_taskqueues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3169
vtnet_drain_taskqueues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3190
vtnet_drain_rxtx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3206
vtnet_stop_rendezvous(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3232
vtnet_stop(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3267
vtnet_virtio_reinit(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3306
vtnet_init_rx_filters(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3322
vtnet_init_rx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3362
vtnet_init_tx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3380
vtnet_init_rxtx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3396
vtnet_set_active_vq_pairs(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3420
vtnet_update_rx_offloads(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3461
vtnet_reinit(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3498
vtnet_init_locked(struct vtnet_softc *sc, int init_mode)
sys/dev/virtio/network/if_vtnet.c
3542
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
3552
vtnet_free_ctrl_vq(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3564
vtnet_exec_ctrl_cmd(struct vtnet_softc *sc, void *cookie,
sys/dev/virtio/network/if_vtnet.c
3588
vtnet_ctrl_mac_cmd(struct vtnet_softc *sc, uint8_t *hwaddr)
sys/dev/virtio/network/if_vtnet.c
3622
vtnet_ctrl_guest_offloads(struct vtnet_softc *sc, uint64_t offloads)
sys/dev/virtio/network/if_vtnet.c
3656
vtnet_ctrl_mq_cmd(struct vtnet_softc *sc, uint16_t npairs)
sys/dev/virtio/network/if_vtnet.c
3690
vtnet_ctrl_rx_cmd(struct vtnet_softc *sc, uint8_t cmd, bool on)
sys/dev/virtio/network/if_vtnet.c
3724
vtnet_set_promisc(struct vtnet_softc *sc, bool on)
sys/dev/virtio/network/if_vtnet.c
3730
vtnet_set_allmulti(struct vtnet_softc *sc, bool on)
sys/dev/virtio/network/if_vtnet.c
3736
vtnet_rx_filter(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3760
struct vtnet_softc *sc = arg;
sys/dev/virtio/network/if_vtnet.c
3786
vtnet_rx_filter_mac(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
381
.size = sizeof(struct vtnet_softc)
sys/dev/virtio/network/if_vtnet.c
3859
vtnet_exec_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag)
sys/dev/virtio/network/if_vtnet.c
3893
vtnet_rx_filter_vlan(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3919
vtnet_update_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag)
sys/dev/virtio/network/if_vtnet.c
3970
vtnet_update_speed_duplex(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
3988
vtnet_is_link_up(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4002
vtnet_update_link_status(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4031
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
4048
vtnet_get_macaddr(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4063
vtnet_set_macaddr(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4088
vtnet_attached_set_macaddr(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4112
vtnet_set_rx_process_limit(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4204
vtnet_setup_queue_sysctl(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4226
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4242
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4258
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4274
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4290
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4306
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4321
struct sysctl_oid_list *child, struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4414
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4429
struct vtnet_softc *sc = (struct vtnet_softc *)arg1;
sys/dev/virtio/network/if_vtnet.c
4440
vtnet_setup_sysctl(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
445
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
4472
vtnet_load_tunables(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4523
vtnet_enable_rx_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4536
vtnet_enable_tx_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4545
vtnet_enable_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4553
vtnet_disable_rx_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4562
vtnet_disable_tx_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4571
vtnet_disable_interrupts(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
4579
vtnet_tunable_int(struct vtnet_softc *sc, const char *knob, int def)
sys/dev/virtio/network/if_vtnet.c
4594
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
4608
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
4632
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
4651
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
511
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
569
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
584
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
612
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
626
struct vtnet_softc *sc;
sys/dev/virtio/network/if_vtnet.c
640
vtnet_negotiate_features(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
726
vtnet_setup_features(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
832
vtnet_init_rxq(struct vtnet_softc *sc, int id)
sys/dev/virtio/network/if_vtnet.c
865
vtnet_init_txq(struct vtnet_softc *sc, int id)
sys/dev/virtio/network/if_vtnet.c
900
vtnet_alloc_rxtx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
972
vtnet_free_rxtx_queues(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnet.c
992
vtnet_alloc_rx_filters(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnetvar.h
114
struct vtnet_softc *vtntx_sc;
sys/dev/virtio/network/if_vtnetvar.h
201
vtnet_modern(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnetvar.h
207
vtnet_software_lro(struct vtnet_softc *sc)
sys/dev/virtio/network/if_vtnetvar.h
38
struct vtnet_softc;
sys/dev/virtio/network/if_vtnetvar.h
81
struct vtnet_softc *vtnrx_sc;