app/crypto-perf: fix IV allocation for AEAD
[dpdk.git] / app / test-crypto-perf / cperf_test_throughput.c
index 87e7bfb..3bb1cb0 100644 (file)
@@ -271,7 +271,7 @@ cperf_throughput_test_constructor(struct rte_mempool *sess_mp,
                        dev_id);
 
        uint16_t priv_size = test_vector->cipher_iv.length +
-               test_vector->auth_iv.length;
+               test_vector->auth_iv.length + test_vector->aead_iv.length;
 
        ctx->crypto_op_pool = rte_crypto_op_pool_create(pool_name,
                        RTE_CRYPTO_OP_TYPE_SYMMETRIC, options->pool_sz,
@@ -491,14 +491,14 @@ cperf_throughput_test_runner(void *test_ctx)
                                        cycles_per_packet);
                } else {
                        if (!only_once)
-                               printf("# lcore id, Buffer Size(B),"
+                               printf("#lcore id,Buffer Size(B),"
                                        "Burst Size,Enqueued,Dequeued,Failed Enq,"
                                        "Failed Deq,Ops(Millions),Throughput(Gbps),"
                                        "Cycles/Buf\n\n");
                        only_once = 1;
 
-                       printf("%10u;%10u;%u;%"PRIu64";%"PRIu64";%"PRIu64";%"PRIu64";"
-                                       "%.f3;%.f3;%.f3\n",
+                       printf("%u;%u;%u;%"PRIu64";%"PRIu64";%"PRIu64";%"PRIu64";"
+                                       "%.3f;%.3f;%.3f\n",
                                        ctx->lcore_id,
                                        ctx->options->test_buffer_size,
                                        test_burst_size,