Changeset 85101 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jul 8, 2020 8:16:48 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139017
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r84504 r85101 1376 1376 pThis->cMessage = LSILOGIC_REG_DOORBELL_GET_SIZE(u32); 1377 1377 pThis->iMessage = 0; 1378 AssertMsg(pThis->cMessage <= RT_ELEMENTS(pThis->aMessage), 1379 ("Message doesn't fit into the buffer, cMessage=%u", pThis->cMessage)); 1378 1379 /* This is not supposed to happen and the result is undefined, just stay in the current state. */ 1380 AssertMsgReturn(pThis->cMessage <= RT_ELEMENTS(pThis->aMessage), 1381 ("Message doesn't fit into the buffer, cMessage=%u", pThis->cMessage), 1382 VINF_SUCCESS); 1383 1380 1384 pThis->enmDoorbellState = LSILOGICDOORBELLSTATE_FN_HANDSHAKE; 1381 1385 /* Update the interrupt status to notify the guest that a doorbell function was started. */ … … 1416 1420 (PMptMessageHdr)pThis->aMessage, &pThis->ReplyBuffer); 1417 1421 AssertRC(rc); 1422 1423 pThis->iMessage = 0; 1418 1424 } 1419 1425 #endif … … 1978 1984 return cbCopied - RT_MIN(cbSkip, cbCopied); 1979 1985 1980 uint32_t cbCopyThis = SGEntry.Simple32.u24Length;1986 uint32_t cbCopyThis = RT_MIN(SGEntry.Simple32.u24Length, cbCopy); 1981 1987 RTGCPHYS GCPhysAddrDataBuffer = SGEntry.Simple32.u32DataBufferAddressLow; 1982 1988 … … 5285 5291 /* 5286 5292 * Create critical sections protecting the reply post and free queues. 5287 * Note! We do our own syncronization, so NOP the default crit sect for the device.5288 5293 */ 5289 rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));5290 AssertRCReturn(rc, rc);5291 5292 5294 rc = PDMDevHlpCritSectInit(pDevIns, &pThis->ReplyFreeQueueCritSect, RT_SRC_POS, "%sRFQ", szDevTag); 5293 5295 if (RT_FAILURE(rc)) … … 5547 5549 PLSILOGICSCSI pThis = PDMDEVINS_2_DATA(pDevIns, PLSILOGICSCSI); 5548 5550 5549 /* Replicate the critsect configuration: */5550 int rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));5551 AssertRCReturn(rc, rc);5552 5553 5551 /* Setup callbacks for this context: */ 5554 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsReg, lsilogicIOPortWrite, lsilogicIOPortRead, NULL /*pvUser*/);5552 int rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsReg, lsilogicIOPortWrite, lsilogicIOPortRead, NULL /*pvUser*/); 5555 5553 AssertRCReturn(rc, rc); 5556 5554
Note:
See TracChangeset
for help on using the changeset viewer.