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

/freebsd-11-stable/sys/fs/nfs/
H A Dnfsport.h684 #define NFSDLOCKMUTEX extern struct mtx newnfsd_mtx
685 #define NFSDLOCKMUTEXPTR (&newnfsd_mtx)
686 #define NFSD_LOCK() mtx_lock(&newnfsd_mtx)
687 #define NFSD_UNLOCK() mtx_unlock(&newnfsd_mtx)
688 #define NFSD_LOCK_ASSERT() mtx_assert(&newnfsd_mtx, MA_OWNED)
689 #define NFSD_UNLOCK_ASSERT() mtx_assert(&newnfsd_mtx, MA_NOTOWNED)
H A Dnfs_commonport.c123 * newnfsd_mtx is used in nfsrvd_nfsd() to protect the nfs socket list
126 struct mtx newnfsd_mtx; variable in typeref:struct:mtx
662 mtx_init(&newnfsd_mtx, "newnfsd_mtx", NULL, MTX_DEF);
728 mtx_destroy(&newnfsd_mtx);

Completed in 119 milliseconds