aesni_mb: fix wrong return value
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Mon, 15 Feb 2016 16:45:04 +0000 (16:45 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 24 Feb 2016 14:02:52 +0000 (15:02 +0100)
cryptodev_aesni_mb_init was returning the device id of
the device just created, but rte_eal_vdev_init
(the function that calls the first one), was expecting 0 or
negative value.
This made impossible to create more than one aesni_mb device
from command line.

Fixes: 924e84f87306 ("aesni_mb: add driver for multi buffer based crypto")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Declan Doherty <declan.doherty@intel.com>
app/test/test_cryptodev.c
app/test/test_cryptodev_perf.c
doc/guides/rel_notes/release_16_04.rst
drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c
examples/l2fwd-crypto/main.c

index fd5b7ec..62f8fb0 100644 (file)
@@ -143,7 +143,8 @@ testsuite_setup(void)
 {
        struct crypto_testsuite_params *ts_params = &testsuite_params;
        struct rte_cryptodev_info info;
-       unsigned i, nb_devs, dev_id = 0;
+       unsigned i, nb_devs, dev_id;
+       int ret;
        uint16_t qp_id;
 
        memset(ts_params, 0, sizeof(*ts_params));
@@ -177,10 +178,10 @@ testsuite_setup(void)
                                RTE_CRYPTODEV_AESNI_MB_PMD);
                if (nb_devs < 2) {
                        for (i = nb_devs; i < 2; i++) {
-                               int dev_id = rte_eal_vdev_init(
+                               ret = rte_eal_vdev_init(
                                        CRYPTODEV_NAME_AESNI_MB_PMD, NULL);
 
-                               TEST_ASSERT(dev_id >= 0,
+                               TEST_ASSERT(ret == 0,
                                        "Failed to create instance %u of"
                                        " pmd : %s",
                                        i, CRYPTODEV_NAME_AESNI_MB_PMD);
index 1744e13..728bcf0 100644 (file)
@@ -107,6 +107,7 @@ testsuite_setup(void)
        struct crypto_testsuite_params *ts_params = &testsuite_params;
        struct rte_cryptodev_info info;
        unsigned i, nb_devs, valid_dev_id = 0;
+       int ret;
        uint16_t qp_id;
 
        ts_params->mbuf_mp = rte_mempool_lookup("CRYPTO_PERF_MBUFPOOL");
@@ -138,10 +139,10 @@ testsuite_setup(void)
                nb_devs = rte_cryptodev_count_devtype(RTE_CRYPTODEV_AESNI_MB_PMD);
                if (nb_devs < 2) {
                        for (i = nb_devs; i < 2; i++) {
-                               int dev_id = rte_eal_vdev_init(
+                               ret = rte_eal_vdev_init(
                                        CRYPTODEV_NAME_AESNI_MB_PMD, NULL);
 
-                               TEST_ASSERT(dev_id >= 0,
+                               TEST_ASSERT(ret == 0,
                                        "Failed to create instance %u of pmd : %s",
                                        i, CRYPTODEV_NAME_AESNI_MB_PMD);
                        }
index 5786f74..8273817 100644 (file)
@@ -66,6 +66,13 @@ EAL
 Drivers
 ~~~~~~~
 
+* **aesni_mb: Fixed wrong return value when creating a device.**
+
+  cryptodev_aesni_mb_init() was returning the device id of the device created,
+  instead of 0 (when success), that rte_eal_vdev_init() expects.
+  This made impossible the creation of more than one aesni_mb device
+  from command line.
+
 
 Libraries
 ~~~~~~~~~
index 2ede7c1..a655ed8 100644 (file)
@@ -628,7 +628,7 @@ cryptodev_aesni_mb_create(const char *name, unsigned socket_id)
        internals->max_nb_queue_pairs = RTE_AESNI_MB_PMD_MAX_NB_QUEUE_PAIRS;
        internals->max_nb_sessions = RTE_AESNI_MB_PMD_MAX_NB_SESSIONS;
 
-       return dev->data->dev_id;
+       return 0;
 init_error:
        MB_LOG_ERR("driver %s: cryptodev_aesni_create failed", name);
 
index 4d5a5a4..a950b74 100644 (file)
@@ -1184,9 +1184,9 @@ initialize_cryptodevs(struct l2fwd_crypto_options *options, unsigned nb_ports)
                        return -1;
        } else if (options->cdev_type == RTE_CRYPTODEV_AESNI_MB_PMD) {
                for (i = 0; i < nb_ports; i++) {
-                       int id = rte_eal_vdev_init(CRYPTODEV_NAME_AESNI_MB_PMD,
+                       int retval = rte_eal_vdev_init(CRYPTODEV_NAME_AESNI_MB_PMD,
                                        NULL);
-                       if (id < 0)
+                       if (retval < 0)
                                return -1;
                }
        }