Re: [dpdk-dev] [PATCH v2] net/cxgbe: fix colliding function names

2019-04-19 Thread Ferruh Yigit
On 4/19/2019 1:03 PM, Rahul Lakkireddy wrote: > On Friday, April 04/19/19, 2019 at 17:14:25 +0530, Ferruh Yigit wrote: >> From: Stephen Hemminger >> >> This driver defines lots of functions (like init_rss) which are intended >> to only be used in this device. But when doing static linking these >>

Re: [dpdk-dev] [PATCH v2] net/cxgbe: fix colliding function names

2019-04-19 Thread Rahul Lakkireddy
On Friday, April 04/19/19, 2019 at 17:14:25 +0530, Ferruh Yigit wrote: > From: Stephen Hemminger > > This driver defines lots of functions (like init_rss) which are intended > to only be used in this device. But when doing static linking these > global functions cause link failures when similar f

[dpdk-dev] [PATCH v2] net/cxgbe: fix colliding function names

2019-04-19 Thread Ferruh Yigit
From: Stephen Hemminger This driver defines lots of functions (like init_rss) which are intended to only be used in this device. But when doing static linking these global functions cause link failures when similar function name is used in application. This patch prefixes all functions defined i