Lines Matching defs:m_head
1770 ti_encap_tigon1(struct ti_softc *sc, struct mbuf *m_head, u_int32_t *txidx)
1790 if (bus_dmamap_load_mbuf(sc->sc_dmatag, txmap, m_head,
1813 if (m_head->m_flags & M_VLANTAG) {
1815 txdesc.ti_vlan_tag = m_head->m_pkthdr.ether_vtag;
1836 sc->ti_cdata.ti_tx_chain[cur] = m_head;
1856 ti_encap_tigon2(struct ti_softc *sc, struct mbuf *m_head, u_int32_t *txidx)
1876 if (bus_dmamap_load_mbuf(sc->sc_dmatag, txmap, m_head,
1899 if (m_head->m_flags & M_VLANTAG) {
1901 f->ti_vlan_tag = m_head->m_pkthdr.ether_vtag;
1919 sc->ti_cdata.ti_tx_chain[cur] = m_head;
1942 struct mbuf *m_head = NULL;
1951 m_head = ifq_deq_begin(&ifp->if_snd);
1952 if (m_head == NULL)
1961 error = ti_encap_tigon1(sc, m_head, &prodidx);
1963 error = ti_encap_tigon2(sc, m_head, &prodidx);
1966 ifq_deq_rollback(&ifp->if_snd, m_head);
1972 ifq_deq_commit(&ifp->if_snd, m_head);
1981 bpf_mtap_ether(ifp->if_bpf, m_head, BPF_DIRECTION_OUT);