| /src/sys/netinet6/ |
| ip6_forward.c | 125 struct mbuf *mcopy = NULL; local 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 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 144 mcopy = m_copypacket(m0, M_DONTWAIT); 183 if (mcopy) 184 looutput(ifp, mcopy, dst, rt);
|
| if_ethersubr.c | 239 struct mbuf *mcopy = NULL; local 295 mcopy = m_copypacket(m, M_DONTWAIT); 432 if (mcopy) 433 (void)looutput(ifp, mcopy, dst, rt);
|
| /src/sys/netinet/ |
| ip_input.c | 1340 struct mbuf *mcopy; local 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...] |