Re: [PATCH v3 3/4] eal: implement functions for get/set thread affinity

2022-04-25 Thread Tyler Retzlaff
On Mon, Apr 25, 2022 at 10:26:58AM +0200, David Marchand wrote: > On Wed, Apr 13, 2022 at 9:43 AM Tyler Retzlaff > wrote: > > > > Implement functions for getting/setting thread affinity. > > Threads can be pinned to specific cores by setting their > > affinity attribute. > > > > note: rte_convert_

Re: [PATCH v3 3/4] eal: implement functions for get/set thread affinity

2022-04-25 Thread David Marchand
On Wed, Apr 13, 2022 at 9:43 AM Tyler Retzlaff wrote: > > Implement functions for getting/setting thread affinity. > Threads can be pinned to specific cores by setting their > affinity attribute. > > note: rte_convert_cpuset_to_affinity has a limitation that all cpus of > the set belong to the sam

[PATCH v3 3/4] eal: implement functions for get/set thread affinity

2022-04-13 Thread Tyler Retzlaff
Implement functions for getting/setting thread affinity. Threads can be pinned to specific cores by setting their affinity attribute. note: rte_convert_cpuset_to_affinity has a limitation that all cpus of the set belong to the same processor group. Signed-off-by: Narcisa Vasile Signed-off-by: Ty