Changeset 58272 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Oct 15, 2015 7:28:57 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103462
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp
r58270 r58272 451 451 size_t cbBlock = RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) + RTR0MEM_EF_SIZE; 452 452 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); 454 454 if (RT_FAILURE(rc)) 455 455 rtR0MemComplain(pszOp, "RTR0MemObjProtect([%p], 0, %#x, RTMEM_PROT_READ | RTMEM_PROT_WRITE) -> %Rrc\n", … … 506 506 { 507 507 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 } 511 521 else 512 g_pBlocksDelayHead = NULL; 513 rtR0MemBlockUnlock(fSavedIntFlags); 514 515 rtR0MemFreeBlock(pBlock, "rtR0MemEfTerm"); 516 517 rtR0MemBlockLock(); 522 break; 518 523 } 519 524 g_cbBlocksDelay = 0; … … 696 701 * That means we'll expand the E-fence to cover the entire block. 697 702 */ 703 int rc = RTR0MemObjProtect(pBlock->hMemObj, 698 704 # ifdef RTR0MEM_EF_IN_FRONT 699 int rc = RTR0MemObjProtect(pBlock->hMemObj, RTR0MEM_EF_SIZE /*offSub*/, pBlock->cbAligned, RTMEM_PROT_NONE);705 RTR0MEM_EF_SIZE, 700 706 # else 701 int rc = RTR0MemObjProtect(pBlock->hMemObj, 0 /*offSub*/, pBlock->cbAligned, RTMEM_PROT_NONE);707 0 /*offSub*/, 702 708 # endif 709 RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE), 710 RTMEM_PROT_NONE); 703 711 if (RT_SUCCESS(rc)) 704 712 {
Note:
See TracChangeset
for help on using the changeset viewer.