Searched refs:hashbase (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/sys/netinet/
H A Dtcp_hostcache.c226 V_tcp_hostcache.hashbase = (struct hc_head *)
234 TAILQ_INIT(&V_tcp_hostcache.hashbase[i].hch_bucket);
235 V_tcp_hostcache.hashbase[i].hch_length = 0;
236 mtx_init(&V_tcp_hostcache.hashbase[i].hch_mtx, "tcp_hc_entry",
271 mtx_destroy(&V_tcp_hostcache.hashbase[i].hch_mtx);
272 free(V_tcp_hostcache.hashbase, M_HOSTCACHE);
302 hc_head = &V_tcp_hostcache.hashbase[hash];
361 hc_head = &V_tcp_hostcache.hashbase[hash];
390 V_tcp_hostcache.hashbase[hash].hch_length--;
423 V_tcp_hostcache.hashbase[has
[all...]
H A Dtcp_hostcache.h72 struct hc_head *hashbase; member in struct:tcp_hostcache
H A Dtcp_syncache.h119 struct syncache_head *hashbase; member in struct:tcp_syncache
H A Dtcp_syncache.c272 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize *
281 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket);
282 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head",
284 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer,
285 &V_tcp_syncache.hashbase[i].sch_mtx, 0);
286 V_tcp_syncache.hashbase[i].sch_length = 0;
287 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache;
288 V_tcp_syncache.hashbase[i].sch_last_overflow =
323 sch = &V_tcp_syncache.hashbase[i];
342 free(V_tcp_syncache.hashbase, M_SYNCACH
[all...]

Completed in 94 milliseconds