/freebsd/sys/netinet6/ |
H A D | ip6_forward.c | 97 struct mbuf *mcopy = NULL; in ip6_forward() local 148 mcopy = m_copym(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN), in ip6_forward() 159 m_freem(mcopy); in ip6_forward() 190 if (mcopy) { in ip6_forward() 191 icmp6_error(mcopy, ICMP6_DST_UNREACH, in ip6_forward() 199 if (mcopy != NULL) { in ip6_forward() 201 icmp6_error(mcopy, ICMP6_DST_UNREACH, in ip6_forward() 204 m_freem(mcopy); in ip6_forward() 233 if (mcopy) in ip6_forward() 234 icmp6_error(mcopy, ICMP6_DST_UNREACH, in ip6_forward() [all …]
|
/freebsd/sys/netinet/ |
H A D | ip_fastfwd.c | 112 struct mbuf *mcopy; in ip_redir_alloc() local 169 mcopy = m_gethdr(M_NOWAIT, m->m_type); in ip_redir_alloc() 170 if (mcopy == NULL) in ip_redir_alloc() 173 if (m_dup_pkthdr(mcopy, m, M_NOWAIT) == 0) { in ip_redir_alloc() 180 m_free(mcopy); in ip_redir_alloc() 183 mcopy->m_len = min(ip_len, M_TRAILINGSPACE(mcopy)); in ip_redir_alloc() 184 mcopy->m_pkthdr.len = mcopy->m_len; in ip_redir_alloc() 185 m_copydata(m, 0, mcopy->m_len, mtod(mcopy, caddr_t)); in ip_redir_alloc() 187 return (mcopy); in ip_redir_alloc() 244 struct mbuf *mcopy = NULL; in ip_tryforward() local [all …]
|
H A D | ip_input.c | 920 struct mbuf *mcopy; in ip_forward() 982 mcopy = m_gethdr(M_NOWAIT, m->m_type); in ip_forward() 983 if (mcopy != NULL && !m_dup_pkthdr(mcopy, m, M_NOWAIT)) { in ip_forward() 990 m_free(mcopy); in ip_forward() 991 mcopy = NULL; in ip_forward() 993 if (mcopy != NULL) { in ip_forward() 994 mcopy->m_len = min(ntohs(ip->ip_len), M_TRAILINGSPACE(mcopy)); in ip_forward() 995 mcopy in ip_forward() 914 struct mbuf *mcopy; ip_forward() local [all...] |
/freebsd/sys/net80211/ |
H A D | ieee80211_wds.c | 237 struct mbuf *mcopy; in ieee80211_dwds_mcast() local 256 mcopy = m_copypacket(m, IEEE80211_M_NOWAIT); in ieee80211_dwds_mcast() 257 if (mcopy == NULL) { in ieee80211_dwds_mcast() 266 m_freem(mcopy); in ieee80211_dwds_mcast() 270 if (ieee80211_classify(ni, mcopy)) { in ieee80211_dwds_mcast() 277 m_freem(mcopy); in ieee80211_dwds_mcast() 288 mcopy = ieee80211_encap(vap, ni, mcopy); in ieee80211_dwds_mcast() 289 if (mcopy == NULL) { in ieee80211_dwds_mcast() 295 mcopy->m_flags |= M_MCAST; in ieee80211_dwds_mcast() 296 MPASS((mcopy->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0); in ieee80211_dwds_mcast() [all …]
|
H A D | ieee80211_mesh.c | 1074 struct mbuf *m, *mcopy, *next; in ieee80211_mesh_forward_to_gates() local 1119 mcopy = m_dup(m, IEEE80211_M_NOWAIT); in ieee80211_mesh_forward_to_gates() 1120 for (; mcopy != NULL; mcopy = next) { in ieee80211_mesh_forward_to_gates() 1121 next = mcopy->m_nextpkt; in ieee80211_mesh_forward_to_gates() 1122 mcopy->m_nextpkt = NULL; in ieee80211_mesh_forward_to_gates() 1125 "flush queued frame %p len %d", mcopy, in ieee80211_mesh_forward_to_gates() 1126 mcopy->m_pkthdr.len); in ieee80211_mesh_forward_to_gates() 1127 mesh_transmit_to_gate(vap, mcopy, rt_gate); in ieee80211_mesh_forward_to_gates() 1149 struct mbuf *mcopy; in mesh_forward() local 1175 mcopy = m_dup(m, IEEE80211_M_NOWAIT); in mesh_forward() [all …]
|
H A D | ieee80211_input.c | 129 struct mbuf *mcopy; in ieee80211_input_mimo_all() local 148 mcopy = m_dup(m, IEEE80211_M_NOWAIT); in ieee80211_input_mimo_all() 149 if (mcopy == NULL) { in ieee80211_input_mimo_all() 154 mcopy = m; in ieee80211_input_mimo_all() 158 type = ieee80211_input_mimo(ni, mcopy); in ieee80211_input_mimo_all()
|
H A D | ieee80211_hostap.c | 382 struct mbuf *mcopy = NULL; in hostap_deliver_data() local 385 mcopy = m_dup(m, IEEE80211_M_NOWAIT); in hostap_deliver_data() 386 if (mcopy == NULL) in hostap_deliver_data() 389 mcopy->m_flags |= M_MCAST; in hostap_deliver_data() 408 mcopy = m; in hostap_deliver_data() 418 if (mcopy != NULL) in hostap_deliver_data() 419 (void) ieee80211_vap_xmitpkt(vap, mcopy); in hostap_deliver_data()
|
/freebsd/contrib/file/src/ |
H A D | softmagic.c | 62 file_private int mcopy(struct magic_set *, union VALUETYPE *, int, int, 1323 mcopy(struct magic_set *ms, union VALUETYPE *p, int type, int indir, in mcopy() function 1615 if (mcopy(ms, p, m->type, m->flag & INDIR, s, in mget() 1808 if (mcopy(ms, p, m->type, 0, s, offset, nbytes, m) == -1) in mget()
|
/freebsd/tools/tools/nanobsd/embedded/ |
H A D | common | 216 mcopy -s -i ${NANO_LOG}/_.${NANO_SLICE_FAT} ${NANO_FAT_DIR}/* :: 464 if [ ! -x /usr/local/bin/mcopy ]; then
|