Searched refs:mb_head (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/sys/powerpc/pseries/
H A Dphyp_llan.c406 struct mbuf *mb_head, *m; local
416 IFQ_DRV_DEQUEUE(&ifp->if_snd, mb_head);
418 if (mb_head == NULL)
421 BPF_MTAP(ifp, mb_head);
423 for (m = mb_head, nsegs = 0; m != NULL; m = m->m_next)
426 m = m_collapse(mb_head, M_NOWAIT, 6);
428 m_freem(mb_head);
434 mb_head, llan_send_packet, sc, 0);
436 m_freem(mb_head);
/freebsd-10-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_rx.c40 struct mbuf *mb_head; local
53 mb_head = mb = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR,
62 if (mb_head->m_pkthdr.len >= rq->wqe_sz)
67 m_freem(mb_head);
71 mb_head->m_pkthdr.len += MLX5E_MAX_RX_BYTES;
74 mb = mb_head;
229 struct mbuf *mb_head; local
244 for (mb_head = mb; mb != NULL; mb = mb->m_next) {
258 mb = mb_head;
/freebsd-10-stable/sys/powerpc/ps3/
H A Dif_glc.c405 struct mbuf *mb_head; local
418 IFQ_DRV_DEQUEUE(&ifp->if_snd, mb_head);
420 if (mb_head == NULL)
427 IFQ_DRV_PREPEND(&ifp->if_snd, mb_head);
431 BPF_MTAP(ifp, mb_head);
434 mb_head = ether_vlanencap(mb_head, sc->sc_tx_vlan);
436 if (glc_encap(sc, &mb_head, &pktdesc)) {
/freebsd-10-stable/sys/dev/bm/
H A Dif_bm.c714 struct mbuf *mb_head; local
732 IFQ_DRV_DEQUEUE(&ifp->if_snd, mb_head);
734 if (mb_head == NULL)
739 if (bm_encap(sc, &mb_head)) {
742 IFQ_DRV_PREPEND(&ifp->if_snd, mb_head);
750 BPF_MTAP(ifp, mb_head);
/freebsd-10-stable/sys/dev/fxp/
H A Dif_fxp.c1343 struct mbuf *mb_head; local
1367 IFQ_DRV_DEQUEUE(&ifp->if_snd, mb_head);
1368 if (mb_head == NULL)
1371 if (fxp_encap(sc, &mb_head)) {
1372 if (mb_head == NULL)
1374 IFQ_DRV_PREPEND(&ifp->if_snd, mb_head);
1381 BPF_MTAP(ifp, mb_head);
/freebsd-10-stable/sys/arm/ti/cpsw/
H A Dif_cpsw.c1261 struct mbuf *mb_head, *mb_tail; local
1265 mb_head = mb_tail = NULL;
1315 mb_head = slot->mbuf;
1328 return (mb_head);

Completed in 125 milliseconds