From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 04D28A0A04 for ; Tue, 19 Jan 2021 09:56:40 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E5AAD140D55; Tue, 19 Jan 2021 09:56:39 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 44F02140CFD; Tue, 19 Jan 2021 09:56:36 +0100 (CET) IronPort-SDR: HKzhskTHFm0wte/oCa21FmwgIS09vWt1vmOXmEQlTanQq+w1nUcUG65ZnLamhDAqejYGjqbeey J+8IDvbiZiAA== X-IronPort-AV: E=McAfee;i="6000,8403,9868"; a="176326193" X-IronPort-AV: E=Sophos;i="5.79,358,1602572400"; d="scan'208";a="176326193" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Jan 2021 00:56:24 -0800 IronPort-SDR: D5dvzheuqjVgS4tQVmW2BBUSc3NQ2OhKkL4SrojT+gS7Ss5P//QXfn1J5X4bOvdWRYkl10VO7r fVWgON7O1W0Q== X-IronPort-AV: E=Sophos;i="5.79,358,1602572400"; d="scan'208";a="383853037" Received: from dwdohert-mobl.ger.corp.intel.com (HELO [10.213.225.173]) ([10.213.225.173]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Jan 2021 00:56:21 -0800 To: Ciara Power , dev@dpdk.org Cc: pablo.de.lara.guarch@intel.com, slawomirx.mrozowicz@intel.com, stable@dpdk.org References: <20210118113410.2950889-1-ciara.power@intel.com> From: "Doherty, Declan" Message-ID: <9c6d5bde-aa38-0beb-af7d-4df0bbe447d5@intel.com> Date: Tue, 19 Jan 2021 08:56:18 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 In-Reply-To: <20210118113410.2950889-1-ciara.power@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-stable] [PATCH] test/cryptodev: fix spelling in app output X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 18/01/2021 11:34 AM, Ciara Power wrote: > 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 > --- > 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; > } > > Acked-by: Declan Doherty