- Timestamp:
- Sep 13, 2009 1:00:19 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 52254
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp
r22967 r22977 511 511 else 512 512 { 513 pEpClassFile->uBitmaskAlignment = ~((RTR3UINTPTR)AioLimits.cbBufferAlignment - 1);513 pEpClassFile->uBitmaskAlignment = AioLimits.cbBufferAlignment ? ~((RTR3UINTPTR)AioLimits.cbBufferAlignment - 1) : RTR3UINTPTR_MAX; 514 514 pEpClassFile->cReqsOutstandingMax = AioLimits.cReqsOutstandingMax; 515 515 pEpClassFile->fFailsafe = false; -
trunk/src/VBox/VMM/PDMAsyncCompletionFileNormal.cpp
r22967 r22977 419 419 420 420 AssertMsg((pEpClassFile->uBitmaskAlignment & (RTR3UINTPTR)pvBuf) == (RTR3UINTPTR)pvBuf, 421 ("AIO: Alignment restrictions not met!\n"));421 ("AIO: Alignment restrictions not met! pvBuf=%p uBitmaskAlignment=%p\n", pvBuf, pEpClassFile->uBitmaskAlignment)); 422 422 423 423 if (enmTransferType == PDMACTASKFILETRANSFER_WRITE)
Note:
See TracChangeset
for help on using the changeset viewer.