- Timestamp:
- Nov 9, 2009 4:41:30 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54618
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMSavedState.cpp
r24481 r24520 2772 2772 PPGMMAPPING pMapping; 2773 2773 for (pMapping = pPGM->pMappingsR3; pMapping; pMapping = pMapping->pNextR3) 2774 { 2774 2775 if ( pMapping->cPTs == cPTs 2775 2776 && !strcmp(pMapping->pszDesc, szDesc)) 2776 2777 break; 2778 #ifdef DEBUG_sandervl 2779 if ( !strcmp(szDesc, "Hypervisor Memory Area") 2780 && HWACCMIsEnabled(pVM)) 2781 break; 2782 #endif 2783 } 2777 2784 if (!pMapping) 2778 2785 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Couldn't find mapping: cPTs=%#x szDesc=%s (GCPtr=%RGv)"), … … 2780 2787 2781 2788 /* relocate it. */ 2782 if (pMapping->GCPtr != GCPtr) 2789 if ( pMapping->GCPtr != GCPtr 2790 #ifdef DEBUG_sandervl 2791 && !(!strcmp(szDesc, "Hypervisor Memory Area") && HWACCMIsEnabled(pVM)) 2792 #endif 2793 ) 2783 2794 { 2784 2795 AssertMsg((GCPtr >> X86_PD_SHIFT << X86_PD_SHIFT) == GCPtr, ("GCPtr=%RGv\n", GCPtr));
Note:
See TracChangeset
for help on using the changeset viewer.