[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v5 19/21] libxl: Initialize domain build info before calling libxl__domain_make
libxl__domain_make() may want to use b_info so we should set defaults a little earlier. Signed-off-by: Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxl/libxl_create.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c index 04f8ae9..07b2b4b 100644 --- a/tools/libxl/libxl_create.c +++ b/tools/libxl/libxl_create.c @@ -899,17 +899,6 @@ static void initiate_domain_create(libxl__egc *egc, goto error_out; } - ret = libxl__domain_make(gc, d_config, &domid, &state->config); - if (ret) { - LOG(ERROR, "cannot make domain: %d", ret); - dcs->guest_domid = domid; - ret = ERROR_FAIL; - goto error_out; - } - - dcs->guest_domid = domid; - dcs->sdss.dm.guest_domid = 0; /* means we haven't spawned */ - ret = libxl__domain_build_info_setdefault(gc, &d_config->b_info); if (ret) { LOG(ERROR, "Unable to set domain build info defaults"); @@ -923,6 +912,17 @@ static void initiate_domain_create(libxl__egc *egc, goto error_out; } + ret = libxl__domain_make(gc, d_config, &domid, &state->config); + if (ret) { + LOG(ERROR, "cannot make domain: %d", ret); + dcs->guest_domid = domid; + ret = ERROR_FAIL; + goto error_out; + } + + dcs->guest_domid = domid; + dcs->sdss.dm.guest_domid = 0; /* means we haven't spawned */ + /* * Set the dm version quite early so that libxl doesn't have to pass the * build info around just to know if the domain has a device model or not. -- 1.8.3.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |