Re: [dpdk-dev] [RFC] ethdev: unify prefix for static function and variables

2020-10-16 Thread Ferruh Yigit
On 10/14/2020 8:59 AM, Gaëtan Rivet wrote: On 14/10/20 09:25 +0300, Andrew Rybchenko wrote: On 10/13/20 7:56 PM, Ferruh Yigit wrote: Prefix static function and variables with 'eth_dev'. For some 'rte_' prefix dropped, and for others 'eth_dev' added. This is useful to differentiate public and s

Re: [dpdk-dev] [RFC] ethdev: unify prefix for static function and variables

2020-10-14 Thread Gaëtan Rivet
On 14/10/20 09:25 +0300, Andrew Rybchenko wrote: > On 10/13/20 7:56 PM, Ferruh Yigit wrote: > > Prefix static function and variables with 'eth_dev'. > > > > For some 'rte_' prefix dropped, and for others 'eth_dev' added. > > This is useful to differentiate public and static function/variables. > >

Re: [dpdk-dev] [RFC] ethdev: unify prefix for static function and variables

2020-10-13 Thread Andrew Rybchenko
On 10/13/20 7:56 PM, Ferruh Yigit wrote: > Prefix static function and variables with 'eth_dev'. > > For some 'rte_' prefix dropped, and for others 'eth_dev' added. > This is useful to differentiate public and static function/variables. > > The cleanup is good to for having consistent naming to he

[dpdk-dev] [RFC] ethdev: unify prefix for static function and variables

2020-10-13 Thread Ferruh Yigit
Prefix static function and variables with 'eth_dev'. For some 'rte_' prefix dropped, and for others 'eth_dev' added. This is useful to differentiate public and static function/variables. The cleanup is good to for having consistent naming to help new additions naming. No functional change, only