Re: [dpdk-dev] [PATCH v3] mempool/ring: add support for new ring sync modes

2020-07-13 Thread Thomas Monjalon
13/07/2020 14:58, Ananyev, Konstantin: > > 10/07/2020 18:21, Konstantin Ananyev: > > > Two new sync modes were introduced into rte_ring: > > > relaxed tail sync (RTS) and head/tail sync (HTS). > > > This change provides user with ability to select these > > > modes for ring based mempool via mempoo

Re: [dpdk-dev] [PATCH v3] mempool/ring: add support for new ring sync modes

2020-07-13 Thread Ananyev, Konstantin
> 10/07/2020 18:21, Konstantin Ananyev: > > Two new sync modes were introduced into rte_ring: > > relaxed tail sync (RTS) and head/tail sync (HTS). > > This change provides user with ability to select these > > modes for ring based mempool via mempool ops API. > > No, the user cannot use these mod

Re: [dpdk-dev] [PATCH v3] mempool/ring: add support for new ring sync modes

2020-07-10 Thread Thomas Monjalon
10/07/2020 18:21, Konstantin Ananyev: > Two new sync modes were introduced into rte_ring: > relaxed tail sync (RTS) and head/tail sync (HTS). > This change provides user with ability to select these > modes for ring based mempool via mempool ops API. No, the user cannot use these modes because the

[dpdk-dev] [PATCH v3] mempool/ring: add support for new ring sync modes

2020-07-10 Thread Konstantin Ananyev
Two new sync modes were introduced into rte_ring: relaxed tail sync (RTS) and head/tail sync (HTS). This change provides user with ability to select these modes for ring based mempool via mempool ops API. Signed-off-by: Konstantin Ananyev Acked-by: Gage Eads --- v3: silently ignore F_SP_PUT/F_S