Re: [dpdk-dev] [PATCH] net/bonding: fix create bonded device test failure

2019-01-15 Thread Pattan, Reshma
> -Original Message- > From: Vemula, Hari KumarX > Sent: Monday, January 7, 2019 1:01 PM > > > Signed-off-by: Hari Kumar Vemula > --- > drivers/net/bonding/rte_eth_bond_pmd.c | 11 +++ > 1 file changed, 7 insertions(+), 4 deletions(-) > > - memcpy(&dev_info->rx_desc_lim,

Re: [dpdk-dev] [PATCH] net/bonding: fix create bonded device test failure

2019-01-08 Thread Vemula, Hari KumarX
t: Re: [dpdk-dev] [PATCH] net/bonding: fix create bonded device test > failure > > > > On 1/7/19 8:01 AM, Hari Kumar Vemula wrote: > > Create bonded device test is failing due to improper initialisation in > > bonded device configuration. which leads to crash while se

Re: [dpdk-dev] [PATCH] net/bonding: fix create bonded device test failure

2019-01-07 Thread Chas Williams
On 1/7/19 8:01 AM, Hari Kumar Vemula wrote: Create bonded device test 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. T

[dpdk-dev] [PATCH] net/bonding: fix create bonded device test failure

2019-01-07 Thread Hari Kumar Vemula
Create bonded device test 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 defaul