* The taskq_wait_id() function blocks until the passed task id completes. * This does not guarantee that all lower task ids have completed. */
| 432 | * This does not guarantee that all lower task ids have completed. |
| 433 | */ |
| 434 | void |
| 435 | taskq_wait_id(taskq_t *tq, taskqid_t id) |
| 436 | { |
| 437 | wait_event(tq->tq_wait_waitq, taskq_wait_id_check(tq, id)); |
| 438 | } |
| 439 | EXPORT_SYMBOL(taskq_wait_id); |
| 440 | |
| 441 | static int |
no test coverage detected