Symbol: hn_txdesc
sys/dev/hyperv/netvsc/if_hn.c
200
SLIST_ENTRY(hn_txdesc) link;
sys/dev/hyperv/netvsc/if_hn.c
202
STAILQ_ENTRY(hn_txdesc) agg_link;
sys/dev/hyperv/netvsc/if_hn.c
205
STAILQ_HEAD(, hn_txdesc) agg_list;
sys/dev/hyperv/netvsc/if_hn.c
2639
hn_txdesc_dmamap_load(struct hn_tx_ring *txr, struct hn_txdesc *txd,
sys/dev/hyperv/netvsc/if_hn.c
2671
hn_txdesc_put(struct hn_tx_ring *txr, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
2684
struct hn_txdesc *tmp_txd;
sys/dev/hyperv/netvsc/if_hn.c
2747
static __inline struct hn_txdesc *
sys/dev/hyperv/netvsc/if_hn.c
2750
struct hn_txdesc *txd;
sys/dev/hyperv/netvsc/if_hn.c
2786
hn_txdesc_hold(struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
2795
hn_txdesc_agg(struct hn_txdesc *agg_txd, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
2838
struct hn_txdesc *txd = sndc->hn_cbarg;
sys/dev/hyperv/netvsc/if_hn.c
2923
struct hn_txdesc *txd;
sys/dev/hyperv/netvsc/if_hn.c
2962
hn_try_txagg(if_t ifp, struct hn_tx_ring *txr, struct hn_txdesc *txd,
sys/dev/hyperv/netvsc/if_hn.c
2969
struct hn_txdesc *agg_txd = txr->hn_agg_txd;
sys/dev/hyperv/netvsc/if_hn.c
3035
hn_encap(if_t ifp, struct hn_tx_ring *txr, struct hn_txdesc *txd,
sys/dev/hyperv/netvsc/if_hn.c
3156
struct hn_txdesc *tgt_txd = txd;
sys/dev/hyperv/netvsc/if_hn.c
3248
hn_txpkt(if_t ifp, struct hn_tx_ring *txr, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
3264
const struct hn_txdesc *tmp_txd;
sys/dev/hyperv/netvsc/if_hn.c
416
static void hn_txdesc_dmamap_destroy(struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hn.c
418
struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hn.c
420
struct hn_txdesc *, struct mbuf **);
sys/dev/hyperv/netvsc/if_hn.c
422
struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hn.c
430
struct hn_tx_ring *, struct hn_txdesc *,
sys/dev/hyperv/netvsc/if_hn.c
437
struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hn.c
439
struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hn.c
5172
txr->hn_txdesc = malloc(sizeof(struct hn_txdesc) * txr->hn_txdesc_cnt,
sys/dev/hyperv/netvsc/if_hn.c
5256
struct hn_txdesc *txd = &txr->hn_txdesc[i];
sys/dev/hyperv/netvsc/if_hn.c
5356
hn_txdesc_dmamap_destroy(struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
5370
hn_txdesc_gc(struct hn_tx_ring *txr, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
5390
if (txr->hn_txdesc == NULL)
sys/dev/hyperv/netvsc/if_hn.c
5404
hn_txdesc_gc(txr, &txr->hn_txdesc[i]);
sys/dev/hyperv/netvsc/if_hn.c
5406
hn_txdesc_dmamap_destroy(&txr->hn_txdesc[i]);
sys/dev/hyperv/netvsc/if_hn.c
5417
free(txr->hn_txdesc, M_DEVBUF);
sys/dev/hyperv/netvsc/if_hn.c
5418
txr->hn_txdesc = NULL;
sys/dev/hyperv/netvsc/if_hn.c
5692
struct hn_txdesc *txd;
sys/dev/hyperv/netvsc/if_hn.c
5872
struct hn_txdesc *txd;
sys/dev/hyperv/netvsc/if_hn.c
657
hn_txpkt_sglist(struct hn_tx_ring *txr, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hn.c
667
hn_txpkt_chim(struct hn_tx_ring *txr, struct hn_txdesc *txd)
sys/dev/hyperv/netvsc/if_hnvar.h
154
struct hn_txdesc *hn_agg_txd;
sys/dev/hyperv/netvsc/if_hnvar.h
164
int (*hn_sendpkt)(struct hn_tx_ring *, struct hn_txdesc *);
sys/dev/hyperv/netvsc/if_hnvar.h
180
struct hn_txdesc *hn_txdesc;
sys/dev/hyperv/netvsc/if_hnvar.h
49
struct hn_txdesc;
sys/dev/hyperv/netvsc/if_hnvar.h
51
SLIST_HEAD(hn_txdesc_list, hn_txdesc);