From a30afd2f6d47184057599f5ebc3fc1ccb3b8bf68 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Mon, 15 Jun 2009 17:55:56 +0100 Subject: [PATCH] respect the hvm flags instead of creating hvm all the time. --- xenvm/vmact.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xenvm/vmact.ml b/xenvm/vmact.ml index 558f8c6..c87ef3f 100644 --- a/xenvm/vmact.ml +++ b/xenvm/vmact.ml @@ -316,8 +316,8 @@ let create_vm xc xs state = ); let info = { Domain.ssidref = 0l; - Domain.hvm = true; - Domain.hap = true; + Domain.hvm = state.vm_cfg.hvm; + Domain.hap = state.vm_cfg.hvm; Domain.name = ""; Domain.platformdata = state.vm_cfg.platform; Domain.xsdata = []; -- 2.39.5