Home
last modified time | relevance | path

Searched refs:RL_LOCK_GRANTED (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_rangelock.c135 entry->rl_q_flags |= RL_LOCK_GRANTED; in rangelock_calc_block()
199 KASSERT(entry->rl_q_flags & RL_LOCK_GRANTED, in rangelock_unlock_range()
256 while (!(entry->rl_q_flags & RL_LOCK_GRANTED)) { in rangelock_enqueue()
315 if ((flags & RL_LOCK_GRANTED) == 0) in _rangelock_cookie_assert()
319 if ((flags & (RL_LOCK_GRANTED | RL_LOCK_READ)) != in _rangelock_cookie_assert()
320 (RL_LOCK_GRANTED | RL_LOCK_READ)) in _rangelock_cookie_assert()
324 if ((flags & (RL_LOCK_GRANTED | RL_LOCK_WRITE)) != in _rangelock_cookie_assert()
325 (RL_LOCK_GRANTED | RL_LOCK_WRITE)) in _rangelock_cookie_assert()
/f-stack/freebsd/sys/
H A Drangelock.h39 #define RL_LOCK_GRANTED 0x0004 macro