Re: [dpdk-dev] [PATCH v7 1/3] drivers/net: fix build with internal API usage

2020-07-10 Thread Ferruh Yigit
On 7/11/2020 12:17 AM, Ferruh Yigit wrote: > On 7/10/2020 11:07 PM, Thomas Monjalon wrote: >> 10/07/2020 23:43, Ferruh Yigit: >>> Using '__rte_internal' tag in 'rte_ethdev_driver.h' causing build error >>> for applications and examples. Because they don't define >>> 'ALLOW_INTERNAL_API' flag and '_

Re: [dpdk-dev] [PATCH v7 1/3] drivers/net: fix build with internal API usage

2020-07-10 Thread Ferruh Yigit
On 7/10/2020 11:07 PM, Thomas Monjalon wrote: > 10/07/2020 23:43, Ferruh Yigit: >> Using '__rte_internal' tag in 'rte_ethdev_driver.h' causing build error >> for applications and examples. Because they don't define >> 'ALLOW_INTERNAL_API' flag and '__rte_internal' causes the error. >> This patch is

Re: [dpdk-dev] [PATCH v7 1/3] drivers/net: fix build with internal API usage

2020-07-10 Thread Thomas Monjalon
10/07/2020 23:43, Ferruh Yigit: > Using '__rte_internal' tag in 'rte_ethdev_driver.h' causing build error > for applications and examples. Because they don't define > 'ALLOW_INTERNAL_API' flag and '__rte_internal' causes the error. > This patch is preparation for future '__rte_internal' usage. > >

[dpdk-dev] [PATCH v7 1/3] drivers/net: fix build with internal API usage

2020-07-10 Thread Ferruh Yigit
Using '__rte_internal' tag in 'rte_ethdev_driver.h' causing build error for applications and examples. Because they don't define 'ALLOW_INTERNAL_API' flag and '__rte_internal' causes the error. This patch is preparation for future '__rte_internal' usage. At first place, applications/examples shoul