-
Hey everyone, I'm trying to update my runtime to take advantage of this flag and I had a few questions.
and also the passage here seem to imply that "task work" is pushed back until I have code that relies on When I use this flag, what actually gets delayed? What's the full scope of this change? One thing I did notice is that this flag seemed to delay submission of a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The flag doesn't affect submissions, so submit should try to consume all
... but the flag affect completion of requests. If a request completes "inline", i.e. while in the syscall in the submission path, the CQE will be available, Note, that wait_and_get_events(); Which should be just submit_and_get_events();
wait(); .. can be just submit();
wait();
// or submit_and_wait();
|
Beta Was this translation helpful? Give feedback.
The flag doesn't affect submissions, so submit should try to consume all
nr_submit
SQEs and queue up requests regardless ...