aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSemir Sionek <ssionek@cisco.com>2025-03-28 15:05:11 +0000
committerFlorin Coras <florin.coras@gmail.com>2025-03-31 21:56:39 +0000
commit9316989e6ae038d2655b0a1d3059f11e0042d604 (patch)
tree779c2a34aba7c1342777cf5044c5087bb76ab16c /src
parentb33dbd3238ac8ed0b6f161472cd3c2d3966ed2fa (diff)
hsa: remove mbytes/gbytes parameters from echo client
...since we're already doing unformat_memory_size on the regular bytes parameter anyway. In conjunction with that, adjust some make test/hs-test tests to make use of this parameter. Type: refactor Change-Id: Ia0c2899a31b14a8689fdc256e25c4bb418de37fc Signed-off-by: Semir Sionek <ssionek@cisco.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/hs_apps/echo_client.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/plugins/hs_apps/echo_client.c b/src/plugins/hs_apps/echo_client.c
index ff5a3bd6b3c..b08edaaa5f5 100644
--- a/src/plugins/hs_apps/echo_client.c
+++ b/src/plugins/hs_apps/echo_client.c
@@ -1073,7 +1073,7 @@ ec_command_fn (vlib_main_t *vm, unformat_input_t *input,
uword *event_data = 0, event_type;
clib_error_t *error = 0;
int rv, had_config = 1;
- u64 tmp, total_bytes;
+ u64 total_bytes;
f64 delta;
if (ecm->test_client_attached)
@@ -1099,10 +1099,6 @@ ec_command_fn (vlib_main_t *vm, unformat_input_t *input,
;
else if (unformat (line_input, "quic-streams %d", &ecm->quic_streams))
;
- else if (unformat (line_input, "mbytes %lld", &tmp))
- ecm->bytes_to_send = tmp << 20;
- else if (unformat (line_input, "gbytes %lld", &tmp))
- ecm->bytes_to_send = tmp << 30;
else if (unformat (line_input, "bytes %U", unformat_memory_size,
&ecm->bytes_to_send))
;
@@ -1336,7 +1332,7 @@ cleanup:
VLIB_CLI_COMMAND (ec_command, static) = {
.path = "test echo clients",
.short_help =
- "test echo clients [nclients %d][[m|g]bytes <bytes>]"
+ "test echo clients [nclients %d][bytes <bytes>[m|g]]"
"[test-timeout <time>][syn-timeout <time>][echo-bytes][fifo-size <size>]"
"[private-segment-count <count>][private-segment-size <bytes>[m|g]]"
"[preallocate-fifos][preallocate-sessions][client-batch <batch-size>]"