Lines Matching refs:wait_for_completion
16 you probably want to look into using one of the wait_for_completion*()
39 - the waiting part through a call to one of the variants of wait_for_completion(),
63 wait_for_completion(&early_console_added);
79 variants of wait_for_completion(), as it must be assured that memory de-allocation
95 wait_for_completion() calls going on in parallel.
145 calls wait_for_completion() on the initialized completion structure::
147 void wait_for_completion(struct completion *done)
160 wait_for_completion(&setup_done); complete(setup_done);
162 This is not implying any particular order between wait_for_completion() and
164 to wait_for_completion() then the waiting side simply will continue
168 Note that wait_for_completion() is calling spin_lock_irq()/spin_unlock_irq(),
174 uninterruptible. wait_for_completion() and its variants are only safe
180 As all variants of wait_for_completion() can (obviously) block for a long
185 wait_for_completion*() variants available: