Changeset 93931 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 24, 2022 4:02:00 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150159
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r93574 r93931 7926 7926 { 7927 7927 RTGCPHYS GCPhysApicBase = APICGetBaseMsrNoCheck(pVCpu); 7928 GCPhysApicBase &= PAGE_BASE_GC_MASK;7928 GCPhysApicBase &= ~(RTGCPHYS)GUEST_PAGE_OFFSET_MASK; 7929 7929 7930 7930 if (GCPhysFaultAddr == GCPhysApicBase + XAPIC_OFF_TPR) … … 8281 8281 RTGCPHYS GCPhysApicBase; 8282 8282 GCPhysApicBase = APICGetBaseMsrNoCheck(pVCpu); 8283 GCPhysApicBase &= PAGE_BASE_GC_MASK;8283 GCPhysApicBase &= ~(RTGCPHYS)GUEST_PAGE_OFFSET_MASK; 8284 8284 8285 8285 /* Check if the page at the fault-address is the APIC base. */
Note:
See TracChangeset
for help on using the changeset viewer.