Lines Matching defs:copym
2533 struct mbuf *copym;
2539 copym = m_copym(m, 0, M_COPYALL, M_NOWAIT);
2540 if (copym == NULL)
2548 if ((copym->m_flags & M_EXT) != 0 ||
2549 copym->m_len < sizeof(struct ip6_hdr)) {
2550 copym = m_pullup(copym, sizeof(struct ip6_hdr));
2551 if (copym == NULL)
2556 if (copym->m_len < sizeof(*ip6)) {
2557 m_freem(copym);
2562 ip6 = mtod(copym, struct ip6_hdr *);
2568 if_input_local(ifp, copym, dst->sin6_family);