From e1d8da187785e82db4ca766ea822fc866bcfae84 Mon Sep 17 00:00:00 2001 From: Dane Murphy Date: Sat, 17 May 2025 09:01:10 -0700 Subject: [PATCH] iperf3: update to 3.19 Updates iperf3 to the latest upstream release, 3.19 Changelog: https://github.com/esnet/iperf/releases/tag/3.19 Signed-off-by: Dane Murphy --- net/iperf3/Makefile | 4 ++-- net/iperf3/patches/010-big-endian.patch | 21 --------------------- 2 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 net/iperf3/patches/010-big-endian.patch diff --git a/net/iperf3/Makefile b/net/iperf3/Makefile index a5fe604506..585be8ef18 100644 --- a/net/iperf3/Makefile +++ b/net/iperf3/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iperf -PKG_VERSION:=3.18 +PKG_VERSION:=3.19 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.es.net/pub/iperf -PKG_HASH:=c0618175514331e766522500e20c94bfb293b4424eb27d7207fb427b88d20bab +PKG_HASH:=040161da1555ec7411a9d81191049830ef37717d429a94ee6cf0842618e0e29c PKG_MAINTAINER:=Felix Fietkau PKG_LICENSE:=BSD-3-Clause diff --git a/net/iperf3/patches/010-big-endian.patch b/net/iperf3/patches/010-big-endian.patch deleted file mode 100644 index f57ef51a4a..0000000000 --- a/net/iperf3/patches/010-big-endian.patch +++ /dev/null @@ -1,21 +0,0 @@ -From fe09305eb6f907e4eb637b8edd0c8a986187d1dd Mon Sep 17 00:00:00 2001 -From: Rosen Penev -Date: Sat, 8 Jun 2024 15:23:51 -0700 -Subject: [PATCH] fix crash under big endian musl - -iperf_printf is using an int format here but an int64_t variable. The format only needs the first 3 digits. Cast to int to fix it. ---- - src/iperf_api.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/src/iperf_api.c -+++ b/src/iperf_api.c -@@ -4137,7 +4137,7 @@ iperf_print_results(struct iperf_test *t - iperf_printf(test, report_sender_not_available_summary_format, "SUM"); - } - else { -- iperf_printf(test, report_sum_bw_retrans_format, mbuf, start_time, sender_time, ubuf, nbuf, total_retransmits, report_sender); -+ iperf_printf(test, report_sum_bw_retrans_format, mbuf, start_time, sender_time, ubuf, nbuf, (int)total_retransmits, report_sender); - } - } else { - /* Summary sum, TCP without retransmits. */ -- 2.30.2