Changeset 80077 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jul 31, 2019 2:30:19 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132517
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp
r78434 r80077 1364 1364 * Whether we need to trap \#UD exceptions in the guest. 1365 1365 * 1366 * We only need to trap \#UD exceptions for raw-mode guests when hypercalls are1367 * enabled. For HM VMs, the hypercall would be handled via the1366 * We only needed to trap \#UD exceptions for the old raw-mode guests when 1367 * hypercalls are enabled. For HM VMs, the hypercall would be handled via the 1368 1368 * VMCALL/VMMCALL VM-exit. 1369 1369 * … … 1372 1372 VMM_INT_DECL(bool) gimHvShouldTrapXcptUD(PVMCPU pVCpu) 1373 1373 { 1374 #ifdef VBOX_WITH_RAW_MODE1375 if ( VM_IS_RAW_MODE_ENABLED(pVCpu->CTX_SUFF(pVM))1376 && gimHvAreHypercallsEnabled(pVCpu))1377 return true;1378 #else1379 1374 RT_NOREF(pVCpu); 1380 #endif1381 1375 return false; 1382 1376 } -
trunk/src/VBox/VMM/VMMAll/GIMAllKvm.cpp
r76553 r80077 239 239 { 240 240 bool fEnable = RT_BOOL(uRawValue & MSR_GIM_KVM_SYSTEM_TIME_ENABLE_BIT); 241 #if def IN_RING0241 #ifndef IN_RING3 242 242 NOREF(fEnable); NOREF(pKvmCpu); 243 243 gimR0KvmUpdateSystemTime(pVM, pVCpu); 244 return VINF_CPUM_R3_MSR_WRITE;245 #elif defined(IN_RC)246 Assert(pVM->cCpus == 1);247 if (fEnable)248 {249 RTCCUINTREG fEFlags = ASMIntDisableFlags();250 pKvmCpu->uTsc = TMCpuTickGetNoCheck(pVCpu) | UINT64_C(1);251 pKvmCpu->uVirtNanoTS = TMVirtualGetNoCheck(pVM) | UINT64_C(1);252 ASMSetFlags(fEFlags);253 }254 244 return VINF_CPUM_R3_MSR_WRITE; 255 245 #else /* IN_RING3 */ … … 288 278 } 289 279 return VINF_SUCCESS; 290 #endif 280 #endif /* IN_RING3 */ 291 281 } 292 282 … … 405 395 PCGIMKVM pKvm = &pVM->gim.s.u.Kvm; 406 396 if ( uDisOpcode != pKvm->uOpcodeNative 407 && !VM_IS_RAW_MODE_ENABLED(pVM)408 397 && cbInstr == sizeof(pKvm->abOpcodeNative) ) 409 398 {
Note:
See TracChangeset
for help on using the changeset viewer.