HomeSort by: relevance | last modified time | path
    Searched refs:mlast (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/netipsec/
ipsec_mbuf.c 59 struct mbuf *n, *mfirst, *mlast; local
145 mlast = NULL;
150 if (mlast != NULL)
151 mlast->m_next = n;
152 mlast = n;
  /src/sys/arch/xen/xen/
xennetback_xenbus.c 812 struct mbuf *m, *m0 = NULL, *mlast = NULL; local
943 mlast = (m->m_next) ? m->m_next : m;
944 KASSERT(mlast->m_next == NULL);
947 KASSERT(mlast != NULL);
948 if (M_TRAILINGSPACE(mlast) >= m->m_pkthdr.len) {
949 mlast->m_len += m->m_pkthdr.len;
952 mlast->m_next = m;
953 mlast = (m->m_next) ? m->m_next : m;
954 KASSERT(mlast->m_next == NULL);
  /src/sys/netinet6/
ip6_output.c 953 struct mbuf *mlast; local
994 for (mlast = m; mlast->m_next; mlast = mlast->m_next)
996 mlast->m_next = m_frgpart;
1211 struct mbuf *n, *mlast; local
1223 for (mlast = n; mlast->m_next; mlast = mlast->m_next
    [all...]
  /src/sys/kern/
uipc_socket2.c 822 #define SBLINKRECORDCHAIN(sb, m0, mlast) \
828 (sb)->sb_lastrecord = (mlast); \
1229 struct mbuf *m, *mlast, *n; local
1257 mlast = m;
1260 sb->sb_mbtail = mlast;
uipc_mbuf.c 1172 struct mbuf *mlast; local
1181 for (mlast = o; mlast->m_next != NULL; mlast = mlast->m_next)
1184 mlast->m_next = n->m_next;
  /src/sys/dev/pci/
hifn7751.c 1691 struct mbuf *m, *m0, *mlast; local
1714 mlast = m0;
1735 mlast->m_next = m;
1736 mlast = m;
2945 struct mbuf *m, *m0, *mlast; local
2967 mlast = m0;
2987 mlast->m_next = m;
2988 mlast = m;

Completed in 22 milliseconds