Home
last modified time | relevance | path

Searched refs:mlast (Results 1 – 4 of 4) sorted by relevance

/openbsd/sys/kern/
H A Duipc_mbuf2.c119 struct mbuf *mlast; in m_pulldown() local
127 for (mlast = o; mlast->m_next != NULL; mlast = mlast->m_next) in m_pulldown()
130 mlast->m_next = n->m_next; in m_pulldown()
H A Duipc_socket2.c931 struct mbuf *m, *mlast, *n; in sbappendcontrol() local
963 mlast = m; in sbappendcontrol()
966 sb->sb_mbtail = mlast; in sbappendcontrol()
/openbsd/sys/netinet6/
H A Dip6_output.c809 struct mbuf *mlast; in ip6_fragment() local
837 for (mlast = m; mlast->m_next; mlast = mlast->m_next) in ip6_fragment()
839 mlast->m_next = m_copym(m0, off, len, M_DONTWAIT); in ip6_fragment()
840 if (mlast->m_next == NULL) { in ip6_fragment()
990 struct mbuf *n, *mlast; in ip6_insertfraghdr() local
1002 for (mlast = n; mlast->m_next; mlast = mlast->m_next) in ip6_insertfraghdr()
1005 if ((mlast->m_flags & M_EXT) == 0 && in ip6_insertfraghdr()
1008 *frghdrp = (struct ip6_frag *)(mtod(mlast, caddr_t) + in ip6_insertfraghdr()
1009 mlast->m_len); in ip6_insertfraghdr()
1010 mlast->m_len += sizeof(struct ip6_frag); in ip6_insertfraghdr()
[all …]
/openbsd/sys/dev/pv/
H A Dif_vio.c1481 struct mbuf *m, *m0 = NULL, *mlast; in vio_rx_offload()
1503 m0 = mlast = m; in vio_rxeof()
1516 mlast->m_next = m; in vio_rxeof()
1517 mlast = m; in vio_rxeof()
1494 struct mbuf *m, *m0 = NULL, *mlast; vio_rxeof() local