aboutsummaryrefslogtreecommitdiffstats
path: root/fs/eventpoll.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2020-09-26 18:48:57 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2020-10-25 20:02:04 -0400
commit2c0b71c1e9c9362c9503f218fed62aeb66a2ef97 (patch)
tree7a7bb95b599ae923dec879cd7500e2cd224dcac5 /fs/eventpoll.c
parenttake the common part of ep_eventpoll_poll() and ep_item_poll() into helper (diff)
downloadlinux-dev-2c0b71c1e9c9362c9503f218fed62aeb66a2ef97.tar.xz
linux-dev-2c0b71c1e9c9362c9503f218fed62aeb66a2ef97.zip
fold ep_read_events_proc() into the only caller
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/eventpoll.c')
-rw-r--r--fs/eventpoll.c49
1 files changed, 20 insertions, 29 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c
index ee31ebe33150..4903104137c6 100644
--- a/fs/eventpoll.c
+++ b/fs/eventpoll.c
@@ -729,14 +729,17 @@ static int ep_eventpoll_release(struct inode *inode, struct file *file)
return 0;
}
-static __poll_t ep_read_events_proc(struct eventpoll *ep, struct list_head *head,
- int depth);
+static __poll_t ep_item_poll(const struct epitem *epi, poll_table *pt, int depth);
static __poll_t __ep_eventpoll_poll(struct file *file, poll_table *wait, int depth)
{
struct eventpoll *ep = file->private_data;
LIST_HEAD(txlist);
- __poll_t res;
+ struct epitem *epi, *tmp;
+ poll_table pt;
+ __poll_t res = 0;
+
+ init_poll_funcptr(&pt, NULL);
/* Insert inside our poll wait queue */
poll_wait(file, &ep->poll_wait, wait);
@@ -747,7 +750,20 @@ static __poll_t __ep_eventpoll_poll(struct file *file, poll_table *wait, int dep
*/
mutex_lock_nested(&ep->mtx, depth);
ep_start_scan(ep, &txlist);
- res = ep_read_events_proc(ep, &txlist, depth + 1);
+ list_for_each_entry_safe(epi, tmp, &txlist, rdllink) {
+ if (ep_item_poll(epi, &pt, depth + 1)) {
+ res = EPOLLIN | EPOLLRDNORM;
+ break;
+ } else {
+ /*
+ * Item has been dropped into the ready list by the poll
+ * callback, but it's not actually ready, as far as
+ * caller requested events goes. We can remove it here.
+ */
+ __pm_relax(ep_wakeup_source(epi));
+ list_del_init(&epi->rdllink);
+ }
+ }
ep_done_scan(ep, &txlist);
mutex_unlock(&ep->mtx);
return res;
@@ -772,31 +788,6 @@ static __poll_t ep_item_poll(const struct epitem *epi, poll_table *pt,
return res & epi->event.events;
}
-static __poll_t ep_read_events_proc(struct eventpoll *ep, struct list_head *head,
- int depth)
-{
- struct epitem *epi, *tmp;
- poll_table pt;
-
- init_poll_funcptr(&pt, NULL);
-
- list_for_each_entry_safe(epi, tmp, head, rdllink) {
- if (ep_item_poll(epi, &pt, depth)) {
- return EPOLLIN | EPOLLRDNORM;
- } else {
- /*
- * Item has been dropped into the ready list by the poll
- * callback, but it's not actually ready, as far as
- * caller requested events goes. We can remove it here.
- */
- __pm_relax(ep_wakeup_source(epi));
- list_del_init(&epi->rdllink);
- }
- }
-
- return 0;
-}
-
static __poll_t ep_eventpoll_poll(struct file *file, poll_table *wait)
{
return __ep_eventpoll_poll(file, wait, 0);