wait_event_lock_irq_cmd —
sleep until a condition gets true. The condition is checked under the lock. This is expected to be called with the lock taken.
wait_event_lock_irq —
sleep until a condition gets true. The condition is checked under the lock. This is expected to be called with the lock taken.
wait_event_interruptible_lock_irq_cmd —
sleep until a condition gets true. The condition is checked under the lock. This is expected to be called with the lock taken.
wait_event_interruptible_lock_irq —
sleep until a condition gets true. The condition is checked under the lock. This is expected to be called with the lock taken.
wait_event_interruptible_lock_irq_timeout —
sleep until a condition gets true or a timeout elapses. The condition is checked under the lock. This is expected to be called with the lock taken.