X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_hash%2Frte_fbk_hash.c;h=2d2b11a198c19d27844936edd139eb40d11dd7f7;hb=594f3c1cea092afc62cd5d4c867968cff595542c;hp=a19d33ca169afb28843c35d485e8e8c98cc9d0f7;hpb=dada9ef6edc59015b6674b5a95258787c71401b0;p=dpdk.git diff --git a/lib/librte_hash/rte_fbk_hash.c b/lib/librte_hash/rte_fbk_hash.c index a19d33ca16..2d2b11a198 100644 --- a/lib/librte_hash/rte_fbk_hash.c +++ b/lib/librte_hash/rte_fbk_hash.c @@ -43,7 +43,7 @@ #include #include #include -#include +#include #include #include #include @@ -51,27 +51,12 @@ #include #include #include +#include #include "rte_fbk_hash.h" -#include "rte_jhash.h" -#include "rte_hash_crc.h" TAILQ_HEAD(rte_fbk_hash_list, rte_fbk_hash_table); -/* global list of fbk_hashes (used for debug/dump) */ -static struct rte_fbk_hash_list *fbk_hash_list = NULL; - -/* macro to prevent duplication of list creation check code */ -#define CHECK_FBK_HASH_LIST_CREATED() do { \ - if (fbk_hash_list == NULL) \ - if ((fbk_hash_list = RTE_TAILQ_RESERVE("RTE_FBK_HASH", \ - rte_fbk_hash_list)) == NULL){ \ - rte_errno = E_RTE_NO_TAILQ; \ - return NULL; \ - } \ -} while (0) - - /** * Performs a lookup for an existing hash table, and returns a pointer to * the table if found. @@ -86,14 +71,21 @@ struct rte_fbk_hash_table * rte_fbk_hash_find_existing(const char *name) { struct rte_fbk_hash_table *h; + struct rte_fbk_hash_list *fbk_hash_list; /* check that we have an initialised tail queue */ - CHECK_FBK_HASH_LIST_CREATED(); + if ((fbk_hash_list = + RTE_TAILQ_LOOKUP_BY_IDX(RTE_TAILQ_FBK_HASH, rte_fbk_hash_list)) == NULL) { + rte_errno = E_RTE_NO_TAILQ; + return NULL; + } + rte_rwlock_read_lock(RTE_EAL_TAILQ_RWLOCK); TAILQ_FOREACH(h, fbk_hash_list, next) { if (strncmp(name, h->name, RTE_FBK_HASH_NAMESIZE) == 0) break; } + rte_rwlock_read_unlock(RTE_EAL_TAILQ_RWLOCK); if (h == NULL) rte_errno = ENOENT; return h; @@ -112,20 +104,19 @@ rte_fbk_hash_find_existing(const char *name) struct rte_fbk_hash_table * rte_fbk_hash_create(const struct rte_fbk_hash_params *params) { - struct rte_fbk_hash_table *ht; + struct rte_fbk_hash_table *ht = NULL; char hash_name[RTE_FBK_HASH_NAMESIZE]; const uint32_t mem_size = sizeof(*ht) + (sizeof(ht->t[0]) * params->entries); uint32_t i; - - /* check that we have access to create things in shared memory. */ - if (rte_eal_process_type() == RTE_PROC_SECONDARY){ - rte_errno = E_RTE_SECONDARY; - return NULL; - } + struct rte_fbk_hash_list *fbk_hash_list; /* check that we have an initialised tail queue */ - CHECK_FBK_HASH_LIST_CREATED(); + if ((fbk_hash_list = + RTE_TAILQ_LOOKUP_BY_IDX(RTE_TAILQ_FBK_HASH, rte_fbk_hash_list)) == NULL) { + rte_errno = E_RTE_NO_TAILQ; + return NULL; + } /* Error checking of parameters. */ if ((!rte_is_power_of_2(params->entries)) || @@ -134,25 +125,29 @@ rte_fbk_hash_create(const struct rte_fbk_hash_params *params) (params->entries_per_bucket == 0) || (params->entries_per_bucket > params->entries) || (params->entries > RTE_FBK_HASH_ENTRIES_MAX) || - (params->entries_per_bucket > RTE_FBK_HASH_ENTRIES_MAX)){ + (params->entries_per_bucket > RTE_FBK_HASH_ENTRIES_PER_BUCKET_MAX)){ rte_errno = EINVAL; return NULL; } rte_snprintf(hash_name, sizeof(hash_name), "FBK_%s", params->name); + rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK); + + /* guarantee there's no existing */ + TAILQ_FOREACH(ht, fbk_hash_list, next) { + if (strncmp(params->name, ht->name, RTE_FBK_HASH_NAMESIZE) == 0) + break; + } + if (ht != NULL) + goto exit; + /* Allocate memory for table. */ -#if defined(RTE_LIBRTE_HASH_USE_MEMZONE) - const struct rte_memzone *mz; - mz = rte_memzone_reserve(hash_name, mem_size, params->socket_id, 0); - if (mz == NULL) - return NULL; - ht = (struct rte_fbk_hash_table *)mz->addr; -#else - ht = (struct rte_fbk_hash_table *)rte_malloc(hash_name, mem_size, 0); + ht = (struct rte_fbk_hash_table *)rte_malloc_socket(hash_name, mem_size, + 0, params->socket_id); if (ht == NULL) - return NULL; -#endif + goto exit; + memset(ht, 0, mem_size); /* Set up hash table context. */ @@ -175,15 +170,11 @@ rte_fbk_hash_create(const struct rte_fbk_hash_params *params) ht->init_val = RTE_FBK_HASH_INIT_VAL_DEFAULT; } - if (ht->hash_func == rte_hash_crc_4byte && - !rte_cpu_get_flag_enabled(RTE_CPUFLAG_SSE4_2)) { - RTE_LOG(WARNING, HASH, "CRC32 instruction requires SSE4.2, " - "which is not supported on this system. " - "Falling back to software hash\n."); - ht->hash_func = rte_jhash_1word; - } - TAILQ_INSERT_TAIL(fbk_hash_list, ht, next); + +exit: + rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK); + return ht; } @@ -198,12 +189,8 @@ rte_fbk_hash_free(struct rte_fbk_hash_table *ht) { if (ht == NULL) return; - /* No way to deallocate memzones - but can de-allocate from malloc */ -#if !defined(RTE_LIBRTE_HASH_USE_MEMZONE) - TAILQ_REMOVE(fbk_hash_list, ht, next); + + RTE_EAL_TAILQ_REMOVE(RTE_TAILQ_FBK_HASH, rte_fbk_hash_list, ht); rte_free(ht); -#endif - RTE_SET_USED(ht); - return; }