VirtualBox

Changeset 10031 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jun 30, 2008 5:00:39 PM (17 years ago)
Author:
vboxsync
Message:

VBoxNetFlt - work in progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp

    r9694 r10031  
    8282    /** The SUPR0 object id. */
    8383    void                   *pvObj;
    84 } INTNETIF, *PINTNETIF;
     84} INTNETIF;
     85typedef INTNETIF *PINTNETIF;
    8586
    8687
     
    108109    /** The network name. */
    109110    char                    szName[INTNET_MAX_NETWORK_NAME];
    110 } INTNETNETWORK, *PINTNETNETWORK;
     111} INTNETNETWORK;
     112typedef INTNETNETWORK *PINTNETNETWORK;
    111113
    112114
     
    117119{
    118120    /** Pointer to the object we're a handle for. */
    119     PINTNETIF       pIF;
     121    PINTNETIF               pIF;
    120122    /** Index to the next free entry. */
    121     uintptr_t       iNext;
    122 } INTNETHTE, *PINTNETHTE;
     123    uintptr_t               iNext;
     124} INTNETHTE;
     125typedef INTNETHTE *PINTNETHTE;
    123126
    124127
     
    129132{
    130133    /** Pointer to the handle table. */
    131     PINTNETHTE          paEntries;
     134    PINTNETHTE              paEntries;
    132135    /** The number of allocated handles. */
    133     uint32_t            cAllocated;
     136    uint32_t                cAllocated;
    134137    /** The index of the first free handle entry.
    135      * ~0U means empty list. */
    136     uint32_t volatile   iHead;
     138     * UINT32_MAX means empty list. */
     139    uint32_t volatile       iHead;
    137140    /** The index of the last free handle entry.
    138      * ~0U means empty list. */
    139     uint32_t volatile   iTail;
    140 } INTNETHT, *PINTNETHT;
     141     * UINT32_MAX means empty list. */
     142    uint32_t volatile       iTail;
     143} INTNETHT;
     144typedef INTNETHT *PINTNETHT;
    141145
    142146
     
    181185    if (    i < pHT->cAllocated
    182186        &&  pHT->paEntries[i].iNext >= INTNET_HANDLE_MAX
    183         &&  pHT->paEntries[i].iNext != ~0U)
     187        &&  pHT->paEntries[i].iNext != UINT32_MAX)
    184188        pIF = pHT->paEntries[i].pIF;
    185189
     
    214218         */
    215219        uint32_t i = pHT->iHead;
    216         if (i != ~0U)
     220        if (i != UINT32_MAX)
    217221        {
    218222            pHT->iHead = pHT->paEntries[i].iNext;
    219             if (pHT->iHead == ~0U)
    220                 pHT->iTail = ~0U;
     223            if (pHT->iHead == UINT32_MAX)
     224                pHT->iTail = UINT32_MAX;
    221225
    222226            pHT->paEntries[i].pIF = pIF;
     
    253257            i = pHT->cAllocated;
    254258            uint32_t iTail = pHT->iTail;
    255             if (iTail == ~0U)
     259            if (iTail == UINT32_MAX)
    256260                pHT->iHead = iTail = i++;
    257261            while (i < cNew)
     
    260264                iTail = i++;
    261265            }
    262             paNew[iTail].iNext = ~0U;
     266            paNew[iTail].iNext = UINT32_MAX;
    263267            pHT->iTail = iTail;
    264268
     
    297301         * Insert at the end of the free list.
    298302         */
    299         pHT->paEntries[i].iNext = ~0U;
     303        pHT->paEntries[i].iNext = UINT32_MAX;
    300304        const uint32_t iTail = pHT->iTail;
    301         if (iTail != ~0U)
     305        if (iTail != UINT32_MAX)
    302306            pHT->paEntries[iTail].iNext = i;
    303307        else
     
    446450    PDMMAC  MacDst;
    447451    PDMMAC  MacSrc;
    448 } INTNETETHERHDR, *PINTNETETHERHDR;
     452} INTNETETHERHDR;
    449453#pragma pack()
     454typedef INTNETETHERHDR *PINTNETETHERHDR;
    450455
    451456
     
    15581563        //pIntNet->IfHandles.paEntries    = NULL;
    15591564        //pIntNet->IfHandles.cAllocated   = 0;
    1560         pIntNet->IfHandles.iHead        = ~0U;
    1561         pIntNet->IfHandles.iTail        = ~0U;
     1565        pIntNet->IfHandles.iHead        = UINT32_MAX;
     1566        pIntNet->IfHandles.iTail        = UINT32_MAX;
    15621567
    15631568        rc = RTSemFastMutexCreate(&pIntNet->FastMutex);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette