diff options
author | Marc Kleine-Budde <mkl@pengutronix.de> | 2022-05-02 11:46:37 +0200 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2022-05-03 13:18:26 +0200 |
commit | 97926d5a847ca1758ad8702ce591e3b05a701e0d (patch) | |
tree | b7463b6e3749f991570249044aeadd9e4fc73262 /tools | |
parent | selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is opera... (diff) | |
download | linux-97926d5a847ca1758ad8702ce591e3b05a701e0d.tar.xz linux-97926d5a847ca1758ad8702ce591e3b05a701e0d.zip |
selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems
This patch fixes the parsing of the cmd line supplied start time on 32
bit systems. A "long" on 32 bit systems is only 32 bit wide and cannot
hold a timestamp in nano second resolution.
Fixes: 040806343bb4 ("selftests/net: so_txtime multi-host support")
Cc: Carlos Llamas <cmllamas@google.com>
Cc: Willem de Bruijn <willemb@google.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Acked-by: Willem de Bruijn <willemb@google.com>
Reviewed-by: Carlos Llamas <cmllamas@google.com>
Link: https://lore.kernel.org/r/20220502094638.1921702-2-mkl@pengutronix.de
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/net/so_txtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/so_txtime.c b/tools/testing/selftests/net/so_txtime.c index 59067f64b775..103f6bf28e35 100644 --- a/tools/testing/selftests/net/so_txtime.c +++ b/tools/testing/selftests/net/so_txtime.c @@ -475,7 +475,7 @@ static void parse_opts(int argc, char **argv) cfg_rx = true; break; case 't': - cfg_start_time_ns = strtol(optarg, NULL, 0); + cfg_start_time_ns = strtoll(optarg, NULL, 0); break; case 'm': cfg_mark = strtol(optarg, NULL, 0); |