Re: [dpdk-dev] [PATCH v2] mem: fix allocation failure on non-NUMA kernel

2020-10-13 Thread David Marchand
On Tue, Oct 13, 2020 at 10:00 AM Nicolas Dichtel wrote: > > Le 12/10/2020 à 21:28, Nick Connolly a écrit : > > Running dpdk-helloworld on Linux with lib numa present, > > but no kernel support for NUMA (CONFIG_NUMA=n) causes > > ret_service_init() to fail with EAL: error allocating > > rte service

Re: [dpdk-dev] [PATCH v2] mem: fix allocation failure on non-NUMA kernel

2020-10-13 Thread Burakov, Anatoly
On 12-Oct-20 8:22 PM, Nick Connolly wrote: Running dpdk-helloworld on Linux with lib numa present, but no kernel support for NUMA (CONFIG_NUMA=n) causes ret_service_init() to fail with EAL: error allocating rte services array. alloc_seg() calls get_mempolicy to verify that the allocation has hap

Re: [dpdk-dev] [PATCH v2] mem: fix allocation failure on non-NUMA kernel

2020-10-13 Thread Nicolas Dichtel
Le 12/10/2020 à 21:28, Nick Connolly a écrit : > Running dpdk-helloworld on Linux with lib numa present, > but no kernel support for NUMA (CONFIG_NUMA=n) causes > ret_service_init() to fail with EAL: error allocating > rte services array. > > alloc_seg() calls get_mempolicy to verify that the allo

[dpdk-dev] [PATCH v2] mem: fix allocation failure on non-NUMA kernel

2020-10-12 Thread Nick Connolly
Running dpdk-helloworld on Linux with lib numa present, but no kernel support for NUMA (CONFIG_NUMA=n) causes ret_service_init() to fail with EAL: error allocating rte services array. alloc_seg() calls get_mempolicy to verify that the allocation has happened on the correct socket, but receives ENO

[dpdk-dev] [PATCH v2] mem: fix allocation failure on non-NUMA kernel

2020-10-12 Thread Nick Connolly
Running dpdk-helloworld on Linux with lib numa present, but no kernel support for NUMA (CONFIG_NUMA=n) causes ret_service_init() to fail with EAL: error allocating rte services array. alloc_seg() calls get_mempolicy to verify that the allocation has happened on the correct socket, but receives ENO