return rc;
}
-int libxl_domain_resume(libxl_ctx *ctx, uint32_t domid, int suspend_cancel)
+int libxl__domain_resume(libxl__gc *gc, uint32_t domid, int suspend_cancel)
{
- GC_INIT(ctx);
int rc = 0;
- if (xc_domain_resume(ctx->xch, domid, suspend_cancel)) {
- LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR,
- "xc_domain_resume failed for domain %u",
- domid);
+ if (xc_domain_resume(CTX->xch, domid, suspend_cancel)) {
+ LOGE(ERROR, "xc_domain_resume failed for domain %u", domid);
rc = ERROR_FAIL;
goto out;
}
if (type == LIBXL_DOMAIN_TYPE_HVM) {
rc = libxl__domain_resume_device_model(gc, domid);
if (rc) {
- LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
- "failed to resume device model for domain %u:%d",
- domid, rc);
+ LOG(ERROR, "failed to resume device model for domain %u:%d",
+ domid, rc);
goto out;
}
}
- if (!xs_resume_domain(ctx->xsh, domid)) {
- LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR,
- "xs_resume_domain failed for domain %u",
- domid);
+ if (!xs_resume_domain(CTX->xsh, domid)) {
+ LOGE(ERROR, "xs_resume_domain failed for domain %u", domid);
rc = ERROR_FAIL;
}
out:
- GC_FREE;
return rc;
}
+int libxl_domain_resume(libxl_ctx *ctx, uint32_t domid, int suspend_cancel,
+ const libxl_asyncop_how *ao_how)
+{
+ AO_CREATE(ctx, domid, ao_how);
+ int rc = libxl__domain_resume(gc, domid, suspend_cancel);
+ libxl__ao_complete(egc, ao, rc);
+ return AO_INPROGRESS;
+}
+
/*
* Preserves a domain but rewrites xenstore etc to make it unique so
* that the domain can be restarted.
* If this parameter is true, use co-operative resume. The guest
* must support this.
*/
-int libxl_domain_resume(libxl_ctx *ctx, uint32_t domid, int suspend_cancel);
+int libxl_domain_resume(libxl_ctx *ctx, uint32_t domid, int suspend_cancel,
+ const libxl_asyncop_how *ao_how)
+ LIBXL_EXTERNAL_CALLERS_ONLY;
int libxl_domain_remus_start(libxl_ctx *ctx, libxl_domain_remus_info *info,
uint32_t domid, int send_fd, int recv_fd,
STATE_AO_GC(dss->ao);
/* Resumes the domain and the device model */
- if (libxl_domain_resume(CTX, dss->domid, /* Fast Suspend */1))
+ if (libxl__domain_resume(gc, dss->domid, /* Fast Suspend */1))
return 0;
/* REMUS TODO: Deal with disk. Start a new network output buffer */
_hidden void libxl__userdata_destroyall(libxl__gc *gc, uint32_t domid);
+_hidden int libxl__domain_resume(libxl__gc *gc, uint32_t domid,
+ int suspend_cancel);
+
/* returns 0 or 1, or a libxl error code */
_hidden int libxl__domain_pvcontrol_available(libxl__gc *gc, uint32_t domid);
close(fd);
if (checkpoint)
- libxl_domain_resume(ctx, domid, 1);
+ libxl_domain_resume(ctx, domid, 1, 0);
else
libxl_domain_destroy(ctx, domid, 0);
if (common_domname) {
libxl_domain_rename(ctx, domid, away_domname, common_domname);
}
- rc = libxl_domain_resume(ctx, domid, 0);
+ rc = libxl_domain_resume(ctx, domid, 0, 0);
if (!rc) fprintf(stderr, "migration sender: Resumed OK.\n");
fprintf(stderr, "Migration failed due to problems at target.\n");
close(send_fd);
migration_child_report(recv_fd);
fprintf(stderr, "Migration failed, resuming at sender.\n");
- libxl_domain_resume(ctx, domid, 0);
+ libxl_domain_resume(ctx, domid, 0, 0);
exit(-ERROR_FAIL);
failed_badly:
fprintf(stderr, "Failed to suspend domain at primary.\n");
else {
fprintf(stderr, "Remus: Backup failed? resuming domain at primary.\n");
- libxl_domain_resume(ctx, domid, 1);
+ libxl_domain_resume(ctx, domid, 1, 0);
}
close(send_fd);