Hi Pablo,
There is a remaining error below:
2015-07-11 01:18, Pablo de Lara:
> +int
> +rte_hash_lookup_bulk_data(const struct rte_hash *h, const void **keys,
> + uint32_t num_keys, uint64_t *hit_mask, void *data[])
> +{
> + RETURN_IF_TRUE(((h == NULL) || (keys == NULL) ||
Usually hash tables not only store keys, but also data associated
to them. In order to maintain the existing API, the old functions
will still return the index where the key was stored.
The new functions will return the data associated to that key.
In the case of the lookup_bulk function, it will r
2 matches
Mail list logo