-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
submit_and_wait(1) does not return w/ nop and recvmsg_multishot #1364
Comments
Please provide a complete code example that shows it. I can almost certainly guarantee that this is a coding issue, it's not an io_uring issue, as it's a pretty basic usage. |
For tracing, you can do: echo 1 > /sys/kernel/debug/tracing/events/io_uring_enablerun your code, and then cat /sys/kernel/debug/tracing/trace |
Thanks! Using the trace was clutch. Is that in the man page someplace? I'm still a bit surprised that the submit did not return w/ a valid NOP. The kernel trace said it completed the NOP fine. |
oh! I see. My bug was thus: |
Don't think it is... Should probably be, but not quite sure where to put it. |
I'm having all kinds of issues trying to get recvmsg_multishot to work on some multicast addresses over localhost. Sometimes I get data on some sockets, but not others. Sometimes I don't get anything. Sometimes it works fine. I'm sure I'm doing something wrong, but I'm not sure what.
But the oddest thing, is that submit() is not returning w/ a NOP sqe in the list.
Here is the SQE when I submit_and_wait:
Even if my setup of the recvs is wrong, I would expect this .NOP to return right away. Instead submit_and_wait(1) never returns. The behavior is the same if I setup the ring with IORING_SETUP_SQPOLL or not.
If I re-order the requests, or I pre-pend other requests in the same submission, the behavior changes, but at least submit() returns.
running a 6.12.16 kernel.
What's the best way to debug/trace how the kernel is processing this queue?
The text was updated successfully, but these errors were encountered: