aboutsummaryrefslogtreecommitdiff
path: root/fs/eventpoll.c
AgeCommit message (Expand)AuthorFilesLines
2019-01-05Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-100/+118
2019-01-04fs/epoll: deal with wait_queue only onceGravatar Davidlohr Bueso 1-11/+18
2019-01-04fs/epoll: rename check_events label to send_eventsGravatar Davidlohr Bueso 1-3/+3
2019-01-04fs/epoll: avoid barrier after an epoll_wait(2) timeoutGravatar Davidlohr Bueso 1-2/+6
2019-01-04fs/epoll: reduce the scope of wq lock in epoll_wait()Gravatar Davidlohr Bueso 1-54/+60
2019-01-04fs/epoll: robustify ep->mtx held checksGravatar Davidlohr Bueso 1-0/+2
2019-01-04fs/epoll: drop ovflist branch predictionGravatar Davidlohr Bueso 1-1/+1
2019-01-04fs/epoll: simplify ep_send_events_proc() ready-list loopGravatar Davidlohr Bueso 1-36/+37
2019-01-04fs/epoll: remove max_nests argument from ep_call_nested()Gravatar Davidlohr Bueso 1-8/+6
2019-01-03Remove 'type' argument from access_ok() functionGravatar Linus Torvalds 1-1/+1
2018-12-06signal: Add restore_user_sigmask()Gravatar Deepa Dinamani 1-28/+2
2018-12-06signal: Add set_user_sigmask()Gravatar Deepa Dinamani 1-16/+6
2018-08-22fs/eventpoll.c: simplify ep_is_linked() callersGravatar Davidlohr Bueso 1-8/+8
2018-08-22fs/eventpoll.c: loosen irq safety in ep_poll()Gravatar Davidlohr Bueso 1-6/+7
2018-08-22fs/eventpoll.c: simply CONFIG_NET_RX_BUSY_POLL ifdeferyGravatar Davidlohr Bueso 1-7/+16
2018-08-22s/epoll: robustify irq safety with lockdep_assert_irqs_enabled()Gravatar Davidlohr Bueso 1-0/+8
2018-08-22fs/epoll: loosen irq safety in epoll_insert() and epoll_remove()Gravatar Davidlohr Bueso 1-8/+6
2018-08-22fs/epoll: loosen irq safety in ep_scan_ready_list()Gravatar Davidlohr Bueso 1-5/+4
2018-08-22epoll: use the waitqueue lock to protect ep->wqGravatar Christoph Hellwig 1-36/+29
2018-06-28Revert changes to convert to ->poll_mask() and aio IOCB_CMD_POLLGravatar Linus Torvalds 1-10/+5
2018-06-14eventpoll: switch to ->poll_maskGravatar Ben Noordhuis 1-5/+10
2018-05-26fs: add new vfs_poll and file_can_poll helpersGravatar Christoph Hellwig 1-3/+2
2018-04-02fs: add do_epoll_*() helpers; remove internal calls to sys_epoll_*()Gravatar Dominik Brodowski 1-6/+17
2018-02-11vfs: do bulk POLL* -> EPOLL* replacementGravatar Linus Torvalds 1-11/+11
2018-02-01annotate ep_scan_ready_list()Gravatar Al Viro 1-11/+13
2018-02-01ep_send_events_proc(): return result via esed->resGravatar Al Viro 1-7/+10
2017-11-28eventpoll: no need to mask the result of epi_item_poll() againGravatar Al Viro 1-7/+2
2017-11-28eventpoll: constify struct epoll_event pointersGravatar Al Viro 1-3/+5
2017-11-27fs: annotate ->poll() instancesGravatar Al Viro 1-1/+1
2017-11-27annotate poll-related wait keysGravatar Al Viro 1-4/+5
2017-11-17Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-76/+55
2017-11-17epoll: remove ep_call_nested() from ep_eventpoll_poll()Gravatar Jason Baron 1-45/+35
2017-11-17epoll: avoid calling ep_call_nested() from ep_poll_safewake()Gravatar Jason Baron 1-29/+18
2017-11-17epoll: account epitem and eppoll_entry to kmemcgGravatar Shakeel Butt 1-2/+2
2017-09-19get_compat_sigset()Gravatar Al Viro 1-3/+1
2017-09-08fs/epoll: use faster rb_first_cached()Gravatar Davidlohr Bueso 1-14/+16
2017-09-01epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove()Gravatar Oleg Nesterov 1-16/+26
2017-07-12kcmp: fs/epoll: wrap kcmp code with CONFIG_CHECKPOINT_RESTOREGravatar Cyrill Gorcunov 1-0/+2
2017-07-12kcmp: add KCMP_EPOLL_TFD mode to compare epoll target filesGravatar Cyrill Gorcunov 1-0/+42
2017-07-12procfs: fdinfo: extend information about epoll target filesGravatar Cyrill Gorcunov 1-2/+6
2017-07-10fs, epoll: short circuit fetching events if thread has been killedGravatar David Rientjes 1-0/+10
2017-06-20sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list namingGravatar Ingo Molnar 1-1/+1
2017-06-20sched/wait: Rename wait_queue_t => wait_queue_entry_tGravatar Ingo Molnar 1-5/+5
2017-03-24epoll: Add busy poll support to epoll with socket fds.Gravatar Sridhar Samudrala 1-0/+93
2017-03-02sched/headers: Prepare to move signal wakeup & sigpending methods from <linux...Gravatar Ingo Molnar 1-1/+1
2017-02-27fs,eventpoll: don't test for bitfield with stack valueGravatar Cyrill Gorcunov 1-1/+1
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyGravatar Linus Torvalds 1-1/+1
2016-05-19fs: poll/select/recvmmsg: use timespec64 for timeout eventsGravatar Deepa Dinamani 1-6/+6
2016-03-17timer: convert timer_slack_ns from unsigned long to u64Gravatar John Stultz 1-1/+1
2016-02-05epoll: restrict EPOLLEXCLUSIVE to POLLIN and POLLOUTGravatar Jason Baron 1-6/+32