VirtualBox

Changeset 12807 in vbox for trunk/src


Ignore:
Timestamp:
Sep 29, 2008 3:03:55 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37159
Message:

PDM - VMMDevHeap: PDM_DEVHLP_VERSION minor increment, GCPhysVMMDevHeap init, spaces and doxygen.

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

Legend:

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

    r12744 r12807  
    184184     */
    185185    pVM->pdm.s.offVM = RT_OFFSETOF(VM, pdm.s);
     186    pVM->pdm.s.GCPhysVMMDevHeap = NIL_RTGCPHYS;
    186187
    187188    int rc = TMR3TimerCreateInternal(pVM, TMCLOCK_VIRTUAL, pdmR3PollerTimer, NULL, "PDM Poller", &pVM->pdm.s.pTimerPollers);
     
    11881189}
    11891190
     1191
    11901192/**
    11911193 * Registers the VMM device heap
     
    12091211}
    12101212
     1213
    12111214/**
    12121215 * Unregisters the VMM device heap
     
    12281231}
    12291232
     1233
    12301234/**
    12311235 * Allocates memory from the VMM device heap
     
    12421246    Log(("PDMR3VMMDevHeapAlloc %x\n", cbSize));
    12431247
    1244     /* @todo not a real heap as there's currently only one user. */
     1248    /** @todo not a real heap as there's currently only one user. */
    12451249    *ppv = pVM->pdm.s.pvVMMDevHeap;
    12461250    pVM->pdm.s.cbVMMDevHeapLeft = 0;
     
    12481252}
    12491253
     1254
    12501255/**
    12511256 * Frees memory from the VMM device heap
     
    12531258 * @returns VBox status code.
    12541259 * @param   pVM             VM handle.
    1255  * @param   pv              Ring-3 pointer. 
     1260 * @param   pv              Ring-3 pointer.
    12561261 */
    12571262PDMR3DECL(int) PDMR3VMMDevHeapFree(PVM pVM, RTR3PTR pv)
     
    12591264    Log(("PDMR3VMMDevHeapFree %VHv\n", pv));
    12601265
    1261     /* @todo not a real heap as there's currently only one user. */
     1266    /** @todo not a real heap as there's currently only one user. */
    12621267    pVM->pdm.s.cbVMMDevHeapLeft = pVM->pdm.s.cbVMMDevHeap;
    12631268    return VINF_SUCCESS;
  • trunk/src/VBox/VMM/PDMDevice.cpp

    r12799 r12807  
    36773677
    36783678
     3679
     3680
     3681
    36793682/** @copydoc PDMDEVHLP::pfnGetVM */
    36803683static DECLCALLBACK(PVM) pdmR3DevHlp_Untrusted_GetVM(PPDMDEVINS pDevIns)
     
    40304033}
    40314034
    4032 /**
    4033  * @copydoc PDMDEVHLP::pfnRegisterVMMDevHeap
    4034  */
     4035
     4036/** @copydoc PDMDEVHLP::pfnRegisterVMMDevHeap */
    40354037static DECLCALLBACK(int) pdmR3DevHlp_Untrusted_RegisterVMMDevHeap(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTR3PTR pvHeap, unsigned cbSize)
    40364038{
     
    40404042}
    40414043
    4042 /**
    4043  * @copydoc PDMDEVHLP::pfnUnregisterVMMDevHeap
    4044  */
     4044
     4045/** @copydoc PDMDEVHLP::pfnUnregisterVMMDevHeap */
    40454046static DECLCALLBACK(int) pdmR3DevHlp_Untrusted_UnregisterVMMDevHeap(PPDMDEVINS pDevIns, RTGCPHYS GCPhys)
    40464047{
     
    40494050    return VERR_ACCESS_DENIED;
    40504051}
     4052
     4053
    40514054
    40524055
  • trunk/src/VBox/VMM/PDMInternal.h

    r12687 r12807  
    844844    R3PTRTYPE(PPDMASYNCCOMPLETIONTEMPLATE) pAsyncCompletionTemplates;
    845845
    846     /** PDM VMM device heap
     846    /** @name  VMM device heap
    847847     * @{ */
     848    /** Pointer to the heap base (MMIO2 ring-3 mapping). NULL if not registered. */
    848849    RTR3PTR                         pvVMMDevHeap;
     850    /** The heap size. */
    849851    RTUINT                          cbVMMDevHeap;
     852    /** Free space. */
    850853    RTUINT                          cbVMMDevHeapLeft;
     854    /** The current mapping. NIL_RTGCPHYS if not mapped or registered. */
    851855    RTGCPHYS                        GCPhysVMMDevHeap;
    852856    /** @} */
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