Changeset 25780 in vbox
- Timestamp:
- Jan 12, 2010 5:02:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56538
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r25594 r25780 998 998 999 999 /* Init devices behind the bridge and possibly other bridges as well. */ 1000 for (int i = 0; i <= 255; i++)1001 pci_bios_init_device(pGlobals, uBus + 1, i , cBridgeDepth + 1, paBridgePositions);1000 for (int iDev = 0; iDev <= 255; iDev++) 1001 pci_bios_init_device(pGlobals, uBus + 1, iDev, cBridgeDepth + 1, paBridgePositions); 1002 1002 1003 1003 /* The number of bridges behind the this one is now available. */ -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r25732 r25780 1986 1986 1987 1987 cbBuf = RT_MIN(4096 - (size_t)rmd.rmd1.bcnt, cbToRecv); 1988 RTGCPHYS32 rbadr = PHYSADDR(pThis, rmd.rmd0.rbadr);1988 RTGCPHYS32 rbadr2 = PHYSADDR(pThis, rmd.rmd0.rbadr); 1989 1989 1990 1990 /* We have to leave the critical section here or we risk deadlocking … … 1992 1992 * handler associated with it. See above for additional comments. */ 1993 1993 PDMCritSectLeave(&pThis->CritSect); 1994 PDMDevHlpPhysWrite(pDevIns, rbadr , src, cbBuf);1994 PDMDevHlpPhysWrite(pDevIns, rbadr2, src, cbBuf); 1995 1995 rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY); 1996 1996 AssertReleaseRC(rc); -
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r25219 r25780 525 525 { 526 526 PDMMEDIAGEOMETRY LCHSGeometry; 527 int rc = setLogicalDiskGeometry(pBase, apHDs[i], &LCHSGeometry);528 AssertRC(rc );527 int rc2 = setLogicalDiskGeometry(pBase, apHDs[i], &LCHSGeometry); 528 AssertRC(rc2); 529 529 530 530 if (i < 4) … … 586 586 { 587 587 PDMMEDIAGEOMETRY LCHSGeometry; 588 intrc = setLogicalDiskGeometry(pBase, apHDs[i], &LCHSGeometry);588 rc = setLogicalDiskGeometry(pBase, apHDs[i], &LCHSGeometry); 589 589 AssertRC(rc); 590 590
Note:
See TracChangeset
for help on using the changeset viewer.