On 9/20/19 10:53 AM, Andres Freund wrote: > Hi, > > On 2019-09-17 10:03:58 -0600, Jens Axboe wrote: >> There's been a few requests for functionality similar to io_getevents() >> and epoll_wait(), where the user can specify a timeout for waiting on >> events. I deliberately did not add support for this through the system >> call initially to avoid overloading the args, but I can see that the use >> cases for this are valid. > >> This adds support for IORING_OP_TIMEOUT. If a user wants to get woken >> when waiting for events, simply submit one of these timeout commands >> with your wait call. This ensures that the application sleeping on the >> CQ ring waiting for events will get woken. The timeout command is passed >> in a pointer to a struct timespec. Timeouts are relative. > > Hm. This interface wouldn't allow to to reliably use a timeout waiting for > io_uring_enter(..., min_complete > 1, ING_ENTER_GETEVENTS, ...) > right? I've got a (unpublished as of yet) version that allows you to wait for N events, and canceling the timer it met. So that does allow you to reliably wait for N events. > I can easily imagine usecases where I'd want to submit a bunch of ios > and wait for all of their completion to minimize unnecessary context > switches, as all IOs are required to continue. But with a relatively > small timeout, to allow switching to do other work etc. The question is if it's worth it to add support for "wait for these N exact events", or whether "wait for N events" is enough. The application needs to read those completions anyway, and could then decide to loop if it's still missing some events. Downside is that it may mean more calls to wait, but since the io_uring is rarely shared, it might be just fine. Curious on your opinion. -- Jens Axboe