[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] xl: enable hap, parse hap option in the config files
Hi all, this simple patch enables hap by default in xl and also allows xl to parse the hap option in the VM config file. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> --- diff -r 4ab68bf4c37e tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Thu Jun 03 07:30:54 2010 +0100 +++ b/tools/libxl/xl_cmdimpl.c Thu Jun 03 11:40:16 2010 +0100 @@ -160,6 +160,7 @@ memset(c_info, '\0', sizeof(*c_info)); c_info->xsdata = NULL; c_info->platformdata = NULL; + c_info->hap = 1; c_info->hvm = 1; c_info->oos = 1; c_info->ssidref = 0; @@ -441,7 +442,9 @@ !strncmp(buf, "hvm", strlen(buf))) c_info->hvm = 1; - /* hap is missing */ + if (!xlu_cfg_get_long (config, "hap", &l)) + c_info->hap = l; + if (!xlu_cfg_get_string (config, "name", &buf)) c_info->name = strdup(buf); else _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |