VirtualBox

Changeset 29411 in vbox


Ignore:
Timestamp:
May 12, 2010 12:18:51 PM (15 years ago)
Author:
vboxsync
Message:

Reversed parameters

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PGMSharedPage.cpp

    r29401 r29411  
    8585                uint64_t fFlags;
    8686
    87                 rc = PGMGstGetPage(pVCpu, GCRegion, &GCPhys, &fFlags);
     87                rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys);
    8888                if (    rc == VINF_SUCCESS
    8989                    &&  !(fFlags & X86_PTE_RW))
  • trunk/src/VBox/VMM/VMMR0/PGMR0.cpp

    r29408 r29411  
    359359            uint64_t fFlags;
    360360
    361             rc = PGMGstGetPage(pVCpu, GCRegion, &GCPhys, &fFlags);
     361            rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys);
    362362            if (    rc == VINF_SUCCESS
    363363                &&  !(fFlags & X86_PTE_RW)) /* important as we make assumptions about this below! */
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