Skip to content

Commit

Permalink
hsa: add total bytes parameter to vcl_test_client
Browse files Browse the repository at this point in the history
Type: test

Change-Id: Ib1131eedb8eeaa9adfed9cfc47beeb1c7c8adb5c
Signed-off-by: Filip Tehlar <[email protected]>
  • Loading branch information
ftehlar authored and florincoras committed Jul 27, 2023
1 parent 6fc5311 commit 229dab6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/plugins/hs_apps/vcl/vcl_test_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,7 @@ print_usage_and_exit (void)
" -T <txbuf-size> Test Cfg: tx buffer size.\n"
" -U Run Uni-directional test.\n"
" -B Run Bi-directional test.\n"
" -b <bytes> Total number of bytes transferred\n"
" -V Verbose mode.\n"
" -I <N> Use N sessions.\n"
" -s <N> Use N sessions.\n"
Expand All @@ -1028,7 +1029,7 @@ vtc_process_opts (vcl_test_client_main_t * vcm, int argc, char **argv)
int c, v;

opterr = 0;
while ((c = getopt (argc, argv, "chnp:w:xXE:I:N:R:T:UBV6DLs:q:S")) != -1)
while ((c = getopt (argc, argv, "chnp:w:xXE:I:N:R:T:b:UBV6DLs:q:S")) != -1)
switch (c)
{
case 'c':
Expand Down Expand Up @@ -1157,6 +1158,21 @@ vtc_process_opts (vcl_test_client_main_t * vcm, int argc, char **argv)
print_usage_and_exit ();
}
break;
case 'b':
if (sscanf (optarg, "0x%lu", &ctrl->cfg.total_bytes) != 1)
if (sscanf (optarg, "%ld", &ctrl->cfg.total_bytes) != 1)
{
vtwrn ("Invalid value for option -%c!", c);
print_usage_and_exit ();
}
if (ctrl->cfg.total_bytes % ctrl->cfg.txbuf_size)
{
vtwrn ("total bytes must be mutliple of txbuf size(0x%lu)!",
ctrl->cfg.txbuf_size);
print_usage_and_exit ();
}
ctrl->cfg.num_writes = ctrl->cfg.total_bytes / ctrl->cfg.txbuf_size;
break;

case 'U':
ctrl->cfg.test = VCL_TEST_TYPE_UNI;
Expand Down

0 comments on commit 229dab6

Please sign in to comment.