Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet6/
H A Dnd6.c2385 struct mbuf *m_hold; in nd6_resolve_slow() local
2389 for (m_hold = lle->la_hold; m_hold; m_hold = m_hold->m_nextpkt){ in nd6_resolve_slow()
2391 if (m_hold->m_nextpkt == NULL) { in nd6_resolve_slow()
2392 m_hold->m_nextpkt = m; in nd6_resolve_slow()
2397 m_hold = lle->la_hold; in nd6_resolve_slow()
2399 m_freem(m_hold); in nd6_resolve_slow()
2570 struct mbuf *m_hold, *m_hold_next; in clear_llinfo_pqueue() local
2572 for (m_hold = ln->la_hold; m_hold; m_hold = m_hold_next) { in clear_llinfo_pqueue()
2573 m_hold_next = m_hold->m_nextpkt; in clear_llinfo_pqueue()
2574 m_freem(m_hold); in clear_llinfo_pqueue()
/f-stack/freebsd/vm/
H A Dvm_fault.c124 vm_page_t *m_hold; member
354 if (fs->m_hold != NULL) { in vm_fault_soft_fast()
355 (*fs->m_hold) = m; in vm_fault_soft_fast()
513 if (fs->m_hold != NULL) { in vm_fault_populate()
514 *fs->m_hold = m + (fs->first_pindex - pager_first); in vm_fault_populate()
515 vm_page_wire(*fs->m_hold); in vm_fault_populate()
581 (*fs->m_hold) = &m[i]; in vm_fault_populate()
1278 int fault_flags, vm_page_t *m_hold) in vm_fault() argument
1292 fs.m_hold = m_hold; in vm_fault()
1601 if (fs.m_hold != NULL) { in vm_fault()
[all …]
H A Dvm_extern.h89 int fault_flags, vm_page_t *m_hold);
/f-stack/freebsd/netinet/
H A Dif_ether.c1170 struct mbuf *m_hold, *m_hold_next; in arp_check_update_lle() local
1243 m_hold = la->la_hold; in arp_check_update_lle()
1248 for (; m_hold != NULL; m_hold = m_hold_next) { in arp_check_update_lle()
1249 m_hold_next = m_hold->m_nextpkt; in arp_check_update_lle()
1250 m_hold->m_nextpkt = NULL; in arp_check_update_lle()
1252 m_clrprotoflags(m_hold); in arp_check_update_lle()
1253 (*ifp->if_output)(ifp, m_hold, &sa, NULL); in arp_check_update_lle()