]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/cryptodev.c
cryptodev: change queue pair configure structure
[dpdk.git] / examples / ip_pipeline / cryptodev.c
index c4ba72beca3566cc44dc2e8465abd4ce67f8a10e..b365810de076a182bceeefbc8e72eaf18c465225 100644 (file)
@@ -93,7 +93,7 @@ cryptodev_create(const char *name, struct cryptodev_params *params)
        queue_conf.nb_descriptors = params->queue_size;
        for (i = 0; i < params->n_queues; i++) {
                status = rte_cryptodev_queue_pair_setup(dev_id, i,
-                               &queue_conf, socket_id, NULL);
+                               &queue_conf, socket_id);
                if (status < 0)
                        return NULL;
        }