-
I'm reading the man page for I looked into liburing's test and it seems like it skips this if the platform doesn't support it. I went into ret = cqe->res;
if (ret == -EINVAL) {
printf("noooooooo, say it ain't soooo!!!!!!\n");
no_multishot = 1;
return T_EXIT_SKIP;
} and in my terminal, I see:
So it seems like this is expected on my platform. I'm using Ubuntu 23.04 w/ kernel 6.2 so I'm a little surprised this doesn't seem to work:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Alright, I upgraded to Ubuntu 23.10 from 23.04 (i.e. 6.2 -> 6.5) and now it seems to be working. |
Beta Was this translation helpful? Give feedback.
-
It was added with 6.4 - usually I add that to the man pages, but looks like this one was forgotten. Will do that now. |
Beta Was this translation helpful? Give feedback.
It was added with 6.4 - usually I add that to the man pages, but looks like this one was forgotten. Will do that now.