Searched refs:hptsh (Results 1 – 2 of 2) sorted by relevance
508 struct hptsh *hptsh; in tcp_hpts_insert_internal() local515 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() local589 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 …]
127 struct hptsh { struct