Lines Matching refs:poll
44 void proc_sys_poll_notify(struct ctl_table_poll *poll) in proc_sys_poll_notify() argument
46 if (!poll) in proc_sys_poll_notify()
49 atomic_inc(&poll->event); in proc_sys_poll_notify()
50 wake_up_interruptible(&poll->wait); in proc_sys_poll_notify()
573 if (table->poll) in proc_sys_open()
574 filp->private_data = proc_sys_poll_event(table->poll); in proc_sys_open()
596 if (!table->poll) in proc_sys_poll()
600 poll_wait(filp, &table->poll->wait, wait); in proc_sys_poll()
602 if (event != atomic_read(&table->poll->event)) { in proc_sys_poll()
603 filp->private_data = proc_sys_poll_event(table->poll); in proc_sys_poll()
784 .poll = proc_sys_poll,