Searched defs:mtxp (Results 1 – 2 of 2) sorted by relevance
40 atomic_dec_and_lock(volatile int *v, struct mutex *mtxp) in atomic_dec_and_lock()55 #define spin_lock(mtxp) mtx_enter(mtxp) argument56 #define spin_lock_nested(mtxp, l) mtx_enter(mtxp) argument57 #define spin_unlock(mtxp) mtx_leave(mtxp) argument58 #define spin_lock_irq(mtxp) mtx_enter(mtxp) argument59 #define spin_unlock_irq(mtxp) mtx_leave(mtxp) argument60 #define assert_spin_locked(mtxp) MUTEX_ASSERT_LOCKED(mtxp) argument61 #define spin_trylock_irq(mtxp) mtx_enter_try(mtxp) argument63 #define read_lock(mtxp) mtx_enter(mtxp) argument64 #define read_unlock(mtxp) mtx_leave(mtxp) argument[all …]
43 cond_resched_lock(struct mutex *mtxp) in cond_resched_lock()