Changeset 58436 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 27, 2015 4:16:02 PM (9 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GIM.cpp
r58393 r58436 116 116 * Validate the GIM settings. 117 117 */ 118 rc = CFGMR3ValidateConfig(pCfgNode, "/GIM/", 119 "Provider" /* pszValidValues */118 rc = CFGMR3ValidateConfig(pCfgNode, "/GIM/", /* pszNode */ 119 "Provider" /* pszValidValues */ 120 120 "|Version", 121 "HyperV" /* pszValidNodes */,122 "GIM" /* pszWho */,123 0 /* uInstance */);121 "HyperV", /* pszValidNodes */ 122 "GIM", /* pszWho */ 123 0); /* uInstance */ 124 124 if (RT_FAILURE(rc)) 125 125 return rc; -
trunk/src/VBox/VMM/VMMR3/GIMHv.cpp
r58390 r58436 279 279 280 280 /* Expose more if we're posing as Microsoft. We can, if needed, force MSR-based Hv 281 debugging by not exposing these bits while exposing the VS interface.*/ 281 debugging by not exposing these bits while exposing the VS interface. The better 282 way is what we do currently, via the GIM_HV_DEBUG_OPTIONS_USE_HYPERCALLS bit. */ 282 283 if (pHv->fIsVendorMsHv) 283 284 {
Note:
See TracChangeset
for help on using the changeset viewer.