]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_hash/rte_fbk_hash.c
net/dpaa2: support secondary process attach
[dpdk.git] / lib / librte_hash / rte_fbk_hash.c
index 8752a477e9be2a854cac56d7f8926a207820e141..55c9f358319c01adf544cce3d8b6b9280128fe49 100644 (file)
@@ -140,8 +140,11 @@ rte_fbk_hash_create(const struct rte_fbk_hash_params *params)
                if (strncmp(params->name, ht->name, RTE_FBK_HASH_NAMESIZE) == 0)
                        break;
        }
-       if (te != NULL)
+       ht = NULL;
+       if (te != NULL) {
+               rte_errno = EEXIST;
                goto exit;
+       }
 
        te = rte_zmalloc("FBK_HASH_TAILQ_ENTRY", sizeof(*te), 0);
        if (te == NULL) {