From patchwork Mon Jan 18 11:34:10 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Power, Ciara" X-Patchwork-Id: 86802 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 149E0A0A03; Mon, 18 Jan 2021 12:34:18 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F0D07140E3C; Mon, 18 Jan 2021 12:34:17 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 01087140E33; Mon, 18 Jan 2021 12:34:15 +0100 (CET) IronPort-SDR: t8lgyC8UDxaEmtiFNdUmp1nTaGBLx/KOP3+QOOu/eBKAyZXoCIBW0qcam4IGQ6gyUCSItIWRAK wRJlPaQIYEwg== X-IronPort-AV: E=McAfee;i="6000,8403,9867"; a="242861875" X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="242861875" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jan 2021 03:34:14 -0800 IronPort-SDR: w2ls9bLiJwgjK3QOkiSqaq7oB4SGwhExnv4sl3E+vg8L30nY7LNA8iYfGHWURaabUWfvKN8izR 7ChC1s2XxOGQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,356,1602572400"; d="scan'208";a="399088345" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.223.148]) by fmsmga004.fm.intel.com with ESMTP; 18 Jan 2021 03:34:12 -0800 From: Ciara Power To: dev@dpdk.org Cc: declan.doherty@intel.com, Ciara Power , pablo.de.lara.guarch@intel.com, slawomirx.mrozowicz@intel.com, stable@dpdk.org Date: Mon, 18 Jan 2021 11:34:10 +0000 Message-Id: <20210118113410.2950889-1-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] test/cryptodev: fix spelling in app output X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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: pablo.de.lara.guarch@intel.com Cc: slawomirx.mrozowicz@intel.com Cc: stable@dpdk.org Signed-off-by: Ciara Power Acked-by: Declan Doherty --- app/test-crypto-perf/cperf_options_parsing.c | 2 +- app/test-crypto-perf/main.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }