Skip to content

Commit

Permalink
app/crypto-perf: fix spelling in output
Browse files Browse the repository at this point in the history
[ upstream commit 7d3046e ]

Fixes some spelling errors in app logs and help text.

Fixes: 7da0187 ("app/crypto-perf: add help option")
Fixes: f8be178 ("app/crypto-perf: introduce performance test application")

Signed-off-by: Ciara Power <ciara.power@intel.com>
Acked-by: Declan Doherty <declan.doherty@intel.com>
  • Loading branch information
ciarapow authored and bluca committed Feb 4, 2021
1 parent cf7cd53 commit e20b5bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/test-crypto-perf/cperf_options_parsing.c
Expand Up @@ -24,7 +24,7 @@ usage(char *progname)
{
printf("%s [EAL options] --\n"
" --silent: disable options dump\n"
" --ptest throughput / latency / verify / pmd-cycleount :"
" --ptest throughput / latency / verify / pmd-cyclecount :"
" set test type\n"
" --pool_sz N: set the number of crypto ops/mbufs allocated\n"
" --total-ops N: set the number of total operations performed\n"
Expand Down
4 changes: 2 additions & 2 deletions app/test-crypto-perf/main.c
Expand Up @@ -530,14 +530,14 @@ main(int argc, char **argv)

ret = cperf_options_parse(&opts, argc, argv);
if (ret) {
RTE_LOG(ERR, USER1, "Parsing on or more user options failed\n");
RTE_LOG(ERR, USER1, "Parsing one or more user options failed\n");
goto err;
}

ret = cperf_options_check(&opts);
if (ret) {
RTE_LOG(ERR, USER1,
"Checking on or more user options failed\n");
"Checking one or more user options failed\n");
goto err;
}

Expand Down

0 comments on commit e20b5bc

Please sign in to comment.