Lines Matching refs:wait_for_completion
17 look into using one of the wait_for_completion*() calls instead. The
36 wait_for_completion() and the signaling side through a call to complete()
55 wait_for_completion(&early_console_added);
98 or _timeout variants of wait_for_completion().
105 calls wait_for_completion() on the initialized completion structure.
114 wait_for_completion(&setup_done); complete(setup_done)
116 This is not implying any temporal order on wait_for_completion() and the
118 to wait_for_completion() then the waiting side simply will continue
122 Note that wait_for_completion() is calling spin_lock_irq()/spin_unlock_irq(),
127 wait_for_completion():
129 void wait_for_completion(struct completion *done):
132 uninterruptible. wait_for_completion() and its variants are only safe
138 As all variants of wait_for_completion() can (obviously) block for a long