From 710aef6bd097a76345f3b374291dfbc1f49a7631 Mon Sep 17 00:00:00 2001 From: zhangkai25 Date: Wed, 29 Oct 2025 10:52:52 +0800 Subject: [PATCH] iperf: Increase the priority of the report thread ensure it is not blocked by the iperf thread, preventing iperf from completing Signed-off-by: zhangkai25 --- netutils/iperf/iperf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netutils/iperf/iperf.c b/netutils/iperf/iperf.c index cda61f68e..b9243a608 100644 --- a/netutils/iperf/iperf.c +++ b/netutils/iperf/iperf.c @@ -48,7 +48,7 @@ #define IPERF_TRAFFIC_TASK_PRIORITY 100 #define IPERF_TRAFFIC_TASK_STACK 4096 #define IPERF_REPORT_TASK_NAME "iperf_report" -#define IPERF_REPORT_TASK_PRIORITY 100 +#define IPERF_REPORT_TASK_PRIORITY 101 #define IPERF_REPORT_TASK_STACK 4096 #define IPERF_UDP_TX_LEN (1472)