Re: [dpdk-dev] [PATCH] bus/pci: fix unknown NUMA node value on Windows

2021-09-27 Thread Menon, Ranjit
(Sending the ACK again since Outlook appeared to make the email address a smart link!) On 9/27/2021 11:43 AM, Pallavi Kadam wrote: Based on the rte_eth_dev_socket_id() documentation, set the default numa_node to -1. When the API is unsuccessful, set numa_node to 0. This change more correctly re

Re: [dpdk-dev] [PATCH] bus/pci: fix unknown NUMA node value on Windows

2021-09-27 Thread Menon, Ranjit
On 9/27/2021 11:43 AM, Pallavi Kadam wrote: Based on the rte_eth_dev_socket_id() documentation, set the default numa_node to -1. When the API is unsuccessful, set numa_node to 0. This change more correctly resembles the Linux code. Fixes: bf7cf1f947bd ("bus/pci: fix unknown NUMA node value on

[dpdk-dev] [PATCH] bus/pci: fix unknown NUMA node value on Windows

2021-09-27 Thread Pallavi Kadam
Based on the rte_eth_dev_socket_id() documentation, set the default numa_node to -1. When the API is unsuccessful, set numa_node to 0. This change more correctly resembles the Linux code. Fixes: bf7cf1f947bd ("bus/pci: fix unknown NUMA node value on Windows") Cc: sta...@dpdk.org Reported-by: Vipi