summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorStefano Brivio2022-10-21 11:09:12 +0200
committerJason Wang2022-10-28 07:28:52 +0200
commitdaf188ff04ea86fedf447ce366af3d1025020909 (patch)
treeace8c8269a1416b7396c5354edb40769aa4dd408 /net
parentqapi: net: add stream and dgram netdevs (diff)
downloadqemu-daf188ff04ea86fedf447ce366af3d1025020909.tar.gz
qemu-daf188ff04ea86fedf447ce366af3d1025020909.tar.xz
qemu-daf188ff04ea86fedf447ce366af3d1025020909.zip
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 <sbrivio@redhat.com> Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/socket.c3
1 files changed, 1 insertions, 2 deletions
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");