test/rcu: fix build for small number of cores
[dpdk.git] / app / test-crypto-perf / cperf_ops.h
index d155a43..ff125d1 100644 (file)
@@ -13,7 +13,7 @@
 
 
 typedef struct rte_cryptodev_sym_session *(*cperf_sessions_create_t)(
-               struct rte_mempool *sess_mp,
+               struct rte_mempool *sess_mp, struct rte_mempool *sess_priv_mp,
                uint8_t dev_id, const struct cperf_options *options,
                const struct cperf_test_vector *test_vector,
                uint16_t iv_offset);
@@ -23,7 +23,7 @@ typedef int (*cperf_populate_ops_t)(struct rte_crypto_op **ops,
                uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
                const struct cperf_options *options,
                const struct cperf_test_vector *test_vector,
-               uint16_t iv_offset);
+               uint16_t iv_offset, uint32_t *imix_idx);
 
 struct cperf_op_fns {
        cperf_sessions_create_t sess_create;