VirtualBox

Changeset 16890 in vbox


Ignore:
Timestamp:
Feb 18, 2009 10:57:21 AM (16 years ago)
Author:
vboxsync
Message:

Removed obsolete parameter for PGMMapHasConflicts.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/pgm.h

    r16889 r16890  
    331331VMMDECL(int)        PGMMapActivateAll(PVM pVM);
    332332VMMDECL(int)        PGMMapDeactivateAll(PVM pVM);
    333 VMMDECL(bool)       PGMMapHasConflicts(PVM pVM, uint64_t cr3, bool fResolveConflicts);
     333VMMDECL(bool)       PGMMapHasConflicts(PVM pVM, bool fResolveConflicts);
    334334
    335335VMMDECL(int)        PGMShwGetPage(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTHCPHYS pHCPhys);
  • trunk/src/VBox/VMM/EM.cpp

    r16889 r16890  
    26072607                  ("Tried to execute code with IF at EIP=%08x!\n", pCtx->eip));
    26082608        if (    !VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL)
    2609             &&  PGMMapHasConflicts(pVM, pCtx->cr3, false))
     2609            &&  PGMMapHasConflicts(pVM, false))
    26102610        {
    26112611            AssertMsgFailed(("We should not get conflicts any longer!!!\n"));
     
    27202720         */
    27212721        if (    !VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL)
    2722             &&  PGMMapHasConflicts(pVM, pCtx->cr3, false))
     2722            &&  PGMMapHasConflicts(pVM, false))
    27232723        {
    27242724            AssertMsgFailed(("We should not get conflicts any longer!!!\n"));
  • trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp

    r16889 r16890  
    531531 * @returns false if not.
    532532 * @param   pVM                 The virtual machine.
    533  * @param   cr3                 Guest context CR3 register.
    534533 * @param   fResolveConflicts   Whether to resolve found conflicts or not (only valid in ring 3)
    535534 */
    536 VMMDECL(bool) PGMMapHasConflicts(PVM pVM, uint64_t cr3, bool fResolveConflicts)
     535VMMDECL(bool) PGMMapHasConflicts(PVM pVM, bool fResolveConflicts)
    537536{
    538537    /*
     
    555554        PX86PD pPD = pVM->pgm.s.CTX_SUFF(pGst32BitPd);
    556555        Assert(pPD);
    557         Assert(pPD == (PX86PD)PGMPhysGCPhys2R3PtrAssert(pVM, cr3 & X86_CR3_PAGE_MASK, sizeof(*pPD)));
    558556
    559557        for (PPGMMAPPING pCur = pVM->pgm.s.CTX_SUFF(pMappings); pCur; pCur = pCur->CTX_SUFF(pNext))
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