Message ID | 20210114104125.2890107-2-ciara.power@intel.com (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | akhil goyal |
Headers | show |
Series | add crypto perf test graphing script | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
> -----Original Message----- > From: Power, Ciara <ciara.power@intel.com> > Sent: Thursday, 14 January, 2021 11:41 > To: dev@dpdk.org > Cc: Doherty, Declan <declan.doherty@intel.com>; akhil.goyal@nxp.com; > stephen@networkplumber.org; Dybkowski, AdamX > <adamx.dybkowski@intel.com>; Power, Ciara <ciara.power@intel.com>; De > Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; stable@dpdk.org > Subject: [PATCH v2 1/4] test/cryptodev: fix latency test csv output > > The csv output for the latency performance test had an extra header, "Packet > Size", which is a duplicate of "Buffer Size", and had no corresponding value in > the output. This is now removed. > > Fixes: f6cefe253cc8 ("app/crypto-perf: add range/list of sizes") > Cc: pablo.de.lara.guarch@intel.com > Cc: stable@dpdk.org > > Signed-off-by: Ciara Power <ciara.power@intel.com> Acked-by: Adam Dybkowski <adamx.dybkowski@intel.com>
diff --git a/app/test-crypto-perf/cperf_test_latency.c b/app/test-crypto-perf/cperf_test_latency.c index 0e4d0e1538..c2590a4dcf 100644 --- a/app/test-crypto-perf/cperf_test_latency.c +++ b/app/test-crypto-perf/cperf_test_latency.c @@ -310,7 +310,7 @@ cperf_latency_test_runner(void *arg) if (ctx->options->csv) { if (rte_atomic16_test_and_set(&display_once)) printf("\n# lcore, Buffer Size, Burst Size, Pakt Seq #, " - "Packet Size, cycles, time (us)"); + "cycles, time (us)"); for (i = 0; i < ctx->options->total_ops; i++) {
The csv output for the latency performance test had an extra header, "Packet Size", which is a duplicate of "Buffer Size", and had no corresponding value in the output. This is now removed. Fixes: f6cefe253cc8 ("app/crypto-perf: add range/list of sizes") Cc: pablo.de.lara.guarch@intel.com Cc: stable@dpdk.org Signed-off-by: Ciara Power <ciara.power@intel.com> --- app/test-crypto-perf/cperf_test_latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)