[dpdk-stable] patch 'app/crypto-perf: fix display of sample test vector' has been queued to stable release 19.11.3
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Tue May 19 15:05:10 CEST 2020
Hi,
FYI, your patch has been queued to stable release 19.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 05/21/20. 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.
Thanks.
Luca Boccassi
---
>From de299dec147034a5e8c91638d90087a793fe37d4 Mon Sep 17 00:00:00 2001
From: Adam Dybkowski <adamx.dybkowski at intel.com>
Date: Wed, 29 Apr 2020 12:57:04 +0200
Subject: [PATCH] app/crypto-perf: fix display of sample test vector
[ upstream commit 16f25ee0bf45a3e1b5c4ba4b7e548e321c7db60d ]
This patch disables displaying sample test vector contents when
executing throughput and latency tests as the sample data is not
used in those tests (not copied to input mbuf in order to achieve
better performance).
Fixes: f8be1786b1b8 ("app/crypto-perf: introduce performance test application")
Signed-off-by: Adam Dybkowski <adamx.dybkowski at intel.com>
Acked-by: Fiona Trahe <fiona.trahe at intel.com>
---
app/test-crypto-perf/main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app/test-crypto-perf/main.c b/app/test-crypto-perf/main.c
index 52a1860fbf..7bb286ccbe 100644
--- a/app/test-crypto-perf/main.c
+++ b/app/test-crypto-perf/main.c
@@ -582,7 +582,8 @@ main(int argc, char **argv)
goto err;
}
- if (!opts.silent)
+ if (!opts.silent && opts.test != CPERF_TEST_TYPE_THROUGHPUT &&
+ opts.test != CPERF_TEST_TYPE_LATENCY)
show_test_vector(t_vec);
total_nb_qps = nb_cryptodevs * opts.nb_qps;
--
2.20.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2020-05-19 14:04:51.663266950 +0100
+++ 0175-app-crypto-perf-fix-display-of-sample-test-vector.patch 2020-05-19 14:04:44.516653810 +0100
@@ -1,15 +1,16 @@
-From 16f25ee0bf45a3e1b5c4ba4b7e548e321c7db60d Mon Sep 17 00:00:00 2001
+From de299dec147034a5e8c91638d90087a793fe37d4 Mon Sep 17 00:00:00 2001
From: Adam Dybkowski <adamx.dybkowski at intel.com>
Date: Wed, 29 Apr 2020 12:57:04 +0200
Subject: [PATCH] app/crypto-perf: fix display of sample test vector
+[ upstream commit 16f25ee0bf45a3e1b5c4ba4b7e548e321c7db60d ]
+
This patch disables displaying sample test vector contents when
executing throughput and latency tests as the sample data is not
used in those tests (not copied to input mbuf in order to achieve
better performance).
Fixes: f8be1786b1b8 ("app/crypto-perf: introduce performance test application")
-Cc: stable at dpdk.org
Signed-off-by: Adam Dybkowski <adamx.dybkowski at intel.com>
Acked-by: Fiona Trahe <fiona.trahe at intel.com>
More information about the stable
mailing list