io_uring/net: wire up IORING_CQE_F_SOCK_NONEMPTY for accept net-accept-more net-accept-more-20240515
authorJens Axboe <axboe@kernel.dk>
Thu, 9 May 2024 15:41:10 +0000 (09:41 -0600)
committerJens Axboe <axboe@kernel.dk>
Tue, 14 May 2024 00:19:23 +0000 (18:19 -0600)
commitac287da2e0ea5be2523222981efec86f0ca977cd
tree02b55af4e012133e206bdb47b7fadedc141f75d8
parent7951e36ac620a9ba1bae0ac0ddd62d2e82285725
io_uring/net: wire up IORING_CQE_F_SOCK_NONEMPTY for accept

If the given protocol supports passing back whether or not we had more
pending accept post this one, pass back this information to userspace.
This is done by setting IORING_CQE_F_SOCK_NONEMPTY in the CQE flags,
just like we do for recv/recvmsg if there's more data available post
a receive operation.

We can also use this information to be smarter about multishot retry,
as we don't need to do a pointless retry if we know for a fact that
there aren't any more connections to accept.

Suggested-by: Norman Maurer <norman_maurer@apple.com>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/net.c