Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_hpts.c201 struct hptsh { struct
498 struct hptsh *hptsh; in tcp_hpts_insert_internal() local
505 hptsh = &hpts->p_hptss[tp->t_hpts_slot]; in tcp_hpts_insert_internal()
514 tp->t_hpts_gencnt = hptsh->gencnt; in tcp_hpts_insert_internal()
516 TAILQ_INSERT_TAIL(&hptsh->head, tp, t_hpts); in tcp_hpts_insert_internal()
517 hptsh->count++; in tcp_hpts_insert_internal()
574 struct hptsh *hptsh; in tcp_hpts_remove() local
580 hptsh = &hpts->p_hptss[tp->t_hpts_slot]; in tcp_hpts_remove()
582 if (__predict_true(tp->t_hpts_gencnt == hptsh->gencnt)) { in tcp_hpts_remove()
583 TAILQ_REMOVE(&hptsh->head, tp, t_hpts); in tcp_hpts_remove()
[all …]