io_uring/net: add IORING_SEND_IGNORE_INLINE support to send/sendmsg
If IORING_SEND_IGNORE_INLINE is set for a send/sendmsg request, then a
successful inline completion of such a request will be ignored for a
submit_and_wait() type of submissions. In other words, if an application
submits a send for socketA with a recv for socketB, it can now do:
io_uring_submit_and_wait(ring, 1);
and have the inline send completion be ignored from the number of items
to wait for.
Signed-off-by: Jens Axboe <axboe@kernel.dk>