diff --git a/tools/lkl/lib/posix-host.c b/tools/lkl/lib/posix-host.c index b493b44b4b15d9..c92e76182ef03d 100644 --- a/tools/lkl/lib/posix-host.c +++ b/tools/lkl/lib/posix-host.c @@ -304,7 +304,7 @@ static int net_poll(union lkl_netdev nd, int events) int ret = 0; if (events & LKL_DEV_NET_POLL_RX) - pfd.events |= POLLIN; + pfd.events |= POLLIN | POLLPRI; if (events & LKL_DEV_NET_POLL_TX) pfd.events |= POLLOUT;