diff options
Diffstat (limited to 'src/VBox/VMM/VMM.cpp')
| -rw-r--r-- | src/VBox/VMM/VMM.cpp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/VBox/VMM/VMM.cpp b/src/VBox/VMM/VMM.cpp index 2fd16fb07..9740d4366 100644 --- a/src/VBox/VMM/VMM.cpp +++ b/src/VBox/VMM/VMM.cpp @@ -1,4 +1,4 @@ -/* $Id: VMM.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */ +/* $Id: VMM.cpp 29902 2010-05-31 12:56:31Z vboxsync $ */ /** @file * VMM - The Virtual Machine Monitor Core. */ @@ -402,7 +402,6 @@ static void vmmR3InitRegisterStats(PVM pVM) STAM_REG(pVM, &pVM->vmm.s.StatRZRetPatchTPR, STAMTYPE_COUNTER, "/VMM/RZRet/PatchTPR", STAMUNIT_OCCURENCES, "Number of VINF_EM_HWACCM_PATCH_TPR_INSTR returns."); STAM_REG(pVM, &pVM->vmm.s.StatRZRetCallRing3, STAMTYPE_COUNTER, "/VMM/RZCallR3/Misc", STAMUNIT_OCCURENCES, "Number of Other ring-3 calls."); STAM_REG(pVM, &pVM->vmm.s.StatRZCallPDMLock, STAMTYPE_COUNTER, "/VMM/RZCallR3/PDMLock", STAMUNIT_OCCURENCES, "Number of VMMCALLRING3_PDM_LOCK calls."); - STAM_REG(pVM, &pVM->vmm.s.StatRZCallPDMQueueFlush, STAMTYPE_COUNTER, "/VMM/RZCallR3/PDMQueueFlush", STAMUNIT_OCCURENCES, "Number of VMMCALLRING3_PDM_QUEUE_FLUSH calls."); STAM_REG(pVM, &pVM->vmm.s.StatRZCallPGMLock, STAMTYPE_COUNTER, "/VMM/RZCallR3/PGMLock", STAMUNIT_OCCURENCES, "Number of VMMCALLRING3_PGM_LOCK calls."); STAM_REG(pVM, &pVM->vmm.s.StatRZCallPGMPoolGrow, STAMTYPE_COUNTER, "/VMM/RZCallR3/PGMPoolGrow", STAMUNIT_OCCURENCES, "Number of VMMCALLRING3_PGM_POOL_GROW calls."); STAM_REG(pVM, &pVM->vmm.s.StatRZCallPGMMapChunk, STAMTYPE_COUNTER, "/VMM/RZCallR3/PGMMapChunk", STAMUNIT_OCCURENCES, "Number of VMMCALLRING3_PGM_MAP_CHUNK calls."); @@ -2029,16 +2028,6 @@ static int vmmR3ServiceCallRing3Request(PVM pVM, PVMCPU pVCpu) } /* - * Flush a PDM queue. - */ - case VMMCALLRING3_PDM_QUEUE_FLUSH: - { - PDMR3QueueFlushWorker(pVM, NULL); - pVCpu->vmm.s.rcCallRing3 = VINF_SUCCESS; - break; - } - - /* * Grow the PGM pool. */ case VMMCALLRING3_PGM_POOL_GROW: |
