2019-03-08 08:54:01

by Peng Wang

[permalink] [raw]
Subject: [PATCH] fs/epoll: remove an unnecessary argument of ep_busy_loop()

When ep_busy_loop() is called, timed_out is always zero,
otherwise ep_poll() would return first.

Signed-off-by: Peng Wang <[email protected]>
---
fs/eventpoll.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/eventpoll.c b/fs/eventpoll.c
index a5d219d920e7..0b3981ffc7ae 100644
--- a/fs/eventpoll.c
+++ b/fs/eventpoll.c
@@ -399,12 +399,12 @@ static bool ep_busy_loop_end(void *p, unsigned long start_time)
*
* we must do our busy polling with irqs enabled
*/
-static void ep_busy_loop(struct eventpoll *ep, int nonblock)
+static void ep_busy_loop(struct eventpoll *ep)
{
unsigned int napi_id = READ_ONCE(ep->napi_id);

if ((napi_id >= MIN_NAPI_ID) && net_busy_loop_on())
- napi_busy_loop(napi_id, nonblock ? NULL : ep_busy_loop_end, ep);
+ napi_busy_loop(napi_id, ep_busy_loop_end, ep);
}

static inline void ep_reset_busy_poll_napi_id(struct eventpoll *ep)
@@ -451,7 +451,7 @@ static inline void ep_set_busy_poll_napi_id(struct epitem *epi)

#else

-static inline void ep_busy_loop(struct eventpoll *ep, int nonblock)
+static inline void ep_busy_loop(struct eventpoll *ep)
{
}

@@ -1781,7 +1781,7 @@ static int ep_poll(struct eventpoll *ep, struct epoll_event __user *events,
fetch_events:

if (!ep_events_available(ep))
- ep_busy_loop(ep, timed_out);
+ ep_busy_loop(ep);

eavail = ep_events_available(ep);
if (eavail)
--
2.19.1



2019-03-19 15:34:08

by Roman Penyaev

[permalink] [raw]
Subject: Re: [PATCH] fs/epoll: remove an unnecessary argument of ep_busy_loop()

On 2019-03-08 09:14, Peng Wang wrote:
> When ep_busy_loop() is called, timed_out is always zero,
> otherwise ep_poll() would return first.

Yes, that's correct.

Reviewed-by: Roman Penyaev <[email protected]>