Re: [dpdk-dev] [PATCH] eal: store control thread CPU affinity in TLS

2020-03-25 Thread David Marchand
On Fri, Mar 13, 2020 at 9:34 AM David Marchand wrote: > On Wed, Feb 5, 2020 at 11:24 AM wrote: > > > > From: Jerin Jacob > > > > _cpuset TLS variable stores the CPU affinity of eal thread. > > Populate the _cpuset TLS variable for control thread to > > > > 1) Make rte_thread_get_affinity() and e

Re: [dpdk-dev] [PATCH] eal: store control thread CPU affinity in TLS

2020-03-13 Thread David Marchand
On Wed, Feb 5, 2020 at 11:24 AM wrote: > > From: Jerin Jacob > > _cpuset TLS variable stores the CPU affinity of eal thread. > Populate the _cpuset TLS variable for control thread to > > 1) Make rte_thread_get_affinity() and eal_thread_dump_affinity > functional with control thread. > 2) Quick ac

[dpdk-dev] [PATCH] eal: store control thread CPU affinity in TLS

2020-02-05 Thread jerinj
From: Jerin Jacob _cpuset TLS variable stores the CPU affinity of eal thread. Populate the _cpuset TLS variable for control thread to 1) Make rte_thread_get_affinity() and eal_thread_dump_affinity functional with control thread. 2) Quick access to cpu affinity. Signed-off-by: Jerin Jacob ---