-
Suppose I submit a SQE and lets call it A. If cancellation succeeds, then we will get 2 CQEs:
I was wondering if there is any ordering for the 2 CQEs? Or can the 2 CQEs arrive in any order? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
axboe
Jul 16, 2023
Replies: 1 comment
-
Cancelation can also succeed async, eg if the request is queued with io-wq. Normally it would indeed have the order you listed, but this is not a guarantee and an application should not rely on it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bnbajwa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cancelation can also succeed async, eg if the request is queued with io-wq. Normally it would indeed have the order you listed, but this is not a guarantee and an application should not rely on it.