Changeset 81019 in vbox
- Timestamp:
- Sep 26, 2019 12:46:26 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133621
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r81018 r81019 920 920 } 921 921 922 const char *getReqRespText = virtioGetReqRespText(respHdr.uResponse); 922 923 Log2Func(("status: (%d) %s, response: (%d) %s\n", 923 924 pReq->uStatus, SCSIStatusText(pReq->uStatus), 924 respHdr.uResponse, virtioGetReqRespText(respHdr.uResponse))); 925 respHdr.uResponse, getReqRespText)); 926 RT_NOREF(getReqRespText); 925 927 926 928 if (RT_FAILURE(rcReq)) … … 1489 1491 VIRTIOSCSI_EVT_ASYNC_DEVICE_BUSY); 1490 1492 } 1491 #endif1492 1493 1493 1494 DECLINLINE(void) virtioScsiReportParamChange(PVIRTIOSCSI pThis, uint16_t uTarget, uint32_t uSenseCode, uint32_t uSenseQualifier) … … 1497 1498 1498 1499 } 1500 1501 #endif 1499 1502 1500 1503 static DECLCALLBACK(void) virtioScsiNotified(VIRTIOHANDLE hVirtio, void *pClient, uint16_t qIdx) -
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.cpp
r81015 r81019 779 779 LogFunc(("Bad read access to mapped capabilities region:\n" 780 780 " pVirtio=%#p GCPhysAddr=%RGp cb=%u\n", 781 pVirtio, GCPhysAddr, pv, cb, pv,cb));781 pVirtio, GCPhysAddr, cb)); 782 782 } 783 783 return rc; -
trunk/src/VBox/Devices/VirtIO/Virtio_1_0_impl.h
r80943 r81019 503 503 int primed = 0; 504 504 if (status & VIRTIO_STATUS_ACKNOWLEDGE) 505 Log6((" ACKNOWLEDGE", primed++));505 Log6(("%sACKNOWLEDGE", primed++ ? "" : "")); 506 506 if (status & VIRTIO_STATUS_DRIVER) 507 507 Log6(("%sDRIVER", primed++ ? " | " : ""));
Note:
See TracChangeset
for help on using the changeset viewer.