You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when I try to use io_uring_prep_multishot_accept_direct on a listener socket (which is also a direct descriptor) with SOCK_CLOEXEC flag specified, I get errno -22 (EINVAL) on cqe.res field. Is this the expected behaviour? The non-direct variant io_uring_prep_multishot_accept works as expected.
The text was updated successfully, but these errors were encountered:
…files
SOCK_CLOEXEC is only supported with regular file descriptors, the
direct descriptors currently do not support automatic closing on exec.
Link: #1330
Signed-off-by: Jens Axboe <[email protected]>
Hi, when I try to use
io_uring_prep_multishot_accept_direct
on a listener socket (which is also a direct descriptor) withSOCK_CLOEXEC
flag specified, I get errno -22 (EINVAL) oncqe.res
field. Is this the expected behaviour? The non-direct variantio_uring_prep_multishot_accept
works as expected.The text was updated successfully, but these errors were encountered: