Home
last modified time | relevance | path

Searched refs:hptsh (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp_hpts.c508 struct hptsh *hptsh; in tcp_hpts_insert_internal() local
515 hptsh = &hpts->p_hptss[tp->t_hpts_slot]; in tcp_hpts_insert_internal()
524 tp->t_hpts_gencnt = hptsh->gencnt; in tcp_hpts_insert_internal()
526 TAILQ_INSERT_TAIL(&hptsh->head, tp, t_hpts); in tcp_hpts_insert_internal()
527 hptsh->count++; in tcp_hpts_insert_internal()
583 struct hptsh *hptsh; in __tcp_hpts_remove() local
589 hptsh = &hpts->p_hptss[tp->t_hpts_slot]; in __tcp_hpts_remove()
591 if (__predict_true(tp->t_hpts_gencnt == hptsh->gencnt)) { in __tcp_hpts_remove()
592 TAILQ_REMOVE(&hptsh->head, tp, t_hpts); in __tcp_hpts_remove()
593 MPASS(hptsh->count > 0); in __tcp_hpts_remove()
[all …]
H A Dtcp_hpts_internal.h127 struct hptsh { struct