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

/freebsd-9.3-release/sys/ia64/include/
H A Dpmap.h75 struct mtx pm_mtx; member in struct:pmap
87 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
89 mtx_assert(&(pmap)->pm_mtx, (type))
90 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
91 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
93 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
94 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
95 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
96 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/mips/include/
H A Dpmap.h94 struct mtx pm_mtx; member in struct:pmap
110 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
111 #define PMAP_LOCK_ASSERT(pmap, type) mtx_assert(&(pmap)->pm_mtx, (type))
112 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
113 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
115 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
116 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
117 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
118 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/sparc64/include/
H A Dpmap.h63 struct mtx pm_mtx; member in struct:pmap
76 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
78 mtx_assert(&(pmap)->pm_mtx, (type))
79 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
80 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
82 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
83 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
84 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
85 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/powerpc/include/
H A Dpmap.h126 struct mtx pm_mtx; member in struct:pmap
177 struct mtx pm_mtx; /* pmap mutex */ member in struct:pmap
211 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
213 mtx_assert(&(pmap)->pm_mtx, (type))
214 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
215 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, \
218 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
219 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
220 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
221 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
[all...]
/freebsd-9.3-release/sys/amd64/include/
H A Dpmap.h225 struct mtx pm_mtx; member in struct:pmap
240 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
242 mtx_assert(&(pmap)->pm_mtx, (type))
243 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
244 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
246 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
247 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
248 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
249 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/i386/include/
H A Dpmap.h363 struct mtx pm_mtx; member in struct:pmap
382 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
384 mtx_assert(&(pmap)->pm_mtx, (type))
385 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
386 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
388 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
389 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
390 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
391 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/arm/include/
H A Dpmap.h135 struct mtx pm_mtx; member in struct:pmap
153 mtx_assert(&(pmap)->pm_mtx, MA_OWNED)
154 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
155 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
156 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
158 #define PMAP_OWNED(pmap) mtx_owned(&(pmap)->pm_mtx)
159 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
160 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
161 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)
/freebsd-9.3-release/sys/arm/arm/
H A Dpmap.c1834 bzero(&pmap->pm_mtx, sizeof(pmap->pm_mtx));

Completed in 70 milliseconds