Displaying 3 results from an estimated 3 matches for "xs_resume_domain".
2012 Aug 15
2
[PATCH] libxl: make domain resume API asynchronous
...L__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&quo...
2024 Feb 05
7
Bug#1063270: xen: NMU diff for 64-bit time_t transition
...t VERS_4.0 4.16.0
- xs_is_domain_introduced at VERS_4.0 4.16.0
- xs_mkdir at VERS_4.0 4.16.0
- xs_open at VERS_4.0 4.16.0
- xs_path_is_subpath at VERS_4.0 4.16.0
- xs_read at VERS_4.0 4.16.0
- xs_read_watch at VERS_4.0 4.16.0
- xs_release_domain at VERS_4.0 4.16.0
- xs_restrict at VERS_4.0 4.16.0
- xs_resume_domain at VERS_4.0 4.16.0
- xs_rm at VERS_4.0 4.16.0
- xs_set_permissions at VERS_4.0 4.16.0
- xs_set_target at VERS_4.0 4.16.0
- xs_strings_to_perms at VERS_4.0 4.16.0
- xs_suspend_evtchn_port at VERS_4.0 4.16.0
- xs_transaction_end at VERS_4.0 4.16.0
- xs_transaction_start at VERS_4.0 4.16.0
- xs_unwatc...
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...}
if (xc_domain_resume(ctx->xch, domid, 1)) {
XL_LOG_ERRNO(ctx, XL_LOG_ERROR,
"xc_domain_resume failed for domain %u",
domid);
- return ERROR_FAIL;
+ rc = ERROR_FAIL;
+ goto out;
}
if (!xs_resume_domain(ctx->xsh, domid)) {
XL_LOG_ERRNO(ctx, XL_LOG_ERROR,
"xs_resume_domain failed for domain %u",
domid);
- return ERROR_FAIL;
+ rc = ERROR_FAIL;
}
+out:
+ libxl_free_all(&gc);
return 0;
}
@@ -414...