RE: [PATCH v4] net/iavf:enhance NUMA affinity heuristic

2023-01-31 Thread You, KaisenX
toly > ; sta...@dpdk.org > Subject: Re: [PATCH v4] net/iavf:enhance NUMA affinity heuristic > > 31/01/2023 16:05, Kaisen You: > > lib/eal/common/eal_common_thread.c | 1 + > > lib/eal/common/malloc_heap.c | 4 > > 2 files changed, 5 insertions(+) > >

Re: [PATCH v4] net/iavf:enhance NUMA affinity heuristic

2023-01-31 Thread Thomas Monjalon
31/01/2023 16:05, Kaisen You: > lib/eal/common/eal_common_thread.c | 1 + > lib/eal/common/malloc_heap.c | 4 > 2 files changed, 5 insertions(+) Why the title refers to net/iavf?

[PATCH v4] net/iavf:enhance NUMA affinity heuristic

2023-01-31 Thread Kaisen You
Trying to allocate memory on the first detected numa node has less chance to find some memory actually available rather than on the main lcore numa node (especially when the DPDK application is started only on one numa node). Fixes: 705356f0811f ("eal: simplify control thread creation") Fixes: bb0