mem: fix rte_malloc(SOCKET_ID_ANY), try to allocate on other nodes
authorOlivier Matz <olivier.matz@6wind.com>
Tue, 11 Jun 2013 14:18:07 +0000 (16:18 +0200)
committerDavid Marchand <david.marchand@6wind.com>
Wed, 26 Feb 2014 10:07:27 +0000 (11:07 +0100)
commit926edd634e4a2c045056599864775c0a597d97e4
tree247f14999399cc17dd6ab0e813339b6498933ea6
parent9ac92a2693b0396a51e02aa13dba20b356d49359
mem: fix rte_malloc(SOCKET_ID_ANY), try to allocate on other nodes

Before this patch, rte_malloc(SOCKET_ID_ANY) was equivalent to
rte_malloc(this_socket). If the user specifies SOCKET_ID_ANY, it means that
memory can be allocated on any socket. So fix the behavior of rte_malloc() in
order to do that. The current CPU socket is still the default, but if it fails,
other sockets are tested.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_malloc/rte_malloc.c