From: Naphtali Sprei <nsprei@redhat.com>
To: qemu-devel@nongnu.org
Cc: Naphtali Sprei <nsprei@redhat.com>
Subject: [Qemu-devel] [PATCH 4/4] Open backing file read-only also for snapshot mode
Date: Wed, 3 Feb 2010 20:32:28 +0200 [thread overview]
Message-ID: <1265221948-12613-5-git-send-email-nsprei@redhat.com> (raw)
In-Reply-To: <1265221948-12613-4-git-send-email-nsprei@redhat.com>
Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
---
block.c | 10 +---------
1 files changed, 1 insertions(+), 9 deletions(-)
diff --git a/block.c b/block.c
index 527b146..1db9961 100644
--- a/block.c
+++ b/block.c
@@ -483,19 +483,11 @@ int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
if (bs->backing_format[0] != '\0')
back_drv = bdrv_find_format(bs->backing_format);
- open_flags &= ~BDRV_O_RDWR; /* clear RW, then restore from orig */
- if (bs->is_temporary) {
- open_flags |= (flags & BDRV_O_RDWR);
- }
+ open_flags &= ~BDRV_O_RDWR;
ret = bdrv_open2(bs->backing_hd, backing_filename, open_flags,
back_drv);
if (ret < 0) {
- open_flags &= ~BDRV_O_RDWR; /* Fall-back to read-only for the backing file */
- ret = bdrv_open2(bs->backing_hd, backing_filename, open_flags,
- back_drv);
- }
- if (ret < 0) {
bdrv_close(bs);
return ret;
}
--
1.6.3.3
next prev parent reply other threads:[~2010-02-03 18:32 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-03 18:32 [Qemu-devel] [PATCH 0/4] block: more read-only changes, related to backing files Naphtali Sprei
2010-02-03 18:32 ` [Qemu-devel] [PATCH 1/4] Add open_flags to BlockDriverState Will be used later Naphtali Sprei
2010-02-03 18:32 ` [Qemu-devel] [PATCH 2/4] qemu-img: Fix qemu-img can't create qcow image based on read-only image Naphtali Sprei
2010-02-03 18:32 ` [Qemu-devel] [PATCH 3/4] Block: readonly changes Naphtali Sprei
2010-02-03 18:32 ` Naphtali Sprei [this message]
2010-02-03 21:06 ` Jamie Lokier
2010-02-04 9:36 ` Naphtali Sprei
2010-02-04 10:44 ` 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=1265221948-12613-5-git-send-email-nsprei@redhat.com \
--to=nsprei@redhat.com \
--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).