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

  /src/sys/net/
nd.c 373 struct mbuf *m_hold; local
377 for (m_hold = ln->ln_hold; m_hold; m_hold = m_hold->m_nextpkt) {
379 if (m_hold->m_nextpkt == NULL) {
380 m_hold->m_nextpkt = m;
387 m_hold = ln->ln_hold;
389 m_freem(m_hold);
  /src/sys/netinet6/
nd6.c 1293 struct mbuf *m_hold, *m_hold_next; local
1300 m_hold = ln->la_hold, ln->la_hold = NULL, ln->la_numheld = 0;
1304 for (; m_hold != NULL; m_hold = m_hold_next) {
1305 m_hold_next = m_hold->m_nextpkt;
1306 m_hold->m_nextpkt = NULL;
1313 ip6_if_output(ifp, ifp, m_hold, &sin6, NULL);
  /src/sys/netinet/
if_arp.c 1085 struct mbuf *m_hold, *m_hold_next; local
1090 m_hold = la->la_hold;
1100 for (; m_hold != NULL; m_hold = m_hold_next) {
1101 m_hold_next = m_hold->m_nextpkt;
1102 m_hold->m_nextpkt = NULL;
1103 if_output_lock(ifp, ifp, m_hold, sintosa(&sin), NULL);

Completed in 18 milliseconds