VirtualBox

Changeset 28706 in vbox for trunk/src/VBox/VMM/VMMR0


Ignore:
Timestamp:
Apr 25, 2010 3:10:30 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
60578
Message:

IntNet: Moved the instance pointer from VMMR0.cpp to SrvIntNetR0.cpp and dropped it as an argument to the IntNet API. Also renamed the prefixed to camelcase as 6-7 capital letters in a row is painful to write and read.

File:
1 edited

Legend:

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

    r28425 r28706  
    7070*   Global Variables                                                           *
    7171*******************************************************************************/
    72 /** Pointer to the internal networking service instance. */
    73 PINTNET g_pIntNet = 0;
    74 
     72/** Drag in necessary library bits.
     73 * The runtime lives here (in VMMR0.r0) and VBoxDD*R0.r0 links against us. */
    7574PFNRT g_VMMGCDeps[] =
    7675{
     
    110109                    if (RT_SUCCESS(rc))
    111110                    {
    112                         LogFlow(("ModuleInit: g_pIntNet=%p\n", g_pIntNet));
    113                         g_pIntNet = NULL;
    114                         LogFlow(("ModuleInit: g_pIntNet=%p should be NULL now...\n", g_pIntNet));
    115                         rc = INTNETR0Create(&g_pIntNet);
     111                        rc = IntNetR0Init();
    116112                        if (RT_SUCCESS(rc))
    117113                        {
    118                             LogFlow(("ModuleInit: returns success. g_pIntNet=%p\n", g_pIntNet));
     114                            LogFlow(("ModuleInit: returns success.\n"));
    119115                            return VINF_SUCCESS;
    120116                        }
    121117
    122118                        /* bail out */
    123                         g_pIntNet = NULL;
    124119                        LogFlow(("ModuleTerm: returns %Rrc\n", rc));
    125120#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE
     
    150145
    151146    /*
    152      * Destroy the internal networking instance.
    153      */
    154     if (g_pIntNet)
    155     {
    156         INTNETR0Destroy(g_pIntNet);
    157         g_pIntNet = NULL;
    158     }
     147     * Terminate the internal network service.
     148     */
     149    IntNetR0Term();
    159150
    160151    /*
    161152     * PGM (Darwin) and HWACCM global cleanup.
    162      * Destroy the GMM and GVMM instances.
    163153     */
    164154#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE
     
    168158    HWACCMR0Term();
    169159
     160    /*
     161     * Destroy the GMM and GVMM instances.
     162     */
    170163    GMMR0Term();
    171164    GVMMR0Term();
     
    998991            if (u64Arg || !pReq || !vmmR0IsValidSession(pVM, pReq->pSession, pSession) || idCpu != NIL_VMCPUID)
    999992                return VERR_INVALID_PARAMETER;
    1000             if (!g_pIntNet)
    1001                 return VERR_NOT_SUPPORTED;
    1002             return INTNETR0OpenReq(g_pIntNet, pSession, pReq);
     993            return IntNetR0OpenReq(pSession, pReq);
    1003994        }
    1004995
     
    1006997            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFCLOSEREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    1007998                return VERR_INVALID_PARAMETER;
    1008             if (!g_pIntNet)
    1009                 return VERR_NOT_SUPPORTED;
    1010             return INTNETR0IfCloseReq(g_pIntNet, pSession, (PINTNETIFCLOSEREQ)pReqHdr);
     999            return IntNetR0IfCloseReq(pSession, (PINTNETIFCLOSEREQ)pReqHdr);
    10111000
    10121001        case VMMR0_DO_INTNET_IF_GET_RING3_BUFFER:
    10131002            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFGETRING3BUFFERREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10141003                return VERR_INVALID_PARAMETER;
    1015             if (!g_pIntNet)
    1016                 return VERR_NOT_SUPPORTED;
    1017             return INTNETR0IfGetRing3BufferReq(g_pIntNet, pSession, (PINTNETIFGETRING3BUFFERREQ)pReqHdr);
     1004            return IntNetR0IfGetRing3BufferReq(pSession, (PINTNETIFGETRING3BUFFERREQ)pReqHdr);
    10181005
    10191006        case VMMR0_DO_INTNET_IF_SET_PROMISCUOUS_MODE:
    10201007            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFSETPROMISCUOUSMODEREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10211008                return VERR_INVALID_PARAMETER;
    1022             if (!g_pIntNet)
    1023                 return VERR_NOT_SUPPORTED;
    1024             return INTNETR0IfSetPromiscuousModeReq(g_pIntNet, pSession, (PINTNETIFSETPROMISCUOUSMODEREQ)pReqHdr);
     1009            return IntNetR0IfSetPromiscuousModeReq(pSession, (PINTNETIFSETPROMISCUOUSMODEREQ)pReqHdr);
    10251010
    10261011        case VMMR0_DO_INTNET_IF_SET_MAC_ADDRESS:
    10271012            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFSETMACADDRESSREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10281013                return VERR_INVALID_PARAMETER;
    1029             if (!g_pIntNet)
    1030                 return VERR_NOT_SUPPORTED;
    1031             return INTNETR0IfSetMacAddressReq(g_pIntNet, pSession, (PINTNETIFSETMACADDRESSREQ)pReqHdr);
     1014            return IntNetR0IfSetMacAddressReq(pSession, (PINTNETIFSETMACADDRESSREQ)pReqHdr);
    10321015
    10331016        case VMMR0_DO_INTNET_IF_SET_ACTIVE:
    10341017            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFSETACTIVEREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10351018                return VERR_INVALID_PARAMETER;
    1036             if (!g_pIntNet)
    1037                 return VERR_NOT_SUPPORTED;
    1038             return INTNETR0IfSetActiveReq(g_pIntNet, pSession, (PINTNETIFSETACTIVEREQ)pReqHdr);
     1019            return IntNetR0IfSetActiveReq(pSession, (PINTNETIFSETACTIVEREQ)pReqHdr);
    10391020
    10401021        case VMMR0_DO_INTNET_IF_SEND:
    10411022            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFSENDREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10421023                return VERR_INVALID_PARAMETER;
    1043             if (!g_pIntNet)
    1044                 return VERR_NOT_SUPPORTED;
    1045             return INTNETR0IfSendReq(g_pIntNet, pSession, (PINTNETIFSENDREQ)pReqHdr);
     1024            return IntNetR0IfSendReq(pSession, (PINTNETIFSENDREQ)pReqHdr);
    10461025
    10471026        case VMMR0_DO_INTNET_IF_WAIT:
    10481027            if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFWAITREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)
    10491028                return VERR_INVALID_PARAMETER;
    1050             if (!g_pIntNet)
    1051                 return VERR_NOT_SUPPORTED;
    1052             return INTNETR0IfWaitReq(g_pIntNet, pSession, (PINTNETIFWAITREQ)pReqHdr);
     1029            return IntNetR0IfWaitReq(pSession, (PINTNETIFWAITREQ)pReqHdr);
    10531030
    10541031        /*
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