Home
last modified time | relevance | path

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

/freebsd/sys/netipsec/
H A Dkey.c228 #define V_spdcache_lock VNET(spdcache_lock) macro
231 mtx_init(&V_spdcache_lock[a], "spdcache", \
233 #define SPDCACHE_LOCK_DESTROY(a) mtx_destroy(&V_spdcache_lock[a])
234 #define SPDCACHE_LOCK(a) mtx_lock(&V_spdcache_lock[a]);
235 #define SPDCACHE_UNLOCK(a) mtx_unlock(&V_spdcache_lock[a]);
8538 V_spdcache_lock = malloc(sizeof(struct mtx) * in spdcache_init()
8605 free(V_spdcache_lock, M_IPSEC_SPDCACHE); in spdcache_destroy()