Symbol: mtx_owner
sys/arch/hppa/hppa/mutex.c
110
if (__predict_false(mtx->mtx_owner == ci))
sys/arch/hppa/hppa/mutex.c
117
mtx->mtx_owner = ci;
sys/arch/hppa/hppa/mutex.c
146
mtx->mtx_owner = NULL;
sys/arch/hppa/hppa/mutex.c
53
mtx->mtx_owner = NULL;
sys/arch/hppa/hppa/mutex.c
76
if (__predict_false(mtx->mtx_owner == ci))
sys/arch/hppa/hppa/mutex.c
88
mtx->mtx_owner = ci;
sys/arch/hppa/include/mutex.h
42
volatile void *mtx_owner;
sys/arch/hppa/include/mutex.h
67
if ((mtx)->mtx_owner != curcpu()) \
sys/arch/hppa/include/mutex.h
72
if ((mtx)->mtx_owner == curcpu()) \
sys/arch/m88k/include/mutex.h
37
volatile void *mtx_owner;
sys/arch/m88k/include/mutex.h
58
if (((mtx)->mtx_owner != curcpu()) && !(panicstr || db_active)) \
sys/arch/m88k/include/mutex.h
63
if (((mtx)->mtx_owner == curcpu()) && !(panicstr || db_active)) \
sys/arch/m88k/m88k/mutex.c
102
if (__predict_false(mtx->mtx_owner == ci))
sys/arch/m88k/m88k/mutex.c
124
if (__predict_false(mtx->mtx_owner == ci))
sys/arch/m88k/m88k/mutex.c
131
mtx->mtx_owner = ci;
sys/arch/m88k/m88k/mutex.c
167
mtx->mtx_owner = NULL;
sys/arch/m88k/m88k/mutex.c
44
mtx->mtx_owner = NULL;
sys/arch/m88k/m88k/mutex.c
90
mtx->mtx_owner = ci;
sys/kern/kern_lock.c
250
mtx->mtx_owner = 0;
sys/kern/kern_lock.c
344
return atomic_cas_ulong(&mtx->mtx_owner, e, v);
sys/kern/kern_lock.c
429
owner = mtx->mtx_owner;
sys/kern/kern_lock.c
508
owner = atomic_cas_ulong(&mtx->mtx_owner, self, 0);
sys/kern/kern_lock.c
521
mtx->mtx_owner = 0;
sys/kern/kern_lock.c
549
if (__predict_false(mtx_owner(mtx) == self))
sys/kern/kern_lock.c
556
mtx->mtx_owner = self;
sys/kern/kern_lock.c
588
mtx->mtx_owner = 0;
sys/kern/kern_lock.c
603
if (__predict_false(mtx->mtx_owner == ci))
sys/kern/kern_lock.c
613
owner = mtx->mtx_owner;
sys/kern/kern_lock.c
615
owner = atomic_cas_ptr(&mtx->mtx_owner, NULL, ci);
sys/kern/kern_lock.c
643
if (__predict_false(mtx->mtx_owner != ci))
sys/kern/kern_lock.c
652
mtx->mtx_owner = NULL;
sys/kern/subr_witness.c
1680
if (mtx_owner(&w_mtx) != mtx_curcpu())
sys/sys/mutex.h
134
((mtx_owner(mtx) == mtx_curcpu()) || panicstr || db_active)
sys/sys/mutex.h
160
struct cpu_info *volatile mtx_owner;
sys/sys/mutex.h
57
volatile unsigned long mtx_owner;
sys/sys/mutex.h
77
#define mtx_owner(mtx) ((mtx)->mtx_owner & ~1UL)
sys/sys/mutex.h
81
if (mtx_owner(mtx) != mtx_curcpu() && !(panicstr || db_active)) \
sys/sys/mutex.h
86
if (mtx_owner(mtx) == mtx_curcpu() && !(panicstr || db_active)) \