Re: [dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable

2017-10-24 Thread Thomas Monjalon
24/10/2017 11:09, Jasvinder Singh: > Fix problem with uninitialized rx/tx deferred_start flags of the struct > rte_eth_rxconf/txconf by initializing with 0 value (deferred start of > the rx/tx queues is turned off). This setting allows device rx/tx > queues to start with rte_eth_dev_start(). > > C

[dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable

2017-10-24 Thread Jasvinder Singh
Fix problem with uninitialized rx/tx deferred_start flags of the struct rte_eth_rxconf/txconf by initializing with 0 value (deferred start of the rx/tx queues is turned off). This setting allows device rx/tx queues to start with rte_eth_dev_start(). Coverity issue: 194999, 195009 (Uninitialized sc

Re: [dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable

2017-10-24 Thread Singh, Jasvinder
> -Original Message- > From: Yigit, Ferruh > Sent: Monday, October 23, 2017 5:32 PM > To: Singh, Jasvinder ; dev@dpdk.org > Cc: Dumitrescu, Cristian ; Mcnamara, John > > Subject: Re: [dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar > variable &g

Re: [dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable

2017-10-23 Thread Ferruh Yigit
On 10/23/2017 3:36 AM, Jasvinder Singh wrote: > Fix problem with uninitialized rx/tx deferred_start flags of the struct > rte_eth_rxconf/txconf by initializing with 0 value (deferred start of > the rx/tx queues is turned off). This setting allows device rx/tx > queues to start with rte_eth_dev_star

[dpdk-dev] [PATCH] examples/qos_sched: fix uninitialized scalar variable

2017-10-23 Thread Jasvinder Singh
Fix problem with uninitialized rx/tx deferred_start flags of the struct rte_eth_rxconf/txconf by initializing with 0 value (deferred start of the rx/tx queues is turned off). This setting allows device rx/tx queues to start with rte_eth_dev_start(). CID 194999 (#1 of 1): Uninitialized scalar varia