Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/
H A Dtcp_lro.c176 lc->lro_hash = phashinit_flags(elements, M_LRO, &lc->lro_hashsz, in tcp_lro_init_args()
178 if (lc->lro_hash == NULL) { in tcp_lro_init_args()
191 free(lc->lro_hash, M_LRO); in tcp_lro_init_args()
252 free(lc->lro_hash, M_LRO); in tcp_lro_free()
253 lc->lro_hash = NULL; in tcp_lro_free()
1250 bucket = &lc->lro_hash[0]; in tcp_lro_rx2()
1252 bucket = &lc->lro_hash[m->m_pkthdr.flowid % lc->lro_hashsz]; in tcp_lro_rx2()
1279 bucket = &lc->lro_hash[hash % lc->lro_hashsz]; in tcp_lro_rx2()
H A Dtcp_lro.h116 struct lro_head *lro_hash; member