diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-03-04 14:53:50 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-03-14 16:46:43 +0100 |
commit | 6340472c54529c5b703deec3ab0d6bdfe644f11e (patch) | |
tree | 510ecb67b21864f7fb2d761d7dc724e976e9669c /block/parallels.c | |
parent | 2073d410ce3f2b1507bccd6aba68e8808647f9a9 (diff) |
block: Use writeback in .bdrv_create() implementations
There's no reason to use a writethrough cache mode while creating an
image.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/parallels.c')
-rw-r--r-- | block/parallels.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/parallels.c b/block/parallels.c index 645521d783..3f9fd48cc6 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -479,7 +479,8 @@ static int parallels_create(const char *filename, QemuOpts *opts, Error **errp) file = NULL; ret = bdrv_open(&file, filename, NULL, NULL, - BDRV_O_RDWR | BDRV_O_PROTOCOL, &local_err); + BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_PROTOCOL, + &local_err); if (ret < 0) { error_propagate(errp, local_err); return ret; |