[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] libxl: device_backend_callback() print rc on error
commit ed7071423635ffcc02c00fc5fb3c5cce9fbb577b Author: Jason Andryuk <jandryuk@xxxxxxxxx> AuthorDate: Tue Apr 25 15:46:21 2023 -0400 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Wed Apr 26 15:15:30 2023 +0100 libxl: device_backend_callback() print rc on error Print the rc when an error is found in device_backend_callback() so the user can have some idea of why things went wrong. Signed-off-by: Jason Andryuk <jandryuk@xxxxxxxxx> Reviewed-by: Juergen Gross <jgross@xxxxxxxx> --- tools/libs/light/libxl_device.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/libs/light/libxl_device.c b/tools/libs/light/libxl_device.c index a75c21d433..13da6e0573 100644 --- a/tools/libs/light/libxl_device.c +++ b/tools/libs/light/libxl_device.c @@ -1160,9 +1160,10 @@ static void device_backend_callback(libxl__egc *egc, libxl__ev_devstate *ds, } if (rc) { - LOGD(ERROR, aodev->dev->domid, "unable to %s device with path %s", + LOGD(ERROR, aodev->dev->domid, + "unable to %s device with path %s - rc %d", libxl__device_action_to_string(aodev->action), - libxl__device_backend_path(gc, aodev->dev)); + libxl__device_backend_path(gc, aodev->dev), rc); goto out; } -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |