VirtualBox

Changeset 20519 in vbox for trunk/src


Ignore:
Timestamp:
Jun 12, 2009 2:48:22 PM (16 years ago)
Author:
vboxsync
Message:

Disabled bogus assertion in nested paging mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PGMAllBth.h

    r20518 r20519  
    812812                        RTGCPHYS GCPhys;
    813813                        uint64_t fPageGst;
    814                         rc = PGMGstGetPage(pVCpu, pvFault, &fPageGst, &GCPhys);
    815                         AssertMsg(RT_SUCCESS(rc) && (fPageGst & X86_PTE_RW), ("rc=%d fPageGst=%RX64\n"));
    816                         LogFlow(("Obsolete physical monitor page out of sync %RGv - phys %RGp flags=%08llx\n", pvFault, GCPhys, (uint64_t)fPageGst));
    817 
     814                        if (!HWACCMIsNestedPagingActive(pVM))
     815                        {
     816                            rc = PGMGstGetPage(pVCpu, pvFault, &fPageGst, &GCPhys);
     817                            AssertMsg(RT_SUCCESS(rc) && (fPageGst & X86_PTE_RW), ("rc=%d fPageGst=%RX64\n"));
     818                            LogFlow(("Obsolete physical monitor page out of sync %RGv - phys %RGp flags=%08llx\n", pvFault, GCPhys, (uint64_t)fPageGst));
     819                        }
    818820                        uint64_t fPageShw;
    819821                        rc = PGMShwGetPage(pVCpu, pvFault, &fPageShw, NULL);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette