Changeset 87547 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 2, 2021 5:33:49 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142573
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HMInternal.h
r87546 r87547 487 487 struct 488 488 { 489 /** Set by the ring-0 side of HM to indicate VMX is supported by the 490 * CPU. */ 489 /** Set by the ring-0 side of HM to indicate VMX is supported by the CPU. */ 491 490 bool fSupported; 492 491 /** Set when we've enabled VMX. */ … … 498 497 /** Set if unrestricted guest execution is in use (real and protected mode 499 498 * without paging). */ 500 bool fUnrestrictedGuest ;499 bool fUnrestrictedGuestCfg; 501 500 /** Set if the preemption timer is in use or not. */ 502 501 bool fUsePreemptTimer; … … 644 643 struct HMR0VMXVM 645 644 { 645 /** Set if unrestricted guest execution is in use (real and protected mode 646 * without paging). */ 647 bool fUnrestrictedGuest; 648 bool afAlignment1[2]; 646 649 /** Set if VPID is supported (copy in HM::vmx::fVpidForRing3). */ 647 650 bool fVpid; 648 bool afAlignment1[3];649 650 651 /** Tagged-TLB flush type. */ 651 652 VMXTLBFLUSHTYPE enmTlbFlushType;
Note:
See TracChangeset
for help on using the changeset viewer.