[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220530101531.173447-1-sangambabu1@gmail.com>
Date: Mon, 30 May 2022 15:45:31 +0530
From: sababu <sangambabu1@...il.com>
To: linux-kernel@...r.kernel.org
Cc: sababu@...hat.com, jmaxwell@...hat.com,
sababu <sangambabu1@...il.com>
Subject: [PATCH] Qperf support for ipv4 when ipv6 is disabled at protocol layer
From: sababu <sababu@...hat.com>
With qperf version 0.4.9 we defined AI_FAMILY as AF_UNSPEC, starting
qperf 0.4.11 the same is changed to AF_INET6 which causes issues
when ipv6 is disabled at protocol layer (as a kernel command line
arguement). This patch reverses the behavior.
Signed-off-by: sababu <sangambabu1@...il.com>
---
src/qperf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/qperf.c b/src/qperf.c
index 89fe5b8..4de0cce 100644
--- a/src/qperf.c
+++ b/src/qperf.c
@@ -1418,7 +1418,7 @@ server_listen(void)
AI *ai;
AI hints ={
.ai_flags = AI_PASSIVE | AI_NUMERICSERV,
- .ai_family = AF_INET6,
+ .ai_family = AF_UNSPEC,
.ai_socktype = SOCK_STREAM
};
AI *ailist = getaddrinfo_port(0, ListenPort, &hints);
--
2.31.1
Powered by blists - more mailing lists