From: Stefano Stabellini <stefano.stabell...@eu.citrix.com> Sometimes the toolstack uses "aio" without an additional format identifier, in such cases use "raw".
Updated in v2: - fix code style. Signed-off-by: Stefano Stabellini <stefano.stabell...@eu.citrix.com> Signed-off-by: Alexander Graf <ag...@suse.de> --- hw/xen_disk.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/hw/xen_disk.c b/hw/xen_disk.c index f14e5a6..add815f 100644 --- a/hw/xen_disk.c +++ b/hw/xen_disk.c @@ -633,6 +633,9 @@ static int blk_init(struct XenDevice *xendev) blkdev->filename = blkdev->params; } } + if (!strcmp("aio", blkdev->fileproto)) { + blkdev->fileproto = "raw"; + } if (blkdev->mode == NULL) { blkdev->mode = xenstore_read_be_str(&blkdev->xendev, "mode"); } -- 1.6.0.2