Changeset 13837 in vbox for trunk/src/VBox/Additions/linux/module
- Timestamp:
- Nov 5, 2008 2:54:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/vboxmod.c
r13835 r13837 296 296 rcVBox = vboxadd_cmc_call(vboxDev, VBOXGUEST_IOCTL_HGCM_CONNECT, &info); 297 297 if (RT_FAILURE(rcVBox) || (RT_FAILURE(info.result))) { 298 LogRelFunc(("VBOXGUEST_IOCTL_HGCM_CONNECT: hgcm connection failed. internal ioctl result % Vrc, hgcm result %Vrc\n", rcVBox, info.result));298 LogRelFunc(("VBOXGUEST_IOCTL_HGCM_CONNECT: hgcm connection failed. internal ioctl result %Rrc, hgcm result %Rrc\n", rcVBox, info.result)); 299 299 rc = RT_FAILURE(rcVBox) ? -RTErrConvertToErrno(rcVBox) 300 300 : -RTErrConvertToErrno(info.result); … … 691 691 { 692 692 /* impossible... */ 693 LogRelFunc(("IRQ was not acknowledged! rc = % Vrc, header.rc = %Vrc\n",693 LogRelFunc(("IRQ was not acknowledged! rc = %Rrc, header.rc = %Rrc\n", 694 694 rcVBox, vboxDev->irqAckRequest->header.rc)); 695 695 BUG (); … … 731 731 if (RT_FAILURE(rcVBox)) 732 732 { 733 LogRelFunc(("failed to allocate hypervisor info structure! rc = % Vrc\n", rcVBox));733 LogRelFunc(("failed to allocate hypervisor info structure! rc = %Rrc\n", rcVBox)); 734 734 goto bail_out; 735 735 } … … 763 763 else 764 764 { 765 LogRelFunc(("failed to set hypervisor region! rc = % Vrc, header.rc = %Vrc\n",765 LogRelFunc(("failed to set hypervisor region! rc = %Rrc, header.rc = %Rrc\n", 766 766 rcVBox, req->header.rc)); 767 767 goto bail_out; … … 777 777 else 778 778 { 779 LogRelFunc(("failed to query hypervisor info! rc = % Vrc, header.rc = %Vrc\n",779 LogRelFunc(("failed to query hypervisor info! rc = %Rrc, header.rc = %Rrc\n", 780 780 rcVBox, req->header.rc)); 781 781 goto bail_out; … … 808 808 if (RT_FAILURE(rcVBox)) 809 809 { 810 LogRelFunc(("failed to allocate hypervisor info structure! rc = % Vrc\n", rcVBox));810 LogRelFunc(("failed to allocate hypervisor info structure! rc = %Rrc\n", rcVBox)); 811 811 goto bail_out; 812 812 } … … 823 823 else 824 824 { 825 LogRelFunc(("failed to reset hypervisor info! rc = % Vrc, header.rc = %Vrc\n",825 LogRelFunc(("failed to reset hypervisor info! rc = %Rrc, header.rc = %Rrc\n", 826 826 rcVBox, req->header.rc)); 827 827 goto bail_out; … … 996 996 if (RT_FAILURE(rcVBox)) 997 997 { 998 LogRelFunc(("could not initialize VBGL subsystem! rc = % Vrc\n", rcVBox));998 LogRelFunc(("could not initialize VBGL subsystem! rc = %Rrc\n", rcVBox)); 999 999 err = -ENXIO; 1000 1000 goto fail; … … 1006 1006 if (RT_FAILURE(rcVBox)) 1007 1007 { 1008 LogRelFunc(("could not allocate request structure! rc = % Vrc\n", rcVBox));1008 LogRelFunc(("could not allocate request structure! rc = %Rrc\n", rcVBox)); 1009 1009 err = -ENOMEM; 1010 1010 goto fail; … … 1021 1021 if (RT_FAILURE(rcVBox) || RT_FAILURE(infoReq->header.rc)) 1022 1022 { 1023 LogRelFunc(("error reporting guest info to host! rc = % Vrc, header.rc = %Vrc\n",1023 LogRelFunc(("error reporting guest info to host! rc = %Rrc, header.rc = %Rrc\n", 1024 1024 rcVBox, infoReq->header.rc)); 1025 1025 VbglGRFree(&infoReq->header); … … 1041 1041 if (RT_FAILURE(rcVBox)) 1042 1042 { 1043 LogRelFunc(("could not allocate request structure! rc = % Vrc\n", rcVBox));1043 LogRelFunc(("could not allocate request structure! rc = %Rrc\n", rcVBox)); 1044 1044 err = -ENOMEM; 1045 1045 goto fail; … … 1067 1067 if (RT_FAILURE(rcVBox)) 1068 1068 { 1069 LogRelFunc(("could not allocate request structure! rc = % Vrc\n", rcVBox));1069 LogRelFunc(("could not allocate request structure! rc = %Rrc\n", rcVBox)); 1070 1070 err = -ENOMEM; 1071 1071 goto fail;
Note:
See TracChangeset
for help on using the changeset viewer.