mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
selftests/net: udpgso_bench_tx: fix dst ip argument
[ Upstream commit9c1952aeaa] udpgso_bench_tx call setup_sockaddr() for dest address before parsing all arguments, if we specify "-p ${dst_port}" after "-D ${dst_ip}", then ${dst_port} will be ignored, and using default cfg_port 8000. This will cause test case "multiple GRO socks" failed in udpgro.sh. Setup sockaddr after parsing all arguments. Fixes:3a687bef14("selftests: udp gso benchmark") Signed-off-by: Jianguo Wu <wujianguo@chinatelecom.cn> Reviewed-by: Willem de Bruijn <willemb@google.com> Link: https://lore.kernel.org/r/ff620d9f-5b52-06ab-5286-44b945453002@163.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
78503589b1
commit
610af55f9f
@@ -419,6 +419,7 @@ static void usage(const char *filepath)
|
|||||||
|
|
||||||
static void parse_opts(int argc, char **argv)
|
static void parse_opts(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
const char *bind_addr = NULL;
|
||||||
int max_len, hdrlen;
|
int max_len, hdrlen;
|
||||||
int c;
|
int c;
|
||||||
|
|
||||||
@@ -446,7 +447,7 @@ static void parse_opts(int argc, char **argv)
|
|||||||
cfg_cpu = strtol(optarg, NULL, 0);
|
cfg_cpu = strtol(optarg, NULL, 0);
|
||||||
break;
|
break;
|
||||||
case 'D':
|
case 'D':
|
||||||
setup_sockaddr(cfg_family, optarg, &cfg_dst_addr);
|
bind_addr = optarg;
|
||||||
break;
|
break;
|
||||||
case 'l':
|
case 'l':
|
||||||
cfg_runtime_ms = strtoul(optarg, NULL, 10) * 1000;
|
cfg_runtime_ms = strtoul(optarg, NULL, 10) * 1000;
|
||||||
@@ -492,6 +493,11 @@ static void parse_opts(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!bind_addr)
|
||||||
|
bind_addr = cfg_family == PF_INET6 ? "::" : "0.0.0.0";
|
||||||
|
|
||||||
|
setup_sockaddr(cfg_family, bind_addr, &cfg_dst_addr);
|
||||||
|
|
||||||
if (optind != argc)
|
if (optind != argc)
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user