From: Kevin Wolf Date: Thu, 27 Jan 2011 15:46:01 +0000 (+0100) Subject: qcow2: Really use cache=unsafe for image creation X-Git-Tag: v0.14.0-rc1~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7edb1c3a51286a5323daee8cac5ca600be01abf9;p=thirdparty%2Fqemu.git 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 Reviewed-by: Stefan Hajnoczi (cherry picked from commit e1a7107f2d92af646ec37b74d074dc150e688559) --- diff --git a/block/qcow2.c b/block/qcow2.c index dbe4fdd44d6..a1773e4790f 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; }