Symbol: vtnet_rxq
sys/dev/netmap/if_vtnet_netmap.h
164
struct vtnet_rxq *rxq = &sc->vtnet_rxqs[ring_nr];
sys/dev/netmap/if_vtnet_netmap.h
212
vtnet_netmap_rxq_populate(struct vtnet_rxq *rxq)
sys/dev/netmap/if_vtnet_netmap.h
259
struct vtnet_rxq *rxq = &sc->vtnet_rxqs[ring_nr];
sys/dev/netmap/if_vtnet_netmap.h
355
struct vtnet_rxq *rxq = &sc->vtnet_rxqs[i];
sys/dev/virtio/network/if_vtnet.c
1043
sc->vtnet_rxqs = malloc(sizeof(struct vtnet_rxq) * npairs, M_DEVBUF,
sys/dev/virtio/network/if_vtnet.c
1066
vtnet_destroy_rxq(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
1169
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
139
static int vtnet_rxq_populate(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
140
static void vtnet_rxq_free_mbufs(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
143
static int vtnet_rxq_replace_lro_nomrg_buf(struct vtnet_rxq *,
sys/dev/virtio/network/if_vtnet.c
145
static int vtnet_rxq_replace_buf(struct vtnet_rxq *, struct mbuf *, int);
sys/dev/virtio/network/if_vtnet.c
146
static int vtnet_rxq_enqueue_buf(struct vtnet_rxq *, struct mbuf *);
sys/dev/virtio/network/if_vtnet.c
147
static int vtnet_rxq_new_buf(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
149
static void vtnet_rxq_csum_needs_csum(struct vtnet_rxq *, struct mbuf *,
sys/dev/virtio/network/if_vtnet.c
151
static void vtnet_rxq_csum_data_valid(struct vtnet_rxq *, struct mbuf *,
sys/dev/virtio/network/if_vtnet.c
153
static int vtnet_rxq_csum(struct vtnet_rxq *, struct mbuf *,
sys/dev/virtio/network/if_vtnet.c
156
static void vtnet_rxq_discard_merged_bufs(struct vtnet_rxq *, int);
sys/dev/virtio/network/if_vtnet.c
157
static void vtnet_rxq_discard_buf(struct vtnet_rxq *, struct mbuf *);
sys/dev/virtio/network/if_vtnet.c
158
static int vtnet_rxq_merged_eof(struct vtnet_rxq *, struct mbuf *, int);
sys/dev/virtio/network/if_vtnet.c
159
static void vtnet_rxq_input(struct vtnet_rxq *, struct mbuf *,
sys/dev/virtio/network/if_vtnet.c
161
static int vtnet_rxq_eof(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
162
static void vtnet_rx_vq_process(struct vtnet_rxq *rxq, int tries);
sys/dev/virtio/network/if_vtnet.c
1627
vtnet_rxq_populate(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
1662
vtnet_rxq_free_mbufs(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
1766
vtnet_rxq_replace_lro_nomrg_buf(struct vtnet_rxq *rxq, struct mbuf *m0,
sys/dev/virtio/network/if_vtnet.c
1857
vtnet_rxq_replace_buf(struct vtnet_rxq *rxq, struct mbuf *m, int len)
sys/dev/virtio/network/if_vtnet.c
1887
vtnet_rxq_enqueue_buf(struct vtnet_rxq *rxq, struct mbuf *m)
sys/dev/virtio/network/if_vtnet.c
1948
vtnet_rxq_new_buf(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
1969
vtnet_rxq_csum_needs_csum(struct vtnet_rxq *rxq, struct mbuf *m, bool isipv6,
sys/dev/virtio/network/if_vtnet.c
1997
vtnet_rxq_csum_data_valid(struct vtnet_rxq *rxq, struct mbuf *m, int protocol)
sys/dev/virtio/network/if_vtnet.c
2007
vtnet_rxq_csum(struct vtnet_rxq *rxq, struct mbuf *m,
sys/dev/virtio/network/if_vtnet.c
2086
vtnet_rxq_discard_merged_bufs(struct vtnet_rxq *rxq, int nbufs)
sys/dev/virtio/network/if_vtnet.c
2099
vtnet_rxq_discard_buf(struct vtnet_rxq *rxq, struct mbuf *m)
sys/dev/virtio/network/if_vtnet.c
2113
vtnet_rxq_merged_eof(struct vtnet_rxq *rxq, struct mbuf *m_head, int nbufs)
sys/dev/virtio/network/if_vtnet.c
2171
vtnet_lro_rx(struct vtnet_rxq *rxq, struct mbuf *m)
sys/dev/virtio/network/if_vtnet.c
2187
vtnet_rxq_input(struct vtnet_rxq *rxq, struct mbuf *m,
sys/dev/virtio/network/if_vtnet.c
2258
vtnet_rxq_eof(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
2404
vtnet_rx_vq_process(struct vtnet_rxq *rxq, int tries)
sys/dev/virtio/network/if_vtnet.c
2475
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
2484
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
253
struct sysctl_oid_list *, struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
260
static int vtnet_rxq_enable_intr(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
261
static void vtnet_rxq_disable_intr(struct vtnet_rxq *);
sys/dev/virtio/network/if_vtnet.c
3391
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
3428
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
3450
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
3471
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
3487
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
3605
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
4658
struct sysctl_oid_list *child, struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
5015
vtnet_rxq_enable_intr(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
5022
vtnet_rxq_disable_intr(struct vtnet_rxq *rxq)
sys/dev/virtio/network/if_vtnet.c
5055
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnet.c
971
struct vtnet_rxq *rxq;
sys/dev/virtio/network/if_vtnetvar.h
142
struct vtnet_rxq *vtnet_rxqs;