Re: [dpdk-dev] [PATCH v2 2/2] eal: restrict ctrl threads to startup cpu affinity

2019-02-19 Thread David Marchand
On Tue, Feb 19, 2019 at 12:38 PM Burakov, Anatoly wrote: > On 14-Feb-19 1:30 PM, David Marchand wrote: > > --- a/doc/guides/prog_guide/env_abstraction_layer.rst > > +++ b/doc/guides/prog_guide/env_abstraction_layer.rst > > @@ -498,6 +498,20 @@ Those TLS include *_cpuset* and *_socket_id*: > > *

Re: [dpdk-dev] [PATCH v2 2/2] eal: restrict ctrl threads to startup cpu affinity

2019-02-19 Thread Burakov, Anatoly
On 14-Feb-19 1:30 PM, David Marchand wrote: Spawning the ctrl threads on anything that is not part of the eal coremask is not that polite to the rest of the system, especially when you took good care to pin your processes on cpu resources with tools like taskset (linux) / cpuset (freebsd). Rathe

[dpdk-dev] [PATCH v2 2/2] eal: restrict ctrl threads to startup cpu affinity

2019-02-14 Thread David Marchand
Spawning the ctrl threads on anything that is not part of the eal coremask is not that polite to the rest of the system, especially when you took good care to pin your processes on cpu resources with tools like taskset (linux) / cpuset (freebsd). Rather than introduce yet another eal options to co