-
dear @axboe or others liburing/src/include/liburing.h Line 192 in d84c29b .. declares a behavior however I am porting the liburing tests through an ffi (kotlin) and the occurrences I have run into really don't show rigor in these matters.
this brings me to the next point of potential astonishing behavior, that while not impossible to tease out, this makes for a bit of extra care and feeding; on top of lacking background info or sufficient examples to know the value of preserving this or the alternatives. any and all background you can provide would be greatly helpful! thanks edit: clarified |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
May need some extra comments but One valid use case is to do |
Beta Was this translation helpful? Give feedback.
May need some extra comments but
io_uring_for_each_cqe
is not intended for waiting for CQEs but rather processing ones that are already there. And it's not possible to busy poll CQ for IOPOLL and anyway not recommended for non-IOPOLL.One valid use case is to do
io_uring_for_each_cqe
afterio_uring_wait_cqe_nr
.