Searched refs:mb_copy (Results 1 – 6 of 6) sorted by relevance
| /freebsd/sys/netinet/ |
| H A D | ip_mroute.c | 1819 struct mbuf *mb_copy; in phyint_send() local 1830 mb_copy = m_copypacket(m, M_NOWAIT); in phyint_send() 1831 if (mb_copy && (!M_WRITABLE(mb_copy) || mb_copy->m_len < hlen)) in phyint_send() 1832 mb_copy = m_pullup(mb_copy, hlen); in phyint_send() 1833 if (mb_copy == NULL) in phyint_send() 1836 send_packet(vifp, mb_copy); in phyint_send() 2346 struct mbuf *mb_copy, *mm; in pim_register_send() local 2356 mb_copy = pim_register_prepare(ip, m); in pim_register_send() 2357 if (mb_copy == NULL) in pim_register_send() 2364 for (mm = mb_copy; mm; mm = mb_copy) { in pim_register_send() [all …]
|
| /freebsd/sys/netinet6/ |
| H A D | ip6_mroute.c | 1635 struct mbuf *mb_copy; in phyint_send() local 1647 mb_copy = m_copym(m, 0, M_COPYALL, M_NOWAIT); in phyint_send() 1648 if (mb_copy && in phyint_send() 1649 (!M_WRITABLE(mb_copy) || mb_copy->m_len < sizeof(struct ip6_hdr))) in phyint_send() 1650 mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr)); in phyint_send() 1651 if (mb_copy == NULL) { in phyint_send() 1655 mb_copy->m_flags |= M_MCAST; in phyint_send() 1673 error = ip6_output(mb_copy, NULL, NULL, IPV6_FORWARDING, &im6o, in phyint_send() 1694 if (mb_copy->m_pkthdr.len <= linkmtu || linkmtu < IPV6_MMTU) { in phyint_send() 1708 error = (*ifp->if_output)(ifp, mb_copy, in phyint_send() [all …]
|
| /freebsd/sys/kern/ |
| H A D | kern_dump.c | 467 struct msgbuf mb_copy; in minidumpsys() local 510 msgbuf_duplicate(msgbufp, &mb_copy, msg_ptr); in minidumpsys() 511 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()
|