Changeset 84354 in vbox for trunk/src/VBox/Devices
- Timestamp:
- May 19, 2020 6:16:04 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138043
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r84351 r84354 1622 1622 *********************************************************************************************************************************/ 1623 1623 1624 /* @todo Figure out how to implement this with R0 changes. Not used by current linux driver */ 1625 #if 0 1624 1626 DECLINLINE(void) virtioScsiR3ReportEventsMissed(PPDMDEVINS pDevIns, PVIRTIOSCSI pThis, uint16_t uTarget) 1625 1627 { 1626 1628 virtioScsiR3SendEvent(pDevIns, pThis, uTarget, VIRTIOSCSI_T_NO_EVENT | VIRTIOSCSI_T_EVENTS_MISSED, 0); 1627 1629 } 1628 1630 #endif 1629 1631 1630 1632 #if 0 -
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.cpp
r84353 r84354 2144 2144 * out size, so pad with an extra page 2145 2145 */ 2146 int cbSize = RTStrPrintf(pVirtioCC->pcszMmioName, sizeof(pVirtioCC->pcszMmioName), "%s MMIO", pcszInstance);2146 size_t cbSize = RTStrPrintf(pVirtioCC->pcszMmioName, sizeof(pVirtioCC->pcszMmioName), "%s MMIO", pcszInstance); 2147 2147 if (cbSize <= 0) 2148 2148 return PDMDEV_SET_ERROR(pDevIns, rc, N_("virtio: out of memory allocating string")); /* can we put params in this error? */
Note:
See TracChangeset
for help on using the changeset viewer.