Changeset 49770 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Dec 4, 2013 10:51:06 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91083
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r49729 r49770 4676 4676 #ifdef VBOX_HM_WITH_GUEST_PATCHING 4677 4677 /* TPR patching for 32-bit guests, using the reserved bit in the page tables for MMIO regions. */ 4678 if ( pVM->hm.s.fT RPPatchingAllowed4678 if ( pVM->hm.s.fTprPatchingAllowed 4679 4679 && (GCPhysFaultAddr & PAGE_OFFSET_MASK) == 0x80 /* TPR offset. */ 4680 4680 && ( !(u32ErrCode & X86_TRAP_PF_P) /* Not present */ … … 4877 4877 #ifdef VBOX_HM_WITH_GUEST_PATCHING 4878 4878 /* Shortcut for APIC TPR reads and writes; only applicable to 32-bit guests. */ 4879 if ( pVM->hm.s.fT RPPatchingAllowed4879 if ( pVM->hm.s.fTprPatchingAllowed 4880 4880 && (uFaultAddress & 0xfff) == 0x80 /* TPR offset. */ 4881 4881 && !(u32ErrCode & X86_TRAP_PF_P) /* Not present. */
Note:
See TracChangeset
for help on using the changeset viewer.