Changeset 73322 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 23, 2018 2:04:59 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/SELM.cpp
r73097 r73322 148 148 pVM->selm.s.aHyperSel[SELM_HYPER_SEL_TSS_TRAP08] = (SELM_GDT_ELEMENTS - 0x5) << 3; 149 149 150 if ( HMIsRawModeCtxNeeded(pVM))150 if (VM_IS_RAW_MODE_ENABLED(pVM) || HMIsRawModeCtxNeeded(pVM)) 151 151 { 152 152 /* … … 310 310 * Register info handlers. 311 311 */ 312 if ( HMIsRawModeCtxNeeded(pVM))312 if (VM_IS_RAW_MODE_ENABLED(pVM) || HMIsRawModeCtxNeeded(pVM)) 313 313 { 314 314 DBGFR3InfoRegisterInternal(pVM, "gdt", "Displays the shadow GDT. No arguments.", &selmR3InfoGdt); … … 349 349 # endif 350 350 AssertLogRelRCReturn(rc, rc); 351 if (f && HMIsRawModeCtxNeeded(pVM))351 if (f && (VM_IS_RAW_MODE_ENABLED(pVM) || HMIsRawModeCtxNeeded(pVM))) 352 352 { 353 353 PX86DESC paGdt = pVM->selm.s.paGdtR3; … … 483 483 LogFlow(("SELMR3Relocate\n")); 484 484 485 if ( HMIsRawModeCtxNeeded(pVM))485 if (VM_IS_RAW_MODE_ENABLED(pVM) || HMIsRawModeCtxNeeded(pVM)) 486 486 { 487 487 for (VMCPUID i = 0; i < pVM->cCpus; i++)
Note:
See TracChangeset
for help on using the changeset viewer.