Searched refs:mb_copy (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/netinet/ |
H A D | ip_mroute.c | 1765 struct mbuf *mb_copy; in phyint_send() local 1776 mb_copy = m_copypacket(m, M_NOWAIT); in phyint_send() 1777 if (mb_copy && (!M_WRITABLE(mb_copy) || mb_copy->m_len < hlen)) in phyint_send() 1778 mb_copy = m_pullup(mb_copy, hlen); in phyint_send() 1779 if (mb_copy == NULL) in phyint_send() 1782 send_packet(vifp, mb_copy); in phyint_send() 2282 struct mbuf *mb_copy, *mm; in pim_register_send() local 2292 mb_copy = pim_register_prepare(ip, m); in pim_register_send() 2293 if (mb_copy == NULL) in pim_register_send() 2300 for (mm = mb_copy; mm; mm = mb_copy) { in pim_register_send() [all …]
|
/freebsd/sys/netinet6/ |
H A D | ip6_mroute.c | 1528 struct mbuf *mb_copy; in phyint_send() local 1540 mb_copy = m_copym(m, 0, M_COPYALL, M_NOWAIT); in phyint_send() 1541 if (mb_copy && in phyint_send() 1542 (!M_WRITABLE(mb_copy) || mb_copy->m_len < sizeof(struct ip6_hdr))) in phyint_send() 1543 mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr)); in phyint_send() 1544 if (mb_copy == NULL) { in phyint_send() 1548 mb_copy->m_flags |= M_MCAST; in phyint_send() 1566 error = ip6_output(mb_copy, NULL, NULL, IPV6_FORWARDING, &im6o, in phyint_send() 1587 if (mb_copy->m_pkthdr.len <= linkmtu || linkmtu < IPV6_MMTU) { in phyint_send() 1601 error = (*ifp->if_output)(ifp, mb_copy, in phyint_send() [all …]
|
/freebsd/sys/kern/ |
H A D | kern_dump.c | 466 struct msgbuf mb_copy; in minidumpsys() local 509 msgbuf_duplicate(msgbufp, &mb_copy, msg_ptr); in minidumpsys() 510 state.msgbufp = &mb_copy; in minidumpsys()
|
H A D | subr_mchain.c | 221 error = mbp->mb_copy(mbp, source, dst, &srclen, &dstlen); in mb_put_mem()
|
/freebsd/sys/sys/ |
H A D | mchain.h | 53 mb_copy_t * mb_copy; /* user defined copy function */ member
|
/freebsd/sys/netsmb/ |
H A D | smb_subr.c | 337 mbp->mb_copy = smb_copy_iconv; in smb_put_dmem()
|