From: Christoph Hellwig <hch@lst.de>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] block: saner flags filtering in bdrv_open2
Date: Wed, 10 Feb 2010 13:12:34 +0100 [thread overview]
Message-ID: <20100210121234.GA21125@lst.de> (raw)
In-Reply-To: <20100128141912.GA3454@lst.de>
ping?
On Thu, Jan 28, 2010 at 03:19:12PM +0100, Christoph Hellwig wrote:
> Clean up the current mess about figuring out which flags to pass to the
> driver. BDRV_O_FILE, BDRV_O_SNAPSHOT and BDRV_O_NO_BACKING are flags
> only used by the block layer internally so filter them out directly.
> Previously BDRV_O_NO_BACKING could accidentally be passed to the drivers,
> but wasn't ever used.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
>
> Index: qemu/block.c
> ===================================================================
> --- qemu.orig/block.c 2010-01-28 15:12:52.316024386 +0100
> +++ qemu/block.c 2010-01-28 15:13:33.419004083 +0100
> @@ -451,13 +451,20 @@ int bdrv_open2(BlockDriverState *bs, con
> bs->enable_write_cache = 1;
>
> bs->read_only = (flags & BDRV_O_RDWR) == 0;
> - if (!(flags & BDRV_O_FILE)) {
> - open_flags = (flags & (BDRV_O_RDWR | BDRV_O_CACHE_MASK|BDRV_O_NATIVE_AIO));
> - if (bs->is_temporary) { /* snapshot should be writeable */
> - open_flags |= BDRV_O_RDWR;
> - }
> - } else {
> - open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
> +
> + /*
> + * Clear flags that are internal to the block layer before opening the
> + * image.
> + */
> + open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
> +
> + /*
> + * Snapshots should be writeable.
> + *
> + * XXX(hch): and what is the point of a snapshot during a read-only open?
> + */
> + if (!(flags & BDRV_O_FILE) && bs->is_temporary) {
> + open_flags |= BDRV_O_RDWR;
> }
>
> ret = drv->bdrv_open(bs, filename, open_flags);
>
---end quoted text---
next prev parent reply other threads:[~2010-02-10 12:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-28 14:19 [Qemu-devel] [PATCH] block: saner flags filtering in bdrv_open2 Christoph Hellwig
2010-02-10 12:12 ` Christoph Hellwig [this message]
2010-02-10 18:31 ` Anthony Liguori
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=20100210121234.GA21125@lst.de \
--to=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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.