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

/freebsd-11.0-release/sys/arm64/include/
H A Dpmap.h79 struct mtx pm_mtx; member in struct:pmap
112 mtx_assert(&(pmap)->pm_mtx, MA_OWNED)
113 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
115 mtx_assert(&(pmap)->pm_mtx, (type))
116 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
117 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
119 #define PMAP_OWNED(pmap) mtx_owned(&(pmap)->pm_mtx)
120 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
121 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
122 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
[all...]
/freebsd-11.0-release/sys/riscv/include/
H A Dpmap.h78 struct mtx pm_mtx; member in struct:pmap
112 mtx_assert(&(pmap)->pm_mtx, MA_OWNED)
113 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
115 mtx_assert(&(pmap)->pm_mtx, (type))
116 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
117 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
119 #define PMAP_OWNED(pmap) mtx_owned(&(pmap)->pm_mtx)
120 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
121 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
122 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
[all...]
/freebsd-11.0-release/sys/arm/include/
H A Dpmap-v6.h106 struct mtx pm_mtx; member in struct:pmap
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)
H A Dpmap-v4.h131 struct mtx pm_mtx; member in struct:pmap
147 mtx_assert(&(pmap)->pm_mtx, MA_OWNED)
148 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
149 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
150 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
152 #define PMAP_OWNED(pmap) mtx_owned(&(pmap)->pm_mtx)
153 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
154 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
155 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-11.0-release/sys/sparc64/include/
H A Dpmap.h62 struct mtx pm_mtx; member in struct:pmap
70 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
72 mtx_assert(&(pmap)->pm_mtx, (type))
73 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
74 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
76 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
77 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
78 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
79 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-11.0-release/sys/mips/include/
H A Dpmap.h92 struct mtx pm_mtx; member in struct:pmap
108 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
109 #define PMAP_LOCK_ASSERT(pmap, type) mtx_assert(&(pmap)->pm_mtx, (type))
110 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
111 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
113 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
114 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
115 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
116 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-11.0-release/sys/powerpc/include/
H A Dpmap.h134 struct mtx pm_mtx; member in struct:pmap
185 struct mtx pm_mtx; /* pmap mutex */ member in struct:pmap
219 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
221 mtx_assert(&(pmap)->pm_mtx, (type))
222 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
223 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, \
226 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
227 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
228 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
229 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
[all...]
/freebsd-11.0-release/sys/i386/include/
H A Dpmap.h300 struct mtx pm_mtx; member in struct:pmap
319 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
321 mtx_assert(&(pmap)->pm_mtx, (type))
322 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
323 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
325 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
326 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
327 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
328 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-11.0-release/sys/amd64/include/
H A Dpmap.h313 struct mtx pm_mtx; member in struct:pmap
338 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
340 mtx_assert(&(pmap)->pm_mtx, (type))
341 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
342 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
344 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
345 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
346 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
347 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-11.0-release/sys/arm/arm/
H A Dpmap-v4.c1717 bzero(&pmap->pm_mtx, sizeof(pmap->pm_mtx));

Completed in 183 milliseconds