Lines Matching defs:wait
35 * code. The ACK stuff can wait and needs major
2746 DEFINE_WAIT(wait);
2755 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
2764 finish_wait(sk_sleep(sk), &wait);
2962 DEFINE_WAIT(wait);
2965 prepare_to_wait_exclusive(&sk->sk_lock.wq, &wait,
2973 finish_wait(&sk->sk_lock.wq, &wait);
3018 * sk_wait_data - wait for data to arrive at sk_receive_queue
3019 * @sk: sock to wait on
3024 * hence we may omit checks after joining wait queue.
3030 DEFINE_WAIT_FUNC(wait, woken_wake_function);
3033 add_wait_queue(sk_sleep(sk), &wait);
3035 rc = sk_wait_event(sk, timeo, skb_peek_tail(&sk->sk_receive_queue) != skb, &wait);
3037 remove_wait_queue(sk_sleep(sk), &wait);
3308 wake_up_interruptible_all(&wq->wait);
3319 wake_up_interruptible_poll(&wq->wait, EPOLLERR);
3333 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN | EPOLLPRI |
3351 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
3375 if (wq && waitqueue_active(&wq->wait))
3376 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |