- Timestamp:
- Sep 2, 2008 8:43:25 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMMap.cpp
r11711 r11964 304 304 Log(("PGMR3MappingsFix: GCPtrBase=%#x cb=%#x\n", GCPtrBase, cb)); 305 305 306 /* Ignore the additions mapping fix call in VT-x/AMD-V. */ 307 if ( pVM->pgm.s.fMappingsFixed 308 && HWACCMR3IsActive(pVM)) 309 return VINF_SUCCESS; 310 306 311 /* 307 312 * This is all or nothing at all. So, a tiny bit of paranoia first. … … 435 440 { 436 441 Log(("PGMR3MappingsUnfix: fMappingsFixed=%d\n", pVM->pgm.s.fMappingsFixed)); 442 443 /* Refuse in VT-x/AMD-V mode. */ 444 if (HWACCMR3IsActive(pVM)) 445 return VINF_SUCCESS; 446 437 447 pVM->pgm.s.fMappingsFixed = false; 438 448 pVM->pgm.s.GCPtrMappingFixed = 0;
Note:
See TracChangeset
for help on using the changeset viewer.