Changeset 57006 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 19, 2015 1:36:21 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101721
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r56985 r57006 1460 1460 { 1461 1461 SUPR0Printf("gmmR0CleanupVMScanChunk: Chunk %p/%#x has bogus stats - free=%d/%d private=%d/%d shared=%d/%d\n", 1462 pChunk ->cFree, cFree, pChunk->cPrivate, cPrivate, pChunk->cShared, cShared);1462 pChunk, pChunk->Core.Key, pChunk->cFree, cFree, pChunk->cPrivate, cPrivate, pChunk->cShared, cShared); 1463 1463 pChunk->cFree = cFree; 1464 1464 pChunk->cPrivate = cPrivate; -
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r56877 r57006 1895 1895 for (unsigned i = 0; i < RT_ELEMENTS(pFpuCtx->au32RsrvdRest); i++) 1896 1896 if (pFpuCtx->au32RsrvdRest[i]) 1897 pHlp->pfnPrintf(pHlp, "%sRsrvdRest[ i]=%RX32 (offset=%#x)\n",1897 pHlp->pfnPrintf(pHlp, "%sRsrvdRest[%u]=%RX32 (offset=%#x)\n", 1898 1898 pszPrefix, i, pFpuCtx->au32RsrvdRest[i], RT_OFFSETOF(X86FXSTATE, au32RsrvdRest[i]) ); 1899 1899 } -
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r56287 r57006 1043 1043 { 1044 1044 pState->pHlp->pfnPrintf(pState->pHlp, "%0*llx error! PT mapping %s at HCPhys=%RHp was not found in the page pool!\n", 1045 pState->cchAddress, pState->u64Address, HCPhys);1045 pState->cchAddress, pState->u64Address, pszDesc, HCPhys); 1046 1046 return VERR_INVALID_PARAMETER; 1047 1047 } … … 2354 2354 , 2355 2355 cch, "", cch, "", cch, "", cch, "", cch, "", cch, "", cch, "", 2356 cch, "", cch, "", cch, "", cch, "", cch, "", cch, " ", cch, "Address");2356 cch, "", cch, "", cch, "", cch, "", cch, "", cch, "Address"); 2357 2357 if (pState->fLme) 2358 2358 rc = pgmR3DumpHierarchyGstPaePML4(pState, cr3 & cr3Mask, cMaxDepth); -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r55881 r57006 3452 3452 LogRel((" failed, because the VM state is actually %s\n", VMR3GetStateName(enmStateCur))); 3453 3453 VMSetError(pVM, VERR_VM_INVALID_VM_STATE, RT_SRC_POS, 3454 N_("%s failed because the current VM state, %s, was not found in the state transition table "),3454 N_("%s failed because the current VM state, %s, was not found in the state transition table (old state %s)"), 3455 3455 pszWho, VMR3GetStateName(enmStateCur), VMR3GetStateName(enmStateOld)); 3456 3456 AssertMsgFailed(("%s - state=%s, see release log for full details. Check the cTransitions passed us.\n",
Note:
See TracChangeset
for help on using the changeset viewer.