Changeset 98644 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 20, 2023 12:05:56 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155944
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CFGM.cpp
r98103 r98644 1085 1085 rc = CFGMR3InsertInteger(pRoot, "TimerMillies", 10); 1086 1086 UPDATERC(); 1087 1088 /* 1089 * HM. 1090 */ 1091 PCFGMNODE pHm; 1092 rc = CFGMR3InsertNode(pRoot, "HM", &pHm); 1093 UPDATERC(); 1094 rc = CFGMR3InsertInteger(pHm, "FallbackToIEM", 1); /* boolean */ 1095 UPDATERC(); 1096 1087 1097 1088 1098 /* … … 3293 3303 LogRel(("************************* CFGM dump *************************\n")); 3294 3304 cfgmR3Dump(pRoot, 0, DBGFR3InfoLogRelHlp()); 3305 #ifdef LOG_ENABLED 3306 if (LogIsEnabled()) 3307 cfgmR3Dump(pRoot, 0, DBGFR3InfoLogHlp()); 3308 #endif 3295 3309 LogRel(("********************* End of CFGM dump **********************\n")); 3296 3310 RTLogRelSetBuffering(fOldBuffered); -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r98103 r98644 133 133 * to make the user perform various action, like 134 134 * for instance state saving. 135 * @param fFlags VMCREATE_F_XXX 135 136 * @param pfnVMAtError Pointer to callback function for setting VM 136 137 * errors. This was added as an implicit call to … … 151 152 * VMR3ReleaseUVM() once done with the handle. 152 153 */ 153 VMMR3DECL(int) VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods, 154 VMMR3DECL(int) VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods, uint64_t fFlags, 154 155 PFNVMATERROR pfnVMAtError, void *pvUserVM, 155 156 PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, 156 157 PVM *ppVM, PUVM *ppUVM) 157 158 { 158 LogFlow(("VMR3Create: cCpus=%RU32 pVmm2UserMethods=%p pfnVMAtError=%p pvUserVM=%p pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p ppUVM=%p\n",159 cCpus, pVmm2UserMethods, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM, ppUVM));159 LogFlow(("VMR3Create: cCpus=%RU32 pVmm2UserMethods=%p fFlags=%#RX64 pfnVMAtError=%p pvUserVM=%p pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p ppUVM=%p\n", 160 cCpus, pVmm2UserMethods, fFlags, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM, ppUVM)); 160 161 161 162 if (pVmm2UserMethods) … … 177 178 AssertPtrNullReturn(ppUVM, VERR_INVALID_POINTER); 178 179 AssertReturn(ppVM || ppUVM, VERR_INVALID_PARAMETER); 180 AssertMsgReturn(!(fFlags & ~VMCREATE_F_DRIVERLESS), ("%#RX64\n", fFlags), VERR_INVALID_FLAGS); 179 181 180 182 /* … … 198 200 * Initialize the support library creating the session for this VM. 199 201 */ 200 rc = SUPR3Init(&pUVM->vm.s.pSession); 202 if (fFlags & VMCREATE_F_DRIVERLESS) 203 rc = SUPR3InitEx(SUPR3INIT_F_DRIVERLESS | SUPR3INIT_F_DRIVERLESS_IEM_ALLOWED, &pUVM->vm.s.pSession); 204 else 205 rc = SUPR3Init(&pUVM->vm.s.pSession); 201 206 if (RT_SUCCESS(rc)) 202 207 {
Note:
See TracChangeset
for help on using the changeset viewer.