qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/1] block: fix inability to start VM with native AIO
@ 2015-12-22  6:59 Denis V. Lunev
  2015-12-23  8:07 ` Stefan Hajnoczi
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Denis V. Lunev @ 2015-12-22  6:59 UTC (permalink / raw)
  Cc: Kevin Wolf, Denis V. Lunev, qemu-devel

error: Failed to start domain rhel7
error: internal error: process exited while connecting to monitor:
    2015-12-22T06:55:18.812637Z qemu-system-x86_64:
    -drive file=/var/lib/libvirt/images/rhel7.qcow2,if=none,
        id=drive-scsi0-0-0-0,format=qcow2,cache=none,aio=native:
    aio=native was specified, but it requires cache.direct=on,
    which was not specified.

cache=none option was specified as seen above while the VM is unable to
start. The patch properly passed BDRV_O_NOCACHE to underlying layer.

The problem is revealed with
    commit d657c0c289e944fc22289f5c318f48da87d79dcb
    Author: Kevin Wolf <kwolf@redhat.com>
    Date:   Tue Dec 15 11:35:36 2015 +0100

        raw-posix: Make aio=native option binding

Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Kevin Wolf <kwolf@redhat.com>
---
 block.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/block.c b/block.c
index 411edbf..fe0fbbc 100644
--- a/block.c
+++ b/block.c
@@ -990,6 +990,7 @@ static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file,
     bs->opaque = g_malloc0(drv->instance_size);
 
     /* Apply cache mode options */
+    update_flags_from_options(&open_flags, opts);
     update_flags_from_options(&bs->open_flags, opts);
     bdrv_set_enable_write_cache(bs, bs->open_flags & BDRV_O_CACHE_WB);
 
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-02-08 14:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-22  6:59 [Qemu-devel] [PATCH 1/1] block: fix inability to start VM with native AIO Denis V. Lunev
2015-12-23  8:07 ` Stefan Hajnoczi
2015-12-23  8:08 ` Stefan Hajnoczi
2016-01-08 12:25 ` Denis V. Lunev
2016-01-11 13:46 ` Christian Borntraeger
2016-01-11 14:26   ` Denis V. Lunev
2016-02-08 14:49     ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).