Re: [PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-11 Thread Mattias Rönnblom
On 2022-06-10 17:28, Stephen Hemminger wrote: Need to warn users of DPDK spinlocks from non-pinned threads. This is similar wording to Linux documentation in pthread_spin_init. Signed-off-by: Stephen Hemminger --- doc/guides/prog_guide/env_abstraction_layer.rst | 10 ++ 1 file change

Re: [PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-10 Thread Stephen Hemminger
On Sat, 11 Jun 2022 09:55:00 +0800 fengchengwen wrote: > On 2022/6/10 23:28, Stephen Hemminger wrote: > > Need to warn users of DPDK spinlocks from non-pinned threads. > > This is similar wording to Linux documentation in pthread_spin_init. > > > > Signed-off-by: Stephen Hemminger > > --- > >

Re: [PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-10 Thread Stephen Hemminger
On Fri, 10 Jun 2022 16:48:15 -0700 Tyler Retzlaff wrote: > > > > ++ locking > > + > > + If a pthread, that is not pinned to an lcore acquires a lock such as a > > nit: suggest not using term pthread but instead just say thread as not > to imply a specific platform/implementation. > > > +

Re: [PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-10 Thread Tyler Retzlaff
On Fri, Jun 10, 2022 at 08:28:19AM -0700, Stephen Hemminger wrote: > Need to warn users of DPDK spinlocks from non-pinned threads. > This is similar wording to Linux documentation in pthread_spin_init. > > Signed-off-by: Stephen Hemminger > --- > doc/guides/prog_guide/env_abstraction_layer.rst |

Re: [PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-10 Thread Tyler Retzlaff
On Fri, Jun 10, 2022 at 08:28:19AM -0700, Stephen Hemminger wrote: > Need to warn users of DPDK spinlocks from non-pinned threads. > This is similar wording to Linux documentation in pthread_spin_init. > > Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff > --- > doc/guides/prog_guide

[PATCH] doc/eal: add caveat about spinlocks from non-pinned threads

2022-06-10 Thread Stephen Hemminger
Need to warn users of DPDK spinlocks from non-pinned threads. This is similar wording to Linux documentation in pthread_spin_init. Signed-off-by: Stephen Hemminger --- doc/guides/prog_guide/env_abstraction_layer.rst | 10 ++ 1 file changed, 10 insertions(+) diff --git a/doc/guides/prog_