From: Ciara Power Date: Mon, 18 Jan 2021 11:34:10 +0000 (+0000) Subject: app/crypto-perf: fix spelling in output X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7d3046ed73fdcf705d7c571f1b8e7ca9e9b53e33;p=dpdk.git app/crypto-perf: fix spelling in output Fixes some spelling errors in app logs and help text. Fixes: 7da018731c56 ("app/crypto-perf: add help option") Fixes: f8be1786b1b8 ("app/crypto-perf: introduce performance test application") Cc: stable@dpdk.org Signed-off-by: Ciara Power Acked-by: Declan Doherty --- diff --git a/app/test-crypto-perf/cperf_options_parsing.c b/app/test-crypto-perf/cperf_options_parsing.c index 03ed6f5942..0466f7baf8 100644 --- a/app/test-crypto-perf/cperf_options_parsing.c +++ b/app/test-crypto-perf/cperf_options_parsing.c @@ -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" diff --git a/app/test-crypto-perf/main.c b/app/test-crypto-perf/main.c index 99f86e9019..49af812d8b 100644 --- a/app/test-crypto-perf/main.c +++ b/app/test-crypto-perf/main.c @@ -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; }