From 53a7648237efce6574218ccf79085bcd36b5fe62 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Sun, 5 Mar 2023 15:35:29 -0700 Subject: [PATCH] Remove patch from git --- 8227.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 8227.patch diff --git a/8227.patch b/8227.patch deleted file mode 100644 index 765b14e..0000000 --- a/8227.patch +++ /dev/null @@ -1,27 +0,0 @@ -From b50b4df7e93988caff0574c6f62e99ab561b1f36 Mon Sep 17 00:00:00 2001 -From: Nicolas Morey-Chaisemartin -Date: Tue, 8 Nov 2022 12:40:43 +0100 -Subject: [PATCH] prov/net: fix error path in xnet_enable_rdm - -If xnet_listen fails (happens 100% of the time on a system with no -network interface but lo), the progress lock is not released which -causes a deadlock when fi_close is called later on the endpoint. - -Signed-off-by: Nicolas Morey-Chaisemartin ---- - prov/net/src/xnet_rdm.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/prov/net/src/xnet_rdm.c b/prov/net/src/xnet_rdm.c -index 77a236b519..b5f77f068b 100644 ---- a/prov/net/src/xnet_rdm.c -+++ b/prov/net/src/xnet_rdm.c -@@ -711,7 +711,7 @@ static int xnet_enable_rdm(struct xnet_rdm *rdm) - - ret = xnet_listen(rdm->pep, progress); - if (ret) -- return ret; -+ goto unlock; - - /* TODO: Move updating the src_addr to pep_listen(). */ - len = sizeof(rdm->addr);