Lines Matching defs:wait
35 * code. The ACK stuff can wait and needs major
2306 DEFINE_WAIT(wait);
2315 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
2324 finish_wait(sk_sleep(sk), &wait);
2527 DEFINE_WAIT(wait);
2530 prepare_to_wait_exclusive(&sk->sk_lock.wq, &wait,
2538 finish_wait(&sk->sk_lock.wq, &wait);
2582 * sk_wait_data - wait for data to arrive at sk_receive_queue
2583 * @sk: sock to wait on
2588 * hence we may omit checks after joining wait queue.
2594 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2597 add_wait_queue(sk_sleep(sk), &wait);
2599 rc = sk_wait_event(sk, timeo, skb_peek_tail(&sk->sk_receive_queue) != skb, &wait);
2601 remove_wait_queue(sk_sleep(sk), &wait);
2900 wake_up_interruptible_all(&wq->wait);
2911 wake_up_interruptible_poll(&wq->wait, EPOLLERR);
2923 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN | EPOLLPRI |
2941 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |