Changeset 60057 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Mar 16, 2016 9:19:25 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106044
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r60015 r60057 3882 3882 if (rc == VERR_MORE_DATA) 3883 3883 { 3884 rc = lsilogicR3PrepareBiosScsiRequest(pThis); 3885 AssertRC(rc); 3884 ASMAtomicXchgBool(&pThis->fBiosReqPending, true); 3885 /* Send a notifier to the PDM queue that there are pending requests. */ 3886 PPDMQUEUEITEMCORE pItem = PDMQueueAlloc(pThis->CTX_SUFF(pNotificationQueue)); 3887 AssertMsg(pItem, ("Allocating item for queue failed\n")); 3888 PDMQueueInsert(pThis->CTX_SUFF(pNotificationQueue), (PPDMQUEUEITEMCORE)pItem); 3886 3889 } 3887 3890 else if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.