/src/sys/netinet6/ |
ip6_forward.c | 125 struct mbuf *mcopy = NULL; local in function:ip6_forward 172 mcopy = m_copym(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN), 207 if (mcopy) { 208 icmp6_error(mcopy, ICMP6_DST_UNREACH, 221 if (mcopy) { 222 icmp6_error(mcopy, ICMP6_DST_UNREACH, 246 if (mcopy) 247 icmp6_error(mcopy, ICMP6_DST_UNREACH, 262 if (mcopy) 283 if (mcopy) [all...] |
/src/sys/net/ |
if_arcsubr.c | 114 struct mbuf *m, *m1, *mcopy; local in function:arc_output 129 mcopy = m1 = NULL; 157 mcopy = m_copypacket(m, M_DONTWAIT); 243 if (mcopy) 244 (void) looutput(ifp, mcopy, dst, rt);
|
if_ieee1394subr.c | 91 struct mbuf *mcopy = NULL; local in function:ieee1394_output 144 mcopy = m_copypacket(m0, M_DONTWAIT); 183 if (mcopy) 184 looutput(ifp, mcopy, dst, rt);
|
if_ethersubr.c | 201 struct mbuf *mcopy = NULL; local in function:ether_output 257 mcopy = m_copypacket(m, M_DONTWAIT); 394 if (mcopy) 395 (void)looutput(ifp, mcopy, dst, rt);
|
/src/sys/netinet/ |
ip_input.c | 1340 struct mbuf *mcopy; local in function:ip_forward 1402 * Pullup to avoid sharing mbuf cluster between m and mcopy. 1404 mcopy = m_copym(m, 0, imin(ntohs(ip->ip_len), 68), M_DONTWAIT); 1405 if (mcopy) 1406 mcopy = m_pullup(mcopy, ip->ip_hl << 2); 1457 if (mcopy) { 1459 if (mcopy->m_flags & M_CANFASTFWD) 1460 ipflow_create(ro, mcopy); 1462 m_freem(mcopy); [all...] |