Lines Matching defs:m_new

2663 		struct mbuf *m_new;
2665 m_new = m_collapse(m, M_NOWAIT, HN_TX_DATA_SEGCNT_MAX);
2666 if (m_new == NULL)
2669 *m_head = m = m_new;
3419 struct mbuf *m_new, *n;
3456 m_new = m_gethdr(M_NOWAIT, MT_DATA);
3457 if (m_new == NULL) {
3461 memcpy(mtod(m_new, void *), rxr->rsc.frag_data[0],
3463 m_new->m_pkthdr.len = m_new->m_len = rxr->rsc.frag_len[0];
3477 m_new = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, size);
3478 if (m_new == NULL) {
3483 n = m_new;
3491 m_new->m_pkthdr.len += rxr->rsc.frag_len[i];
3498 m_new->m_pkthdr.rcvif = ifp;
3507 m_new->m_pkthdr.csum_flags |=
3515 m_new->m_pkthdr.csum_flags |=
3517 m_new->m_pkthdr.csum_data = 0xffff;
3536 hn_rxpkt_proto(m_new, &l3proto, &l4proto);
3543 m_new->m_pkthdr.csum_flags |=
3546 m_new->m_pkthdr.csum_data = 0xffff;
3554 m_new->m_pkthdr.csum_flags |=
3557 m_new->m_pkthdr.csum_data = 0xffff;
3562 m_new->m_pkthdr.csum_flags |=
3569 m_new->m_pkthdr.ether_vtag = EVL_MAKETAG(
3573 m_new->m_flags |= M_VLANTAG;
3600 m_new->m_pkthdr.flowid = *(rxr->rsc.hash_value);
3633 hn_rxpkt_proto(m_new,
3675 m_new->m_pkthdr.flowid = rxr->hn_rx_idx;
3678 M_HASHTYPE_SET(m_new, hash_type);
3691 ETHER_BPF_MTAP(hn_ifp, m_new);
3697 if_inc_counter(hn_ifp, IFCOUNTER_IBYTES, m_new->m_pkthdr.len);
3699 KASSERT(m_new->m_len >= ETHER_HDR_LEN, ("not ethernet frame"));
3700 eh = mtod(m_new, struct ether_header *);
3712 if (hn_lro_rx(lro, m_new) == 0) {
3719 if_input(ifp, m_new);
4901 hn_rxpkt_proto(const struct mbuf *m_new, int *l3proto, int *l4proto)
4909 KASSERT(m_new->m_len >= hoff, ("not ethernet frame"));
4911 eh = mtod(m_new, const struct ether_header *);
4917 if (m_new->m_len < hoff)
4919 evl = mtod(m_new, const struct ether_vlan_header *);
4925 *l4proto = hn_check_iplen(m_new, hoff);