We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176d45e commit 7b79db9Copy full SHA for 7b79db9
driver/ioem.c
@@ -350,7 +350,7 @@ static struct request* ioem_dequeue(struct ioem_data *data)
350
rq = list_first_entry(&data->list, struct request, queuelist);
351
// if now is ealier than the `time_to_send`, there is no need to try to
352
// dispatch
353
- if (now < ioem_priv(rq)->time_to_send) {
+ if (now >= ioem_priv(rq)->time_to_send) {
354
irl_ret = irl_dispatch(data, rq);
355
if (irl_ret.dispatch > 0) {
356
// not exceeded, return the request
0 commit comments