If dpdk is run with memory only available on socket != 0, then hash creation will fail and flow director feature won't be available. Fix this by asking for allocation on caller socket.
Signed-off-by: David Marchand <david.marchand at 6wind.com> --- drivers/net/enic/enic_clsf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/enic/enic_clsf.c b/drivers/net/enic/enic_clsf.c index 656b25b..e7416ce 100644 --- a/drivers/net/enic/enic_clsf.c +++ b/drivers/net/enic/enic_clsf.c @@ -61,7 +61,6 @@ #define DEFAULT_HASH_FUNC rte_jhash #endif -#define SOCKET_0 0 #define ENICPMD_CLSF_HASH_ENTRIES ENICPMD_FDIR_MAX void enic_fdir_stats_get(struct enic *enic, struct rte_eth_fdir_stats *stats) @@ -247,7 +246,7 @@ int enic_clsf_init(struct enic *enic) .key_len = sizeof(struct rte_eth_fdir_filter), .hash_func = DEFAULT_HASH_FUNC, .hash_func_init_val = 0, - .socket_id = SOCKET_0, + .socket_id = SOCKET_ID_ANY, }; enic->fdir.hash = rte_hash_create(&hash_params); -- 1.9.1