Changeset 83030 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 10, 2020 9:33:49 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136051
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r83025 r83030 4856 4856 /* 4857 4857 * VMRUN function. 4858 * If the guest is in long mode, use the 64-bit guest handler, else the 32-bit guest handler.4858 * If the guest supports long mode, always use the 64-bit guest handler, see @bugref{6208#c73}. 4859 4859 * The host is always 64-bit since we no longer support 32-bit hosts. 4860 4860 */ 4861 if (fGstInLongMode) 4862 { 4863 #ifndef VBOX_WITH_64_BITS_GUESTS 4864 return VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE; 4865 #else 4866 Assert(pVM->hm.s.fAllow64BitGuests); /* Guaranteed by hmR3InitFinalizeR0(). */ 4861 if (pVM->hm.s.fAllow64BitGuests) 4867 4862 pVmcsInfo->pfnStartVM = VMXR0StartVM64; 4868 #endif4869 }4870 4863 else 4871 4864 pVmcsInfo->pfnStartVM = VMXR0StartVM32;
Note:
See TracChangeset
for help on using the changeset viewer.