app/crypto-perf: fix crypto op init
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Mon, 6 Nov 2017 09:36:04 +0000 (09:36 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 7 Nov 2017 08:18:07 +0000 (08:18 +0000)
The mempool and the physical address of the crypto operation
at mempool initialization were not being set,
leading to incorrect physical addresses.

Fixes: bf9d6702eca9 ("app/crypto-perf: use single mempool")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
app/test-crypto-perf/cperf_test_common.c

index a95899a..328744e 100644 (file)
@@ -119,6 +119,8 @@ mempool_obj_init(struct rte_mempool *mp,
        op->type = RTE_CRYPTO_OP_TYPE_SYMMETRIC;
        op->status = RTE_CRYPTO_OP_STATUS_NOT_PROCESSED;
        op->sess_type = RTE_CRYPTO_OP_WITH_SESSION;
+       op->phys_addr = rte_mem_virt2phy(obj);
+       op->mempool = mp;
 
        /* Set source buffer */
        op->sym->m_src = m;