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

2020-10-14 Thread Ferruh Yigit
On 10/14/2020 2:28 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 01/11] ethdev: change eth dev stop function to return int

2020-10-14 Thread Andrew Rybchenko
On 10/14/20 4:33 PM, Thomas Monjalon wrote: > 14/10/2020 15:28, 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 >>

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

2020-10-14 Thread Thomas Monjalon
14/10/2020 15:28, 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 Ilch

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

2020-10-14 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 --- doc/guid