From: Ian Jackson Date: Thu, 25 Jun 2015 15:34:10 +0000 (+0100) Subject: libxl: Change some log messages to say `abandoning' rather than `aborting' X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3010 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=34d3900cfde24d6c6830ab35bcc8851173da2556;p=xen.git libxl: Change some log messages to say `abandoning' rather than `aborting' We are going to introduce application-requested aborts of (ao) operations, but these suspend failures are something different. Reword to avoid confusion. Signed-off-by: Ian Jackson Acked-by: Wei Liu --- diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c index 54908fb49b..ccbcb6e3fb 100644 --- a/tools/libxl/libxl_dom.c +++ b/tools/libxl/libxl_dom.c @@ -1242,7 +1242,7 @@ static void domain_suspend_switch_qemu_xen_traditional_logdirty return; out: - LOG(ERROR,"logdirty switch failed (rc=%d), aborting suspend",rc); + LOG(ERROR,"logdirty switch failed (rc=%d), abandoning suspend",rc); libxl__xs_transaction_abort(gc, &t); switch_logdirty_done(egc,dss,rc); } @@ -1260,7 +1260,7 @@ static void domain_suspend_switch_qemu_xen_logdirty if (!rc) { libxl__xc_domain_saverestore_async_callback_done(egc, shs, 0); } else { - LOG(ERROR,"logdirty switch failed (rc=%d), aborting suspend",rc); + LOG(ERROR,"logdirty switch failed (rc=%d), abandoning suspend",rc); dss->rc = rc; libxl__xc_domain_saverestore_async_callback_done(egc, shs, -1); } @@ -1283,7 +1283,7 @@ void libxl__domain_suspend_common_switch_qemu_logdirty break; default: LOG(ERROR,"logdirty switch failed" - ", no valid device model version found, aborting suspend"); + ", no valid device model version found, abandoning suspend"); dss->rc = ERROR_FAIL; libxl__xc_domain_saverestore_async_callback_done(egc, shs, -1); }