Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2021-04-25 Thread Thomas Monjalon
Ruifeng Wang: > From: David Marchand > > Any update? > > I suppose this would need some rebasing after the ring library changes. > > Sorry for the late response. > This series has been rebased and v3 posted. > I have problem to mark v2 as superseded. I did change v2 as superseded.

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2021-04-24 Thread Ruifeng Wang
> -Original Message- > From: David Marchand > Sent: Thursday, March 25, 2021 10:58 PM > To: Honnappa Nagarahalli > Cc: dev ; nd ; tho...@monjalon.net; > jer...@marvell.com; Ruifeng Wang ; Phil Yang > ; Joyce Kong ; Ananyev, > Konstantin > Subject: Re: [dpdk-

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2021-03-25 Thread David Marchand
Hello, On Fri, Sep 25, 2020 at 4:30 PM David Marchand wrote: > > Hello Honnappa, > > On Sun, May 3, 2020 at 11:32 PM Honnappa Nagarahalli > wrote: > > > > > > > > > Subject: Re: [PATCH v2 0/2] Use WFE for spinlock and ring > > > > > > On Sun, Apr 26, 2020 at 10:39 AM Gavin Hu wrote: > > > > >

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-09-25 Thread David Marchand
Hello Honnappa, On Sun, May 3, 2020 at 11:32 PM Honnappa Nagarahalli wrote: > > > > > Subject: Re: [PATCH v2 0/2] Use WFE for spinlock and ring > > > > On Sun, Apr 26, 2020 at 10:39 AM Gavin Hu wrote: > > > > > > The rte_wait_until_equal_xxx APIs abstract the functionality of > > > 'polling for

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-05-03 Thread Honnappa Nagarahalli
> Subject: Re: [PATCH v2 0/2] Use WFE for spinlock and ring > > On Sun, Apr 26, 2020 at 10:39 AM Gavin Hu wrote: > > > > The rte_wait_until_equal_xxx APIs abstract the functionality of > > 'polling for a memory location to become equal to a given value'[1]. > > > > Use the API for the rte spinl

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-05-03 Thread David Marchand
On Sun, Apr 26, 2020 at 10:39 AM Gavin Hu wrote: > > The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling > for a memory location to become equal to a given value'[1]. > > Use the API for the rte spinlock and ring implementations. > > [1] http://patches.dpdk.org/cover/62703/ >

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-05-01 Thread Ananyev, Konstantin
> > The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling > for a memory location to become equal to a given value'[1]. > > Use the API for the rte spinlock and ring implementations. > > [1] http://patches.dpdk.org/cover/62703/ > > Gavin Hu (2): > spinlock: use wfe to reduc

[dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-04-26 Thread Gavin Hu
The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling for a memory location to become equal to a given value'[1]. Use the API for the rte spinlock and ring implementations. [1] http://patches.dpdk.org/cover/62703/ Gavin Hu (2): spinlock: use wfe to reduce contention on aarch