diff mbox series

netperf: Fix compile error with --enable-intervals

Message ID 20260206182440.1739402-1-reatmon@ti.com
State New
Headers show
Series netperf: Fix compile error with --enable-intervals | expand

Commit Message

Ryan Eatmon Feb. 6, 2026, 6:24 p.m. UTC
Submitted fix: https://github.com/HewlettPackard/netperf/pull/94

Fix for multiple definition error:
| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:233: multiple definition of `signal_set'; nettest_bsd.o:<snip>/src/nettest_bsd.c:302: first defined here
| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:191: multiple definition of `interval_count'; nettest_bsd.o:<snip>/src/nettest_bsd.c:289: first defined here
| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:233: multiple definition of `signal_set'; nettest_bsd.o:<snip>/src/nettest_bsd.c:302: first defined here
| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:191: multiple definition of `interval_count'; nettest_bsd.o:<snip>/src/nettest_bsd.c:289: first defined here

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 ...le-definitions-with-enable-intervals.patch | 69 +++++++++++++++++++
 .../recipes-support/netperf/netperf_git.bb    |  1 +
 2 files changed, 70 insertions(+)
 create mode 100644 meta-networking/recipes-support/netperf/files/0001-Fix-multiple-definitions-with-enable-intervals.patch
diff mbox series

Patch

diff --git a/meta-networking/recipes-support/netperf/files/0001-Fix-multiple-definitions-with-enable-intervals.patch b/meta-networking/recipes-support/netperf/files/0001-Fix-multiple-definitions-with-enable-intervals.patch
new file mode 100644
index 0000000000..f1a4139386
--- /dev/null
+++ b/meta-networking/recipes-support/netperf/files/0001-Fix-multiple-definitions-with-enable-intervals.patch
@@ -0,0 +1,69 @@ 
+From 3659ce248a62d98ac950ab68d8a5b4488136c85d Mon Sep 17 00:00:00 2001
+From: Ryan Eatmon <reatmon@ti.com>
+Date: Fri, 6 Feb 2026 11:52:31 -0600
+Subject: [PATCH] Fix multiple definitions with --enable-intervals
+
+There are multiple definitions of two variables when enabling intervals.
+
+| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:233: multiple definition of `signal_set'; nettest_bsd.o:<snip>/src/nettest_bsd.c:302: first defined here
+| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:191: multiple definition of `interval_count'; nettest_bsd.o:<snip>/src/nettest_bsd.c:289: first defined here
+| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:233: multiple definition of `signal_set'; nettest_bsd.o:<snip>/src/nettest_bsd.c:302: first defined here
+| <snip>/ld: nettest_omni.o:<snip>/src/nettest_omni.c:191: multiple definition of `interval_count'; nettest_bsd.o:<snip>/src/nettest_bsd.c:289: first defined here
+
+Make them static for each file.
+
+Upstream-Status: Submitted [https://github.com/HewlettPackard/netperf/pull/94]
+
+Signed-off-by: Ryan Eatmon <reatmon@ti.com>
+---
+ src/nettest_bsd.c  | 4 ++--
+ src/nettest_omni.c | 4 ++--
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/src/nettest_bsd.c b/src/nettest_bsd.c
+index 36f5810..4bbc4fa 100644
+--- a/src/nettest_bsd.c
++++ b/src/nettest_bsd.c
+@@ -286,7 +286,7 @@ static HIST time_hist;
+ #endif /* WANT_HISTOGRAM */
+ 
+ #ifdef WANT_INTERVALS
+-int interval_count;
++static int interval_count;
+ #ifndef WANT_SPIN
+ #ifdef WIN32
+ #define INTERVALS_INIT() \
+@@ -299,7 +299,7 @@ int interval_count;
+     } \
+     interval_count = interval_burst;
+ #else
+-sigset_t signal_set;
++static sigset_t signal_set;
+ #define INTERVALS_INIT() \
+     if (interval_burst) { \
+       /* zero means that we never pause, so we never should need the \
+diff --git a/src/nettest_omni.c b/src/nettest_omni.c
+index 5d63f02..2ba5604 100644
+--- a/src/nettest_omni.c
++++ b/src/nettest_omni.c
+@@ -188,7 +188,7 @@ static HIST time_hist;
+ 
+ 
+ #ifdef WANT_INTERVALS
+-int interval_count;
++static int interval_count;
+ unsigned int interval_wait_microseconds;
+ 
+ /* hoist the timestamps up here so we can use them to factor-out the
+@@ -230,7 +230,7 @@ static struct timeval *temp_intvl_ptr = &intvl_one;
+     interval_count = interval_burst; \
+     interval_wait_microseconds = 0;
+ #else
+-sigset_t signal_set;
++static sigset_t signal_set;
+ #define INTERVALS_INIT() \
+     if (interval_burst) { \
+       /* zero means that we never pause, so we never should need the \
+-- 
+2.43.0
+
diff --git a/meta-networking/recipes-support/netperf/netperf_git.bb b/meta-networking/recipes-support/netperf/netperf_git.bb
index 4043da5621..d5a717b0f6 100644
--- a/meta-networking/recipes-support/netperf/netperf_git.bb
+++ b/meta-networking/recipes-support/netperf/netperf_git.bb
@@ -17,6 +17,7 @@  SRC_URI = "git://github.com/HewlettPackard/netperf.git;branch=master;protocol=ht
            file://netserver_permissions.patch \
            file://0001-Makefile.am-add-ACLOCAL_AMFLAGS.patch \
            file://0001-Fix-too-many-arguments-error-occurring-in-gcc-15.patch \
+           file://0001-Fix-multiple-definitions-with-enable-intervals.patch \
            "
 
 SRCREV = "3bc455b23f901dae377ca0a558e1e32aa56b31c4"