Home
last modified time | relevance | path

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

/dragonfly/sys/netinet/
H A Din_pcb.c727 struct inpcbport *phd; in in_pcblookup_localremote() local
748 if (phd != NULL) { in in_pcblookup_localremote()
1470 struct inpcbport *phd; in in_pcblookup_local() local
1489 if (phd != NULL) { in in_pcblookup_local()
1932 struct inpcbport *phd; in in_pcbinsporthash() local
1951 if (phd == NULL) { in in_pcbinsporthash()
1953 phd = pcbinfo->portsave; in in_pcbinsporthash()
1961 inp->inp_phd = phd; in in_pcbinsporthash()
1990 struct inpcbport *phd; in in_pcbremporthash() local
2001 phd = inp->inp_phd; in in_pcbremporthash()
[all …]
H A Dtcp_var.h766 struct inpcbport *phd; in tcp_pcbport_insert() local
779 phd = &ltp->t_pcbport[cpu].t_phd; in tcp_pcbport_insert()
788 inp->inp_phd = phd; in tcp_pcbport_insert()
789 LIST_INSERT_HEAD(&phd->phd_pcblist, inp, inp_portlist); in tcp_pcbport_insert()
H A Dtcp_subr.c2518 struct inpcbport *phd; in tcp_pcbport_create() local
2520 phd = &tp->t_pcbport[cpu].t_phd; in tcp_pcbport_create()
2521 LIST_INIT(&phd->phd_pcblist); in tcp_pcbport_create()
2523 phd->phd_port = tp->t_inpcb->inp_lport; in tcp_pcbport_create()
2530 struct inpcbport *phd; in tcp_pcbport_merge_oncpu() local
2535 phd = &tp->t_pcbport[cpu].t_phd; in tcp_pcbport_merge_oncpu()
2537 while ((inp = LIST_FIRST(&phd->phd_pcblist)) != NULL) { in tcp_pcbport_merge_oncpu()
2538 KASSERT(inp->inp_phd == phd && inp->inp_porthash == NULL, in tcp_pcbport_merge_oncpu()
/dragonfly/sys/netinet6/
H A Din6_pcb.c623 struct inpcbport *phd; in in6_pcblookup_local() local
638 LIST_FOREACH(phd, porthash, phd_hash) { in in6_pcblookup_local()
639 if (phd->phd_port == lport) in in6_pcblookup_local()
643 if (phd != NULL) { in in6_pcblookup_local()
650 LIST_FOREACH(inp, &phd->phd_pcblist, inp_portlist) { in in6_pcblookup_local()