mainloop: fix stuck when io_uring is enabled#4304
Merged
stgraber merged 4 commits intolxc:masterfrom Apr 21, 2023
Merged
Conversation
Currently, fd_make_nonblocking does exactly the opposite thing, it clears O_NONBLOCK flag and makes fd blocking. Signed-off-by: Alexander Mikhalitsyn <[email protected]>
Signed-off-by: Alexander Mikhalitsyn <[email protected]>
Let's prevent freezes on read(2) by making a terminal FDs non-blocking. It was discovered that there is an issue with io_uring mainloop when multishot poll (IORING_POLL_ADD_MULTI) mode is enabled. Sometimes false-positive poll events are put into a CQ. It makes further read(2) stuck forever and blocks all mainloop processing for an infinite time. Signed-off-by: Alexander Mikhalitsyn <[email protected]>
Let's disable IORING_POLL_ADD_MULTI to workaround an issue with false-positive POLLIN events in CQ. In my local setup I managed to fix an issue without this by making terminal FDs non-blocking, but during full testsuite execution in Jenkins it was found that issue still persists. So, let's add this ugly workaround too. Signed-off-by: Alexander Mikhalitsyn <[email protected]>
|
Testsuite passed |
This was referenced Feb 21, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Something is wrong with multishot polling mode in io_uring. Let's workaround that and safe from possible stucks on read.