Lines Matching refs:poll
56 void proc_sys_poll_notify(struct ctl_table_poll *poll) in proc_sys_poll_notify() argument
58 if (!poll) in proc_sys_poll_notify()
61 atomic_inc(&poll->event); in proc_sys_poll_notify()
62 wake_up_interruptible(&poll->wait); in proc_sys_poll_notify()
632 if (table->poll) in proc_sys_open()
633 filp->private_data = proc_sys_poll_event(table->poll); in proc_sys_open()
655 if (!table->poll) in proc_sys_poll()
659 poll_wait(filp, &table->poll->wait, wait); in proc_sys_poll()
661 if (event != atomic_read(&table->poll->event)) { in proc_sys_poll()
662 filp->private_data = proc_sys_poll_event(table->poll); in proc_sys_poll()
856 .poll = proc_sys_poll,