- Timestamp:
- Mar 1, 2013 10:26:49 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84068
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r44897 r44898 87 87 if (!PCIDevIsBusmaster(pPciDev)) 88 88 { 89 Log(("pdmRCDevHlp_PCIPhysRead: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#z \n",89 Log(("pdmRCDevHlp_PCIPhysRead: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#zx\n", 90 90 pDevIns, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbRead)); 91 91 return VERR_PDM_NOT_PCI_BUS_MASTER; … … 109 109 if (!PCIDevIsBusmaster(pPciDev)) 110 110 { 111 Log(("pdmRCDevHlp_PCIPhysWrite: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#z \n",111 Log(("pdmRCDevHlp_PCIPhysWrite: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#zx\n", 112 112 pDevIns, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbWrite)); 113 113 return VERR_PDM_NOT_PCI_BUS_MASTER; -
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r44897 r44898 1365 1365 if (!PCIDevIsBusmaster(pPciDev)) 1366 1366 { 1367 Log(("pdmR3DevHlp_PCIPhysRead: caller='%s'/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#z \n",1367 Log(("pdmR3DevHlp_PCIPhysRead: caller='%s'/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#zx\n", 1368 1368 pDevIns->pReg->szName, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbRead)); 1369 1369 return VERR_PDM_NOT_PCI_BUS_MASTER; … … 1387 1387 if (!PCIDevIsBusmaster(pPciDev)) 1388 1388 { 1389 Log(("pdmR3DevHlp_PCIPhysWrite: caller='%s'/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#z \n",1389 Log(("pdmR3DevHlp_PCIPhysWrite: caller='%s'/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#zx\n", 1390 1390 pDevIns->pReg->szName, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbWrite)); 1391 1391 return VERR_PDM_NOT_PCI_BUS_MASTER; -
trunk/src/VBox/VMM/VMMRC/PDMRCDevice.cpp
r44897 r44898 84 84 if (!PCIDevIsBusmaster(pPciDev)) 85 85 { 86 Log(("pdmRCDevHlp_PCIPhysRead: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#z \n",86 Log(("pdmRCDevHlp_PCIPhysRead: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbRead=%#zx\n", 87 87 pDevIns, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbRead)); 88 88 return VERR_PDM_NOT_PCI_BUS_MASTER; … … 106 106 if (!PCIDevIsBusmaster(pPciDev)) 107 107 { 108 Log(("pdmRCDevHlp_PCIPhysWrite: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#z \n",108 Log(("pdmRCDevHlp_PCIPhysWrite: caller=%p/%d: returns %Rrc - Not bus master! GCPhys=%RGp cbWrite=%#zx\n", 109 109 pDevIns, pDevIns->iInstance, VERR_PDM_NOT_PCI_BUS_MASTER, GCPhys, cbWrite)); 110 110 return VERR_PDM_NOT_PCI_BUS_MASTER;
Note:
See TracChangeset
for help on using the changeset viewer.