summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2025-03-07 13:03:31 -0600
committerMark Hatle <mark.hatle@amd.com>2025-03-30 14:16:15 -0600
commit8319b84f83a7ba037c1339ead76c90afb9f63557 (patch)
treefa3fdbf18d0ae9c0cafc5435642d62ee413fce92
parente0782fad122858fafcab5524fbbaddecabb271ca (diff)
downloadmeta-xilinx-8319b84f83a7ba037c1339ead76c90afb9f63557.tar.gz
Revert "iperf3: backport upstream patch"
This reverts commit 876f1d5c8f20071832d908c72dd8ce24fb09aa9e. Fix now upstream.
-rw-r--r--meta-xilinx-standalone-sdt/conf/layer.conf2
-rw-r--r--meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3/do-not-listen-to-old-udp-prot-listener.patch21
-rw-r--r--meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3_%.bbappend2
3 files changed, 0 insertions, 25 deletions
diff --git a/meta-xilinx-standalone-sdt/conf/layer.conf b/meta-xilinx-standalone-sdt/conf/layer.conf
index 10eb6385..81e75110 100644
--- a/meta-xilinx-standalone-sdt/conf/layer.conf
+++ b/meta-xilinx-standalone-sdt/conf/layer.conf
@@ -15,8 +15,6 @@ BBFILE_PRIORITY_xilinx-standalone-sdt = "7"
15BBFILES_DYNAMIC += " \ 15BBFILES_DYNAMIC += " \
16openamp-layer:${LAYERDIR}/dynamic-layers/openamp-layer/recipes-*/*/*.bb \ 16openamp-layer:${LAYERDIR}/dynamic-layers/openamp-layer/recipes-*/*/*.bb \
17openamp-layer:${LAYERDIR}/dynamic-layers/openamp-layer/recipes-*/*/*.bbappend \ 17openamp-layer:${LAYERDIR}/dynamic-layers/openamp-layer/recipes-*/*/*.bbappend \
18openembedded-layer:${LAYERDIR}/dynamic-layers/meta-oe/recipes-*/*/*.bb \
19openembedded-layer:${LAYERDIR}/dynamic-layers/meta-oe/recipes-*/*/*.bbappend \
20" 18"
21 19
22# Allow other layers to find the root of this layer if necessary 20# Allow other layers to find the root of this layer if necessary
diff --git a/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3/do-not-listen-to-old-udp-prot-listener.patch b/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3/do-not-listen-to-old-udp-prot-listener.patch
deleted file mode 100644
index 579ed326..00000000
--- a/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3/do-not-listen-to-old-udp-prot-listener.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1From ac6b9f7fd335ddebc5212eed40083ef4cd3cb86d Mon Sep 17 00:00:00 2001
2From: David Bar-On <david.cdb004@gmail.com>
3Date: Sun, 2 Jun 2024 11:52:03 +0300
4Subject: [PATCH] Do not listen to old pro_listener
5
6---
7 src/iperf_udp.c | 1 +
8 1 file changed, 1 insertion(+)
9
10diff --git a/src/iperf_udp.c b/src/iperf_udp.c
11index a603236df..40f2b1ca7 100644
12--- a/src/iperf_udp.c
13+++ b/src/iperf_udp.c
14@@ -446,6 +446,7 @@ iperf_udp_accept(struct iperf_test *test)
15 /*
16 * Create a new "listening" socket to replace the one we were using before.
17 */
18+ FD_CLR(test->prot_listener, &test->read_set); // No control messages from old listener
19 test->prot_listener = netannounce(test->settings->domain, Pudp, test->bind_address, test->bind_dev, test->server_port);
20 if (test->prot_listener < 0) {
21 i_errno = IESTREAMLISTEN;
diff --git a/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3_%.bbappend b/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3_%.bbappend
deleted file mode 100644
index 8422870a..00000000
--- a/meta-xilinx-standalone-sdt/dynamic-layers/meta-oe/recipes-benchmark/iperf3/iperf3_%.bbappend
+++ /dev/null
@@ -1,2 +0,0 @@
1FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
2SRC_URI += "file://do-not-listen-to-old-udp-prot-listener.patch"