Home
last modified time | relevance | path

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

/NextBSD/sys/netinet/
HDtcp_syncache.c163 #define V_tcp_syncache VNET(tcp_syncache) macro
213 uma_zfree(V_tcp_syncache.zone, sc); in syncache_free()
221 V_tcp_syncache.hashsize = TCP_SYNCACHE_HASHSIZE; in syncache_init()
222 V_tcp_syncache.bucket_limit = TCP_SYNCACHE_BUCKETLIMIT; in syncache_init()
223 V_tcp_syncache.rexmt_limit = SYNCACHE_MAXREXMTS; in syncache_init()
224 V_tcp_syncache.hash_secret = arc4random(); in syncache_init()
227 &V_tcp_syncache.hashsize); in syncache_init()
229 &V_tcp_syncache.bucket_limit); in syncache_init()
230 if (!powerof2(V_tcp_syncache.hashsize) || in syncache_init()
231 V_tcp_syncache.hashsize == 0) { in syncache_init()
[all …]