examples/l3fwd-power: fix updating lcore parameters
[dpdk.git] / examples / vhost_crypto / main.c
index 8bdcb3a..1d7ba94 100644 (file)
@@ -354,12 +354,6 @@ static const struct vhost_device_ops virtio_crypto_device_ops = {
        .destroy_device = destroy_device,
 };
 
-__attribute__((unused))
-static void clrscr(void)
-{
-       system("@cls||clear");
-}
-
 static int
 vhost_crypto_worker(void *arg)
 {
@@ -522,6 +516,7 @@ main(int argc, char *argv[])
 
                config.nb_queue_pairs = dev_info.max_nb_queue_pairs;
                config.socket_id = rte_lcore_to_socket_id(lo->lcore_id);
+               config.ff_disable = RTE_CRYPTODEV_FF_SECURITY;
 
                ret = rte_cryptodev_configure(info->cid, &config);
                if (ret < 0) {
@@ -541,7 +536,7 @@ main(int argc, char *argv[])
                                rte_cryptodev_sym_get_private_session_size(
                                info->cid), 64, 0, NULL, NULL, NULL, NULL,
                                rte_lcore_to_socket_id(lo->lcore_id), 0);
-               if (!info->sess_priv_pool || info->sess_pool) {
+               if (!info->sess_priv_pool || !info->sess_pool) {
                        RTE_LOG(ERR, USER1, "Failed to create mempool");
                        goto error_exit;
                }
@@ -562,7 +557,7 @@ main(int argc, char *argv[])
 
                qp_conf.nb_descriptors = NB_CRYPTO_DESCRIPTORS;
                qp_conf.mp_session = info->sess_pool;
-               qp_conf.mp_session_private = info->sess_pool;
+               qp_conf.mp_session_private = info->sess_priv_pool;
 
                for (j = 0; j < dev_info.max_nb_queue_pairs; j++) {
                        ret = rte_cryptodev_queue_pair_setup(info->cid, j,