qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 1/2] block: clean up bdrv_open2 structure a bit
@ 2010-01-20 17:13 Christoph Hellwig
  2010-01-26 22:02 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2010-01-20 17:13 UTC (permalink / raw)
  To: qemu-devel

Check the whitelist as early as possible instead of continuing the
setup, and move all the error handling code to the end of the
function.

Signed-off-by: Christoph Hellwig <hch@lst.de>

Index: qemu/block.c
===================================================================
--- qemu.orig/block.c	2010-01-20 17:21:33.000000000 +0100
+++ qemu/block.c	2010-01-20 17:24:22.596006289 +0100
@@ -428,10 +428,16 @@ int bdrv_open2(BlockDriverState *bs, con
             drv = find_image_format(filename);
         }
     }
+
     if (!drv) {
         ret = -ENOENT;
         goto unlink_and_fail;
     }
+    if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
+        ret = -ENOTSUP;
+        goto unlink_and_fail;
+    }
+
     bs->drv = drv;
     bs->opaque = qemu_mallocz(drv->instance_size);
 
@@ -453,20 +459,12 @@ int bdrv_open2(BlockDriverState *bs, con
     } else {
         open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
     }
-    if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
-        ret = -ENOTSUP;
-    } else {
-        ret = drv->bdrv_open(bs, filename, open_flags);
-    }
+
+    ret = drv->bdrv_open(bs, filename, open_flags);
     if (ret < 0) {
-        qemu_free(bs->opaque);
-        bs->opaque = NULL;
-        bs->drv = NULL;
-    unlink_and_fail:
-        if (bs->is_temporary)
-            unlink(filename);
-        return ret;
+        goto free_and_fail;
     }
+
     if (drv->bdrv_getlength) {
         bs->total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
     }
@@ -499,6 +497,15 @@ int bdrv_open2(BlockDriverState *bs, con
             bs->change_cb(bs->change_opaque);
     }
     return 0;
+
+free_and_fail:
+    qemu_free(bs->opaque);
+    bs->opaque = NULL;
+    bs->drv = NULL;
+unlink_and_fail:
+    if (bs->is_temporary)
+        unlink(filename);
+    return ret;
 }
 
 void bdrv_close(BlockDriverState *bs)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/2] block: clean up bdrv_open2 structure a bit
  2010-01-20 17:13 [Qemu-devel] [PATCH v2 1/2] block: clean up bdrv_open2 structure a bit Christoph Hellwig
@ 2010-01-26 22:02 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2010-01-26 22:02 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: qemu-devel

On 01/20/2010 11:13 AM, Christoph Hellwig wrote:
> Check the whitelist as early as possible instead of continuing the
> setup, and move all the error handling code to the end of the
> function.
>
> Signed-off-by: Christoph Hellwig<hch@lst.de>
>    

Applied all.  Thanks.

Regards,

Anthony Liguori

> Index: qemu/block.c
> ===================================================================
> --- qemu.orig/block.c	2010-01-20 17:21:33.000000000 +0100
> +++ qemu/block.c	2010-01-20 17:24:22.596006289 +0100
> @@ -428,10 +428,16 @@ int bdrv_open2(BlockDriverState *bs, con
>               drv = find_image_format(filename);
>           }
>       }
> +
>       if (!drv) {
>           ret = -ENOENT;
>           goto unlink_and_fail;
>       }
> +    if (use_bdrv_whitelist&&  !bdrv_is_whitelisted(drv)) {
> +        ret = -ENOTSUP;
> +        goto unlink_and_fail;
> +    }
> +
>       bs->drv = drv;
>       bs->opaque = qemu_mallocz(drv->instance_size);
>
> @@ -453,20 +459,12 @@ int bdrv_open2(BlockDriverState *bs, con
>       } else {
>           open_flags = flags&  ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
>       }
> -    if (use_bdrv_whitelist&&  !bdrv_is_whitelisted(drv)) {
> -        ret = -ENOTSUP;
> -    } else {
> -        ret = drv->bdrv_open(bs, filename, open_flags);
> -    }
> +
> +    ret = drv->bdrv_open(bs, filename, open_flags);
>       if (ret<  0) {
> -        qemu_free(bs->opaque);
> -        bs->opaque = NULL;
> -        bs->drv = NULL;
> -    unlink_and_fail:
> -        if (bs->is_temporary)
> -            unlink(filename);
> -        return ret;
> +        goto free_and_fail;
>       }
> +
>       if (drv->bdrv_getlength) {
>           bs->total_sectors = bdrv_getlength(bs)>>  BDRV_SECTOR_BITS;
>       }
> @@ -499,6 +497,15 @@ int bdrv_open2(BlockDriverState *bs, con
>               bs->change_cb(bs->change_opaque);
>       }
>       return 0;
> +
> +free_and_fail:
> +    qemu_free(bs->opaque);
> +    bs->opaque = NULL;
> +    bs->drv = NULL;
> +unlink_and_fail:
> +    if (bs->is_temporary)
> +        unlink(filename);
> +    return ret;
>   }
>
>   void bdrv_close(BlockDriverState *bs)
>
>
>
>    

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-26 22:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-20 17:13 [Qemu-devel] [PATCH v2 1/2] block: clean up bdrv_open2 structure a bit Christoph Hellwig
2010-01-26 22:02 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).