[dpdk-dev] [PATCH v1 1/1] examples/bond: fix unchecked return value

2016-07-11 Thread Thomas Monjalon
2016-06-30 10:13, Declan Doherty: > On 29/06/16 10:23, ptazarex at ecsmtp.igk.intel.com wrote: > > The example is calling rte_eal_wait_lcore without checking return value. > > Now it is fixed by checking the value and print proper message. > > > > Coverity issue: 37789 > > Coverity issue: 37790 > >

[dpdk-dev] [PATCH v1 1/1] examples/bond: fix unchecked return value

2016-06-30 Thread Azarewicz, PiotrX T
> The example is calling rte_eal_wait_lcore without checking return value. > Now it is fixed by checking the value and print proper message. > > Coverity issue: 37789 > Coverity issue: 37790 > Fixes: cc7e8ae84faa ("examples/bond: add example application for link > bonding mode 6") > > Signed-off-

[dpdk-dev] [PATCH v1 1/1] examples/bond: fix unchecked return value

2016-06-30 Thread Declan Doherty
On 29/06/16 10:23, ptazarex at ecsmtp.igk.intel.com wrote: > The example is calling rte_eal_wait_lcore without checking return value. > Now it is fixed by checking the value and print proper message. > > Coverity issue: 37789 > Coverity issue: 37790 > Fixes: cc7e8ae84faa ("examples/bond: add exampl

[dpdk-dev] [PATCH v1 1/1] examples/bond: fix unchecked return value

2016-06-29 Thread Piotr Azarewicz
The example is calling rte_eal_wait_lcore without checking return value. Now it is fixed by checking the value and print proper message. Coverity issue: 37789 Coverity issue: 37790 Fixes: cc7e8ae84faa ("examples/bond: add example application for link bonding mode 6") Signed-off-by: Piotr Azarewi