[libvirt] [PATCH] interface: Use proper return codes in the open function

Daniel Veillard veillard at redhat.com
Mon Feb 15 09:05:03 UTC 2010


On Sun, Feb 14, 2010 at 11:29:44PM +0100, Matthias Bolte wrote:
> The open function returned -1 in case of an error, but -1 maps
> to VIR_DRV_OPEN_DECLINED instead of VIR_DRV_OPEN_ERROR.
> ---
>  src/interface/netcf_driver.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/interface/netcf_driver.c b/src/interface/netcf_driver.c
> index 2753049..7f4d43d 100644
> --- a/src/interface/netcf_driver.c
> +++ b/src/interface/netcf_driver.c
> @@ -139,7 +139,7 @@ static virDrvOpenStatus interfaceOpenInterface(virConnectPtr conn,
>      }
>  
>      conn->interfacePrivateData = driverState;
> -    return 0;
> +    return VIR_DRV_OPEN_SUCCESS;
>  
>  netcf_error:
>      if (driverState->netcf)
> @@ -150,7 +150,7 @@ netcf_error:
>  mutex_error:
>      VIR_FREE(driverState);
>  alloc_error:
> -    return -1;
> +    return VIR_DRV_OPEN_ERROR;
>  }
>  
>  static int interfaceCloseInterface(virConnectPtr conn)

ACK

Daniel

-- 
Daniel Veillard      | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
daniel at veillard.com  | Rpmfind RPM search engine http://rpmfind.net/
http://veillard.com/ | virtualization library  http://libvirt.org/




More information about the libvir-list mailing list