From 7cef3f4fdbe813ac7d495e15a81531f1181b19f9 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Thu, 30 Jun 2011 15:42:31 +0100 Subject: [PATCH] xen_disk: treat "aio" as "raw" 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 Signed-off-by: Alexander Graf --- hw/xen_disk.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/xen_disk.c b/hw/xen_disk.c index f14e5a6169..add815f273 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"); }