From 8919fec5acb14d176b992b71108f9a912d98161e Mon Sep 17 00:00:00 2001 From: wanghanlin Date: Thu, 18 Mar 2021 20:00:41 +0800 Subject: vcl: fix libc epoll pwait starved We call vls_epoll_wait with 0 timeout to process unhandled_evts_vector in ldp_epoll_pwait_eventfd. But vls_epoll_wait will then call vppcom_epoll_wait_eventfd to process events in event queue. If there are continuous events to be handled, then libc_epoll_pwait have no chance to be called. Type: fix Signed-off-by: wanghanlin Change-Id: Ia4f61d0d438a3475bfde9f6715805274671d4e75 --- src/vcl/vppcom.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/vcl/vppcom.c') diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index cc4464b162e..3e4ba2fb953 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -3042,6 +3042,9 @@ vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events, } vec_reset_length (wrk->unhandled_evts_vector); } + /* Request to only drain unhandled */ + if ((int) wait_for_time == -2) + return n_evts; if (vcm->cfg.use_mq_eventfd) return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts, -- cgit 1.2.3-korg