[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH v4 05/22] xl: introduce a domain type option



Roger Pau Monne writes ("[PATCH v4 05/22] xl: introduce a domain type option"):
> Introduce a new type option to xl configuration files in order to
> specify the domain type. This supersedes the current builder option.
> 
> The new option is documented in the xl.cfg man page, and the previous
> builder option is marked as deprecated.

Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>

> +    /* Deprecated since Xen 4.10. */
> +    if (!xlu_cfg_get_string(config, "builder", &buf, 0)) {
> +        libxl_domain_type builder_type;
> +
> +        if (c_info->type == LIBXL_DOMAIN_TYPE_INVALID)
> +            fprintf(stderr,
> +"The \"builder\" option is being deprecated, please use \"type\" 
> instead.\n");
> +        if (!strncmp(buf, "hvm", strlen(buf)))
> +            builder_type = LIBXL_DOMAIN_TYPE_HVM;
> +        else if (!strncmp(buf, "generic", strlen(buf)))
> +            builder_type = LIBXL_DOMAIN_TYPE_PV;
> +        else {
> +            fprintf(stderr, "Invalid domain type %s.\n", buf);
> +            exit(1);
> +        }
> +
> +        if (c_info->type != LIBXL_DOMAIN_TYPE_INVALID &&
> +            c_info->type != builder_type)
> +        {
           ^

> +            fprintf(stderr,
> +            "Contradicting \"builder\" and \"type\" options specified.\n");
> +            exit(1);

Much nicer.  Although one nit: the { on the next line after the if.

Thanks,
Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.