[dpdk-dev] [PATCH] enic: don't set enic->config.rq_desc_count in enic_alloc_rq()

2016-03-18 Thread Bruce Richardson
On Thu, Mar 17, 2016 at 03:46:50PM -0700, John Daley wrote: > From: Nelson Escobar > > When the requested number of rx descriptors was less than the amount > configured on the vic, enic_alloc_rq() was incorrectly setting > enic->config.rq_desc_count to the lower value. This screwed up later > ca

[dpdk-dev] [PATCH] enic: don't set enic->config.rq_desc_count in enic_alloc_rq()

2016-03-17 Thread John Daley
From: Nelson Escobar When the requested number of rx descriptors was less than the amount configured on the vic, enic_alloc_rq() was incorrectly setting enic->config.rq_desc_count to the lower value. This screwed up later calls to enic_alloc_rq(). Signed-off-by: Nelson Escobar Reviewed-by: Joh