Re: [dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-19 Thread Kinsella, Ray
On 16/10/2020 18:13, Andrew Rybchenko wrote: > On 10/16/20 2:20 PM, Kinsella, Ray wrote: >> On 15/10/2020 14:30, Andrew Rybchenko wrote: >>> From: Ivan Ilchenko >>> >>> Change rte_eth_dev_stop() return value from void to int >>> and return negative errno values in case of error conditions. >>>

Re: [dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-16 Thread Andrew Rybchenko
On 10/16/20 2:20 PM, Kinsella, Ray wrote: On 15/10/2020 14:30, Andrew Rybchenko wrote: From: Ivan Ilchenko Change rte_eth_dev_stop() return value from void to int and return negative errno values in case of error conditions. Also update the usage of the function in ethdev according to the new

Re: [dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-16 Thread Ferruh Yigit
On 10/15/2020 2:30 PM, Andrew Rybchenko wrote: From: Ivan Ilchenko Change rte_eth_dev_stop() return value from void to int and return negative errno values in case of error conditions. Also update the usage of the function in ethdev according to the new return type. Signed-off-by: Ivan Ilchenk

Re: [dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-16 Thread Kinsella, Ray
On 15/10/2020 14:30, Andrew Rybchenko wrote: > From: Ivan Ilchenko > > Change rte_eth_dev_stop() return value from void to int > and return negative errno values in case of error conditions. > Also update the usage of the function in ethdev according to > the new return type. > > Signed-off-b

Re: [dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-16 Thread Ferruh Yigit
On 10/15/2020 2:30 PM, Andrew Rybchenko wrote: From: Ivan Ilchenko Change rte_eth_dev_stop() return value from void to int and return negative errno values in case of error conditions. Also update the usage of the function in ethdev according to the new return type. Signed-off-by: Ivan Ilchenk

[dpdk-dev] [PATCH v2 01/11] ethdev: change eth dev stop function to return int

2020-10-15 Thread Andrew Rybchenko
From: Ivan Ilchenko Change rte_eth_dev_stop() return value from void to int and return negative errno values in case of error conditions. Also update the usage of the function in ethdev according to the new return type. Signed-off-by: Ivan Ilchenko Signed-off-by: Andrew Rybchenko Acked-by: Tho