VirtualBox

Changeset 80077 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Jul 31, 2019 2:30:19 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
132517
Message:

VMM: Kicking out raw-mode - GIM. bugref:9517

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp

    r78434 r80077  
    13641364 * Whether we need to trap \#UD exceptions in the guest.
    13651365 *
    1366  * We only need to trap \#UD exceptions for raw-mode guests when hypercalls are
    1367  * enabled. For HM VMs, the hypercall would be handled via the
     1366 * 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
    13681368 * VMCALL/VMMCALL VM-exit.
    13691369 *
     
    13721372VMM_INT_DECL(bool) gimHvShouldTrapXcptUD(PVMCPU pVCpu)
    13731373{
    1374 #ifdef VBOX_WITH_RAW_MODE
    1375     if (   VM_IS_RAW_MODE_ENABLED(pVCpu->CTX_SUFF(pVM))
    1376         && gimHvAreHypercallsEnabled(pVCpu))
    1377         return true;
    1378 #else
    13791374    RT_NOREF(pVCpu);
    1380 #endif
    13811375    return false;
    13821376}
  • trunk/src/VBox/VMM/VMMAll/GIMAllKvm.cpp

    r76553 r80077  
    239239        {
    240240            bool fEnable = RT_BOOL(uRawValue & MSR_GIM_KVM_SYSTEM_TIME_ENABLE_BIT);
    241 #ifdef IN_RING0
     241#ifndef IN_RING3
    242242            NOREF(fEnable); NOREF(pKvmCpu);
    243243            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             }
    254244            return VINF_CPUM_R3_MSR_WRITE;
    255245#else /* IN_RING3 */
     
    288278            }
    289279            return VINF_SUCCESS;
    290 #endif
     280#endif /* IN_RING3 */
    291281        }
    292282
     
    405395            PCGIMKVM pKvm = &pVM->gim.s.u.Kvm;
    406396            if (   uDisOpcode != pKvm->uOpcodeNative
    407                 && !VM_IS_RAW_MODE_ENABLED(pVM)
    408397                && cbInstr == sizeof(pKvm->abOpcodeNative) )
    409398            {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette