Changeset 18441 in vbox
- Timestamp:
- Mar 28, 2009 2:58:54 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45253
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r18323 r18441 288 288 * Add the frame to the send buffer and push it onto the network. 289 289 */ 290 int rc = drvIntNetRingWriteFrame(pThis->pBuf, &pThis->pBuf->Send, pvBuf, cb);290 int rc = drvIntNetRingWriteFrame(pThis->pBuf, &pThis->pBuf->Send, pvBuf, (uint32_t)cb); 291 291 if ( rc == VERR_BUFFER_OVERFLOW 292 292 && pThis->pBuf->cbSend < cb) … … 299 299 pThis->pDrvIns->pDrvHlp->pfnSUPCallVMMR0Ex(pThis->pDrvIns, VMMR0_DO_INTNET_IF_SEND, &SendReq, sizeof(SendReq)); 300 300 301 rc = drvIntNetRingWriteFrame(pThis->pBuf, &pThis->pBuf->Send, pvBuf, cb);301 rc = drvIntNetRingWriteFrame(pThis->pBuf, &pThis->pBuf->Send, pvBuf, (uint32_t)cb); 302 302 } 303 303
Note:
See TracChangeset
for help on using the changeset viewer.