[dpdk-dev] [PATCH 2/2] bond: use rte_eth_dev_socket_id()

Declan Doherty declan.doherty at intel.com
Wed Jun 28 11:49:48 CEST 2017


On 26/04/17 22:30, Jan Blunck wrote:
> The bonded device does not have to be a PCI device. Use the rte_ethdev
> functions instead.
> 
> Signed-off-by: Wen Chiu <wchiu at brocade.com>
> Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
> Signed-off-by: Jan Blunck <jblunck at infradead.org>
> ---
>   drivers/net/bonding/rte_eth_bond_8023ad.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rte_eth_bond_8023ad.c
> index b8df536..f84553c 100644
> --- a/drivers/net/bonding/rte_eth_bond_8023ad.c
> +++ b/drivers/net/bonding/rte_eth_bond_8023ad.c
> @@ -886,7 +886,7 @@ 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;
> +	socket_id = rte_eth_dev_socket_id(slave_id);
>   	if (socket_id == (uint8_t)LCORE_ID_ANY)
>   		socket_id = 0;
>   
> 

Acked-by: Declan Doherty <declan.doherty at intel.com>


More information about the dev mailing list