Attention is currently required from: jolly.
Patch set 2:Code-Review +1
3 comments:
File src/core/osmo_io_uring.c:
Patch Set #2, Line 111: rc = osmo_str_to_int(&g_io_uring_size, env, 10, 1, 32768);
I wonder where 32768 comes from :D
Patch Set #2, Line 116: if ((g_io_uring_size & (g_io_uring_size - 1))) {
if (g_io_uring_size & 0x01)
Patch Set #2, Line 117: fprintf(stderr, "Error: Initial io_uring size must be a positive power of two.\n");
Is this really needed as per io_uring API?
To view, visit change 40782. To unsubscribe, or for help writing mail filters, visit settings.