Searched refs:mb_copy (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/netinet/ |
| H A D | ip_mroute.c | 1668 if (mb_copy && (!M_WRITABLE(mb_copy) || mb_copy->m_len < hlen)) in phyint_send() 1669 mb_copy = m_pullup(mb_copy, hlen); in phyint_send() 1670 if (mb_copy == NULL) in phyint_send() 2336 if (mb_copy == NULL) in pim_register_send() 2343 for (mm = mb_copy; mm; mm = mb_copy) { in pim_register_send() 2384 mb_copy = m_pullup(mb_copy, ip->ip_hl << 2); in pim_register_prepare() 2403 m_freem(mb_copy); in pim_register_prepare() 2407 return mb_copy; in pim_register_prepare() 2429 m_freem(mb_copy); in pim_register_send_upcall() 2478 m_freem(mb_copy); in pim_register_send_rp() [all …]
|
| /f-stack/freebsd/netinet6/ |
| H A D | ip6_mroute.c | 1532 struct mbuf *mb_copy; in phyint_send() local 1542 mb_copy = m_copym(m, 0, M_COPYALL, M_NOWAIT); in phyint_send() 1543 if (mb_copy && in phyint_send() 1544 (!M_WRITABLE(mb_copy) || mb_copy->m_len < sizeof(struct ip6_hdr))) in phyint_send() 1545 mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr)); in phyint_send() 1546 if (mb_copy == NULL) { in phyint_send() 1550 mb_copy->m_flags |= M_MCAST; in phyint_send() 1603 error = (*ifp->if_output)(ifp, mb_copy, in phyint_send() 1614 icmp6_error(mb_copy, ICMP6_PACKET_TOO_BIG, 0, linkmtu); in phyint_send() 1620 mb_copy->m_pkthdr.len); in phyint_send() [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | mchain.h | 55 mb_copy_t * mb_copy; /* user defined copy function */ member
|
| /f-stack/freebsd/kern/ |
| H A D | subr_mchain.c | 224 error = mbp->mb_copy(mbp, source, dst, &srclen, &dstlen); in mb_put_mem()
|