diff options
Diffstat (limited to 'block/vdi.c')
-rw-r--r-- | block/vdi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/vdi.c b/block/vdi.c index 71f417c461..75d4819edb 100644 --- a/block/vdi.c +++ b/block/vdi.c @@ -770,8 +770,7 @@ static int vdi_create(const char *filename, QemuOpts *opts, Error **errp) } blk = blk_new_open(filename, NULL, NULL, - BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_PROTOCOL, - &local_err); + BDRV_O_RDWR | BDRV_O_PROTOCOL, &local_err); if (blk == NULL) { error_propagate(errp, local_err); ret = -EIO; |