From: Hemant Agrawal Date: Wed, 4 Jul 2018 09:49:38 +0000 (+0530) Subject: test/crypto: fix device id when stopping port X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bb6f0b734f306c48bedac0df66cc9b8f62b595aa;p=dpdk.git test/crypto: fix device id when stopping port dev_id is valid, while ts_params->valid_devs[devid] may result a different value in case multiple devices are present and any of the device is being used. Fixes: 202d375c60bc ("app/test: add cryptodev unit and performance tests") Cc: stable@dpdk.org Signed-off-by: Hemant Agrawal Acked-by: Pablo de Lara --- diff --git a/test/test/test_cryptodev.c b/test/test/test_cryptodev.c index 389f79677d..e252feeaa3 100644 --- a/test/test/test_cryptodev.c +++ b/test/test/test_cryptodev.c @@ -585,7 +585,7 @@ test_device_configure_invalid_dev_id(void) dev_id = ts_params->valid_devs[ts_params->valid_dev_count - 1]; /* Stop the device in case it's started so it can be configured */ - rte_cryptodev_stop(ts_params->valid_devs[dev_id]); + rte_cryptodev_stop(dev_id); TEST_ASSERT_SUCCESS(rte_cryptodev_configure(dev_id, &ts_params->conf), "Failed test for rte_cryptodev_configure: "