From 27050b094f6b3e64f1536ebca09f3476b308493b Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Wed, 26 Jan 2022 17:05:20 +0100 Subject: libvirt, qemu: Move patches to new directory, contrib I'm about to add a new adaptation carrying out-of-tree patches for a Kata Containers PoC -- move the existing out-of-tree patches to their own directory to keep things easy to find in the main one. Signed-off-by: Stefano Brivio --- ...ignore-EINVAL-on-netdev-socket-connection.patch | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch (limited to 'contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch') diff --git a/contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch b/contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch new file mode 100644 index 0000000..0e31a1b --- /dev/null +++ b/contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch @@ -0,0 +1,37 @@ +From a6d475147682de1fe3b14eb325f4247e013e8440 Mon Sep 17 00:00:00 2001 +Message-Id: +In-Reply-To: +References: +From: Stefano Brivio +Date: Wed, 21 Apr 2021 18:52:16 +0200 +Subject: [PATCH 2/2] net: 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 +--- +SPDX-FileCopyrightText: 2020-2021 Red Hat GmbH +SPDX-License-Identifier: AGPL-3.0-or-later + + net/socket.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/net/socket.c b/net/socket.c +index aadd11dae2b3..d3293ac12e82 100644 +--- a/net/socket.c ++++ b/net/socket.c +@@ -644,8 +644,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"); +-- +2.29.2 + -- cgit v1.2.3