Changeset 13839 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Nov 5, 2008 3:27:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38831
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r13836 r13839 2154 2154 { 2155 2155 paPages[iPage] = RTR0MemObjGetPagePhysAddr(Mem.MemObj, iPage); 2156 AssertMsg(!(paPages[iPage] & (PAGE_SIZE - 1)), ("iPage=%d Phys=% VHp\n", paPages[iPage]));2156 AssertMsg(!(paPages[iPage] & (PAGE_SIZE - 1)), ("iPage=%d Phys=%RHp\n", paPages[iPage])); 2157 2157 } 2158 2158 *ppvR0 = RTR0MemObjAddress(Mem.MemObj); -
trunk/src/VBox/HostDrivers/Support/testcase/tstPin.cpp
r11822 r13839 96 96 if (aPinnings[i].aPages[j].Phys >= _4G) 97 97 { 98 RTPrintf("%2d: vrt=%p phys=% VHp\n", j, (char *)aPinnings[i].pvAligned + (j << PAGE_SHIFT), aPinnings[i].aPages[j].Phys);98 RTPrintf("%2d: vrt=%p phys=%RHp\n", j, (char *)aPinnings[i].pvAligned + (j << PAGE_SHIFT), aPinnings[i].aPages[j].Phys); 99 99 c4GPluss++; 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.