VirtualBox

Changeset 92491 in vbox


Ignore:
Timestamp:
Nov 18, 2021 10:21:34 AM (3 years ago)
Author:
vboxsync
Message:

VMM: Nested VMX: bugref:10092 Todo for converting CR3 from nested-guest physical to guest-physical address.

File:
1 edited

Legend:

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

    r92458 r92491  
    20972097    RTGCPHYS    GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_PAGE_MASK;
    20982098    PPGMPAGE    pPage;
     2099    /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to
     2100     *        guest-physical address here. */
    20992101    int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage);
    21002102    if (RT_SUCCESS(rc))
     
    21382140    RTGCPHYS    GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_PAE_PAGE_MASK;
    21392141    PPGMPAGE    pPage;
     2142    /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to
     2143     *        guest-physical address here. */
    21402144    int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage);
    21412145    if (RT_SUCCESS(rc))
     
    22322236    RTGCPHYS    GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_AMD64_PAGE_MASK;
    22332237    PPGMPAGE    pPage;
     2238    /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to
     2239     *        guest-physical address here. */
    22342240    int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage);
    22352241    if (RT_SUCCESS(rc))
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