Re: [dpdk-dev] [PATCH] net/enic: fix segfault due to static max number of queues

2018-01-24 Thread Ferruh Yigit
On 1/23/2018 1:05 AM, John Daley wrote: > From: Hyong Youb Kim > > ENIC_CQ_MAX, ENIC_WQ_MAX and others are arbitrary values that > prevent the app from using more queues when they are available on > hardware. Remove them and dynamically allocate vnic_cq and such > arrays to accommodate all availa

[dpdk-dev] [PATCH] net/enic: fix segfault due to static max number of queues

2018-01-22 Thread John Daley
From: Hyong Youb Kim ENIC_CQ_MAX, ENIC_WQ_MAX and others are arbitrary values that prevent the app from using more queues when they are available on hardware. Remove them and dynamically allocate vnic_cq and such arrays to accommodate all available hardware queues. As a side effect of removing E