VirtualBox

Changeset 85101 in vbox for trunk/src/VBox/Devices/Storage


Ignore:
Timestamp:
Jul 8, 2020 8:16:48 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
139017
Message:

Devices/Storage/DevLsiLogicSCSI: Use the default devie critical section to improve behavior with SMP guests and some other smaller fixes, bugref:9767

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp

    r84504 r85101  
    13761376                        pThis->cMessage = LSILOGIC_REG_DOORBELL_GET_SIZE(u32);
    13771377                        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
    13801384                        pThis->enmDoorbellState = LSILOGICDOORBELLSTATE_FN_HANDSHAKE;
    13811385                        /* Update the interrupt status to notify the guest that a doorbell function was started. */
     
    14161420                                                             (PMptMessageHdr)pThis->aMessage, &pThis->ReplyBuffer);
    14171421                    AssertRC(rc);
     1422
     1423                    pThis->iMessage = 0;
    14181424                }
    14191425#endif
     
    19781984                return cbCopied - RT_MIN(cbSkip, cbCopied);
    19791985
    1980             uint32_t cbCopyThis           = SGEntry.Simple32.u24Length;
     1986            uint32_t cbCopyThis           = RT_MIN(SGEntry.Simple32.u24Length, cbCopy);
    19811987            RTGCPHYS GCPhysAddrDataBuffer = SGEntry.Simple32.u32DataBufferAddressLow;
    19821988
     
    52855291    /*
    52865292     * 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.
    52885293     */
    5289     rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
    5290     AssertRCReturn(rc, rc);
    5291 
    52925294    rc = PDMDevHlpCritSectInit(pDevIns, &pThis->ReplyFreeQueueCritSect, RT_SRC_POS, "%sRFQ", szDevTag);
    52935295    if (RT_FAILURE(rc))
     
    55475549    PLSILOGICSCSI pThis = PDMDEVINS_2_DATA(pDevIns, PLSILOGICSCSI);
    55485550
    5549     /* Replicate the critsect configuration: */
    5550     int rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
    5551     AssertRCReturn(rc, rc);
    5552 
    55535551    /* 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*/);
    55555553    AssertRCReturn(rc, rc);
    55565554
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette