From: Anthony PERARD <anthony.per...@citrix.com> Signed-off-by: Anthony PERARD <anthony.per...@citrix.com> Signed-off-by: Stefano Stabellini <stefano.stabell...@eu.citrix.com> Acked-by: Michael S. Tsirkin <m...@redhat.com> --- hw/i386/pc_q35.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index d7b7c3b..464a892 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -76,6 +76,11 @@ static void pc_q35_init(QEMUMachineInitArgs *args) DeviceState *icc_bridge; PcGuestInfo *guest_info; + if (xen_enabled() && xen_hvm_init(&ram_memory) != 0) { + fprintf(stderr, "xen hardware virtual machine initialisation failed\n"); + exit(1); + } + icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE); object_property_add_child(qdev_get_machine(), "icc-bridge", OBJECT(icc_bridge), NULL); -- 1.7.2.5