Changeset 17316 in vbox for trunk/src/VBox/VMM/PGMInternal.h
- Timestamp:
- Mar 3, 2009 8:04:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r17305 r17316 711 711 */ 712 712 #define PGM_PAGE_SET_HCPHYS(pPage, _HCPhys) \ 713 do { (pPage)->HCPhysX = (((pPage)->HCPhys ) & UINT64_C(0xffff000000000fff)) \713 do { (pPage)->HCPhysX = (((pPage)->HCPhysX) & UINT64_C(0xffff000000000fff)) \ 714 714 | ((_HCPhys) & UINT64_C(0x0000fffffffff000)); } while (0) 715 715 … … 4639 4639 else 4640 4640 pgmPoolTrackPhysExtDerefGCPhys(pPool, pPoolPage, pPhysPage); 4641 Log2(("pgmTrackDerefGCPhys: %x -> %x HCPhys=%RGp\n", uOrg, PGM_PAGE_GET_TRACKING(pPhysPage), PGM_PAGE_GET_HCPHYS(pPhysPage)));4641 Log2(("pgmTrackDerefGCPhys: %x -> %x pPhysPage=%R[pgmpage]\n", uOrg, PGM_PAGE_GET_TRACKING(pPhysPage), pPhysPage )); 4642 4642 } 4643 4643 #endif /* PGMPOOL_WITH_GCPHYS_TRACKING */
Note:
See TracChangeset
for help on using the changeset viewer.