sched: allocate memory on the given socket id

Replace rte_zmalloc() with rte_zmalloc_socket() to allocate
memory on the socket id provided by the application.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
This commit is contained in:
Jasvinder Singh 2018-09-27 18:10:45 +01:00 committed by Cristian Dumitrescu
parent 9378d24bef
commit 923010592a

View File

@ -633,7 +633,8 @@ rte_sched_port_config(struct rte_sched_port_params *params)
return NULL;
/* Allocate memory to store the data structures */
port = rte_zmalloc("qos_params", mem_size, RTE_CACHE_LINE_SIZE);
port = rte_zmalloc_socket("qos_params", mem_size, RTE_CACHE_LINE_SIZE,
params->socket);
if (port == NULL)
return NULL;