From c15c5897340dc30ea11447043b54716f9ddd6428 Mon Sep 17 00:00:00 2001 From: Eric Kinzie Date: Fri, 30 Jun 2017 15:34:48 +0100 Subject: [PATCH] net/bonding: avoid allocating mempool on unknown socket If the numa node is unknown, use the value from rte_socket_id() to avoid an allocation failure. Signed-off-by: Eric Kinzie Signed-off-by: Declan Doherty --- drivers/net/bonding/rte_eth_bond_8023ad.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rte_eth_bond_8023ad.c index 57b9b32234..7826296e83 100644 --- a/drivers/net/bonding/rte_eth_bond_8023ad.c +++ b/drivers/net/bonding/rte_eth_bond_8023ad.c @@ -886,7 +886,10 @@ bond_mode_8023ad_activate_slave(struct rte_eth_dev *bond_dev, uint8_t slave_id) RTE_ASSERT(port->rx_ring == NULL); RTE_ASSERT(port->tx_ring == NULL); + socket_id = rte_eth_devices[slave_id].data->numa_node; + if (socket_id == (int)LCORE_ID_ANY) + socket_id = rte_socket_id(); element_size = sizeof(struct slow_protocol_frame) + RTE_PKTMBUF_HEADROOM; -- 2.20.1