Changeset 43195 in vbox
- Timestamp:
- Sep 5, 2012 10:12:34 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80581
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r43163 r43195 3713 3713 3714 3714 /* 3715 * Map the user page. 3715 * Map the user page. Ignore references made by fictitious pages. 3716 3716 */ 3717 3717 PPGMPOOLPAGE pUserPage = &pPool->aPages[pUser->iUser]; 3718 LogFlow(("pgmPoolTrackClearPageUser: clear %x in %s (%RGp) (flushing %s)\n", iUserTable, pgmPoolPoolKindToStr(pUserPage->enmKind), pUserPage->Core.Key, pgmPoolPoolKindToStr(pPage->enmKind))); 3718 3719 union 3719 3720 { … … 3721 3722 uint32_t *pau32; 3722 3723 } u; 3724 if (pUserPage->idx < PGMPOOL_IDX_FIRST) 3725 { 3726 Assert(!pUserPage->pvPageR3); 3727 return; 3728 } 3723 3729 u.pau64 = (uint64_t *)PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pUserPage); 3724 3730 3725 LogFlow(("pgmPoolTrackClearPageUser: clear %x in %s (%RGp) (flushing %s)\n", iUserTable, pgmPoolPoolKindToStr(pUserPage->enmKind), pUserPage->Core.Key, pgmPoolPoolKindToStr(pPage->enmKind)));3726 3731 3727 3732 /* Safety precaution in case we change the paging for other modes too in the future. */
Note:
See TracChangeset
for help on using the changeset viewer.