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 551C5A0524 for ; Thu, 4 Feb 2021 12:35:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E115524075F; Thu, 4 Feb 2021 12:35:27 +0100 (CET) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by mails.dpdk.org (Postfix) with ESMTP id F375724071C for ; Thu, 4 Feb 2021 12:35:26 +0100 (CET) Received: from 2.general.paelzer.uk.vpn ([10.172.196.173] helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1l7cv0-0005Oj-PX; Thu, 04 Feb 2021 11:35:26 +0000 From: Christian Ehrhardt To: Ciara Power Cc: Declan Doherty , dpdk stable Date: Thu, 4 Feb 2021 12:28:25 +0100 Message-Id: <20210204112954.2488123-50-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.30.0 In-Reply-To: <20210204112954.2488123-1-christian.ehrhardt@canonical.com> References: <20210204112954.2488123-1-christian.ehrhardt@canonical.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'app/crypto-perf: fix spelling in output' has been queued to stable release 19.11.7 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" Hi, FYI, your patch has been queued to stable release 19.11.7 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/06/21. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/cpaelzer/dpdk-stable-queue This queued commit can be viewed at: https://github.com/cpaelzer/dpdk-stable-queue/commit/e49b55961953d95e09562c77de97e671920f3123 Thanks. Christian Ehrhardt --- >From e49b55961953d95e09562c77de97e671920f3123 Mon Sep 17 00:00:00 2001 From: Ciara Power Date: Mon, 18 Jan 2021 11:34:10 +0000 Subject: [PATCH] app/crypto-perf: fix spelling in output [ upstream commit 7d3046ed73fdcf705d7c571f1b8e7ca9e9b53e33 ] 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") 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 f43c5bede7..49b469781c 100644 --- a/app/test-crypto-perf/cperf_options_parsing.c +++ b/app/test-crypto-perf/cperf_options_parsing.c @@ -23,7 +23,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 b065ab2acb..048b10c652 100644 --- a/app/test-crypto-perf/main.c +++ b/app/test-crypto-perf/main.c @@ -520,14 +520,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; } -- 2.30.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2021-02-04 12:04:30.166827519 +0100 +++ 0050-app-crypto-perf-fix-spelling-in-output.patch 2021-02-04 12:04:27.962789662 +0100 @@ -1 +1 @@ -From 7d3046ed73fdcf705d7c571f1b8e7ca9e9b53e33 Mon Sep 17 00:00:00 2001 +From e49b55961953d95e09562c77de97e671920f3123 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 7d3046ed73fdcf705d7c571f1b8e7ca9e9b53e33 ] + @@ -10 +11,0 @@ -Cc: stable@dpdk.org @@ -20 +21 @@ -index 03ed6f5942..0466f7baf8 100644 +index f43c5bede7..49b469781c 100644 @@ -23 +24 @@ -@@ -24,7 +24,7 @@ usage(char *progname) +@@ -23,7 +23,7 @@ usage(char *progname) @@ -33 +34 @@ -index 99f86e9019..49af812d8b 100644 +index b065ab2acb..048b10c652 100644 @@ -36 +37 @@ -@@ -530,14 +530,14 @@ main(int argc, char **argv) +@@ -520,14 +520,14 @@ main(int argc, char **argv)