Changeset 42044 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jul 9, 2012 6:04:54 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HWACCMInternal.h
r42025 r42044 149 149 /** TLB flush count. */ 150 150 uint32_t cTLBFlushes; 151 152 151 /** Whether to flush each new ASID/VPID before use. */ 153 152 bool fFlushASIDBeforeUse; 154 155 153 /** Configured for VT-x or AMD-V. */ 156 154 bool fConfigured; 157 158 155 /** Set if the VBOX_HWVIRTEX_IGNORE_SVM_IN_USE hack is active. */ 159 156 bool fIgnoreAMDVInUseError; 160 161 157 /** In use by our code. (for power suspend) */ 162 158 volatile bool fInUse; 159 /** Toggle bit for signaling new ASIDs (during suspend/resume) */ 160 bool fASIDState; 163 161 } HMGLOBLCPUINFO; 164 162 /** Pointer to the per-cpu global information. */ … … 548 546 bool fForceTLBFlush; 549 547 548 /** Toggle bit for acquiring a new ASID (during host CPU suspend/resume) */ 549 bool fASIDState; 550 550 551 /** Set when we're using VT-x or AMD-V at that moment. */ 551 552 bool fActive; … … 553 554 /** Set when the TLB has been checked until we return from the world switch. */ 554 555 volatile bool fCheckedTLBFlush; 555 uint8_t bAlignment[ 3];556 uint8_t bAlignment[2]; 556 557 557 558 /** World switch exit counter. */
Note:
See TracChangeset
for help on using the changeset viewer.