VirtualBox

Changeset 33595 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Oct 29, 2010 10:35:00 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
67205
Message:

src/*: more spelling fixes (logging), thanks Timeless!

Location:
trunk/src/VBox/VMM
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/CPUM.cpp

    r33540 r33595  
    30403040            pHlp->pfnPrintf(pHlp, "SSE2 - SSE2 Support                    = %d (%d)\n",  EdxGuest.u1SSE2,       EdxHost.u1SSE2);
    30413041            pHlp->pfnPrintf(pHlp, "SS - Self Snoop                        = %d (%d)\n",  EdxGuest.u1SS,         EdxHost.u1SS);
    3042             pHlp->pfnPrintf(pHlp, "HTT - Hyper-Threading Technolog        = %d (%d)\n",  EdxGuest.u1HTT,        EdxHost.u1HTT);
     3042            pHlp->pfnPrintf(pHlp, "HTT - Hyper-Threading Technology       = %d (%d)\n",  EdxGuest.u1HTT,        EdxHost.u1HTT);
    30433043            pHlp->pfnPrintf(pHlp, "TM - Thermal Monitor                   = %d (%d)\n",  EdxGuest.u1TM,         EdxHost.u1TM);
    30443044            pHlp->pfnPrintf(pHlp, "30 - Reserved                          = %d (%d)\n",  EdxGuest.u1Reserved3,  EdxHost.u1Reserved3);
  • trunk/src/VBox/VMM/EM.cpp

    r33540 r33595  
    818818                 */
    819819                default:
    820                     AssertMsgFailed(("Unxpected rc %Rrc!\n", rc));
     820                    AssertMsgFailed(("Unexpected rc %Rrc!\n", rc));
    821821                    break;
    822822            }
  • trunk/src/VBox/VMM/PATM/PATM.cpp

    r33540 r33595  
    41754175            if (pPatchNear->patch.uState == PATCH_UNUSABLE && pInstrGC < pPatchNear->patch.pPrivInstrGC && pInstrGC + SIZEOF_NEARJUMP32 > pPatchNear->patch.pPrivInstrGC)
    41764176            {
    4177                 Log(("Dangerous patch; would overwrite the ususable patch at %RRv\n", pPatchNear->patch.pPrivInstrGC));
     4177                Log(("Dangerous patch; would overwrite the unusable patch at %RRv\n", pPatchNear->patch.pPrivInstrGC));
    41784178
    41794179                pPatchRec->patch.uState = PATCH_UNUSABLE;
  • trunk/src/VBox/VMM/PDM.cpp

    r33540 r33595  
    890890            break;
    891891        if (u32Sep != i)
    892             AssertMsgFailedReturn(("Out of seqence. u32Sep=%#x i=%#x\n", u32Sep, i), VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
     892            AssertMsgFailedReturn(("Out of sequence. u32Sep=%#x i=%#x\n", u32Sep, i), VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
    893893
    894894        /* Get the name and instance number. */
  • trunk/src/VBox/VMM/PDMAsyncCompletionFileNormal.cpp

    r33540 r33595  
    14511451                uint8_t *pbBuf = NULL;
    14521452
    1453                 LogFlow(("Restarting incomplete transfer %#p (%zu bytes transfered)\n",
     1453                LogFlow(("Restarting incomplete transfer %#p (%zu bytes transferred)\n",
    14541454                         pTask, cbTransfered));
    14551455                Assert(cbTransfered % 512 == 0);
  • trunk/src/VBox/VMM/PDMCritSect.cpp

    r33540 r33595  
    5353{
    5454    STAM_REG(pVM, &pVM->pdm.s.StatQueuedCritSectLeaves, STAMTYPE_COUNTER, "/PDM/QueuedCritSectLeaves", STAMUNIT_OCCURENCES,
    55              "Number of times a critical section leave requesed needed to be queued for ring-3 execution.");
     55             "Number of times a critical section leave request needed to be queued for ring-3 execution.");
    5656    return VINF_SUCCESS;
    5757}
  • trunk/src/VBox/VMM/PDMDevice.cpp

    r33540 r33595  
    670670                    VERR_PDM_INVALID_DEVICE_REGISTRATION);
    671671    AssertMsgReturn(pReg->pfnConstruct,
    672                     ("No constructore! (Device %s)\n", pReg->szName),
     672                    ("No constructor! (Device %s)\n", pReg->szName),
    673673                    VERR_PDM_INVALID_DEVICE_REGISTRATION);
    674674    AssertLogRelMsgReturn((pReg->fFlags & PDM_DEVREG_FLAGS_GUEST_BITS_MASK) == PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT,
  • trunk/src/VBox/VMM/PDMUsb.cpp

    r33540 r33595  
    232232                    ("Instance size %d bytes! (USB Device %s)\n", pReg->cbInstance, pReg->szName),
    233233                    VERR_PDM_INVALID_USB_REGISTRATION);
    234     AssertMsgReturn(pReg->pfnConstruct, ("No constructore! (USB Device %s)\n", pReg->szName),
     234    AssertMsgReturn(pReg->pfnConstruct, ("No constructor! (USB Device %s)\n", pReg->szName),
    235235                    VERR_PDM_INVALID_USB_REGISTRATION);
    236236
  • trunk/src/VBox/VMM/PGM.cpp

    r33540 r33595  
    13931393        DBGFR3InfoRegisterInternal(pVM, "mode",
    13941394                                   "Shows the current paging mode. "
    1395                                    "Recognizes 'all', 'guest', 'shadow' and 'host' as arguments, defaulting to 'all' if nothing's given.",
     1395                                   "Recognizes 'all', 'guest', 'shadow' and 'host' as arguments, defaulting to 'all' if nothing is given.",
    13961396                                   pgmR3InfoMode);
    13971397        DBGFR3InfoRegisterInternal(pVM, "pgmcr3",
     
    18011801        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2InvalidPhys,      "/PGM/CPU%u/RZ/Trap0e/Time2/InvalidPhys",       "Profiling of the Trap0eHandler body when the cause is access to an invalid physical guest address.");
    18021802        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2MakeWritable,     "/PGM/CPU%u/RZ/Trap0e/Time2/MakeWritable",      "Profiling of the Trap0eHandler body when the cause is that a page needed to be made writeable.");
    1803         PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2Mapping,          "/PGM/CPU%u/RZ/Trap0e/Time2/Mapping",           "Profiling of the Trap0eHandler body when the cause is releated to the guest mappings.");
     1803        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2Mapping,          "/PGM/CPU%u/RZ/Trap0e/Time2/Mapping",           "Profiling of the Trap0eHandler body when the cause is related to the guest mappings.");
    18041804        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2Misc,             "/PGM/CPU%u/RZ/Trap0e/Time2/Misc",              "Profiling of the Trap0eHandler body when the cause is not known.");
    18051805        PGM_REG_PROFILE(&pCpuStats->StatRZTrap0eTime2OutOfSync,        "/PGM/CPU%u/RZ/Trap0e/Time2/OutOfSync",         "Profiling of the Trap0eHandler body when the cause is an out-of-sync page.");
     
    18571857        PGM_REG_COUNTER(&pCpuStats->StatRZDynMapPage,                  "/PGM/CPU%u/RZ/DynMap/Page",                     "Calls to pgmR0DynMapPage");
    18581858        PGM_REG_COUNTER(&pCpuStats->StatRZDynMapSetOptimize,           "/PGM/CPU%u/RZ/DynMap/Page/SetOptimize",         "Calls to pgmRZDynMapOptimizeAutoSet.");
    1859         PGM_REG_COUNTER(&pCpuStats->StatRZDynMapSetSearchFlushes,      "/PGM/CPU%u/RZ/DynMap/Page/SetSearchFlushes",    "Set search restorting to subset flushes.");
     1859        PGM_REG_COUNTER(&pCpuStats->StatRZDynMapSetSearchFlushes,      "/PGM/CPU%u/RZ/DynMap/Page/SetSearchFlushes",    "Set search restoring to subset flushes.");
    18601860        PGM_REG_COUNTER(&pCpuStats->StatRZDynMapSetSearchHits,         "/PGM/CPU%u/RZ/DynMap/Page/SetSearchHits",       "Set search hits.");
    18611861        PGM_REG_COUNTER(&pCpuStats->StatRZDynMapSetSearchMisses,       "/PGM/CPU%u/RZ/DynMap/Page/SetSearchMisses",     "Set search misses.");
  • trunk/src/VBox/VMM/STAM.cpp

    r33540 r33595  
    19871987        return pCmdHlp->pfnPrintf(pCmdHlp, NULL, "info: Statistics reset.\n");
    19881988
    1989     return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Restting statistics.\n");
     1989    return pCmdHlp->pfnVBoxError(pCmdHlp, rc, "Resetting statistics.\n");
    19901990}
    19911991
  • trunk/src/VBox/VMM/TM.cpp

    r33540 r33595  
    555555        return rc;
    556556    }
    557     Log(("TM: Created timer %p firing every %d millieseconds\n", pVM->tm.s.pTimer, u32Millies));
     557    Log(("TM: Created timer %p firing every %d milliseconds\n", pVM->tm.s.pTimer, u32Millies));
    558558    pVM->tm.s.u32TimerMillies = u32Millies;
    559559
     
    578578    STAM_REL_REG_USED(pVM,(void*)&pVM->tm.s.VirtualGetRawDataRC.cBadPrev, STAMTYPE_U32, "/TM/RC/cBadPrev",                     STAMUNIT_OCCURENCES, "Times the previous virtual time was considered erratic (shouldn't ever happen).");
    579579    STAM_REL_REG(     pVM,(void*)&pVM->tm.s.offVirtualSync,               STAMTYPE_U64, "/TM/VirtualSync/CurrentOffset",               STAMUNIT_NS, "The current offset. (subtract GivenUp to get the lag)");
    580     STAM_REL_REG_USED(pVM,(void*)&pVM->tm.s.offVirtualSyncGivenUp,        STAMTYPE_U64, "/TM/VirtualSync/GivenUp",                     STAMUNIT_NS, "Nanoseconds of the 'CurrentOffset' that's been given up and won't ever be attemted caught up with.");
     580    STAM_REL_REG_USED(pVM,(void*)&pVM->tm.s.offVirtualSyncGivenUp,        STAMTYPE_U64, "/TM/VirtualSync/GivenUp",                     STAMUNIT_NS, "Nanoseconds of the 'CurrentOffset' that's been given up and won't ever be attempted caught up with.");
    581581    STAM_REL_REG(     pVM,(void*)&pVM->tm.s.uMaxHzHint,                   STAMTYPE_U32, "/TM/MaxHzHint",                               STAMUNIT_HZ, "Max guest timer frequency hint.");
    582582
     
    672672        STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsExecuting,   STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent executing guest code.",    "/TM/CPU/%02u/PrfExecuting", i);
    673673        STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsExecLong,    STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent executing guest code - long hauls.",    "/TM/CPU/%02u/PrfExecLong", i);
    674         STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsExecShort,   STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent executing guest code - short streches.",    "/TM/CPU/%02u/PrfExecShort", i);
     674        STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsExecShort,   STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent executing guest code - short stretches.",    "/TM/CPU/%02u/PrfExecShort", i);
    675675        STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsExecTiny,    STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent executing guest code - tiny bits.",    "/TM/CPU/%02u/PrfExecTiny", i);
    676676        STAMR3RegisterF(pVM, &pVM->aCpus[i].tm.s.StatNsHalted,      STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_NS_PER_OCCURENCE, "Resettable: Time spent halted.",                  "/TM/CPU/%02u/PrfHalted", i);
  • trunk/src/VBox/VMM/TRPM.cpp

    r33540 r33595  
    530530    STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x09],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/09",          STAMUNIT_TICKS_PER_CALL, "#?? - Coprocessor segment overrun (obsolete).");
    531531    STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x0a],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/0a",          STAMUNIT_TICKS_PER_CALL, "#TS - Task switch fault.");
    532     STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x0b],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/0b",          STAMUNIT_TICKS_PER_CALL, "#NP - Segemnt not present.");
     532    STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x0b],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/0b",          STAMUNIT_TICKS_PER_CALL, "#NP - Segment not present.");
    533533    STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x0c],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/0c",          STAMUNIT_TICKS_PER_CALL, "#SS - Stack segment fault.");
    534534    STAM_REG(pVM, &pVM->trpm.s.aStatGCTraps[0x0d],      STAMTYPE_PROFILE_ADV, "/TRPM/GC/Traps/0d",          STAMUNIT_TICKS_PER_CALL, "#GP - General protection fault.");
  • trunk/src/VBox/VMM/VM.cpp

    r33540 r33595  
    36413641{
    36423642    VM_ASSERT_EMT(pVM);
    3643     AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetErrorV! Contrats!\n"));
     3643    AssertReleaseMsgFailed(("And we have a winner! You get to implement Ring-0 and GC VMSetErrorV! Contracts!\n"));
    36443644
    36453645    /*
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp

    r32847 r33595  
    33963396        default:
    33973397            rc = VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE;
    3398             AssertMsgFailed(("Unexpected interuption code %x\n", intInfo));
     3398            AssertMsgFailed(("Unexpected interruption code %x\n", intInfo));
    33993399            break;
    34003400        }
  • trunk/src/VBox/VMM/VMMR0/VMMR0.cpp

    r33540 r33595  
    218218
    219219        pR0Logger->Logger.pfnLogger("hello ring-0 logger\n");
    220         LogCom(("vmmR0InitVM: returned succesfully from direct logger call.\n"));
     220        LogCom(("vmmR0InitVM: returned successfully from direct logger call.\n"));
    221221        pR0Logger->Logger.pfnFlush(&pR0Logger->Logger);
    222         LogCom(("vmmR0InitVM: returned succesfully from direct flush call.\n"));
     222        LogCom(("vmmR0InitVM: returned successfully from direct flush call.\n"));
    223223
    224224        RTLogSetDefaultInstanceThread(&pR0Logger->Logger, (uintptr_t)pVM->pSession);
    225225        LogCom(("vmmR0InitVM: after %p reg2\n", RTLogDefaultInstance()));
    226226        pR0Logger->Logger.pfnLogger("hello ring-0 logger\n");
    227         LogCom(("vmmR0InitVM: returned succesfully from direct logger call (2). offScratch=%d\n", pR0Logger->Logger.offScratch));
     227        LogCom(("vmmR0InitVM: returned successfully from direct logger call (2). offScratch=%d\n", pR0Logger->Logger.offScratch));
    228228        RTLogSetDefaultInstanceThread(NULL, pVM->pSession);
    229229        LogCom(("vmmR0InitVM: after %p dereg2\n", RTLogDefaultInstance()));
  • trunk/src/VBox/VMM/VMReq.cpp

    r33540 r33595  
    570570     */
    571571    AssertMsgReturn(enmType > VMREQTYPE_INVALID && enmType < VMREQTYPE_MAX,
    572                     ("Invalid package type %d valid range %d-%d inclusivly.\n",
     572                    ("Invalid package type %d valid range %d-%d inclusively.\n",
    573573                     enmType, VMREQTYPE_INVALID + 1, VMREQTYPE_MAX - 1),
    574574                    VERR_VM_REQUEST_INVALID_TYPE);
     
    797797    AssertMsgReturn(    pReq->enmType > VMREQTYPE_INVALID
    798798                    &&  pReq->enmType < VMREQTYPE_MAX,
    799                     ("Invalid package type %d valid range %d-%d inclusivly. This was verified on alloc too...\n",
     799                    ("Invalid package type %d valid range %d-%d inclusively. This was verified on alloc too...\n",
    800800                     pReq->enmType, VMREQTYPE_INVALID + 1, VMREQTYPE_MAX - 1),
    801801                    VERR_VM_REQUEST_INVALID_TYPE);
     
    953953    AssertMsgReturn(    pReq->enmType > VMREQTYPE_INVALID
    954954                    &&  pReq->enmType < VMREQTYPE_MAX,
    955                     ("Invalid package type %d valid range %d-%d inclusivly. This was verified on alloc too...\n",
     955                    ("Invalid package type %d valid range %d-%d inclusively. This was verified on alloc too...\n",
    956956                     pReq->enmType, VMREQTYPE_INVALID + 1, VMREQTYPE_MAX - 1),
    957957                    VERR_VM_REQUEST_INVALID_TYPE);
  • trunk/src/VBox/VMM/testcase/mkdsk.sh

    r28800 r33595  
    6565done
    6666
    67 echo "* Unmouning    tmpmnt..."
     67echo "* Unmounting    tmpmnt..."
    6868sudo umount tmpmnt
    6969rmdir tmpmnt
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