Searched refs:m_head (Results 76 - 88 of 88) sorted by relevance

1234

/freebsd-11-stable/sys/dev/bge/
H A Dif_bge.c5185 bge_encap(struct bge_softc *sc, struct mbuf **m_head, uint32_t *txidx) argument
5190 struct mbuf *m = *m_head;
5200 *m_head = bge_check_short_dma(m);
5201 if (*m_head == NULL)
5203 m = *m_head;
5206 *m_head = m = bge_setup_tso(sc, m, &mss, &csum_flags);
5207 if (*m_head == NULL)
5219 *m_head = NULL;
5242 m = *m_head;
5243 *m_head
5354 struct mbuf *m_head; local
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Dixl.h416 struct mbuf *m_head; member in struct:ixl_tx_buf
422 struct mbuf *m_head; member in struct:ixl_rx_buf
/freebsd-11-stable/sys/dev/nxge/
H A Dif_nxge.h256 struct mbuf *m_head; member in struct:xge_lro_entry_t
/freebsd-11-stable/sys/dev/cxgb/
H A Dcxgb_sge.c336 struct mbuf *m, *m_head, *m_tail; local
343 m_head = m_tail = NULL;
347 if (m_head == NULL) {
348 m_tail = m_head = m;
356 return (m_head);
1632 struct mbuf *m_head = NULL; local
1652 if ((m_head = cxgb_dequeue(qs)) == NULL)
1658 if (t3_encap(qs, &m_head) || m_head == NULL)
1661 m_head
[all...]
/freebsd-11-stable/sys/dev/nfe/
H A Dif_nfe.c2414 nfe_encap(struct nfe_softc *sc, struct mbuf **m_head) argument
2428 error = bus_dmamap_load_mbuf_sg(sc->txq.tx_data_tag, map, *m_head, segs,
2431 m = m_collapse(*m_head, M_NOWAIT, NFE_MAX_SCATTER);
2433 m_freem(*m_head);
2434 *m_head = NULL;
2437 *m_head = m;
2439 *m_head, segs, &nsegs, BUS_DMA_NOWAIT);
2441 m_freem(*m_head);
2442 *m_head = NULL;
2448 m_freem(*m_head);
[all...]
/freebsd-11-stable/sys/dev/et/
H A Dif_et.c1379 struct mbuf *m_head = NULL; local
1412 IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
1413 if (m_head == NULL)
1416 if (et_encap(sc, &m_head)) {
1417 if (m_head == NULL) {
1421 IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
1427 ETHER_BPF_MTAP(ifp, m_head);
/freebsd-11-stable/sys/dev/qlxgb/
H A Dqla_hw.c1715 if (txb->m_head) {
1720 m_freem(txb->m_head);
1723 txb->m_head = NULL;
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe.h266 struct mbuf *m_head; member in struct:ixgbe_tx_buf
/freebsd-11-stable/sys/dev/ae/
H A Dif_ae.c128 static int ae_encap(ae_softc_t *sc, struct mbuf **m_head);
1439 ae_encap(ae_softc_t *sc, struct mbuf **m_head) argument
1448 m0 = *m_head;
/freebsd-11-stable/sys/dev/qlxgbe/
H A Dql_hw.c2579 if (NULL != ha->tx_ring[txr_idx].tx_buf[j].m_head) {
2583 ha->tx_ring[txr_idx].tx_buf[j].m_head));
3826 if (txb->m_head) {
3832 m_freem(txb->m_head);
3834 txb->m_head = NULL;
/freebsd-11-stable/sys/dev/tsec/
H A Dif_tsec.c74 static int tsec_encap(struct tsec_softc *sc, struct mbuf *m_head,
/freebsd-11-stable/sys/dev/bxe/
H A Dbxe.c5137 bxe_tx_encap(struct bxe_fastpath *fp, struct mbuf **m_head) argument
5162 M_ASSERTPKTHDR(*m_head);
5165 m0 = *m_head;
5192 m0 = m_defrag(*m_head, M_NOWAIT);
5198 *m_head = m0;
5254 m0 = m_defrag(*m_head, M_NOWAIT);
5261 *m_head = m0;
5301 m_freem(*m_head);
5302 *m_head = NULL;
/freebsd-11-stable/sys/mips/rmi/dev/nlge/
H A Dif_nlge.c206 struct msgrng_msg *msg, uint32_t *n_entries, struct mbuf *m_head,

Completed in 283 milliseconds

1234