[dpdk-dev] [PATCH] net/ring: fix ring eth dev creation via devargs

2016-10-13 Thread Bruce Richardson
On Thu, Oct 13, 2016 at 11:21:57AM +0100, Bruce Richardson wrote: > On Wed, Aug 31, 2016 at 05:51:11PM +0100, Ferruh Yigit wrote: > > Using nodeaction devarg lets creating multiple ring eth devices: > > "eth_ring0,nodeaction=R0:0:CREATE,nodeaction=R1:0:CREATE" > > > > Trying to create all devices

[dpdk-dev] [PATCH] net/ring: fix ring eth dev creation via devargs

2016-10-13 Thread Bruce Richardson
On Wed, Aug 31, 2016 at 05:51:11PM +0100, Ferruh Yigit wrote: > Using nodeaction devarg lets creating multiple ring eth devices: > "eth_ring0,nodeaction=R0:0:CREATE,nodeaction=R1:0:CREATE" > > Trying to create all devices with same name fails. Since first part of > the nodeaction devarg is name (i

[dpdk-dev] [PATCH] net/ring: fix ring eth dev creation via devargs

2016-08-31 Thread Ferruh Yigit
Using nodeaction devarg lets creating multiple ring eth devices: "eth_ring0,nodeaction=R0:0:CREATE,nodeaction=R1:0:CREATE" Trying to create all devices with same name fails. Since first part of the nodeaction devarg is name (in above sample R0,R1), this name field can be used as eth dev name. Fix