summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2011-01-27 16:46:01 +0100
committerKevin Wolf <kwolf@redhat.com>2011-02-07 12:55:16 +0100
commit7edb1c3a51286a5323daee8cac5ca600be01abf9 (patch)
treede398136d7cff79d1f079e1a34d5957e78bd06a8
parentfd08f20c23465c82c62187d463dacc6d00f79508 (diff)
downloadqemu-7edb1c3a51286a5323daee8cac5ca600be01abf9.tar.gz
qcow2: Really use cache=unsafe for image creation
For cache=unsafe we also need to set BDRV_O_CACHE_WB, otherwise we have some strange unsafe writethrough mode. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> (cherry picked from commit e1a7107f2d92af646ec37b74d074dc150e688559)
-rw-r--r--block/qcow2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/qcow2.c b/block/qcow2.c
index dbe4fdd44d..a1773e4790 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -975,7 +975,8 @@ static int qcow2_create2(const char *filename, int64_t total_size,
*/
BlockDriver* drv = bdrv_find_format("qcow2");
assert(drv != NULL);
- ret = bdrv_open(bs, filename, BDRV_O_RDWR | BDRV_O_NO_FLUSH, drv);
+ ret = bdrv_open(bs, filename,
+ BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH, drv);
if (ret < 0) {
goto out;
}