Searched refs:hsh (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/netgraph/netflow/ |
H A D | netflow.c | 322 hash_insert(priv_p priv, struct flow_hash_entry *hsh, struct flow_rec *r, in hash_insert() argument 327 mtx_assert(&hsh->mtx, MA_OWNED); in hash_insert() 391 TAILQ_INSERT_TAIL(&hsh->head, fle, fle_hash); in hash_insert() 479 struct flow_hash_entry *hsh; in ng_netflow_cache_init() local 499 for (i = 0, hsh = priv->hash; i < NBUCKETS; i++, hsh++) { in ng_netflow_cache_init() 500 mtx_init(&hsh->mtx, "hash mutex", NULL, MTX_DEF); in ng_netflow_cache_init() 501 TAILQ_INIT(&hsh->head); in ng_netflow_cache_init() 510 for (i = 0, hsh = priv->hash6; i < NBUCKETS; i++, hsh++) { in ng_netflow_cache_init() 511 mtx_init(&hsh->mtx, "hash mutex", NULL, MTX_DEF); in ng_netflow_cache_init() 512 TAILQ_INIT(&hsh->head); in ng_netflow_cache_init() [all …]
|