Lines Matching refs:pwq
384 struct eppoll_entry *pwq; in ep_unregister_pollwait() local
391 pwq = list_first_entry(lsthead, struct eppoll_entry, llink); in ep_unregister_pollwait()
393 list_del_init(&pwq->llink); in ep_unregister_pollwait()
394 remove_wait_queue(pwq->whead, &pwq->wait); in ep_unregister_pollwait()
395 kmem_cache_free(pwq_cache, pwq); in ep_unregister_pollwait()
704 struct eppoll_entry *pwq; in ep_ptable_queue_proc() local
706 if (epi->nwait >= 0 && (pwq = kmem_cache_alloc(pwq_cache, GFP_KERNEL))) { in ep_ptable_queue_proc()
707 init_waitqueue_func_entry(&pwq->wait, ep_poll_callback); in ep_ptable_queue_proc()
708 pwq->whead = whead; in ep_ptable_queue_proc()
709 pwq->base = epi; in ep_ptable_queue_proc()
710 add_wait_queue(whead, &pwq->wait); in ep_ptable_queue_proc()
711 list_add_tail(&pwq->llink, &epi->pwqlist); in ep_ptable_queue_proc()