Searched refs:pm_mtx (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/arm/include/ |
| H A D | pmap-v6.h | 106 struct mtx pm_mtx; member 121 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx) 123 mtx_assert(&(pmap)->pm_mtx, (type)) 124 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx) 125 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \ 127 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx) 128 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx) 129 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx) 130 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
|
| /f-stack/freebsd/mips/include/ |
| H A D | pmap.h | 95 struct mtx pm_mtx; member 111 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx) 112 #define PMAP_LOCK_ASSERT(pmap, type) mtx_assert(&(pmap)->pm_mtx, (type)) 113 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx) 114 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \ 116 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx) 117 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx) 118 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx) 119 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
|
| /f-stack/freebsd/arm64/include/ |
| H A D | pmap.h | 86 struct mtx pm_mtx; member 134 mtx_assert(&(pmap)->pm_mtx, MA_OWNED) 135 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx) 137 mtx_assert(&(pmap)->pm_mtx, (type)) 138 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx) 139 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \ 141 #define PMAP_OWNED(pmap) mtx_owned(&(pmap)->pm_mtx) 142 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx) 143 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx) 144 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
|
| /f-stack/freebsd/i386/include/ |
| H A D | pmap.h | 170 struct mtx pm_mtx; member 187 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx) 189 mtx_assert(&(pmap)->pm_mtx, (type)) 190 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx) 191 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \ 193 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx) 194 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx) 195 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx) 196 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
|
| /f-stack/freebsd/amd64/include/ |
| H A D | pmap.h | 364 struct mtx pm_mtx; member 393 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx) 395 mtx_assert(&(pmap)->pm_mtx, (type)) 396 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx) 397 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \ 399 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx) 400 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx) 401 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx) 402 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
|