[libvirt] [PATCH 2/3] storage: Clean up return value checking

Peter Krempa pkrempa at redhat.com
Fri Jan 13 15:02:21 UTC 2017


On Fri, Jan 13, 2017 at 07:59:09 -0500, John Ferlan wrote:
> Rather than special casing the VIR_STORAGE_BLKID_PROBE_UNKNOWN after
> calling virStorageBackendBLKIDFindPart, just allow the switch statement
> handle setting ret = -2.
> 
> Signed-off-by: John Ferlan <jferlan at redhat.com>
> ---
>  src/storage/storage_backend.c | 10 +---------
>  1 file changed, 1 insertion(+), 9 deletions(-)
> 
> diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend.c
> index 6bdfbf1..eebf039 100644
> --- a/src/storage/storage_backend.c
> +++ b/src/storage/storage_backend.c
> @@ -2777,10 +2777,6 @@ virStorageBackendBLKIDFindEmpty(const char *device,
>          rc == VIR_STORAGE_BLKID_PROBE_UNKNOWN) {
>  
>          rc = virStorageBackendBLKIDFindPart(probe, device, format);
> -        if (rc == VIR_STORAGE_BLKID_PROBE_UNKNOWN) {
> -            ret = -2;
> -            goto cleanup;
> -        }
>      }
>  
>      switch (rc) {
> @@ -2799,10 +2795,7 @@ virStorageBackendBLKIDFindEmpty(const char *device,
>          break;
>  
>      case VIR_STORAGE_BLKID_PROBE_UNKNOWN:
> -        virReportError(VIR_ERR_STORAGE_PROBE_FAILED,
> -                       _("Not capable of probing for format type '%s', "
> -                         "requires build --overwrite"),
> -                       format);
> +        ret = -2;

ACK, nice to see the virshism to go.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20170113/8e9cf084/attachment-0001.sig>


More information about the libvir-list mailing list