From: Stefano Brivio Date: Fri, 21 Oct 2022 09:09:12 +0000 (+0200) Subject: net: socket: Don't ignore EINVAL on netdev socket connection X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=daf188ff04ea86fedf447ce366af3d1025020909;p=qemu.git net: socket: Don't ignore EINVAL on netdev socket connection Other errors are treated as failure by net_socket_connect_init(), but if connect() returns EINVAL, we'll fail silently. Remove the related exception. Signed-off-by: Stefano Brivio Signed-off-by: Laurent Vivier Reviewed-by: David Gibson Acked-by: Michael S. Tsirkin Signed-off-by: Jason Wang --- diff --git a/net/socket.c b/net/socket.c index ade1ecf38b..4944bb70d5 100644 --- a/net/socket.c +++ b/net/socket.c @@ -577,8 +577,7 @@ static int net_socket_connect_init(NetClientState *peer, if (errno == EINTR || errno == EWOULDBLOCK) { /* continue */ } else if (errno == EINPROGRESS || - errno == EALREADY || - errno == EINVAL) { + errno == EALREADY) { break; } else { error_setg_errno(errp, errno, "can't connect socket");