VirtualBox

Changeset 58272 in vbox for trunk/src/VBox/Runtime/r0drv


Ignore:
Timestamp:
Oct 15, 2015 7:28:57 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103462
Message:

iprt/r0drv: electric fence fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp

    r58270 r58272  
    451451    size_t cbBlock = RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) + RTR0MEM_EF_SIZE;
    452452
    453     int rc = RTR0MemObjProtect(pBlock->hMemObj, 0 /*offSub*/, cbBlock, RTMEM_PROT_READ | RTMEM_PROT_WRITE);
     453    int rc = RTR0MemObjProtect(pBlock->hMemObj, 0 /*offSub*/, RT_ALIGN_Z(cbBlock, PAGE_SIZE), RTMEM_PROT_READ | RTMEM_PROT_WRITE);
    454454    if (RT_FAILURE(rc))
    455455        rtR0MemComplain(pszOp, "RTR0MemObjProtect([%p], 0, %#x, RTMEM_PROT_READ | RTMEM_PROT_WRITE) -> %Rrc\n",
     
    506506    {
    507507        PRTR0MEMEFBLOCK pBlock = g_pBlocksDelayTail;
    508         g_pBlocksDelayTail = (PRTR0MEMEFBLOCK)pBlock->Core.pLeft;
    509         if (pBlock->Core.pLeft)
    510             pBlock->Core.pLeft->pRight = NULL;
     508        if (pBlock)
     509        {
     510            g_pBlocksDelayTail = (PRTR0MEMEFBLOCK)pBlock->Core.pLeft;
     511            if (pBlock->Core.pLeft)
     512                pBlock->Core.pLeft->pRight = NULL;
     513            else
     514                g_pBlocksDelayHead = NULL;
     515            rtR0MemBlockUnlock(fSavedIntFlags);
     516
     517            rtR0MemFreeBlock(pBlock, "rtR0MemEfTerm");
     518
     519            rtR0MemBlockLock();
     520        }
    511521        else
    512             g_pBlocksDelayHead = NULL;
    513         rtR0MemBlockUnlock(fSavedIntFlags);
    514 
    515         rtR0MemFreeBlock(pBlock, "rtR0MemEfTerm");
    516 
    517         rtR0MemBlockLock();
     522            break;
    518523    }
    519524    g_cbBlocksDelay = 0;
     
    696701         * That means we'll expand the E-fence to cover the entire block.
    697702         */
     703        int rc = RTR0MemObjProtect(pBlock->hMemObj,
    698704# ifdef RTR0MEM_EF_IN_FRONT
    699         int rc = RTR0MemObjProtect(pBlock->hMemObj, RTR0MEM_EF_SIZE /*offSub*/, pBlock->cbAligned, RTMEM_PROT_NONE);
     705                                   RTR0MEM_EF_SIZE,
    700706# else
    701         int rc = RTR0MemObjProtect(pBlock->hMemObj, 0 /*offSub*/,               pBlock->cbAligned, RTMEM_PROT_NONE);
     707                                   0 /*offSub*/,
    702708# endif
     709                                   RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE),
     710                                   RTMEM_PROT_NONE);
    703711        if (RT_SUCCESS(rc))
    704712        {
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