Changeset 85134 in vbox
- Timestamp:
- Jul 9, 2020 6:46:30 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139077
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r85121 r85134 1402 1402 /* 1403 1403 * We are already performing a doorbell function. 1404 * Get the remaining parameters .1404 * Get the remaining parameters, ignore any excess writes. 1405 1405 */ 1406 AssertMsg(pThis->iMessage < RT_ELEMENTS(pThis->aMessage), ("Message is too big to fit into the buffer\n")); 1406 AssertMsgReturn(pThis->iMessage < pThis->cMessage, 1407 ("Guest is trying to write more than was indicated in the handshake\n"), 1408 VINF_SUCCESS); 1409 1407 1410 /* 1408 1411 * If the last byte of the message is written, force a switch to R3 because some requests might force … … 1420 1423 (PMptMessageHdr)pThis->aMessage, &pThis->ReplyBuffer); 1421 1424 AssertRC(rc); 1422 1423 pThis->iMessage = 0;1424 1425 } 1425 1426 #endif
Note:
See TracChangeset
for help on using the changeset viewer.