[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: don't print out function name in log twice
commit cad883eff9247944f3bcc339aaba6ec8a2180329 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Aug 1 12:36:41 2014 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Thu Aug 21 23:23:29 2014 +0100 libxl: don't print out function name in log twice The LOG macro already prints out function names. No need to explictly use "__func__" in log message. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Reviewed-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/libxl/libxl_dm.c | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index addacdb..69e4d00 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -230,8 +230,7 @@ static char ** libxl__build_device_model_args_old(libxl__gc *gc, || b_info->u.hvm.usbdevice_list) { if ( b_info->u.hvm.usbdevice && b_info->u.hvm.usbdevice_list ) { - LOG(ERROR, "%s: Both usbdevice and usbdevice_list set", - __func__); + LOG(ERROR, "Both usbdevice and usbdevice_list set"); return NULL; } flexarray_append(dm_args, "-usb"); @@ -527,8 +526,7 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, || b_info->u.hvm.usbdevice_list) { if ( b_info->u.hvm.usbdevice && b_info->u.hvm.usbdevice_list ) { - LOG(ERROR, "%s: Both usbdevice and usbdevice_list set", - __func__); + LOG(ERROR, "Both usbdevice and usbdevice_list set"); return NULL; } flexarray_append(dm_args, "-usb"); @@ -565,8 +563,8 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, "-device", "nec-usb-xhci,id=usb", NULL); break; default: - LOG(ERROR, "%s: usbversion parameter is invalid, " - "must be between 1 and 3", __func__); + LOG(ERROR, "usbversion parameter is invalid, " + "must be between 1 and 3"); return NULL; } if (b_info->u.hvm.spice.usbredirection >= 0 && @@ -577,8 +575,8 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, libxl__sprintf(gc, "usb-redir,chardev=usbrc%d," "id=usbrc%d", i, i), NULL); } else { - LOG(ERROR, "%s: usbredirection parameter is invalid, " - "it must be between 1 and 4", __func__); + LOG(ERROR, "usbredirection parameter is invalid, " + "it must be between 1 and 4"); return NULL; } } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |