From: Kevin Wolf <kwolf@redhat.com>
To: Christoph Hellwig <hch@lst.de>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/2] block: clean up bdrv_open2 structure a bit
Date: Tue, 12 Jan 2010 17:04:00 +0100 [thread overview]
Message-ID: <4B4C9D70.2090506@redhat.com> (raw)
In-Reply-To: <20100111175137.GA7571@lst.de>
Am 11.01.2010 18:51, schrieb Christoph Hellwig:
> 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-11 17:48:27.811004054 +0100
> +++ qemu/block.c 2010-01-11 17:52:15.578006158 +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);
>
> @@ -452,23 +458,17 @@ int bdrv_open2(BlockDriverState *bs, con
> (flags & (BDRV_O_CACHE_MASK|BDRV_O_NATIVE_AIO));
> 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 == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) {
> ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR);
> bs->read_only = 1;
> }
> +
> 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;
> }
> @@ -502,6 +502,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:
To keep the behaviour as previously you'd need to set at least bs->drv
in the unlink_and_fail case, too. I have no clue why it's important to
set it to NULL when bs isn't going to be used anyway (probably it is,
but I don't know where), but Fabrice committed this in 6b21b973 as a
fix. Unfortunately, the commit message looks like most of Fabrice's
commit messages, so it's of no use for me...
Kevin
next prev parent reply other threads:[~2010-01-12 16:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-11 17:51 [Qemu-devel] [PATCH 1/2] block: clean up bdrv_open2 structure a bit Christoph Hellwig
2010-01-12 16:04 ` Kevin Wolf [this message]
2010-01-12 17:09 ` Christoph Hellwig
2010-01-12 17:14 ` Kevin Wolf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B4C9D70.2090506@redhat.com \
--to=kwolf@redhat.com \
--cc=hch@lst.de \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).