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

/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_taskq.c71 static struct sx *tqenthashtbl_lock; variable in typeref:struct:sx
76 #define TQIDHASHLOCK(tqid) (&tqenthashtbl_lock[((tqid) & tqenthashlock)])
91 tqenthashtbl_lock =
92 malloc(sizeof (*tqenthashtbl_lock) * (tqenthashlock + 1),
95 sx_init_flags(&tqenthashtbl_lock[i], "tqenthash", SX_DUPOK);
117 sx_destroy(&tqenthashtbl_lock[i]);
120 free(tqenthashtbl_lock, M_TASKQ);

Completed in 34 milliseconds