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