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:
parent
9378d24bef
commit
923010592a
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user