Re: [dpdk-dev] [PATCH] ring: fix namespace prefix of inline functions

2020-02-06 Thread David Marchand
On Thu, Jan 23, 2020 at 9:31 AM Thomas Monjalon wrote: > > When adding custom element size feature, some internal inline functions > were added in a public header without rte_ prefix. > It is fixed by adding __rte_ring_. > > Fixes: cc4b218790f6 ("ring: support configurable element size") > > Repor

Re: [dpdk-dev] [PATCH] ring: fix namespace prefix of inline functions

2020-01-29 Thread Olivier Matz
On Thu, Jan 23, 2020 at 09:30:22AM +0100, Thomas Monjalon wrote: > When adding custom element size feature, some internal inline functions > were added in a public header without rte_ prefix. > It is fixed by adding __rte_ring_. > > Fixes: cc4b218790f6 ("ring: support configurable element size") >

Re: [dpdk-dev] [PATCH] ring: fix namespace prefix of inline functions

2020-01-23 Thread Honnappa Nagarahalli
> > When adding custom element size feature, some internal inline functions were > added in a public header without rte_ prefix. > It is fixed by adding __rte_ring_. > > Fixes: cc4b218790f6 ("ring: support configurable element size") > > Reported-by: David Marchand > Signed-off-by: Thomas Mon

[dpdk-dev] [PATCH] ring: fix namespace prefix of inline functions

2020-01-23 Thread Thomas Monjalon
When adding custom element size feature, some internal inline functions were added in a public header without rte_ prefix. It is fixed by adding __rte_ring_. Fixes: cc4b218790f6 ("ring: support configurable element size") Reported-by: David Marchand Signed-off-by: Thomas Monjalon --- lib/librt