From: Hemant Agrawal Date: Thu, 21 Jul 2016 10:54:03 +0000 (+0530) Subject: examples/l2fwd-crypto: call start function X-Git-Tag: spdx-start~6108 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=800386e6b7cc103fb8a94051459801fc6dbdb617;p=dpdk.git examples/l2fwd-crypto: call start function The usual device sequence is configure, queue setup and start. Crypto device should be started before use. Signed-off-by: Akhil Goyal Signed-off-by: Hemant Agrawal Signed-off-by: Thomas Monjalon Acked-by: Pablo de Lara --- diff --git a/examples/l2fwd-crypto/main.c b/examples/l2fwd-crypto/main.c index dd39cc16c1..66397a08a1 100644 --- a/examples/l2fwd-crypto/main.c +++ b/examples/l2fwd-crypto/main.c @@ -1796,6 +1796,13 @@ initialize_cryptodevs(struct l2fwd_crypto_options *options, unsigned nb_ports, return -1; } + retval = rte_cryptodev_start(cdev_id); + if (retval < 0) { + printf("Failed to start device %u: error %d\n", + cdev_id, retval); + return -1; + } + l2fwd_enabled_crypto_mask |= (1 << cdev_id); enabled_cdevs[cdev_id] = 1;