aboutgitcodebugslistschat
path: root/contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-03-08 23:46:13 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-03-09 03:44:21 +0100
commit42fb62516d4e37ac456533d9d9b5c3a942b48631 (patch)
tree5ffbea9208a716b5b1ae6bd3eac013b7f70a00a9 /contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch
parentf3cd0f9e454f73e3ff218a986205eb7dbb3d350d (diff)
downloadpasst-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar.gz
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar.bz2
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar.lz
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar.xz
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.tar.zst
passt-42fb62516d4e37ac456533d9d9b5c3a942b48631.zip
contrib: Drop QEMU out-of-tree patches
Native support was introduced with commit 13c6be96618c, QEMU 7.2. Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch')
-rw-r--r--contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch37
1 files changed, 0 insertions, 37 deletions
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
deleted file mode 100644
index 0e31a1b..0000000
--- a/contrib/qemu/0002-net-Don-t-ignore-EINVAL-on-netdev-socket-connection.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From a6d475147682de1fe3b14eb325f4247e013e8440 Mon Sep 17 00:00:00 2001
-Message-Id: <a6d475147682de1fe3b14eb325f4247e013e8440.1619091389.git.sbrivio@redhat.com>
-In-Reply-To: <ba51349d353f11e05c6341a7e065f2ade3874c68.1619091389.git.sbrivio@redhat.com>
-References: <ba51349d353f11e05c6341a7e065f2ade3874c68.1619091389.git.sbrivio@redhat.com>
-From: Stefano Brivio <sbrivio@redhat.com>
-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 <sbrivio@redhat.com>
----
-SPDX-FileCopyrightText: 2020-2021 Red Hat GmbH <sbrivio@redhat.com>
-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
-