From: Ciara Power Date: Wed, 20 Jan 2021 17:29:28 +0000 (+0000) Subject: app/crypto-perf: fix latency CSV output X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2f04e8248ac0cc88d86d913dab664cba60b27037;p=dpdk.git app/crypto-perf: fix latency 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: stable@dpdk.org Signed-off-by: Ciara Power Acked-by: Declan Doherty Acked-by: Adam Dybkowski --- 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++) {