Re: [dpdk-dev] [PATCH v3] net/vhost: fix return value of vhost creates not checked

2020-01-09 Thread Maxime Coquelin
On 1/7/20 6:08 AM, Tiwei Bie wrote: > On Tue, Jan 07, 2020 at 11:25:48AM +0800, Yunjian Wang wrote: >> The function eth_dev_vhost_create() could return errors, >> the return value need to be checked. >> >> Fixes: ee584e9710b9 ("vhost: add driver on top of the library") >> Cc: sta...@dpdk.org >>

Re: [dpdk-dev] [PATCH v3] net/vhost: fix return value of vhost creates not checked

2020-01-06 Thread Tiwei Bie
On Tue, Jan 07, 2020 at 11:25:48AM +0800, Yunjian Wang wrote: > The function eth_dev_vhost_create() could return errors, > the return value need to be checked. > > Fixes: ee584e9710b9 ("vhost: add driver on top of the library") > Cc: sta...@dpdk.org > > Signed-off-by: Yunjian Wang > --- > v3: >

[dpdk-dev] [PATCH v3] net/vhost: fix return value of vhost creates not checked

2020-01-06 Thread Yunjian Wang
The function eth_dev_vhost_create() could return errors, the return value need to be checked. Fixes: ee584e9710b9 ("vhost: add driver on top of the library") Cc: sta...@dpdk.org Signed-off-by: Yunjian Wang --- v3: * Add newline at the end of the error message v2: * Change function eth_dev_vhos