Lines Matching refs:poll
7 #include <linux/poll.h>
54 void proc_sys_poll_notify(struct ctl_table_poll *poll)
56 if (!poll)
59 atomic_inc(&poll->event);
60 wake_up_interruptible(&poll->wait);
628 if (table->poll)
629 filp->private_data = proc_sys_poll_event(table->poll);
651 if (!table->poll)
655 poll_wait(filp, &table->poll->wait, wait);
657 if (event != atomic_read(&table->poll->event)) {
658 filp->private_data = proc_sys_poll_event(table->poll);
852 .poll = proc_sys_poll,