Changeset 65314 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 16, 2017 11:00:15 AM (8 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r64855 r65314 1143 1143 * (Main should have taken care of this already) 1144 1144 */ 1145 pVM->hm.s.fHasIoApic = PDMHasIoApic(pVM); 1146 if (!pVM->hm.s.fHasIoApic) 1145 if (!PDMHasIoApic(pVM)) 1147 1146 { 1148 1147 Assert(!pVM->hm.s.fTprPatchingAllowed); /* paranoia */ -
trunk/src/VBox/VMM/include/HMInternal.h
r65241 r65314 398 398 /** Set if we can support 64-bit guests or not. */ 399 399 bool fAllow64BitGuests; 400 /** Set if an IO-APIC is configured for this VM. */401 bool fHasIoApic;402 400 /** Set when TPR patching is allowed. */ 403 401 bool fTprPatchingAllowed; … … 413 411 /** Set if posted interrupt processing is enabled. */ 414 412 bool fPostedIntrs; 413 /** Alignment. */ 414 bool fAlignment0; 415 415 416 416 /** Host kernel flags that HM might need to know (SUPKERNELFEATURES_XXX). */
Note:
See TracChangeset
for help on using the changeset viewer.