Lines Matching refs:tmp_txd
2684 struct hn_txdesc *tmp_txd; in hn_txdesc_put() local
2686 while ((tmp_txd = STAILQ_FIRST(&txd->agg_list)) != NULL) { in hn_txdesc_put()
2689 KASSERT(STAILQ_EMPTY(&tmp_txd->agg_list), in hn_txdesc_put()
2691 KASSERT((tmp_txd->flags & HN_TXD_FLAG_ONAGG), in hn_txdesc_put()
2693 KASSERT((tmp_txd->flags & HN_TXD_FLAG_DMAMAP) == 0, in hn_txdesc_put()
2695 KASSERT(tmp_txd->chim_index == HN_NVS_CHIM_IDX_INVALID, in hn_txdesc_put()
2698 KASSERT(tmp_txd->chim_size == 0, in hn_txdesc_put()
2703 tmp_txd->flags &= ~HN_TXD_FLAG_ONAGG; in hn_txdesc_put()
2704 freed = hn_txdesc_put(txr, tmp_txd); in hn_txdesc_put()
3264 const struct hn_txdesc *tmp_txd; in hn_txpkt() local
3267 STAILQ_FOREACH(tmp_txd, &txd->agg_list, agg_link) in hn_txpkt()
3268 ETHER_BPF_MTAP(ifp, tmp_txd->m); in hn_txpkt()