search for: xc_domain_subscribe_for_suspend

Displaying 1 result from an estimated 1 matches for "xc_domain_subscribe_for_suspend".

2008 Sep 05
0
[PATCH] Janitorial work on xc_save.c
...chn = xc_evtchn_bind_interdomain(si.xce, domid, port); if (si.suspend_evtchn < 0) { - errx(1, "failed to bind suspend event channel: %d", - si.suspend_evtchn); + warnx("failed to bind suspend event channel: %d", si.suspend_evtchn); goto cleanup; } rc = xc_domain_subscribe_for_suspend(xc, domid, port); if (rc < 0) { - errx(1, "failed to subscribe to domain: %d", rc); + warnx("failed to subscribe to domain: %d", rc); goto cleanup; } @@ -118,27 +117,25 @@ * receive the acknowledgement from the subscribe event channel. */ static int evtchn_su...