From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [dpdk-stable] [PATCH v3] net/bonding: fix create bonded device test failure Date: Thu, 7 Feb 2019 13:34:57 +0000 Message-ID: <44ceb777-0570-a097-d445-a275c8b62fe0@intel.com> References: <1548660533-8710-1-git-send-email-hari.kumarx.vemula@intel.com> <1549373979-31816-1-git-send-email-hari.kumarx.vemula@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: declan.doherty@intel.com, reshma.pattan@intel.com, radu.nicolau@intel.com, jananeex.m.parthasarathy@intel.com, stable@dpdk.org To: Hari Kumar Vemula , dev@dpdk.org Return-path: In-Reply-To: <1549373979-31816-1-git-send-email-hari.kumarx.vemula@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 2/5/2019 1:39 PM, Hari Kumar Vemula wrote: > test_create_bonded_device is failing due to improper initialisation in > bonded device configuration. Which leads to crash while setting up queues. > > The value of nb_rx_desc is checked if it is not in range of rx_desc_lim of > bonded device which fails. > This is due to "rx_desc_lim" is set to 0 as default value of bonded device > during bond_alloc(). > Hence nb_rx_desc (1024) is > 0 and test fails. > > Fix is to set the default values of rx_desc_lim of bonded device to > appropriate value. > Receive the values from slaves configuration like done for other existing > slave configuration > > Fixes: 2efb58cbab6e ("bond: new link bonding library") > Cc: stable@dpdk.org > > Signed-off-by: Hari Kumar Vemula > Acked-by: Chas Williams Applied to dpdk-next-net/master, thanks.