summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorNaphtali Sprei <nsprei@redhat.com>2010-01-21 14:40:39 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2010-01-26 15:42:01 -0600
commit058fc8c768f81f9140db511171185dc8e0676163 (patch)
tree2638db9a159c0b89d15882bfa43606fc1f6e75cc /block
parent37226ad946597126f5bce36f75f818b12fe4b5b8 (diff)
downloadhqemu-058fc8c768f81f9140db511171185dc8e0676163.zip
hqemu-058fc8c768f81f9140db511171185dc8e0676163.tar.gz
Ask for read-write permissions when opening files
Found some places that seems needs this explicitly, now that read-write is not the default. Signed-off-by: Naphtali Sprei <nsprei@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block')
-rw-r--r--block/qcow2.c2
-rw-r--r--block/vvfat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/block/qcow2.c b/block/qcow2.c
index 8fc8f8c..8c220ec 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -998,7 +998,7 @@ exit:
if (prealloc) {
BlockDriverState *bs;
bs = bdrv_new("");
- bdrv_open(bs, filename, BDRV_O_CACHE_WB);
+ bdrv_open(bs, filename, BDRV_O_CACHE_WB | BDRV_O_RDWR);
preallocate(bs);
bdrv_close(bs);
}
diff --git a/block/vvfat.c b/block/vvfat.c
index df957e5..d2787b9 100644
--- a/block/vvfat.c
+++ b/block/vvfat.c
@@ -2792,7 +2792,7 @@ static int enable_write_target(BDRVVVFATState *s)
if (bdrv_create(bdrv_qcow, s->qcow_filename, options) < 0)
return -1;
s->qcow = bdrv_new("");
- if (s->qcow == NULL || bdrv_open(s->qcow, s->qcow_filename, 0) < 0)
+ if (s->qcow == NULL || bdrv_open(s->qcow, s->qcow_filename, BDRV_O_RDWR) < 0)
return -1;
#ifndef _WIN32
OpenPOWER on IntegriCloud