VirtualBox

Changeset 14082 in vbox


Ignore:
Timestamp:
Nov 11, 2008 10:12:57 AM (16 years ago)
Author:
vboxsync
Message:

Must mask off the reference count from the HC physical address

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/EMAll.cpp

    r13832 r14082  
    26792679        break;
    26802680    }
    2681     Log(("EMInterpretRdmsr %s (%x) -> val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));
     2681    LogFlow(("EMInterpretRdmsr %s (%x) -> val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));
    26822682    if (rc == VINF_SUCCESS)
    26832683    {
     
    27262726
    27272727    val = RT_MAKE_U64(pRegFrame->eax, pRegFrame->edx);
    2728     Log(("EMInterpretWrmsr %s (%x) val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));
     2728    LogFlow(("EMInterpretWrmsr %s (%x) val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));
    27292729    switch (pRegFrame->ecx)
    27302730    {
  • trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp

    r13841 r14082  
    951951
    952952            /* Do the actual remapping here. This page now serves as an alias for the backing memory specified. */
    953             pPage->HCPhys = pPageRemap->HCPhys;
     953            pPage->HCPhys = pPageRemap->HCPhys & MM_RAM_FLAGS_NO_REFS_MASK;
    954954
    955955            LogFlow(("PGMHandlerPhysicalPageAlias %RGp -> %RGp - %RHp\n", GCPhysPage, GCPhysPageRemap, pPageRemap->HCPhys));
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